blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 201 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 7 100 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 260
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 11.4k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 17
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 80
values | src_encoding stringclasses 28
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 8 9.86M | extension stringclasses 52
values | content stringlengths 8 9.86M | authors listlengths 1 1 | author stringlengths 0 119 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
394f56b8b07bfe28ee1c687629333410718f4534 | 9dd4240f805e91a1e51cc7db956a10765a2cfcc2 | /code/1007.cpp | bc11d15b5995f6524f0596265787256f8d8fbf8e | [] | no_license | murdercdh/PKU_ACM | 7d42b06a55cdd84ed97b7963c473c075ff9812f4 | 9db1a47cf4563dd96314e1323c3f83d40685d66c | refs/heads/master | 2021-01-17T21:40:38.631438 | 2012-09-20T19:27:30 | 2012-09-20T19:27:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,171 | cpp | #include <iostream>
using namespace std;
char Origin[100][51];
struct Record
{
int order;
int inversions;
};
Record rec[100];
int DNA[4];
int temp,MIN,t;
int main()
{
freopen("in.txt","r",stdin);
freopen("out.txt","w",stdout);
int n,m,i,j;
scanf("%d%d",&n,&m);
for(i=0;i<m;i++)
{
scanf("%s",&Origin[i]);
rec[i].order=i;
for(j=0;j<4;j++)
{
DNA[j]=0;
}
for(j=0;j<n;j++)
{
if(Origin[i][j]=='A')
{
rec[i].inversions+=DNA[1]+DNA[2]+DNA[3];
DNA[0]++;
}
else if(Origin[i][j]=='C')
{
rec[i].inversions+=DNA[2]+DNA[3];
DNA[1]++;
}
else if(Origin[i][j]=='G')
{
rec[i].inversions+=DNA[3];
DNA[2]++;
}
else if(Origin[i][j]=='T')
{
DNA[3]++;
}
}
}
for(i=0;i<m;i++)
{
MIN=rec[i].inversions;
t=i;
for(j=i+1;j<m;j++)
{
if(MIN>rec[j].inversions)
{
t=j;
MIN=rec[j].inversions;
}
}
if(rec[i].inversions>MIN)
{
temp=rec[i].inversions;
rec[i].inversions=rec[t].inversions;
rec[t].inversions=temp;
temp=rec[i].order;
rec[i].order=rec[t].order;
rec[t].order=temp;
}
}
for(i=0;i<m;i++)
{
printf("%s\n",Origin[rec[i].order]);
}
return 0;
} | [
"ljw7630@hotmail.com"
] | ljw7630@hotmail.com |
05d01de5acbf79c1795430aefac038a35ca28dc5 | de271d7c011dc2a45441a0385a86e20e15842382 | /OverlordProject/CourseObjects/Exam Super Mario/Character.h | dd04f99d4db8c4379654f7d82b615668530648db | [] | no_license | VictorGhys/Super-Mario-64 | 8e03e200853c1f83b8977c984900a8396794aaf0 | edba3ed1b912c1dc87c053f2e1fdbe104c4a546d | refs/heads/main | 2023-08-18T00:11:08.819103 | 2021-10-11T19:09:41 | 2021-10-11T19:09:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,568 | h | #pragma once
#include "GameObject.h"
class ParticleEmitterComponent;
class ModelAnimator;
class ControllerComponent;
class CameraComponent;
class Character : public GameObject
{
public:
enum CharacterMovement : UINT
{
LEFT = 0,
RIGHT,
FORWARD,
BACKWARD,
JUMP,
GROUND_POUND,
CAMERA_UP,
CAMERA_DOWN,
CAMERA_LEFT,
CAMERA_RIGHT,
JUMP_CONTROLLER,
GROUND_POUND_CONTROLLER
};
enum class MarioAnimation : UINT
{
IDLE = 0,
JUMP = 1,
WALK = 2,
RUN = 3,
RUN_HARD = 4
};
Character(float radius = 2, float height = 5, float moveSpeed = 100, bool thirdPerson = false, DirectX::XMFLOAT3 cameraOffset = { 0,0,-5 });
virtual ~Character() = default;
Character(const Character& other) = delete;
Character(Character&& other) noexcept = delete;
Character& operator=(const Character& other) = delete;
Character& operator=(Character&& other) noexcept = delete;
void Initialize(const GameContext& gameContext) override;
void PostInitialize(const GameContext& gameContext) override;
void Update(const GameContext& gameContext) override;
CameraComponent* GetCamera() const { return m_pCamera; }
void SetAnimator(ModelAnimator* pAnimator);
void SetVisuals(GameObject* visuals) { m_Visuals = visuals; }
bool GetIsOnGround() const;
void SetSmokeParticle(ParticleEmitterComponent* smokeParticle) { m_SmokeParticle = smokeParticle; }
void SetIsPaused(bool isPaused) { m_IsPaused = isPaused; }
bool GetHasEverMoved() const { return m_HasEverMoved; }
protected:
CameraComponent* m_pCamera;
ControllerComponent* m_pController;
float m_TotalPitch, m_TotalYaw;
float m_MoveSpeed, m_RotationSpeed;
float m_Radius, m_Height;
//Running
float m_MaxRunVelocity,
m_TerminalVelocity,
m_NormalGravity,
m_Gravity,
m_RunAccelerationTime,
m_JumpAccelerationTime,
m_RunAcceleration,
m_JumpAcceleration,
m_RunVelocity,
m_JumpVelocity;
DirectX::XMFLOAT3 m_Velocity;
//my own
bool m_thirdPerson;
DirectX::XMFLOAT3 m_CameraOffset;
GameObject* m_pCameraBoomObject;
const float m_InitJumpVelocity;
ModelAnimator* m_pAnimator;
GameObject* m_Visuals;
const float m_MaxDoubleJumpTime;
float m_DoubleJumpTime;
const float m_DoubleJumpInitVelocity;
float m_GroundPoundGravity;
ParticleEmitterComponent* m_SmokeParticle;
bool m_IsPaused;
const float m_ArrowRotationSpeed;
const float m_ControllerRotationSpeed;
const float m_MaxPitch;
const float m_MinPitch;
bool m_HasEverMoved;
FMOD::Sound* m_pHoo = nullptr;
FMOD::Sound* m_pWoohoo = nullptr;
FMOD::Sound* m_pYa = nullptr;
FMOD::Channel* m_pChannel = nullptr;
};
| [
"victor.ghys@student.howest.be"
] | victor.ghys@student.howest.be |
c264bf9c9e69e2e8f7adaac86712ddb4efb923c0 | 6a928132fd0f60d3fda464914634c521d51ac4f5 | /Rewards.cpp | bb7e53d7855c2028928e8282ac56426330766bc4 | [] | no_license | diptigupta1/CompetetiveProgramming | 436ce1dca4a78e8f1178bf1722bf119921d9c148 | 483562537217cddb0b7ff19b191f251661baea7d | refs/heads/master | 2020-03-20T11:05:40.973612 | 2018-06-20T18:04:59 | 2018-06-20T18:04:59 | 137,392,940 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 421 | cpp | #include <bits/stdc++.h>
using namespace std;
int main()
{
int a1,a2,a3,b1,b2,b3,n;
cin>>a1>>a2>>a3>>b1>>b2>>b3>>n;
int c=a1+a2+a3;
int m=b1+b2+b3;
n=n-c/5;
n=n-m/10;
if(c>5 && c%5>0)
n--;
if(m>10 && m%10>0)
n--;
if(c<5 && c!=0)
n--;
if(m<10 && m!=0)
n--;
if(n<0)
cout<<"NO"<<endl;
else
cout<<"YES"<<endl;
return 0;
}
| [
"ishu8120@gmail.com"
] | ishu8120@gmail.com |
15ea5f0e93de487d6eafafd92e1935061aac6e34 | e4aba8aceed450da140a22593dd3d6296842d0e5 | /MFC_Login_Demo_1/MFC_Login_Demo_1.cpp | 2ed535bf04c809bd657ea7c9e1295692df49bf01 | [] | no_license | themostfreeboy/MFCLoginDemo | 03fb0f1a2f41a271665dcdc7ce4ecca7025347e8 | de01014ea90e82912c2baeecf1befc3b5074bc3e | refs/heads/master | 2020-03-07T21:42:55.690735 | 2018-04-02T09:28:22 | 2018-04-02T09:28:22 | 127,734,572 | 1 | 0 | null | null | null | null | GB18030 | C++ | false | false | 2,376 | cpp |
// MFC_Login_Demo_1.cpp : 定义应用程序的类行为。
//
#include "stdafx.h"
#include "MFC_Login_Demo_1.h"
#include "MFC_Login_Demo_1Dlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CMFC_Login_Demo_1App
BEGIN_MESSAGE_MAP(CMFC_Login_Demo_1App, CWinApp)
ON_COMMAND(ID_HELP, &CWinApp::OnHelp)
END_MESSAGE_MAP()
// CMFC_Login_Demo_1App 构造
CMFC_Login_Demo_1App::CMFC_Login_Demo_1App()
{
// 支持重新启动管理器
m_dwRestartManagerSupportFlags = AFX_RESTART_MANAGER_SUPPORT_RESTART;
// TODO: 在此处添加构造代码,
// 将所有重要的初始化放置在 InitInstance 中
}
// 唯一的一个 CMFC_Login_Demo_1App 对象
CMFC_Login_Demo_1App theApp;
// CMFC_Login_Demo_1App 初始化
BOOL CMFC_Login_Demo_1App::InitInstance()
{
// 如果一个运行在 Windows XP 上的应用程序清单指定要
// 使用 ComCtl32.dll 版本 6 或更高版本来启用可视化方式,
//则需要 InitCommonControlsEx()。否则,将无法创建窗口。
INITCOMMONCONTROLSEX InitCtrls;
InitCtrls.dwSize = sizeof(InitCtrls);
// 将它设置为包括所有要在应用程序中使用的
// 公共控件类。
InitCtrls.dwICC = ICC_WIN95_CLASSES;
InitCommonControlsEx(&InitCtrls);
CWinApp::InitInstance();
AfxEnableControlContainer();
// 创建 shell 管理器,以防对话框包含
// 任何 shell 树视图控件或 shell 列表视图控件。
CShellManager *pShellManager = new CShellManager;
// 标准初始化
// 如果未使用这些功能并希望减小
// 最终可执行文件的大小,则应移除下列
// 不需要的特定初始化例程
// 更改用于存储设置的注册表项
// TODO: 应适当修改该字符串,
// 例如修改为公司或组织名
SetRegistryKey(_T("应用程序向导生成的本地应用程序"));
CMFC_Login_Demo_1Dlg dlg;
m_pMainWnd = &dlg;
INT_PTR nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: 在此放置处理何时用
// “确定”来关闭对话框的代码
}
else if (nResponse == IDCANCEL)
{
// TODO: 在此放置处理何时用
// “取消”来关闭对话框的代码
}
// 删除上面创建的 shell 管理器。
if (pShellManager != NULL)
{
delete pShellManager;
}
// 由于对话框已关闭,所以将返回 FALSE 以便退出应用程序,
// 而不是启动应用程序的消息泵。
return FALSE;
}
| [
"361425474@qq.com"
] | 361425474@qq.com |
627b568d1bca37e067f796178d0218bc98457cdb | 838dc19e767fcc83913489a4a7662e89ce3fa510 | /game/code/common/engine/network/serversocketmanager.cpp | 67fca7888ee800a9d78786737d6e3ea59a115f66 | [
"MIT"
] | permissive | justinctlam/MarbleStrike | b757df8c7f7b5961d87fd5f9b5c59e6af777e70e | 64fe36a5a4db2b299983b0e2556ab1cd8126259b | refs/heads/master | 2020-09-13T23:49:12.139990 | 2016-09-04T04:02:50 | 2016-09-04T04:02:50 | 67,262,851 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,455 | cpp | #if defined PLAT_PC
//////////////////////////////////////////////////////
// INCLUDES
//////////////////////////////////////////////////////
#include "common/engine/network/serversocketmanager.hpp"
#include "common/engine/network/serversocketmanager.hpp"
#include "common/engine/system/memory.hpp"
#include "common/engine/system/utilities.hpp"
//////////////////////////////////////////////////////
// GLOBALS
//////////////////////////////////////////////////////
//////////////////////////////////////////////////////
// CLASS METHODS
//////////////////////////////////////////////////////
#ifndef PLAT_IOS
ServerSocketManager::ServerSocketManager()
{
mNetworkListenerSocket = NEW_PTR( "Listener Socket" ) NetworkListenerSocket( this );
mNetworkListenerSocket->Initialize( 7090 );
mNetworkListenerSocket->SetOnAcceptConnectionCallback( &ServerSocketManager::OnAcceptConnectionCallback, this );
AddSocket( mNetworkListenerSocket );
}
//===========================================================================
ServerSocketManager::~ServerSocketManager()
{
}
//===========================================================================
void ServerSocketManager::OnAcceptConnectionCallback( void* data )
{
SOCKET newSocket = *( reinterpret_cast<SOCKET*>( data ) );
if ( newSocket != INVALID_SOCKET )
{
NetworkSocket* newNetworkSocket = mOnCreateGameSocketCallback( newSocket );
AddSocket( newNetworkSocket );
}
}
#endif
#endif | [
"justin.t.lam@gmail.com"
] | justin.t.lam@gmail.com |
db9819047d9c60aa058c3c139985e5a572d2dd1e | 4ec4cae236f59db82d4e2b688fb4b91ee4e1c198 | /Launch_v8/Launch_v8.ino | 3e89eae09005c5df5209a8e79c3d284c108aed61 | [] | no_license | dhkjk/LaunchControl | 3a6fcb317799de71b3b86bca072cd030dfde0de9 | cc9effde8b408e7948bdd90e40a3c9c3579cd53c | refs/heads/master | 2020-05-30T09:39:17.299968 | 2019-06-02T00:52:22 | 2019-06-02T00:52:22 | 189,651,183 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,184 | ino | //By: Dae Kim
//Second arduino file to test on car with encoder
#include <LiquidCrystal.h> //include LicquidCrystal Library
//variable for state
int state = 0;//current state
//int l_delay = encoder0Pos;//The amount of launch control delay
//LCD panel set-up
LiquidCrystal lcd(8, 9, 4, 5, 6, 7);
//I/O port setup
int REV_LIMITPORT = 11;
int LAUNCHPORT = 13;
int CLUTCHPORT = 12;
//encoder port setup
#define encoder0PinA 2
#define encoder0PinB 3
volatile unsigned int encoder0Pos = 0;
/*
void doEncoder() {
If pinA and pinB are both high or both low, it is spinning
forward. If they're different, it's going backward.
For more information on speeding up this process, see
[Reference/PortManipulation], specifically the PIND register.
if (digitalRead(encoder0PinA) == digitalRead(encoder0PinB)) {
encoder0Pos++;
} else {
encoder0Pos--;
}
}
*/
// define some values used by the panel and buttons
int lcd_key = 0;
int adc_key_in = 0;
#define btnRIGHT 0
#define btnUP 1
#define btnDOWN 2
#define btnLEFT 3
#define btnSELECT 4
#define btnNONE 5
// read the buttons
int read_LCD_buttons()
{
adc_key_in = analogRead(0); // read the value from the sensor
// my buttons when read are centered at these valies: 0, 144, 329, 504, 741
// we add approx 50 to those values and check to see if we are close
if (adc_key_in > 1000) return btnNONE; // We make this the 1st option for speed reasons since it will be the most likely result
// For V1.0 comment the other threshold and use the one below:
if (adc_key_in < 50) return btnRIGHT;
if (adc_key_in < 195) return btnUP;
if (adc_key_in < 380) return btnDOWN;
if (adc_key_in < 555) return btnLEFT;
if (adc_key_in < 790) return btnSELECT;
return btnNONE; // when all others fail, return this...
}
void setup() {
//encoder setup
//pinMode(encoder0PinA, INPUT);
//digitalWrite(encoder0PinA, HIGH); // turn on pull-up resistor
//pinMode(encoder0PinB, INPUT);
//digitalWrite(encoder0PinB, HIGH); // turn on pull-up resistor
//attachInterrupt(0, doEncoder, CHANGE); // encoder pin on interrupt 0 = pin 2
//Pin settings
pinMode (REV_LIMITPORT, OUTPUT); //Output to ECU Launch Control
pinMode (LAUNCHPORT, INPUT); //Launch Control switch
pinMode (CLUTCHPORT, INPUT); //Clutch switch
digitalWrite(LAUNCHPORT, HIGH); //Enable pull-up resistor
digitalWrite(CLUTCHPORT, HIGH); //Enable pull-up resistor
// set up the LCD's number of columns and rows:
lcd.begin(16, 2);
}
void loop() {
while(state == 0){ //Idle mode (waiting for launch control switch to be ON)
if (digitalRead(LAUNCHPORT) == LOW){
state = state +1;
}
/*if (encoder0Pos >= 10)
{
encoder0Pos = 10;
}
else if (encoder0Pos <= 0)
{
encoder0Pos = 0;
}
*/
else
{
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("state:IDLE");
lcd.setCursor(0, 1);
lcd.print(state);
lcd.setCursor(7, 1);
lcd.print(encoder0Pos);
delay(7);
}
}
while (state == 1){ //Launch Control ready mode, waiting for clutch release (If the clutch is letgo before launching wait 4ms then turn off the switch and then back on)
//What the rotary encoder will be doing
//delays were added to debounce
if (read_LCD_buttons() == btnUP)
{
encoder0Pos = encoder0Pos + 1;
delay(150);
}
else if (read_LCD_buttons() == btnDOWN)
{
encoder0Pos = encoder0Pos - 1;
delay(150);
}
//Setting the l_delay (launch delay)
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("state:LaunchRdy");
lcd.setCursor(0,1);
lcd.print(state);
lcd.setCursor(7,1);
lcd.print(encoder0Pos);
delay(5);
//While btnRIGHT is held down keep Rev Limiter on
while(digitalRead(CLUTCHPORT) == HIGH && digitalRead(LAUNCHPORT) == LOW){
digitalWrite(REV_LIMITPORT, HIGH);
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("state:LaunchON");
lcd.setCursor(0, 1);
lcd.print(state);
lcd.setCursor(7,1);
lcd.print(encoder0Pos);
delay(5);
if (digitalRead(CLUTCHPORT) == LOW){
state = state +1;
}
}
}
while (state == 2){ //Sustain mode
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("state:Sustain");
lcd.setCursor(0, 1);
lcd.print(state);
delay(encoder0Pos * 1000); //this is where the l_delay is going to go (a number is just added to make sure it was in Sustain mode)
state = state +1;
}
while (state ==3){ //Rev limiter OFF
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("state:OFF");
lcd.setCursor(0, 1);
lcd.print(state);
delay(2);
digitalWrite(REV_LIMITPORT, LOW);
delay(1000);//delay added just to check that it went to OFF state
state = state + 1;
}
while (state ==4){ //Wait for the Launch Control to be switched off to go back to ready
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("state:Wait");
lcd.setCursor(0, 1);
lcd.print(state);
delay(2);
if (digitalRead(LAUNCHPORT) == HIGH){
state = 0;
}
}
}
| [
"noreply@github.com"
] | noreply@github.com |
72b08d805ac18f77e70be0da437c052e2f80c9cc | 35e35a23b6f58374e457c5a4dbda349354bb752b | /角谷猜想.cpp | 79602741190b5f29b679bf471de1f681bf805c10 | [] | no_license | leoxie2006/cpp-learning | ec4dd6d1383f141c5f5785ed6ed2d1610d555f68 | 91594e9c2222bd5811711d59759372718266a990 | refs/heads/master | 2020-04-25T17:03:59.612609 | 2019-02-27T15:07:22 | 2019-02-27T15:07:22 | 172,933,647 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 226 | cpp | #include<bits/stdc++.h>
using namespace std;
int main(){
long long n;
cin>>n;
while( n!=1){
if(n%2!=0)
{
cout<<n<<"*3+1="<<n*3+1<<endl;
n = n*3+1;
}
else
{
cout<<n<<"/2="<<n/2<<endl;
n=n/2;
}
}
cout<<"End";
}
| [
"scfido@gmail.com"
] | scfido@gmail.com |
f88d025f4853f530a873815fde7eca4c52c6c4d4 | fab3938d5b5fbcacb01c383bfd9f9d2bf9a3d447 | /src/shortPathNameCmd.cpp | 7473d997f942374b5c5850415dec60f500a20eb0 | [
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-newlib-historical"
] | permissive | mayd/tcom | f44ea27f5e37f3cc4343097516ba7fb5e232bec5 | e26cf2d4a0e05e984f25e8648796cf9dd96a8333 | refs/heads/master | 2021-05-29T13:31:29.401514 | 2013-08-28T01:19:20 | 2013-08-28T01:21:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 573 | cpp | // $Id$
#include "Extension.h"
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
// This Tcl command returns the short path form of a input path.
int
Extension::shortPathNameCmd (
ClientData,
Tcl_Interp *interp,
int objc,
Tcl_Obj *CONST objv[])
{
if (objc != 2) {
Tcl_WrongNumArgs(interp, 1, objv, "inputPathName");
return TCL_ERROR;
}
char shortPath[MAX_PATH];
GetShortPathName(
Tcl_GetStringFromObj(objv[1], 0), shortPath, sizeof(shortPath));
Tcl_SetObjResult(interp, Tcl_NewStringObj(shortPath, -1));
return TCL_OK;
}
| [
"pukkaone@gmail.com"
] | pukkaone@gmail.com |
33023416b1d0ab711b84c36808bfe7ea87aba4aa | e24a366a7ac5dfb5975a468046c8626a9d56fa6d | /llvm/Source/llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.cpp | 26baac327082c7f1998b08c6562506de7a291161 | [
"MIT",
"NCSA",
"LLVM-exception",
"Apache-2.0"
] | permissive | fengjixuchui/iOS-Reverse | 01e17539bdbff7f2a783821010d3f36b5afba910 | 682a5204407131c29588dd22236babd1f8b2889d | refs/heads/master | 2021-06-26T17:25:41.993771 | 2021-02-11T10:33:32 | 2021-02-11T10:33:32 | 210,527,924 | 0 | 0 | MIT | 2021-02-11T10:33:33 | 2019-09-24T06:26:57 | null | UTF-8 | C++ | false | false | 13,021 | cpp | // WebAssemblyMCInstLower.cpp - Convert WebAssembly MachineInstr to an MCInst //
//
// 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
//
//===----------------------------------------------------------------------===//
///
/// \file
/// This file contains code to lower WebAssembly MachineInstrs to their
/// corresponding MCInst records.
///
//===----------------------------------------------------------------------===//
#include "WebAssemblyMCInstLower.h"
#include "WebAssemblyAsmPrinter.h"
#include "WebAssemblyMachineFunctionInfo.h"
#include "WebAssemblyRuntimeLibcallSignatures.h"
#include "MCTargetDesc/WebAssemblyMCTargetDesc.h"
#include "llvm/CodeGen/AsmPrinter.h"
#include "llvm/CodeGen/MachineFunction.h"
#include "llvm/IR/Constants.h"
#include "llvm/MC/MCAsmInfo.h"
#include "llvm/MC/MCContext.h"
#include "llvm/MC/MCExpr.h"
#include "llvm/MC/MCInst.h"
#include "llvm/MC/MCSymbolWasm.h"
#include "llvm/Support/ErrorHandling.h"
#include "llvm/Support/raw_ostream.h"
using namespace llvm;
// Defines llvm::WebAssembly::getStackOpcode to convert register instructions to
// stack instructions
#define GET_INSTRMAP_INFO 1
#include "WebAssemblyGenInstrInfo.inc"
// This disables the removal of registers when lowering into MC, as required
// by some current tests.
cl::opt<bool>
WasmKeepRegisters("wasm-keep-registers", cl::Hidden,
cl::desc("WebAssembly: output stack registers in"
" instruction output for test purposes only."),
cl::init(false));
static void removeRegisterOperands(const MachineInstr *MI, MCInst &OutMI);
MCSymbol *
WebAssemblyMCInstLower::GetGlobalAddressSymbol(const MachineOperand &MO) const {
const GlobalValue *Global = MO.getGlobal();
auto *WasmSym = cast<MCSymbolWasm>(Printer.getSymbol(Global));
if (const auto *FuncTy = dyn_cast<FunctionType>(Global->getValueType())) {
const MachineFunction &MF = *MO.getParent()->getParent()->getParent();
const TargetMachine &TM = MF.getTarget();
const Function &CurrentFunc = MF.getFunction();
SmallVector<MVT, 1> ResultMVTs;
SmallVector<MVT, 4> ParamMVTs;
computeSignatureVTs(FuncTy, CurrentFunc, TM, ParamMVTs, ResultMVTs);
auto Signature = signatureFromMVTs(ResultMVTs, ParamMVTs);
WasmSym->setSignature(Signature.get());
Printer.addSignature(std::move(Signature));
WasmSym->setType(wasm::WASM_SYMBOL_TYPE_FUNCTION);
}
return WasmSym;
}
MCSymbol *WebAssemblyMCInstLower::GetExternalSymbolSymbol(
const MachineOperand &MO) const {
const char *Name = MO.getSymbolName();
auto *WasmSym = cast<MCSymbolWasm>(Printer.GetExternalSymbolSymbol(Name));
const WebAssemblySubtarget &Subtarget = Printer.getSubtarget();
// Except for certain known symbols, all symbols used by CodeGen are
// functions. It's OK to hardcode knowledge of specific symbols here; this
// method is precisely there for fetching the signatures of known
// Clang-provided symbols.
if (strcmp(Name, "__stack_pointer") == 0 || strcmp(Name, "__tls_base") == 0 ||
strcmp(Name, "__memory_base") == 0 || strcmp(Name, "__table_base") == 0 ||
strcmp(Name, "__tls_size") == 0 || strcmp(Name, "__tls_align") == 0) {
bool Mutable =
strcmp(Name, "__stack_pointer") == 0 || strcmp(Name, "__tls_base") == 0;
WasmSym->setType(wasm::WASM_SYMBOL_TYPE_GLOBAL);
WasmSym->setGlobalType(wasm::WasmGlobalType{
uint8_t(Subtarget.hasAddr64() ? wasm::WASM_TYPE_I64
: wasm::WASM_TYPE_I32),
Mutable});
return WasmSym;
}
SmallVector<wasm::ValType, 4> Returns;
SmallVector<wasm::ValType, 4> Params;
if (strcmp(Name, "__cpp_exception") == 0) {
WasmSym->setType(wasm::WASM_SYMBOL_TYPE_EVENT);
// We can't confirm its signature index for now because there can be
// imported exceptions. Set it to be 0 for now.
WasmSym->setEventType(
{wasm::WASM_EVENT_ATTRIBUTE_EXCEPTION, /* SigIndex */ 0});
// We may have multiple C++ compilation units to be linked together, each of
// which defines the exception symbol. To resolve them, we declare them as
// weak.
WasmSym->setWeak(true);
WasmSym->setExternal(true);
// All C++ exceptions are assumed to have a single i32 (for wasm32) or i64
// (for wasm64) param type and void return type. The reaon is, all C++
// exception values are pointers, and to share the type section with
// functions, exceptions are assumed to have void return type.
Params.push_back(Subtarget.hasAddr64() ? wasm::ValType::I64
: wasm::ValType::I32);
} else { // Function symbols
WasmSym->setType(wasm::WASM_SYMBOL_TYPE_FUNCTION);
getLibcallSignature(Subtarget, Name, Returns, Params);
}
auto Signature =
make_unique<wasm::WasmSignature>(std::move(Returns), std::move(Params));
WasmSym->setSignature(Signature.get());
Printer.addSignature(std::move(Signature));
return WasmSym;
}
MCOperand WebAssemblyMCInstLower::lowerSymbolOperand(const MachineOperand &MO,
MCSymbol *Sym) const {
MCSymbolRefExpr::VariantKind Kind = MCSymbolRefExpr::VK_None;
unsigned TargetFlags = MO.getTargetFlags();
switch (TargetFlags) {
case WebAssemblyII::MO_NO_FLAG:
break;
case WebAssemblyII::MO_GOT:
Kind = MCSymbolRefExpr::VK_GOT;
break;
case WebAssemblyII::MO_MEMORY_BASE_REL:
Kind = MCSymbolRefExpr::VK_WASM_MBREL;
break;
case WebAssemblyII::MO_TABLE_BASE_REL:
Kind = MCSymbolRefExpr::VK_WASM_TBREL;
break;
default:
llvm_unreachable("Unknown target flag on GV operand");
}
const MCExpr *Expr = MCSymbolRefExpr::create(Sym, Kind, Ctx);
if (MO.getOffset() != 0) {
const auto *WasmSym = cast<MCSymbolWasm>(Sym);
if (TargetFlags == WebAssemblyII::MO_GOT)
report_fatal_error("GOT symbol references do not support offsets");
if (WasmSym->isFunction())
report_fatal_error("Function addresses with offsets not supported");
if (WasmSym->isGlobal())
report_fatal_error("Global indexes with offsets not supported");
if (WasmSym->isEvent())
report_fatal_error("Event indexes with offsets not supported");
Expr = MCBinaryExpr::createAdd(
Expr, MCConstantExpr::create(MO.getOffset(), Ctx), Ctx);
}
return MCOperand::createExpr(Expr);
}
// Return the WebAssembly type associated with the given register class.
static wasm::ValType getType(const TargetRegisterClass *RC) {
if (RC == &WebAssembly::I32RegClass)
return wasm::ValType::I32;
if (RC == &WebAssembly::I64RegClass)
return wasm::ValType::I64;
if (RC == &WebAssembly::F32RegClass)
return wasm::ValType::F32;
if (RC == &WebAssembly::F64RegClass)
return wasm::ValType::F64;
if (RC == &WebAssembly::V128RegClass)
return wasm::ValType::V128;
llvm_unreachable("Unexpected register class");
}
void WebAssemblyMCInstLower::lower(const MachineInstr *MI,
MCInst &OutMI) const {
OutMI.setOpcode(MI->getOpcode());
const MCInstrDesc &Desc = MI->getDesc();
for (unsigned I = 0, E = MI->getNumOperands(); I != E; ++I) {
const MachineOperand &MO = MI->getOperand(I);
MCOperand MCOp;
switch (MO.getType()) {
default:
MI->print(errs());
llvm_unreachable("unknown operand type");
case MachineOperand::MO_MachineBasicBlock:
MI->print(errs());
llvm_unreachable("MachineBasicBlock operand should have been rewritten");
case MachineOperand::MO_Register: {
// Ignore all implicit register operands.
if (MO.isImplicit())
continue;
const WebAssemblyFunctionInfo &MFI =
*MI->getParent()->getParent()->getInfo<WebAssemblyFunctionInfo>();
unsigned WAReg = MFI.getWAReg(MO.getReg());
MCOp = MCOperand::createReg(WAReg);
break;
}
case MachineOperand::MO_Immediate:
if (I < Desc.NumOperands) {
const MCOperandInfo &Info = Desc.OpInfo[I];
if (Info.OperandType == WebAssembly::OPERAND_TYPEINDEX) {
MCSymbol *Sym = Printer.createTempSymbol("typeindex");
SmallVector<wasm::ValType, 4> Returns;
SmallVector<wasm::ValType, 4> Params;
const MachineRegisterInfo &MRI =
MI->getParent()->getParent()->getRegInfo();
for (const MachineOperand &MO : MI->defs())
Returns.push_back(getType(MRI.getRegClass(MO.getReg())));
for (const MachineOperand &MO : MI->explicit_uses())
if (MO.isReg())
Params.push_back(getType(MRI.getRegClass(MO.getReg())));
// call_indirect instructions have a callee operand at the end which
// doesn't count as a param.
if (WebAssembly::isCallIndirect(MI->getOpcode()))
Params.pop_back();
// return_call_indirect instructions have the return type of the
// caller
if (MI->getOpcode() == WebAssembly::RET_CALL_INDIRECT) {
const Function &F = MI->getMF()->getFunction();
const TargetMachine &TM = MI->getMF()->getTarget();
Type *RetTy = F.getReturnType();
SmallVector<MVT, 4> CallerRetTys;
computeLegalValueVTs(F, TM, RetTy, CallerRetTys);
valTypesFromMVTs(CallerRetTys, Returns);
}
auto *WasmSym = cast<MCSymbolWasm>(Sym);
auto Signature = make_unique<wasm::WasmSignature>(std::move(Returns),
std::move(Params));
WasmSym->setSignature(Signature.get());
Printer.addSignature(std::move(Signature));
WasmSym->setType(wasm::WASM_SYMBOL_TYPE_FUNCTION);
const MCExpr *Expr = MCSymbolRefExpr::create(
WasmSym, MCSymbolRefExpr::VK_WASM_TYPEINDEX, Ctx);
MCOp = MCOperand::createExpr(Expr);
break;
}
}
MCOp = MCOperand::createImm(MO.getImm());
break;
case MachineOperand::MO_FPImmediate: {
// TODO: MC converts all floating point immediate operands to double.
// This is fine for numeric values, but may cause NaNs to change bits.
const ConstantFP *Imm = MO.getFPImm();
if (Imm->getType()->isFloatTy())
MCOp = MCOperand::createFPImm(Imm->getValueAPF().convertToFloat());
else if (Imm->getType()->isDoubleTy())
MCOp = MCOperand::createFPImm(Imm->getValueAPF().convertToDouble());
else
llvm_unreachable("unknown floating point immediate type");
break;
}
case MachineOperand::MO_GlobalAddress:
MCOp = lowerSymbolOperand(MO, GetGlobalAddressSymbol(MO));
break;
case MachineOperand::MO_ExternalSymbol:
// The target flag indicates whether this is a symbol for a
// variable or a function.
assert(MO.getTargetFlags() == 0 &&
"WebAssembly uses only symbol flags on ExternalSymbols");
MCOp = lowerSymbolOperand(MO, GetExternalSymbolSymbol(MO));
break;
case MachineOperand::MO_MCSymbol:
// This is currently used only for LSDA symbols (GCC_except_table),
// because global addresses or other external symbols are handled above.
assert(MO.getTargetFlags() == 0 &&
"WebAssembly does not use target flags on MCSymbol");
MCOp = lowerSymbolOperand(MO, MO.getMCSymbol());
break;
}
OutMI.addOperand(MCOp);
}
if (!WasmKeepRegisters)
removeRegisterOperands(MI, OutMI);
}
static void removeRegisterOperands(const MachineInstr *MI, MCInst &OutMI) {
// Remove all uses of stackified registers to bring the instruction format
// into its final stack form used thruout MC, and transition opcodes to
// their _S variant.
// We do this seperate from the above code that still may need these
// registers for e.g. call_indirect signatures.
// See comments in lib/Target/WebAssembly/WebAssemblyInstrFormats.td for
// details.
// TODO: the code above creates new registers which are then removed here.
// That code could be slightly simplified by not doing that, though maybe
// it is simpler conceptually to keep the code above in "register mode"
// until this transition point.
// FIXME: we are not processing inline assembly, which contains register
// operands, because it is used by later target generic code.
if (MI->isDebugInstr() || MI->isLabel() || MI->isInlineAsm())
return;
// Transform to _S instruction.
auto RegOpcode = OutMI.getOpcode();
auto StackOpcode = WebAssembly::getStackOpcode(RegOpcode);
assert(StackOpcode != -1 && "Failed to stackify instruction");
OutMI.setOpcode(StackOpcode);
// Remove register operands.
for (auto I = OutMI.getNumOperands(); I; --I) {
auto &MO = OutMI.getOperand(I - 1);
if (MO.isReg()) {
OutMI.erase(&MO);
}
}
}
| [
"374619540@qq.com"
] | 374619540@qq.com |
7445547170a0014869d5019a4b648ffdc6ea2626 | e7aeb9c49f0d35caa1cea7f416ee1d238c8a2426 | /HDUOJ/HDU2041-超级楼梯.cpp | 731dad53359331d052cfa8f0d73c4e3de0b0614e | [] | no_license | protectors/ACM | 1ee0c2ade796c5bda80fc0551647661c2b40c65a | a9b33912d8763c6af37fbbae4135b2761a69a2a8 | refs/heads/master | 2022-07-26T13:57:40.590234 | 2022-06-21T03:41:13 | 2022-06-21T03:41:13 | 85,793,349 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 305 | cpp | #include <iostream>
#include <cstdio>
#include <string>
#include <cctype>
using namespace std;
int main(){
int f[50];
f[1]=f[2]=1;
for(int i=3;i<50;i++){
f[i]=f[i-1]+f[i-2];
}
int n,m;
cin>>n;
while(n--){
cin>>m;
cout<<f[m]<<endl;
}
return 0;
}
| [
"1176136493@qq.com"
] | 1176136493@qq.com |
7b0ce5523b8d1964fd61e8abc6d5d620e074e2c2 | 94169668fb1b0a55c2516e8f1c84b586388884bf | /examples/wheels/single_line_follower/single_line_follower.ino | 07412c4f8dcd4c35601cfcb70bc859d395d70799 | [
"BSD-3-Clause",
"BSD-2-Clause"
] | permissive | Dannydhb/OttoDIYLib | 8ed914a8756a8b46b7763b278639c891b509ef54 | 03a60b03f001368196f22b8339631d830edb214f | refs/heads/master | 2023-01-06T04:22:58.851876 | 2020-11-01T11:38:24 | 2020-11-01T11:38:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,847 | ino | #include <Servo.h> //arduino library
#include <math.h> //standard c library
Servo rightServo;
Servo leftServo;
int desiredMouth;
int rightSpeed = 0;
int leftSpeed = 0;
int command;
int ready = 0;
//+++++++++++++++FUNCTION DECLARATIONS+++++++++++++++++++++++++++
void motorControl(int rightSpeed, int leftSpeed, Servo theRightServo, Servo theLeftServo);
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
int Sensor = A5;
int sensorValue = 0;
unsigned long SetPoint;
unsigned long programTime;
const unsigned long period = 4000; //sets period equal to 4250 milliseconds
void setup () {
Serial.begin(9600);
rightServo.attach(3); //pin s9 on Meped
leftServo.attach(2);
Serial.setTimeout(50); //ensures the the arduino does not read serial for too long
Serial.println("started");
}
void loop () {
int count = 0;
sensorValue = analogRead (Sensor);
Serial.print("Initial Read: ");
Serial.print(sensorValue);
if(sensorValue > 520){ //takes values that are greater than 520 and converts them to 845
sensorValue = 845;
Serial.print("first if: ");
Serial.print(sensorValue);
}
if(sensorValue <= 520){ //takes values that are less than or equal to 520 and converts them to 145
sensorValue = 145;
Serial.print("Second if: ");
Serial.print(sensorValue);
}
Serial.print("sensor 520: ");
Serial.print(sensorValue);
if (sensorValue == 845) //if the sensor value is equal to 845 the right servo starts moving
{
rightSpeed = -25;
leftSpeed = 0;
motorControl(rightSpeed,leftSpeed, rightServo, leftServo);
Serial.print("SensorValue1: ");
Serial.println(sensorValue);
SetPoint = programTime; //sets the current time equal to the program time using millis()
}
if (sensorValue == 145){ //if the sensorValue is equal to 145 the program starts this set
Serial.print("SensorValue2: ");
Serial.println(sensorValue);
programTime = millis(); //declares programTime equal to the millis() time clock.
count++; //takes the count integer and adds 1 to it
if(count==1){ //if count is equal to one the program enters this for statement
for(count=0; count==1; count++){ //makes count equal to zero, if count is equal to 1 exit the for loop, add one to count after every iteration
SetPoint = millis(); //Sets a certain point in the millis() timeline known as currentTime
Serial.print("Count: ");
Serial.println(count);
}
}
if (programTime - SetPoint <= period){ //subtracts the SetPoint or currenTime from the program time and if the is less than the period or 4250 milliseconds; it goes through the if statement
rightSpeed = 0;
leftSpeed = -17; //left servo moves forward
motorControl(rightSpeed,leftSpeed, rightServo, leftServo);
}
if (programTime - SetPoint > period){ //if the set point subtracted from the program time is greater than the period enter the if statement
rightSpeed = -25; //right servo moves forward
leftSpeed = 17;
motorControl(rightSpeed,leftSpeed, rightServo, leftServo);
count= 0;
}
Serial.print("Program Time: ");
Serial.print(programTime);
Serial.print("SetPoint: ");
Serial.print(SetPoint);
Serial.print("Right Speed: ");
Serial.print(rightSpeed);
Serial.print("left Speed: ");
Serial.print(leftSpeed);
}
}
//++++++++++++++++++++++++++++++FUNCTION DEFINITIONS++++++++++++++++++++++++++++++++++++++++++
void motorControl(int rightSpeed, int leftSpeed, Servo theRightServo, Servo theLeftServo){
//Set all of the servo positions
theRightServo.write(90 - rightSpeed); //compensate for the 0-180, -90-90 relationship
theLeftServo.write(90 + leftSpeed);
//mouthServo.write(desiredMouth);
}
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
| [
"cparrapa@gmail.com"
] | cparrapa@gmail.com |
6fb707cb36f340f3a49deb38ddc23749ad0a4d00 | 5a2349399fa9d57c6e8cc6e0f7226d683391a362 | /src/qt/qtwebkit/Source/JavaScriptCore/dfg/DFGDominators.cpp | 0b23d96a73d228f62de810fcdb7d44122dcf6331 | [
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-other-copyleft",
"GPL-2.0-only",
"LGPL-2.0-or-later",
"GPL-1.0-or-later",
"LGPL-2.0-only",
"BSD-3-Clause"
] | permissive | aharthcock/phantomjs | e70f3c379dcada720ec8abde3f7c09a24808154c | 7d7f2c862347fbc7215c849e790290b2e07bab7c | refs/heads/master | 2023-03-18T04:58:32.428562 | 2023-03-14T05:52:52 | 2023-03-14T05:52:52 | 24,828,890 | 0 | 0 | BSD-3-Clause | 2023-03-14T05:52:53 | 2014-10-05T23:38:56 | C++ | UTF-8 | C++ | false | false | 3,298 | cpp | /*
* Copyright (C) 2011 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "DFGDominators.h"
#if ENABLE(DFG_JIT)
#include "DFGGraph.h"
namespace JSC { namespace DFG {
Dominators::Dominators()
: m_valid(false)
{
}
Dominators::~Dominators()
{
}
void Dominators::compute(Graph& graph)
{
// This implements a naive dominator solver.
ASSERT(graph.m_blocks[0]->m_predecessors.isEmpty());
unsigned numBlocks = graph.m_blocks.size();
if (numBlocks > m_results.size()) {
m_results.grow(numBlocks);
for (unsigned i = numBlocks; i--;)
m_results[i].resize(numBlocks);
m_scratch.resize(numBlocks);
}
m_results[0].clearAll();
m_results[0].set(0);
m_scratch.clearAll();
for (unsigned i = numBlocks; i--;) {
if (!graph.m_blocks[i])
continue;
m_scratch.set(i);
}
for (unsigned i = numBlocks; i-- > 1;) {
if (!graph.m_blocks[i] || graph.m_blocks[i]->m_predecessors.isEmpty())
m_results[i].clearAll();
else
m_results[i].set(m_scratch);
}
bool changed;
do {
changed = false;
for (unsigned i = 1; i < numBlocks; ++i)
changed |= iterateForBlock(graph, i);
if (!changed)
break;
changed = false;
for (unsigned i = numBlocks; i-- > 1;)
changed |= iterateForBlock(graph, i);
} while (changed);
m_valid = true;
}
bool Dominators::iterateForBlock(Graph& graph, BlockIndex i)
{
BasicBlock* block = graph.m_blocks[i].get();
if (!block)
return false;
if (block->m_predecessors.isEmpty())
return false;
m_scratch.set(m_results[block->m_predecessors[0]]);
for (unsigned j = block->m_predecessors.size(); j-- > 1;)
m_scratch.filter(m_results[block->m_predecessors[j]]);
m_scratch.set(i);
return m_results[i].setAndCheck(m_scratch);
}
} } // namespace JSC::DFG
#endif // ENABLE(DFG_JIT)
| [
"ariya.hidayat@gmail.com"
] | ariya.hidayat@gmail.com |
86437f2c3320b69f4af15f6f480949945cdf00be | 78918391a7809832dc486f68b90455c72e95cdda | /boost_lib/boost/process/detail/async_handler.hpp | b17dacd1e6705789be7af4109b936ced46c5a170 | [
"MIT"
] | permissive | kyx0r/FA_Patcher | 50681e3e8bb04745bba44a71b5fd04e1004c3845 | 3f539686955249004b4483001a9e49e63c4856ff | refs/heads/master | 2022-03-28T10:03:28.419352 | 2020-01-02T09:16:30 | 2020-01-02T09:16:30 | 141,066,396 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,776 | hpp | /*
* async_handler.hpp
*
* Created on: 12.06.2016
* Author: Klemens
*/
#ifndef BOOST_PROCESS_DETAIL_ASYNC_HANDLER_HPP_
#define BOOST_PROCESS_DETAIL_ASYNC_HANDLER_HPP_
#include <type_traits>
#if defined(BOOST_POSIX_API)
#include <boost/process/posix.hpp>
#include <boost/process/detail/posix/async_handler.hpp>
#include <boost/process/detail/posix/asio_fwd.hpp>
#else
#include <boost/process/detail/windows/async_handler.hpp>
#include <boost/process/detail/windows/asio_fwd.hpp>
#endif
namespace boost
{
namespace process
{
namespace detail
{
#if defined(BOOST_POSIX_API)
using ::boost::process::detail::posix::is_async_handler;
using ::boost::process::detail::posix::does_require_io_context;
#else
using ::boost::process::detail::windows::is_async_handler;
using ::boost::process::detail::windows::does_require_io_context;
#endif
template<typename ...Args>
struct has_io_context;
template<typename T, typename ...Args>
struct has_io_context<T, Args...>
{
typedef typename has_io_context<Args...>::type next;
typedef typename std::is_same<
typename std::remove_reference<T>::type,
boost::asio::io_context>::type is_ios;
typedef typename std::conditional<is_ios::value,
std::true_type,
next>::type type;
};
template<typename T>
struct has_io_context<T>
{
typedef typename std::is_same<
typename std::remove_reference<T>::type,
boost::asio::io_context>::type type;
};
template<typename ...Args>
using has_io_context_t = typename has_io_context<Args...>::type;
template<typename ...Args>
struct has_async_handler;
template<typename T, typename ...Args>
struct has_async_handler<T, Args...>
{
typedef typename has_async_handler<Args...>::type next;
typedef typename is_async_handler<T>::type is_ios;
typedef typename std::conditional<is_ios::value,
std::true_type,
next>::type type;
};
template<typename T>
struct has_async_handler<T>
{
typedef typename is_async_handler<T>::type type;
};
template<typename ...Args>
struct needs_io_context;
template<typename T, typename ...Args>
struct needs_io_context<T, Args...>
{
typedef typename needs_io_context<Args...>::type next;
typedef typename does_require_io_context<T>::type is_ios;
typedef typename std::conditional<is_ios::value,
std::true_type,
next>::type type;
};
template<typename T>
struct needs_io_context<T>
{
typedef typename does_require_io_context<T>::type type;
};
template<typename ...Args>
boost::asio::io_context &get_io_context_var(boost::asio::io_context & f, Args&...)
{
return f;
}
template<typename First, typename ...Args>
boost::asio::io_context &get_io_context_var(First&, Args&...args)
{
return get_io_context_var(args...);
}
}
}
}
#endif /* BOOST_PROCESS_DETAIL_ASYNC_HANDLER_HPP_ */
| [
"k.melekhin@gmail.com"
] | k.melekhin@gmail.com |
bce70d976fe69186fb7ad4c25acb0f26d9e8e0fd | 43a54d76227b48d851a11cc30bbe4212f59e1154 | /lighthouse/src/v20200324/model/ImportKeyPairResponse.cpp | e50b8cffe68f52458b2bb45bdb73c9e19ad0be62 | [
"Apache-2.0"
] | permissive | make1122/tencentcloud-sdk-cpp | 175ce4d143c90d7ea06f2034dabdb348697a6c1c | 2af6954b2ee6c9c9f61489472b800c8ce00fb949 | refs/heads/master | 2023-06-04T03:18:47.169750 | 2021-06-18T03:00:01 | 2021-06-18T03:00:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,967 | cpp | /*
* Copyright (c) 2017-2019 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <tencentcloud/lighthouse/v20200324/model/ImportKeyPairResponse.h>
#include <tencentcloud/core/utils/rapidjson/document.h>
#include <tencentcloud/core/utils/rapidjson/writer.h>
#include <tencentcloud/core/utils/rapidjson/stringbuffer.h>
using TencentCloud::CoreInternalOutcome;
using namespace TencentCloud::Lighthouse::V20200324::Model;
using namespace std;
ImportKeyPairResponse::ImportKeyPairResponse() :
m_keyIdHasBeenSet(false)
{
}
CoreInternalOutcome ImportKeyPairResponse::Deserialize(const string &payload)
{
rapidjson::Document d;
d.Parse(payload.c_str());
if (d.HasParseError() || !d.IsObject())
{
return CoreInternalOutcome(Error("response not json format"));
}
if (!d.HasMember("Response") || !d["Response"].IsObject())
{
return CoreInternalOutcome(Error("response `Response` is null or not object"));
}
rapidjson::Value &rsp = d["Response"];
if (!rsp.HasMember("RequestId") || !rsp["RequestId"].IsString())
{
return CoreInternalOutcome(Error("response `Response.RequestId` is null or not string"));
}
string requestId(rsp["RequestId"].GetString());
SetRequestId(requestId);
if (rsp.HasMember("Error"))
{
if (!rsp["Error"].IsObject() ||
!rsp["Error"].HasMember("Code") || !rsp["Error"]["Code"].IsString() ||
!rsp["Error"].HasMember("Message") || !rsp["Error"]["Message"].IsString())
{
return CoreInternalOutcome(Error("response `Response.Error` format error").SetRequestId(requestId));
}
string errorCode(rsp["Error"]["Code"].GetString());
string errorMsg(rsp["Error"]["Message"].GetString());
return CoreInternalOutcome(Error(errorCode, errorMsg).SetRequestId(requestId));
}
if (rsp.HasMember("KeyId") && !rsp["KeyId"].IsNull())
{
if (!rsp["KeyId"].IsString())
{
return CoreInternalOutcome(Error("response `KeyId` IsString=false incorrectly").SetRequestId(requestId));
}
m_keyId = string(rsp["KeyId"].GetString());
m_keyIdHasBeenSet = true;
}
return CoreInternalOutcome(true);
}
string ImportKeyPairResponse::GetKeyId() const
{
return m_keyId;
}
bool ImportKeyPairResponse::KeyIdHasBeenSet() const
{
return m_keyIdHasBeenSet;
}
| [
"tencentcloudapi@tenent.com"
] | tencentcloudapi@tenent.com |
3cb5eff78ea73f325a3ed046b8e1b1ed5585eabd | 14cb167d800ff88304338d995a664f7ec87e8c9f | /src/nbla/function/sink.cpp | 23939f22ca96d48ee90a863aa619ec3f5f6ea95c | [
"Apache-2.0"
] | permissive | enomotom/nnabla | 4618ee7b5484d87a2cf2a526e0e5b27b75091835 | 1947fe16a0a41d19d76cd916f151aa1991ea1b44 | refs/heads/master | 2021-07-12T01:10:06.030174 | 2017-10-13T01:09:40 | 2017-10-13T01:09:40 | 107,018,396 | 1 | 0 | null | 2017-10-15T14:15:18 | 2017-10-15T14:15:18 | null | UTF-8 | C++ | false | false | 1,439 | cpp | // Copyright (c) 2017 Sony Corporation. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
/** Sink
*/
#include <nbla/array.hpp>
#include <nbla/function/sink.hpp>
#include <nbla/variable.hpp>
#include <algorithm>
namespace nbla {
NBLA_REGISTER_FUNCTION_SOURCE(Sink, bool);
template <typename T>
void Sink<T>::setup_impl(const Variables &inputs, const Variables &outputs) {
outputs[0]->reshape({}, true);
}
template <typename T>
void Sink<T>::forward_impl(const Variables &inputs, const Variables &outputs) {}
template <typename T>
void Sink<T>::backward_impl(const Variables &inputs, const Variables &outputs,
const vector<bool> &propagate_down,
const vector<bool> &accum) {
if (one_input_grad_) {
for (auto inp : inputs) {
inp->grad()->fill(1);
}
}
}
// Template instanciation
template class Sink<float>;
} // namespace nbla
| [
"Takuya.Narihira@jp.sony.com"
] | Takuya.Narihira@jp.sony.com |
39473284c2d59e646a9573f6af085da37098a91f | ab7debe66fa950e2bb83b80f1fb33f94625b9a5e | /CC/lab2/main.cpp | f655873da6ed40838e8c37e84a2b2d7f376194f9 | [] | no_license | TaEduard/HWCC | 3f2c0b8771ac43f3bd5c5f1d9fbe51eeb436d3f7 | 981368cb89e1bdbadf1575cff3a31844d4135f41 | refs/heads/master | 2022-09-05T19:59:53.532475 | 2020-05-22T04:58:12 | 2020-05-22T04:58:12 | 264,238,567 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,174 | cpp | /* decltype vs auto*/
#include <iostream>
#include <bits/stdc++.h>
#include <iostream>
#include <vector>
using namespace std;
int global{};
int& foo()
{
return global;
}
int labwork1()
{
cout<<'\n'<<"labwork1 start ------------------------------"<<'\n';
decltype(foo()) a = foo();
auto b = foo();
b = 2;
std::cout << "a: " << a << '\n';
std::cout << "b: " << b << '\n';
auto c = foo();
c = 10;
std::cout << "a: " << a << '\n';
std::cout << "b: " << b << '\n';
std::cout << "c: " << c << '\n';
cout<<'\n'<<"labwork1 end ------------------------------"<<'\n';
return 0;
}
/* Write a class that has a constexpr defined constructor and method. Declare an object of this class and call the method.*/
class Circle
{
float _pi;
int _r;
public:
// A constexpr constructor
constexpr Circle (float pi, int r) : _pi(pi), _r(r) {}
constexpr int getArea () { return _pi * (_r*_r); }
};
int labwork2()
{
cout<<'\n'<<"labwork2 start ------------------------------"<<'\n';
// Below object is initialized at compile time
constexpr Circle obj(3.14, 20);
cout << obj.getArea();
cout<<'\n'<<"labwork2 end ------------------------------"<<'\n';
return 0;
}
int homework()
{
cout<<'\n'<<"hw2 start ------------------------------"<<'\n';
int f,l,n;
std::vector<int> v= {0,1,2,3,4,4,5,6,7,8,9};
for (auto i:v)
cout<<i<<" ";
cout<<'\n';
for (auto i = v.begin(); i != v.end(); ++i)
{
if (*i % 2 != 0)
{
v.erase(i);
i--;
}
}
for (auto it = v.begin(); it != v.end(); ++it)
cout << ' ' << *it <<'\n';
*(v.begin())=999;
*(v.end()-1)=111;
for (auto j = v.begin(); j != v.end(); ++j)
cout << ' ' << *j;
cout<<'\n';
v.erase(v.begin()+4);
for (auto f = v.begin(); f != v.end(); ++f)
cout << ' ' << *f;
cout<<'\n'<<"hw2 end ------------------------------"<<'\n';
return 0;
}
int main()
{
labwork1();
labwork2();
homework();
return 0;
}
| [
"noreply@github.com"
] | noreply@github.com |
625f6aebff359ba16d440e3f174db8113e1d7c0c | 2dc9ab0ec71fd31900173fb15a6f2c85753180c4 | /ash/login/ui/lock_contents_view_unittest.cc | 6e6c7bad39f9c24cee8eb6ecd75e43d57df0d660 | [
"BSD-3-Clause"
] | permissive | Forilan/chromium | ec337c30d23c22d11fbdf814a40b9b4c26000d78 | 562b20b68672e7831054ec8f160d5f7ae940eae4 | refs/heads/master | 2023-02-28T02:43:17.744240 | 2020-05-12T02:23:44 | 2020-05-12T02:23:44 | 231,539,724 | 0 | 0 | BSD-3-Clause | 2020-05-12T02:23:45 | 2020-01-03T07:52:37 | null | UTF-8 | C++ | false | false | 120,697 | cc | // Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/login/ui/lock_contents_view.h"
#include <memory>
#include <string>
#include <unordered_set>
#include <utility>
#include "ash/detachable_base/detachable_base_pairing_status.h"
#include "ash/login/login_screen_controller.h"
#include "ash/login/mock_login_screen_client.h"
#include "ash/login/parent_access_controller.h"
#include "ash/login/ui/arrow_button_view.h"
#include "ash/login/ui/fake_login_detachable_base_model.h"
#include "ash/login/ui/lock_screen.h"
#include "ash/login/ui/lock_screen_media_controls_view.h"
#include "ash/login/ui/login_auth_user_view.h"
#include "ash/login/ui/login_big_user_view.h"
#include "ash/login/ui/login_display_style.h"
#include "ash/login/ui/login_expanded_public_account_view.h"
#include "ash/login/ui/login_keyboard_test_base.h"
#include "ash/login/ui/login_pin_view.h"
#include "ash/login/ui/login_public_account_user_view.h"
#include "ash/login/ui/login_test_base.h"
#include "ash/login/ui/login_test_utils.h"
#include "ash/login/ui/login_user_view.h"
#include "ash/login/ui/scrollable_users_list_view.h"
#include "ash/login/ui/views_utils.h"
#include "ash/public/cpp/ash_features.h"
#include "ash/public/cpp/ash_pref_names.h"
#include "ash/public/cpp/login_screen_test_api.h"
#include "ash/public/mojom/tray_action.mojom.h"
#include "ash/root_window_controller.h"
#include "ash/session/session_controller_impl.h"
#include "ash/shelf/shelf.h"
#include "ash/shelf/shelf_navigation_widget.h"
#include "ash/shelf/shelf_widget.h"
#include "ash/shell.h"
#include "ash/system/power/backlights_forced_off_setter.h"
#include "ash/system/power/power_button_controller.h"
#include "ash/system/status_area_widget.h"
#include "ash/tray_action/test_tray_action_client.h"
#include "ash/tray_action/tray_action.h"
#include "base/strings/utf_string_conversions.h"
#include "base/test/scoped_feature_list.h"
#include "base/test/simple_test_tick_clock.h"
#include "base/timer/mock_timer.h"
#include "chromeos/dbus/power/fake_power_manager_client.h"
#include "chromeos/dbus/power_manager/suspend.pb.h"
#include "components/prefs/pref_service.h"
#include "services/media_session/public/mojom/media_session.mojom.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/display/manager/display_manager.h"
#include "ui/display/test/display_manager_test_api.h"
#include "ui/events/test/event_generator.h"
#include "ui/gfx/geometry/rect.h"
#include "ui/views/controls/textfield/textfield.h"
#include "ui/views/view.h"
#include "ui/views/widget/widget.h"
using ::testing::_;
using ::testing::IsNull;
using ::testing::Mock;
namespace ash {
namespace {
void PressAndReleasePowerButton() {
base::SimpleTestTickClock tick_clock;
auto dispatch_power_button_event_after_delay =
[&](const base::TimeDelta& delta, bool down) {
tick_clock.Advance(delta + base::TimeDelta::FromMilliseconds(1));
Shell::Get()->power_button_controller()->OnPowerButtonEvent(
down, tick_clock.NowTicks());
base::RunLoop().RunUntilIdle();
};
// Press and release the power button to force backlights off.
dispatch_power_button_event_after_delay(
PowerButtonController::kIgnorePowerButtonAfterResumeDelay, true /*down*/);
dispatch_power_button_event_after_delay(
PowerButtonController::kIgnoreRepeatedButtonUpDelay, false /*down*/);
}
void SimulateMediaSessionChanged(
LockScreenMediaControlsView* media_controls,
media_session::mojom::MediaPlaybackState playback_state) {
// Simulate media session change.
media_controls->MediaSessionChanged(base::UnguessableToken::Create());
// Create media session information.
media_session::mojom::MediaSessionInfoPtr session_info(
media_session::mojom::MediaSessionInfo::New());
session_info->playback_state = playback_state;
// Simulate media session information change.
media_controls->MediaSessionInfoChanged(std::move(session_info));
}
// Returns sample AuthDisabledData to be used in tests, if the details are not
// important.
AuthDisabledData GetTestDisabledAuthData() {
return AuthDisabledData(ash::AuthDisabledReason::kTimeWindowLimit,
base::Time::Now() + base::TimeDelta::FromHours(8),
base::TimeDelta::FromHours(1),
true /*disable_lock_screen_media*/);
}
} // namespace
using LockContentsViewUnitTest = LoginTestBase;
using LockContentsViewKeyboardUnitTest = LoginKeyboardTestBase;
TEST_F(LockContentsViewUnitTest, DisplayMode) {
// Build lock screen with 1 user.
auto* contents = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
SetUserCount(1);
std::unique_ptr<views::Widget> widget = CreateWidgetWithContent(contents);
// Verify user list and secondary auth are not shown for one user.
LockContentsView::TestApi lock_contents(contents);
EXPECT_EQ(nullptr, lock_contents.users_list());
EXPECT_FALSE(lock_contents.opt_secondary_big_view());
// Verify user list is not shown for two users, but secondary auth is.
SetUserCount(2);
EXPECT_EQ(nullptr, lock_contents.users_list());
EXPECT_TRUE(lock_contents.opt_secondary_big_view());
// Verify user names and pod style is set correctly for 3-25 users. This also
// sanity checks that LockContentsView can respond to a multiple user change
// events fired from the data dispatcher, which is needed for the debug UI.
for (size_t user_count = 3; user_count < 25; ++user_count) {
SetUserCount(user_count);
ScrollableUsersListView::TestApi users_list(lock_contents.users_list());
EXPECT_EQ(user_count - 1, users_list.user_views().size());
// 1 extra user gets large style.
LoginDisplayStyle expected_style = LoginDisplayStyle::kLarge;
// 2-6 extra users get small style.
if (user_count >= 3)
expected_style = LoginDisplayStyle::kSmall;
// 7+ users get get extra small style.
if (user_count >= 7)
expected_style = LoginDisplayStyle::kExtraSmall;
for (size_t i = 0; i < users_list.user_views().size(); ++i) {
LoginUserView::TestApi user_test_api(users_list.user_views()[i]);
EXPECT_EQ(expected_style, user_test_api.display_style());
const LoginUserInfo& user = users()[i + 1];
EXPECT_EQ(base::UTF8ToUTF16(user.basic_user_info.display_name),
user_test_api.displayed_name());
}
}
}
// Verifies that the single user view is centered.
TEST_F(LockContentsViewUnitTest, SingleUserCentered) {
auto* contents = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
SetUserCount(1);
std::unique_ptr<views::Widget> widget = CreateWidgetWithContent(contents);
LockContentsView::TestApi test_api(contents);
LoginBigUserView* auth_view = test_api.primary_big_view();
gfx::Rect widget_bounds = widget->GetWindowBoundsInScreen();
int expected_margin =
(widget_bounds.width() - auth_view->GetPreferredSize().width()) / 2;
gfx::Rect auth_bounds = auth_view->GetBoundsInScreen();
EXPECT_NE(0, expected_margin);
EXPECT_EQ(expected_margin, auth_bounds.x());
EXPECT_EQ(expected_margin,
widget_bounds.width() - (auth_bounds.x() + auth_bounds.width()));
}
// Verifies that the single user view is centered when lock screen notes are
// enabled.
TEST_F(LockContentsViewUnitTest, SingleUserCenteredNoteActionEnabled) {
auto* contents = new LockContentsView(
mojom::TrayActionState::kAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
SetUserCount(1);
std::unique_ptr<views::Widget> widget = CreateWidgetWithContent(contents);
LockContentsView::TestApi test_api(contents);
LoginBigUserView* auth_view = test_api.primary_big_view();
gfx::Rect widget_bounds = widget->GetWindowBoundsInScreen();
int expected_margin =
(widget_bounds.width() - auth_view->GetPreferredSize().width()) / 2;
gfx::Rect auth_bounds = auth_view->GetBoundsInScreen();
EXPECT_NE(0, expected_margin);
EXPECT_EQ(expected_margin, auth_bounds.x());
EXPECT_EQ(expected_margin,
widget_bounds.width() - (auth_bounds.x() + auth_bounds.width()));
}
// Verifies that any top-level spacing views go down to width zero in small
// screen sizes.
TEST_F(LockContentsViewUnitTest, LayoutInSmallScreenSize) {
// Build lock screen.
auto* contents = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
LockContentsView::TestApi lock_contents(contents);
std::unique_ptr<views::Widget> widget = CreateWidgetWithContent(contents);
display::test::DisplayManagerTestApi display_manager_test_api(
display_manager());
auto get_left_view = [&]() -> views::View* {
return lock_contents.primary_big_view();
};
auto get_right_view = [&]() -> views::View* {
if (lock_contents.opt_secondary_big_view())
return lock_contents.opt_secondary_big_view();
return lock_contents.users_list();
};
for (int i = 2; i < 10; ++i) {
SetUserCount(i);
views::View* left_view = get_left_view();
views::View* right_view = get_right_view();
// Determine the full-sized widths when there is plenty of spacing available
display_manager_test_api.UpdateDisplay("2000x1000");
int left_width = left_view->width();
int right_width = right_view->width();
int left_x = left_view->x();
int right_x = right_view->x();
// Resize to the minimum width that will fit both the left and right views
int display_width = left_width + right_width;
display_manager_test_api.UpdateDisplay(std::to_string(display_width) +
"x400");
// Verify the views moved, ie, a layout was performed
EXPECT_NE(left_view->x(), left_x);
EXPECT_NE(right_view->x(), right_x);
// Left and right views still have their full widths
EXPECT_EQ(left_width, left_view->width());
EXPECT_EQ(right_width, right_view->width());
// Left edge of |left_view| should be at start of the screen.
EXPECT_EQ(left_view->GetBoundsInScreen().x(), 0);
// Left edge of |right_view| should immediately follow |left_view| with no
// gap.
EXPECT_EQ(left_view->GetBoundsInScreen().right(),
right_view->GetBoundsInScreen().x());
// Right edge of |right_view| should be at the end of the screen.
EXPECT_EQ(right_view->GetBoundsInScreen().right(), display_width);
}
}
// Verifies that layout dynamically updates after a rotation by checking the
// distance between the auth user and the user list in landscape and portrait
// mode.
TEST_F(LockContentsViewUnitTest, AutoLayoutAfterRotation) {
// Build lock screen with three users.
auto* contents = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
LockContentsView::TestApi lock_contents(contents);
SetUserCount(3);
std::unique_ptr<views::Widget> widget = CreateWidgetWithContent(contents);
// Returns the distance between the auth user view and the user view.
auto calculate_distance = [&]() {
if (lock_contents.opt_secondary_big_view()) {
return lock_contents.opt_secondary_big_view()->GetBoundsInScreen().x() -
lock_contents.primary_big_view()->GetBoundsInScreen().x();
}
ScrollableUsersListView::TestApi users_list(lock_contents.users_list());
return users_list.user_views()[0]->GetBoundsInScreen().x() -
lock_contents.primary_big_view()->GetBoundsInScreen().x();
};
const display::Display& display =
display::Screen::GetScreen()->GetDisplayNearestWindow(
widget->GetNativeWindow());
for (int i = 2; i < 10; ++i) {
SetUserCount(i);
// Start at 0 degrees (landscape).
display_manager()->SetDisplayRotation(
display.id(), display::Display::ROTATE_0,
display::Display::RotationSource::ACTIVE);
int distance_0deg = calculate_distance();
EXPECT_NE(distance_0deg, 0);
// Rotate the display to 90 degrees (portrait).
display_manager()->SetDisplayRotation(
display.id(), display::Display::ROTATE_90,
display::Display::RotationSource::ACTIVE);
int distance_90deg = calculate_distance();
EXPECT_GT(distance_0deg, distance_90deg);
// Rotate the display back to 0 degrees (landscape).
display_manager()->SetDisplayRotation(
display.id(), display::Display::ROTATE_0,
display::Display::RotationSource::ACTIVE);
int distance_180deg = calculate_distance();
EXPECT_EQ(distance_0deg, distance_180deg);
EXPECT_NE(distance_0deg, distance_90deg);
}
}
TEST_F(LockContentsViewUnitTest, AutoLayoutExtraSmallUsersListAfterRotation) {
// Build lock screen with extra small layout (> 6 users).
auto* contents = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
SetUserCount(9);
ScrollableUsersListView* users_list =
LockContentsView::TestApi(contents).users_list();
std::unique_ptr<views::Widget> widget = CreateWidgetWithContent(contents);
// Users list in extra small layout should adjust its height to parent.
EXPECT_EQ(contents->height(), users_list->height());
const display::Display& display =
display::Screen::GetScreen()->GetDisplayNearestWindow(
widget->GetNativeWindow());
// Start at 0 degrees (landscape).
display_manager()->SetDisplayRotation(
display.id(), display::Display::ROTATE_0,
display::Display::RotationSource::ACTIVE);
EXPECT_EQ(contents->height(), users_list->height());
// Rotate the display to 90 degrees (portrait).
display_manager()->SetDisplayRotation(
display.id(), display::Display::ROTATE_90,
display::Display::RotationSource::ACTIVE);
EXPECT_EQ(contents->height(), users_list->height());
// Rotate the display back to 0 degrees (landscape).
display_manager()->SetDisplayRotation(
display.id(), display::Display::ROTATE_0,
display::Display::RotationSource::ACTIVE);
EXPECT_EQ(contents->height(), users_list->height());
}
TEST_F(LockContentsViewUnitTest, AutoLayoutSmallUsersListAfterRotation) {
// Build lock screen with small layout (3-6 users).
auto* contents = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
SetUserCount(4);
ScrollableUsersListView* users_list =
LockContentsView::TestApi(contents).users_list();
std::unique_ptr<views::Widget> widget = CreateWidgetWithContent(contents);
// Calculate top spacing between users list and lock screen contents.
auto top_margin = [&]() {
return users_list->GetBoundsInScreen().y() -
contents->GetBoundsInScreen().y();
};
// Calculate bottom spacing between users list and lock screen contents.
auto bottom_margin = [&]() {
return contents->GetBoundsInScreen().bottom() -
users_list->GetBoundsInScreen().bottom();
};
// Users list in small layout should adjust its height to content and be
// vertical centered in parent.
EXPECT_EQ(top_margin(), bottom_margin());
EXPECT_EQ(users_list->height(), users_list->contents()->height());
const display::Display& display =
display::Screen::GetScreen()->GetDisplayNearestWindow(
widget->GetNativeWindow());
// Start at 0 degrees (landscape).
display_manager()->SetDisplayRotation(
display.id(), display::Display::ROTATE_0,
display::Display::RotationSource::ACTIVE);
EXPECT_EQ(top_margin(), bottom_margin());
EXPECT_EQ(users_list->height(), users_list->contents()->height());
// Rotate the display to 90 degrees (portrait).
display_manager()->SetDisplayRotation(
display.id(), display::Display::ROTATE_90,
display::Display::RotationSource::ACTIVE);
EXPECT_EQ(top_margin(), bottom_margin());
EXPECT_EQ(users_list->height(), users_list->contents()->height());
// Rotate the display back to 0 degrees (landscape).
display_manager()->SetDisplayRotation(
display.id(), display::Display::ROTATE_0,
display::Display::RotationSource::ACTIVE);
EXPECT_EQ(top_margin(), bottom_margin());
EXPECT_EQ(users_list->height(), users_list->contents()->height());
}
TEST_F(LockContentsViewKeyboardUnitTest,
AutoLayoutExtraSmallUsersListForKeyboard) {
// Build lock screen with extra small layout (> 6 users).
ASSERT_NO_FATAL_FAILURE(ShowLoginScreen());
LockContentsView* contents =
LockScreen::TestApi(LockScreen::Get()).contents_view();
ASSERT_NE(nullptr, contents);
SetUserCount(9);
// Users list in extra small layout should adjust its height to parent.
ScrollableUsersListView* users_list =
LockContentsView::TestApi(contents).users_list();
EXPECT_EQ(contents->height(), users_list->height());
ASSERT_NO_FATAL_FAILURE(ShowKeyboard());
gfx::Rect keyboard_bounds = GetKeyboardBoundsInScreen();
EXPECT_FALSE(users_list->GetBoundsInScreen().Intersects(keyboard_bounds));
EXPECT_EQ(contents->height(), users_list->height());
ASSERT_NO_FATAL_FAILURE(HideKeyboard());
EXPECT_EQ(contents->height(), users_list->height());
}
TEST_F(LockContentsViewKeyboardUnitTest, AutoLayoutSmallUsersListForKeyboard) {
// Build lock screen with small layout (3-6 users).
ASSERT_NO_FATAL_FAILURE(ShowLoginScreen());
LockContentsView* contents =
LockScreen::TestApi(LockScreen::Get()).contents_view();
ASSERT_NE(nullptr, contents);
SetUserCount(4);
ScrollableUsersListView* users_list =
LockContentsView::TestApi(contents).users_list();
// Calculate top spacing between users list and lock screen contents.
auto top_margin = [&]() {
return users_list->GetBoundsInScreen().y() -
contents->GetBoundsInScreen().y();
};
// Calculate bottom spacing between users list and lock screen contents.
auto bottom_margin = [&]() {
return contents->GetBoundsInScreen().bottom() -
users_list->GetBoundsInScreen().bottom();
};
// Users list in small layout should adjust its height to content and be
// vertical centered in parent.
EXPECT_EQ(top_margin(), bottom_margin());
EXPECT_EQ(users_list->height(), users_list->contents()->height());
ASSERT_NO_FATAL_FAILURE(ShowKeyboard());
gfx::Rect keyboard_bounds = GetKeyboardBoundsInScreen();
EXPECT_FALSE(users_list->GetBoundsInScreen().Intersects(keyboard_bounds));
EXPECT_EQ(top_margin(), bottom_margin());
ASSERT_NO_FATAL_FAILURE(HideKeyboard());
EXPECT_EQ(top_margin(), bottom_margin());
EXPECT_EQ(users_list->height(), users_list->contents()->height());
}
TEST_F(LockContentsViewKeyboardUnitTest, ShowPinPadForPassword) {
SetUserCount(1);
users()[0].show_pin_pad_for_password = true;
ASSERT_NO_FATAL_FAILURE(ShowLoginScreen());
LockContentsView* contents = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
std::unique_ptr<views::Widget> widget = CreateWidgetWithContent(contents);
ASSERT_NE(nullptr, contents);
DataDispatcher()->SetUserList(users());
LoginAuthUserView* login_auth_user_view =
LockContentsView::TestApi(contents).primary_big_view()->auth_user();
LoginAuthUserView::TestApi primary_user(login_auth_user_view);
LoginPinView* pin_view(primary_user.pin_view());
ASSERT_NO_FATAL_FAILURE(ShowKeyboard());
EXPECT_FALSE(pin_view->GetVisible());
ASSERT_NO_FATAL_FAILURE(HideKeyboard());
EXPECT_TRUE(pin_view->GetVisible());
}
// Ensures that when swapping between two users, only auth method display swaps.
TEST_F(LockContentsViewUnitTest, SwapAuthUsersInTwoUserLayout) {
// Build lock screen with two users.
auto* contents = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
LockContentsView::TestApi test_api(contents);
SetUserCount(2);
std::unique_ptr<views::Widget> widget = CreateWidgetWithContent(contents);
// Capture user info to validate it did not change during the swap.
AccountId primary_user =
test_api.primary_big_view()->GetCurrentUser().basic_user_info.account_id;
AccountId secondary_user = test_api.opt_secondary_big_view()
->GetCurrentUser()
.basic_user_info.account_id;
EXPECT_NE(primary_user, secondary_user);
// Primary user starts with auth. Secondary user does not have any auth.
EXPECT_TRUE(test_api.primary_big_view()->IsAuthEnabled());
EXPECT_FALSE(test_api.opt_secondary_big_view()->IsAuthEnabled());
ASSERT_NE(nullptr, test_api.opt_secondary_big_view()->auth_user());
// Send event to swap users.
ui::test::EventGenerator* generator = GetEventGenerator();
LoginAuthUserView::TestApi secondary_test_api(
test_api.opt_secondary_big_view()->auth_user());
generator->MoveMouseTo(
secondary_test_api.user_view()->GetBoundsInScreen().CenterPoint());
generator->ClickLeftButton();
// User info is not swapped.
EXPECT_EQ(
primary_user,
test_api.primary_big_view()->GetCurrentUser().basic_user_info.account_id);
EXPECT_EQ(secondary_user, test_api.opt_secondary_big_view()
->GetCurrentUser()
.basic_user_info.account_id);
// Active auth user (ie, which user is showing password) is swapped.
EXPECT_FALSE(test_api.primary_big_view()->IsAuthEnabled());
EXPECT_TRUE(test_api.opt_secondary_big_view()->IsAuthEnabled());
}
// Ensures that when swapping from a user list, the entire user info is swapped.
TEST_F(LockContentsViewUnitTest, SwapUserListToPrimaryAuthUser) {
// Build lock screen with five users.
auto* contents = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
LockContentsView::TestApi lock_contents(contents);
SetUserCount(5);
ScrollableUsersListView::TestApi users_list(lock_contents.users_list());
EXPECT_EQ(users().size() - 1, users_list.user_views().size());
std::unique_ptr<views::Widget> widget = CreateWidgetWithContent(contents);
LoginBigUserView* auth_view = lock_contents.primary_big_view();
for (const LoginUserView* const list_user_view : users_list.user_views()) {
// Capture user info to validate it did not change during the swap.
AccountId auth_id = auth_view->GetCurrentUser().basic_user_info.account_id;
AccountId list_user_id =
list_user_view->current_user().basic_user_info.account_id;
EXPECT_NE(auth_id, list_user_id);
// Send event to swap users.
ui::test::EventGenerator* generator = GetEventGenerator();
generator->MoveMouseTo(list_user_view->GetBoundsInScreen().CenterPoint());
generator->ClickLeftButton();
// User info is swapped.
EXPECT_EQ(list_user_id,
auth_view->GetCurrentUser().basic_user_info.account_id);
EXPECT_EQ(auth_id,
list_user_view->current_user().basic_user_info.account_id);
// Validate that every user is still unique.
std::unordered_set<std::string> emails;
for (const LoginUserView* const view : users_list.user_views()) {
std::string email =
view->current_user().basic_user_info.account_id.GetUserEmail();
EXPECT_TRUE(emails.insert(email).second);
}
}
}
// Test goes through different lock screen note state changes and tests that
// the note action visibility is updated accordingly.
TEST_F(LockContentsViewUnitTest, NoteActionButtonVisibilityChanges) {
auto* contents = new LockContentsView(
mojom::TrayActionState::kAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
SetUserCount(1);
SetWidget(CreateWidgetWithContent(contents));
LockContentsView::TestApi test_api(contents);
views::View* note_action_button = test_api.note_action();
// In kAvailable state, the note action button should be visible.
EXPECT_TRUE(note_action_button->GetVisible());
// In kLaunching state, the note action button should not be visible.
DataDispatcher()->SetLockScreenNoteState(mojom::TrayActionState::kLaunching);
EXPECT_FALSE(note_action_button->GetVisible());
// In kActive state, the note action button should not be visible.
DataDispatcher()->SetLockScreenNoteState(mojom::TrayActionState::kActive);
EXPECT_FALSE(note_action_button->GetVisible());
// When moved back to kAvailable state, the note action button should become
// visible again.
DataDispatcher()->SetLockScreenNoteState(mojom::TrayActionState::kAvailable);
EXPECT_TRUE(note_action_button->GetVisible());
// In kNotAvailable state, the note action button should not be visible.
DataDispatcher()->SetLockScreenNoteState(
mojom::TrayActionState::kNotAvailable);
EXPECT_FALSE(note_action_button->GetVisible());
}
// Verifies note action view bounds.
TEST_F(LockContentsViewUnitTest, NoteActionButtonBounds) {
auto* contents = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
SetUserCount(1);
std::unique_ptr<views::Widget> widget = CreateWidgetWithContent(contents);
LockContentsView::TestApi test_api(contents);
// The note action button should not be visible if the note action is not
// available.
EXPECT_FALSE(test_api.note_action()->GetVisible());
// When the note action becomes available, the note action button should be
// shown.
DataDispatcher()->SetLockScreenNoteState(mojom::TrayActionState::kAvailable);
EXPECT_TRUE(test_api.note_action()->GetVisible());
// Verify the bounds of the note action button are as expected.
gfx::Rect widget_bounds = widget->GetWindowBoundsInScreen();
gfx::Size note_action_size = test_api.note_action()->GetPreferredSize();
EXPECT_EQ(gfx::Rect(widget_bounds.top_right() -
gfx::Vector2d(note_action_size.width(), 0),
note_action_size),
test_api.note_action()->GetBoundsInScreen());
// If the note action is disabled again, the note action button should be
// hidden.
DataDispatcher()->SetLockScreenNoteState(
mojom::TrayActionState::kNotAvailable);
EXPECT_FALSE(test_api.note_action()->GetVisible());
}
// Verifies the note action view bounds when note action is available at lock
// contents view creation.
TEST_F(LockContentsViewUnitTest, NoteActionButtonBoundsInitiallyAvailable) {
auto* contents = new LockContentsView(
mojom::TrayActionState::kAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
SetUserCount(1);
std::unique_ptr<views::Widget> widget = CreateWidgetWithContent(contents);
LockContentsView::TestApi test_api(contents);
// Verify the note action button is visible and positioned in the top right
// corner of the screen.
EXPECT_TRUE(test_api.note_action()->GetVisible());
gfx::Rect widget_bounds = widget->GetWindowBoundsInScreen();
gfx::Size note_action_size = test_api.note_action()->GetPreferredSize();
EXPECT_EQ(gfx::Rect(widget_bounds.top_right() -
gfx::Vector2d(note_action_size.width(), 0),
note_action_size),
test_api.note_action()->GetBoundsInScreen());
// If the note action is disabled, the note action button should be hidden.
DataDispatcher()->SetLockScreenNoteState(
mojom::TrayActionState::kNotAvailable);
EXPECT_FALSE(test_api.note_action()->GetVisible());
}
// Verifies the system info view bounds interaction with the note-taking button.
TEST_F(LockContentsViewUnitTest, SystemInfoViewBounds) {
auto* contents = new LockContentsView(
mojom::TrayActionState::kAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
SetUserCount(1);
std::unique_ptr<views::Widget> widget = CreateWidgetWithContent(contents);
gfx::Rect widget_bounds = widget->GetWindowBoundsInScreen();
LockContentsView::TestApi test_api(contents);
// Verify that the system info view is hidden by default.
EXPECT_FALSE(test_api.system_info()->GetVisible());
// Verify that the system info view becomes visible and it doesn't block the
// note action button.
DataDispatcher()->SetSystemInfo(
true /*show*/, false /*enforced*/, "Best version ever", "Asset ID: 6666",
"Bluetooth adapter", false /*adb_sideloading_enabled*/);
EXPECT_TRUE(test_api.system_info()->GetVisible());
EXPECT_FALSE(test_api.bottom_status_indicator()->GetVisible());
EXPECT_TRUE(test_api.note_action()->GetVisible());
gfx::Size note_action_size = test_api.note_action()->GetPreferredSize();
EXPECT_GE(widget_bounds.right() -
test_api.system_info()->GetBoundsInScreen().right(),
note_action_size.width());
// Verify that if the note action is disabled, the system info view moves to
// the right to fill the empty space.
DataDispatcher()->SetLockScreenNoteState(
mojom::TrayActionState::kNotAvailable);
EXPECT_FALSE(test_api.note_action()->GetVisible());
EXPECT_LT(widget_bounds.right() -
test_api.system_info()->GetBoundsInScreen().right(),
note_action_size.width());
// Verify that warning indicator is invisible if ADB sideloading is not
// enabled.
EXPECT_FALSE(test_api.bottom_status_indicator()->GetVisible());
}
// Alt-V toggles display of system information.
TEST_F(LockContentsViewUnitTest, AltVShowsHiddenSystemInfo) {
auto* contents = new LockContentsView(
mojom::TrayActionState::kAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
SetUserCount(1);
std::unique_ptr<views::Widget> widget = CreateWidgetWithContent(contents);
LockContentsView::TestApi test_api(contents);
// Verify that the system info view is hidden by default.
EXPECT_FALSE(test_api.system_info()->GetVisible());
// Verify that the system info view does not become visible when given data
// but show is false.
DataDispatcher()->SetSystemInfo(
false /*show*/, false /*enforced*/, "Best version ever", "Asset ID: 6666",
"Bluetooth adapter", false /*adb_sideloading_enabled*/);
EXPECT_FALSE(test_api.system_info()->GetVisible());
// Alt-V shows hidden system info.
GetEventGenerator()->PressKey(ui::KeyboardCode::VKEY_V, ui::EF_ALT_DOWN);
EXPECT_TRUE(test_api.system_info()->GetVisible());
// System info is not empty, ie, it is actually being displayed.
EXPECT_FALSE(test_api.system_info()->bounds().IsEmpty());
// Alt-V again does nothing.
GetEventGenerator()->PressKey(ui::KeyboardCode::VKEY_V, ui::EF_ALT_DOWN);
EXPECT_TRUE(test_api.system_info()->GetVisible());
}
// Updating existing system info and setting show_=true later will
// reveal hidden system info.
TEST_F(LockContentsViewUnitTest, ShowRevealsHiddenSystemInfo) {
auto* contents = new LockContentsView(
mojom::TrayActionState::kAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
SetUserCount(1);
std::unique_ptr<views::Widget> widget = CreateWidgetWithContent(contents);
LockContentsView::TestApi test_api(contents);
auto set_system_info = [&](bool show, bool enforced) {
DataDispatcher()->SetSystemInfo(show, enforced, "Best version ever",
"Asset ID: 6666", "Bluetooth adapter",
false /*adb_sideloading_enabled*/);
};
// Start with hidden system info.
set_system_info(false, false);
EXPECT_FALSE(test_api.system_info()->GetVisible());
// Update system info but request it be shown.
set_system_info(true, false);
EXPECT_TRUE(test_api.system_info()->GetVisible());
// Trying to hide system info from mojom call doesn't do anything.
set_system_info(false, false);
EXPECT_TRUE(test_api.system_info()->GetVisible());
// Trying to hide system info from mojom call with enforced=true. It should
// work.
set_system_info(false, true);
EXPECT_FALSE(test_api.system_info()->GetVisible());
// System info will be shown again when enforced is reset to false
// because the view remembers user wants to show it if possible.
set_system_info(false, false);
EXPECT_TRUE(test_api.system_info()->GetVisible());
}
// Show bottom status indicator if ADB sideloading is enabled.
TEST_F(LockContentsViewUnitTest, ShowStatusIndicatorIfAdbSideloadingEnabled) {
auto* contents = new LockContentsView(
mojom::TrayActionState::kAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
SetUserCount(1);
std::unique_ptr<views::Widget> widget = CreateWidgetWithContent(contents);
LockContentsView::TestApi test_api(contents);
// If the system starts with ADB sideloading enabled, bottom_status_indicator
// should be visible.
DataDispatcher()->SetSystemInfo(
false /*show*/, false /*enforced*/, "Best version ever", "Asset ID: 6666",
"Bluetooth adapter", true /*adb_sideloading_enabled*/);
EXPECT_TRUE(test_api.bottom_status_indicator()->GetVisible());
// bottom_status_indicator should always be visible when displaying ADB
// sideloading warning.
DataDispatcher()->NotifyOobeDialogState(OobeDialogState::EXTENSION_LOGIN);
EXPECT_TRUE(test_api.bottom_status_indicator()->GetVisible());
DataDispatcher()->NotifyOobeDialogState(OobeDialogState::HIDDEN);
EXPECT_TRUE(test_api.bottom_status_indicator()->GetVisible());
}
// Verifies the easy unlock tooltip is automatically displayed when requested.
TEST_F(LockContentsViewUnitTest, EasyUnlockForceTooltipCreatesTooltipWidget) {
auto* lock = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
SetUserCount(1);
SetWidget(CreateWidgetWithContent(lock));
LockContentsView::TestApi test_api(lock);
// Creating lock screen does not show tooltip bubble.
EXPECT_FALSE(test_api.tooltip_bubble()->GetVisible());
// Show an icon with |autoshow_tooltip| is false. Tooltip bubble is not
// activated.
EasyUnlockIconOptions icon;
icon.icon = EasyUnlockIconId::LOCKED;
icon.autoshow_tooltip = false;
DataDispatcher()->ShowEasyUnlockIcon(users()[0].basic_user_info.account_id,
icon);
EXPECT_FALSE(test_api.tooltip_bubble()->GetVisible());
// Show icon with |autoshow_tooltip| set to true. Tooltip bubble is shown.
icon.autoshow_tooltip = true;
DataDispatcher()->ShowEasyUnlockIcon(users()[0].basic_user_info.account_id,
icon);
EXPECT_TRUE(test_api.tooltip_bubble()->GetVisible());
}
// Verifies that easy unlock icon state persists when changing auth user.
TEST_F(LockContentsViewUnitTest, EasyUnlockIconUpdatedDuringUserSwap) {
// Build lock screen with two users.
auto* contents = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
SetUserCount(2);
SetWidget(CreateWidgetWithContent(contents));
LockContentsView::TestApi test_api(contents);
LoginBigUserView* primary = test_api.primary_big_view();
LoginBigUserView* secondary = test_api.opt_secondary_big_view();
// Returns true if the easy unlock icon is displayed for |view|.
auto showing_easy_unlock_icon = [&](LoginBigUserView* view) {
if (!view->auth_user())
return false;
views::View* icon =
LoginPasswordView::TestApi(
LoginAuthUserView::TestApi(view->auth_user()).password_view())
.easy_unlock_icon();
return icon->GetVisible();
};
// Enables easy unlock icon for |view|.
auto enable_icon = [&](LoginBigUserView* view) {
EasyUnlockIconOptions icon;
icon.icon = EasyUnlockIconId::LOCKED;
DataDispatcher()->ShowEasyUnlockIcon(
view->GetCurrentUser().basic_user_info.account_id, icon);
};
// Disables easy unlock icon for |view|.
auto disable_icon = [&](LoginBigUserView* view) {
EasyUnlockIconOptions icon;
icon.icon = EasyUnlockIconId::NONE;
DataDispatcher()->ShowEasyUnlockIcon(
view->GetCurrentUser().basic_user_info.account_id, icon);
};
// Makes |view| the active auth view so it will can show auth methods.
auto make_active_auth_view = [&](LoginBigUserView* view) {
// Send event to swap users.
ui::test::EventGenerator* generator = GetEventGenerator();
LoginUserView* user_view = view->GetUserView();
generator->MoveMouseTo(user_view->GetBoundsInScreen().CenterPoint());
generator->ClickLeftButton();
};
// NOTE: we cannot assert on non-active auth views because the easy unlock
// icon is lazily updated, ie, if we're not showing the view we will not
// update icon state.
// No easy unlock icons are shown.
make_active_auth_view(primary);
EXPECT_FALSE(showing_easy_unlock_icon(primary));
// Activate icon for primary.
enable_icon(primary);
EXPECT_TRUE(showing_easy_unlock_icon(primary));
// Secondary does not have easy unlock enabled; swapping auth hides the icon.
make_active_auth_view(secondary);
EXPECT_FALSE(showing_easy_unlock_icon(secondary));
// Switching back enables the icon again.
make_active_auth_view(primary);
EXPECT_TRUE(showing_easy_unlock_icon(primary));
// Activate icon for secondary. Primary visiblity does not change.
enable_icon(secondary);
EXPECT_TRUE(showing_easy_unlock_icon(primary));
// Swap to secondary, icon still visible.
make_active_auth_view(secondary);
EXPECT_TRUE(showing_easy_unlock_icon(secondary));
// Deactivate secondary, icon hides.
disable_icon(secondary);
EXPECT_FALSE(showing_easy_unlock_icon(secondary));
// Deactivate primary, icon still hidden.
disable_icon(primary);
EXPECT_FALSE(showing_easy_unlock_icon(secondary));
// Enable primary, icon still hidden.
enable_icon(primary);
EXPECT_FALSE(showing_easy_unlock_icon(secondary));
}
TEST_F(LockContentsViewUnitTest, ShowErrorBubbleOnAuthFailure) {
// Build lock screen with a single user.
auto* contents = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
SetUserCount(1);
SetWidget(CreateWidgetWithContent(contents));
LockContentsView::TestApi test_api(contents);
// Password submit runs mojo.
auto client = std::make_unique<MockLoginScreenClient>();
client->set_authenticate_user_callback_result(false);
EXPECT_CALL(*client, AuthenticateUserWithPasswordOrPin_(
users()[0].basic_user_info.account_id, _, false, _));
// Submit password.
ui::test::EventGenerator* generator = GetEventGenerator();
generator->PressKey(ui::KeyboardCode::VKEY_A, 0);
generator->PressKey(ui::KeyboardCode::VKEY_RETURN, 0);
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(test_api.auth_error_bubble()->GetVisible());
// The error bubble is expected to close on a user action - e.g. if they start
// typing the password again.
generator->PressKey(ui::KeyboardCode::VKEY_B, 0);
EXPECT_FALSE(test_api.auth_error_bubble()->GetVisible());
}
TEST_F(LockContentsViewUnitTest, AuthErrorButtonClickable) {
// Build lock screen with a single user.
auto* contents = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
SetUserCount(1);
SetWidget(CreateWidgetWithContent(contents));
LockContentsView::TestApi test_api(contents);
// Password submit runs mojo.
auto client = std::make_unique<MockLoginScreenClient>();
client->set_authenticate_user_callback_result(false);
EXPECT_CALL(*client, AuthenticateUserWithPasswordOrPin_(
users()[0].basic_user_info.account_id, _, false, _));
// AuthErrorButton should not be visible yet.
EXPECT_FALSE(test_api.auth_error_bubble()->GetVisible());
// Submit password.
ui::test::EventGenerator* generator = GetEventGenerator();
generator->PressKey(ui::KeyboardCode::VKEY_A, 0);
generator->PressKey(ui::KeyboardCode::VKEY_RETURN, 0);
base::RunLoop().RunUntilIdle();
// Auth Error button should be visible as an incorrect password was given.
EXPECT_TRUE(test_api.auth_error_bubble()->GetVisible());
// Find button in auth_error_bubble children.
views::View* button = FindTopButton(test_api.auth_error_bubble());
ASSERT_TRUE(button);
// Expect ShowAccountAccessHelp() to be called due to button click.
EXPECT_CALL(*client, ShowAccountAccessHelpApp(widget()->GetNativeWindow()))
.Times(1);
// Move mouse to AuthError's ShowAccountAccessHelp button and click it.
// Should result in ShowAccountAccessHelpApp().
generator->MoveMouseTo(button->GetBoundsInScreen().CenterPoint());
generator->ClickLeftButton();
// AuthErrorButton should go away after button press.
EXPECT_FALSE(test_api.auth_error_bubble()->GetVisible());
}
// Gaia is never shown on lock, no mater how many times auth fails.
TEST_F(LockContentsViewUnitTest, GaiaNeverShownOnLockAfterFailedAuth) {
// Build lock screen with a single user.
auto* contents = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
SetUserCount(1);
SetWidget(CreateWidgetWithContent(contents));
auto client = std::make_unique<MockLoginScreenClient>();
client->set_authenticate_user_callback_result(false);
auto submit_password = [&]() {
ui::test::EventGenerator* generator = GetEventGenerator();
generator->PressKey(ui::KeyboardCode::VKEY_A, 0);
generator->PressKey(ui::KeyboardCode::VKEY_RETURN, 0);
base::RunLoop().RunUntilIdle();
};
// ShowGaiaSignin is never triggered.
EXPECT_CALL(*client, ShowGaiaSignin(_)).Times(0);
for (int i = 0; i < LockContentsView::kLoginAttemptsBeforeGaiaDialog + 1; ++i)
submit_password();
}
// Gaia is shown in login on the 4th bad password attempt.
TEST_F(LockContentsViewUnitTest, ShowGaiaAuthAfterManyFailedLoginAttempts) {
// Build lock screen with a single user.
auto* contents = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLogin,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
SetUserCount(1);
SetWidget(CreateWidgetWithContent(contents));
auto client = std::make_unique<MockLoginScreenClient>();
client->set_authenticate_user_callback_result(false);
auto submit_password = [&]() {
ui::test::EventGenerator* generator = GetEventGenerator();
generator->PressKey(ui::KeyboardCode::VKEY_A, 0);
generator->PressKey(ui::KeyboardCode::VKEY_RETURN, 0);
base::RunLoop().RunUntilIdle();
};
// The first n-1 attempts do not trigger ShowGaiaSignin.
EXPECT_CALL(*client, ShowGaiaSignin(_)).Times(0);
for (int i = 0; i < LockContentsView::kLoginAttemptsBeforeGaiaDialog - 1; ++i)
submit_password();
Mock::VerifyAndClearExpectations(client.get());
// The final attempt triggers ShowGaiaSignin.
EXPECT_CALL(*client, ShowGaiaSignin(users()[0].basic_user_info.account_id))
.Times(1);
submit_password();
Mock::VerifyAndClearExpectations(client.get());
}
TEST_F(LockContentsViewUnitTest, ErrorBubbleOnUntrustedDetachableBase) {
auto fake_detachable_base_model =
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher());
FakeLoginDetachableBaseModel* detachable_base_model =
fake_detachable_base_model.get();
// Build lock screen with 2 users.
auto* contents = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(), std::move(fake_detachable_base_model));
SetUserCount(2);
const AccountId& kFirstUserAccountId = users()[0].basic_user_info.account_id;
const AccountId& kSecondUserAccountId = users()[1].basic_user_info.account_id;
// Initialize the detachable base state, so the user 1 has previously used
// detachable base.
detachable_base_model->InitLastUsedBases({{kFirstUserAccountId, "1234"}});
detachable_base_model->SetPairingStatus(
DetachableBasePairingStatus::kAuthenticated, "1234");
SetWidget(CreateWidgetWithContent(contents));
LockContentsView::TestApi test_api(contents);
ui::test::EventGenerator* generator = GetEventGenerator();
EXPECT_FALSE(test_api.detachable_base_error_bubble()->GetVisible());
// Change detachable base to a base different than the one previously used by
// the user - verify that a detachable base error bubble is shown.
detachable_base_model->SetPairingStatus(
DetachableBasePairingStatus::kAuthenticated, "5678");
EXPECT_TRUE(test_api.detachable_base_error_bubble()->GetVisible());
// Verify that the bubble is not hidden if the user starts typing.
generator->PressKey(ui::KeyboardCode::VKEY_B, 0);
EXPECT_TRUE(test_api.detachable_base_error_bubble()->GetVisible());
// Switching to the user that doesn't have previously used detachable base
// (and should thus not be warned about the detachable base missmatch) should
// hide the login bubble.
LoginAuthUserView::TestApi secondary_test_api(
test_api.opt_secondary_big_view()->auth_user());
generator->MoveMouseTo(
secondary_test_api.user_view()->GetBoundsInScreen().CenterPoint());
generator->ClickLeftButton();
EXPECT_FALSE(test_api.detachable_base_error_bubble()->GetVisible());
// The error should be shown again when switching back to the primary user.
LoginAuthUserView::TestApi primary_test_api(
test_api.primary_big_view()->auth_user());
generator->MoveMouseTo(
primary_test_api.user_view()->GetBoundsInScreen().CenterPoint());
generator->ClickLeftButton();
EXPECT_TRUE(test_api.detachable_base_error_bubble()->GetVisible());
EXPECT_FALSE(primary_test_api.password_view()->HasFocus());
EXPECT_EQ("1234",
detachable_base_model->GetLastUsedBase(kFirstUserAccountId));
EXPECT_EQ("", detachable_base_model->GetLastUsedBase(kSecondUserAccountId));
// The current detachable base should be set as the last used one by the user
// after they authenticate - test for this.
auto client = std::make_unique<MockLoginScreenClient>();
client->set_authenticate_user_callback_result(true);
EXPECT_CALL(*client, AuthenticateUserWithPasswordOrPin_(kFirstUserAccountId,
_, false, _));
// Submit password.
primary_test_api.password_view()->RequestFocus();
generator->PressKey(ui::KeyboardCode::VKEY_A, 0);
generator->PressKey(ui::KeyboardCode::VKEY_RETURN, 0);
base::RunLoop().RunUntilIdle();
EXPECT_EQ("5678",
detachable_base_model->GetLastUsedBase(kFirstUserAccountId));
EXPECT_EQ("", detachable_base_model->GetLastUsedBase(kSecondUserAccountId));
}
TEST_F(LockContentsViewUnitTest, ErrorBubbleForUnauthenticatedDetachableBase) {
auto fake_detachable_base_model =
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher());
FakeLoginDetachableBaseModel* detachable_base_model =
fake_detachable_base_model.get();
// Build lock screen with 2 users.
auto* contents = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(), std::move(fake_detachable_base_model));
SetUserCount(2);
const AccountId& kFirstUserAccountId = users()[0].basic_user_info.account_id;
const AccountId& kSecondUserAccountId = users()[1].basic_user_info.account_id;
detachable_base_model->InitLastUsedBases({{kSecondUserAccountId, "5678"}});
SetWidget(CreateWidgetWithContent(contents));
LockContentsView::TestApi test_api(contents);
ui::test::EventGenerator* generator = GetEventGenerator();
EXPECT_FALSE(test_api.detachable_base_error_bubble()->GetVisible());
// Show notification if unauthenticated base is attached.
detachable_base_model->SetPairingStatus(
DetachableBasePairingStatus::kNotAuthenticated, "");
EXPECT_TRUE(test_api.detachable_base_error_bubble()->GetVisible());
// Verify that the bubble is not hidden if the user starts typing.
generator->PressKey(ui::KeyboardCode::VKEY_B, 0);
EXPECT_TRUE(test_api.detachable_base_error_bubble()->GetVisible());
// Switching to another user should not hide the error bubble.
LoginAuthUserView::TestApi secondary_test_api(
test_api.opt_secondary_big_view()->auth_user());
generator->MoveMouseTo(
secondary_test_api.user_view()->GetBoundsInScreen().CenterPoint());
generator->ClickLeftButton();
EXPECT_TRUE(test_api.detachable_base_error_bubble()->GetVisible());
EXPECT_FALSE(secondary_test_api.password_view()->HasFocus());
// The last trusted detachable used by the user should not be overriden by
// user authentication.
auto client = std::make_unique<MockLoginScreenClient>();
client->set_authenticate_user_callback_result(true);
EXPECT_CALL(*client, AuthenticateUserWithPasswordOrPin_(kSecondUserAccountId,
_, false, _));
// Submit password.
secondary_test_api.password_view()->RequestFocus();
generator->PressKey(ui::KeyboardCode::VKEY_A, 0);
generator->PressKey(ui::KeyboardCode::VKEY_RETURN, 0);
base::RunLoop().RunUntilIdle();
EXPECT_EQ("", detachable_base_model->GetLastUsedBase(kFirstUserAccountId));
EXPECT_EQ("5678",
detachable_base_model->GetLastUsedBase(kSecondUserAccountId));
}
TEST_F(LockContentsViewUnitTest,
RemovingAttachedBaseHidesDetachableBaseNotification) {
auto fake_detachable_base_model =
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher());
FakeLoginDetachableBaseModel* detachable_base_model =
fake_detachable_base_model.get();
// Build lock screen with 2 users.
auto* contents = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(), std::move(fake_detachable_base_model));
SetUserCount(1);
const AccountId& kUserAccountId = users()[0].basic_user_info.account_id;
// Initialize the detachable base state, as if the user has previously used
// detachable base.
detachable_base_model->InitLastUsedBases({{kUserAccountId, "1234"}});
detachable_base_model->SetPairingStatus(
DetachableBasePairingStatus::kAuthenticated, "1234");
SetWidget(CreateWidgetWithContent(contents));
LockContentsView::TestApi test_api(contents);
// Change detachable base to a base different than the one previously used by
// the user - verify that a detachable base error bubble is shown.
detachable_base_model->SetPairingStatus(
DetachableBasePairingStatus::kAuthenticated, "5678");
EXPECT_TRUE(test_api.detachable_base_error_bubble()->GetVisible());
// The notification should be hidden if the base gets detached.
detachable_base_model->SetPairingStatus(DetachableBasePairingStatus::kNone,
"");
EXPECT_FALSE(test_api.detachable_base_error_bubble()->GetVisible());
}
TEST_F(LockContentsViewUnitTest, DetachableBaseErrorClearsAuthError) {
auto fake_detachable_base_model =
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher());
FakeLoginDetachableBaseModel* detachable_base_model =
fake_detachable_base_model.get();
// Build lock screen with a single user.
auto* contents = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(), std::move(fake_detachable_base_model));
SetUserCount(1);
const AccountId& kUserAccountId = users()[0].basic_user_info.account_id;
// Initialize the detachable base state, as if the user has previously used
// detachable base.
detachable_base_model->InitLastUsedBases({{kUserAccountId, "1234"}});
detachable_base_model->SetPairingStatus(
DetachableBasePairingStatus::kAuthenticated, "1234");
SetWidget(CreateWidgetWithContent(contents));
LockContentsView::TestApi test_api(contents);
ui::test::EventGenerator* generator = GetEventGenerator();
EXPECT_FALSE(test_api.detachable_base_error_bubble()->GetVisible());
// Attempt and fail user auth - an auth error is expected to be shown.
auto client = std::make_unique<MockLoginScreenClient>();
client->set_authenticate_user_callback_result(false);
EXPECT_CALL(*client,
AuthenticateUserWithPasswordOrPin_(kUserAccountId, _, false, _));
// Submit password.
generator->PressKey(ui::KeyboardCode::VKEY_A, 0);
generator->PressKey(ui::KeyboardCode::VKEY_RETURN, 0);
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(test_api.auth_error_bubble()->GetVisible());
EXPECT_FALSE(test_api.detachable_base_error_bubble()->GetVisible());
// Change detachable base to a base different than the one previously used by
// the user - verify that a detachable base error bubble is shown, and the
// auth error is hidden.
detachable_base_model->SetPairingStatus(
DetachableBasePairingStatus::kAuthenticated, "5678");
EXPECT_TRUE(test_api.detachable_base_error_bubble()->GetVisible());
EXPECT_FALSE(test_api.auth_error_bubble()->GetVisible());
}
TEST_F(LockContentsViewUnitTest, AuthErrorDoesNotRemoveDetachableBaseError) {
auto fake_detachable_base_model =
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher());
FakeLoginDetachableBaseModel* detachable_base_model =
fake_detachable_base_model.get();
// Build lock screen with a single user.
auto* contents = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(), std::move(fake_detachable_base_model));
SetUserCount(1);
const AccountId& kUserAccountId = users()[0].basic_user_info.account_id;
// Initialize the detachable base state, as if the user has previously used
// detachable base.
detachable_base_model->InitLastUsedBases({{kUserAccountId, "1234"}});
SetWidget(CreateWidgetWithContent(contents));
detachable_base_model->SetPairingStatus(
DetachableBasePairingStatus::kAuthenticated, "1234");
LockContentsView::TestApi test_api(contents);
ui::test::EventGenerator* generator = GetEventGenerator();
EXPECT_FALSE(test_api.detachable_base_error_bubble()->GetVisible());
// Change detachable base to a base different than the one previously used by
// the user - verify that a detachable base error bubble is shown, and the
// auth error is hidden.
detachable_base_model->SetPairingStatus(
DetachableBasePairingStatus::kAuthenticated, "5678");
EXPECT_TRUE(test_api.detachable_base_error_bubble()->GetVisible());
// Attempt and fail user auth - an auth error is expected to be shown.
// Detachable base error should not be hidden.
auto client = std::make_unique<MockLoginScreenClient>();
client->set_authenticate_user_callback_result(false);
EXPECT_CALL(*client,
AuthenticateUserWithPasswordOrPin_(kUserAccountId, _, false, _));
// Submit password.
LoginAuthUserView::TestApi(test_api.primary_big_view()->auth_user())
.password_view()
->RequestFocus();
generator->PressKey(ui::KeyboardCode::VKEY_A, 0);
generator->PressKey(ui::KeyboardCode::VKEY_RETURN, 0);
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(test_api.auth_error_bubble()->GetVisible());
EXPECT_TRUE(test_api.detachable_base_error_bubble()->GetVisible());
// User action, like pressing a key should close the auth error bubble, but
// not the detachable base error bubble.
generator->PressKey(ui::KeyboardCode::VKEY_A, 0);
EXPECT_TRUE(test_api.detachable_base_error_bubble()->GetVisible());
EXPECT_FALSE(test_api.auth_error_bubble()->GetVisible());
}
TEST_F(LockContentsViewKeyboardUnitTest, SwitchPinAndVirtualKeyboard) {
ASSERT_NO_FATAL_FAILURE(ShowLockScreen());
LockContentsView* contents =
LockScreen::TestApi(LockScreen::Get()).contents_view();
ASSERT_NE(nullptr, contents);
// Add user who can use pin authentication.
const std::string email = "user@domain.com";
AddUserByEmail(email);
contents->OnPinEnabledForUserChanged(AccountId::FromUserEmail(email), true);
LoginBigUserView* big_view =
LockContentsView::TestApi(contents).primary_big_view();
ASSERT_NE(nullptr, big_view);
ASSERT_NE(nullptr, big_view->auth_user());
// Pin keyboard should only be visible when there is no virtual keyboard
// shown.
LoginPinView* pin_view =
LoginAuthUserView::TestApi(big_view->auth_user()).pin_view();
EXPECT_TRUE(pin_view->GetVisible());
ASSERT_NO_FATAL_FAILURE(ShowKeyboard());
EXPECT_FALSE(pin_view->GetVisible());
ASSERT_NO_FATAL_FAILURE(HideKeyboard());
EXPECT_TRUE(pin_view->GetVisible());
}
TEST_F(LockContentsViewKeyboardUnitTest,
RotationWithKeyboardDoesNotCoverInput) {
ASSERT_NO_FATAL_FAILURE(ShowLoginScreen());
LockContentsView* contents =
LockScreen::TestApi(LockScreen::Get()).contents_view();
ASSERT_NE(nullptr, contents);
const display::Display& display =
display::Screen::GetScreen()->GetDisplayNearestWindow(
contents->GetWidget()->GetNativeWindow());
for (int user_count = 1; user_count < 10; user_count++) {
SetUserCount(user_count);
display_manager()->SetDisplayRotation(
display.id(), display::Display::ROTATE_0,
display::Display::RotationSource::ACTIVE);
ASSERT_NO_FATAL_FAILURE(ShowKeyboard());
const int height_when_keyboard_shown = contents->height();
ASSERT_NO_FATAL_FAILURE(HideKeyboard());
const int height_when_keyboard_hidden = contents->height();
EXPECT_LT(height_when_keyboard_shown, height_when_keyboard_hidden);
ASSERT_NO_FATAL_FAILURE(ShowKeyboard());
EXPECT_EQ(height_when_keyboard_shown, contents->height());
// Rotate the display to 90 degrees (portrait).
display_manager()->SetDisplayRotation(
display.id(), display::Display::ROTATE_90,
display::Display::RotationSource::ACTIVE);
// Rotate the display back to 0 degrees (landscape).
display_manager()->SetDisplayRotation(
display.id(), display::Display::ROTATE_0,
display::Display::RotationSource::ACTIVE);
EXPECT_EQ(height_when_keyboard_shown, contents->height());
ASSERT_NO_FATAL_FAILURE(HideKeyboard());
EXPECT_EQ(height_when_keyboard_hidden, contents->height());
// Rotate the display to 90 degrees (portrait).
display_manager()->SetDisplayRotation(
display.id(), display::Display::ROTATE_90,
display::Display::RotationSource::ACTIVE);
// Rotate the display back to 0 degrees (landscape).
display_manager()->SetDisplayRotation(
display.id(), display::Display::ROTATE_0,
display::Display::RotationSource::ACTIVE);
EXPECT_EQ(height_when_keyboard_hidden, contents->height());
}
}
// Verifies that swapping auth users while the virtual keyboard is active
// focuses the other user's password field.
TEST_F(LockContentsViewKeyboardUnitTest, SwitchUserWhileKeyboardShown) {
ASSERT_NO_FATAL_FAILURE(ShowLoginScreen());
LockContentsView* contents =
LockScreen::TestApi(LockScreen::Get()).contents_view();
ASSERT_NE(nullptr, contents);
SetUserCount(2);
LoginAuthUserView::TestApi primary_user(
LockContentsView::TestApi(contents).primary_big_view()->auth_user());
LoginAuthUserView::TestApi secondary_user(LockContentsView::TestApi(contents)
.opt_secondary_big_view()
->auth_user());
ASSERT_NO_FATAL_FAILURE(ShowKeyboard());
EXPECT_TRUE(LoginPasswordView::TestApi(primary_user.password_view())
.textfield()
->HasFocus());
// Simulate a button click on the secondary UserView.
ui::test::EventGenerator* generator = GetEventGenerator();
generator->MoveMouseTo(
secondary_user.user_view()->GetBoundsInScreen().CenterPoint());
generator->ClickLeftButton();
EXPECT_TRUE(LoginPasswordView::TestApi(secondary_user.password_view())
.textfield()
->HasFocus());
EXPECT_FALSE(LoginPasswordView::TestApi(primary_user.password_view())
.textfield()
->HasFocus());
// Simulate a button click on the primary UserView.
generator->MoveMouseTo(
primary_user.user_view()->GetBoundsInScreen().CenterPoint());
generator->ClickLeftButton();
EXPECT_TRUE(LoginPasswordView::TestApi(primary_user.password_view())
.textfield()
->HasFocus());
EXPECT_FALSE(LoginPasswordView::TestApi(secondary_user.password_view())
.textfield()
->HasFocus());
}
TEST_F(LockContentsViewKeyboardUnitTest, PinSubmitWithVirtualKeyboardShown) {
ASSERT_NO_FATAL_FAILURE(ShowLockScreen());
LockContentsView* contents =
LockScreen::TestApi(LockScreen::Get()).contents_view();
// Add user who can use pin authentication.
const std::string email = "user@domain.com";
AddUserByEmail(email);
contents->OnPinEnabledForUserChanged(AccountId::FromUserEmail(email), true);
LoginBigUserView* big_view =
LockContentsView::TestApi(contents).primary_big_view();
// Require that AuthenticateUser is called with authenticated_by_pin set to
// true.
auto client = std::make_unique<MockLoginScreenClient>();
EXPECT_CALL(*client, AuthenticateUserWithPasswordOrPin_(
_, "1111", true /*authenticated_by_pin*/, _));
// Hide the PIN keyboard.
LoginPinView* pin_view =
LoginAuthUserView::TestApi(big_view->auth_user()).pin_view();
EXPECT_TRUE(pin_view->GetVisible());
ASSERT_NO_FATAL_FAILURE(ShowKeyboard());
EXPECT_FALSE(pin_view->GetVisible());
// Submit a password.
LoginAuthUserView::TestApi(big_view->auth_user())
.password_view()
->RequestFocus();
ui::test::EventGenerator* generator = GetEventGenerator();
generator->PressKey(ui::KeyboardCode::VKEY_1, 0);
generator->PressKey(ui::KeyboardCode::VKEY_1, 0);
generator->PressKey(ui::KeyboardCode::VKEY_1, 0);
generator->PressKey(ui::KeyboardCode::VKEY_1, 0);
generator->PressKey(ui::KeyboardCode::VKEY_RETURN, 0);
base::RunLoop().RunUntilIdle();
}
// Verify that swapping works in two user layout between one regular auth user
// and one public account user.
TEST_F(LockContentsViewUnitTest, SwapAuthAndPublicAccountUserInTwoUserLayout) {
// Build lock screen with two users: one public account user and one regular
// user.
auto* contents = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
std::unique_ptr<views::Widget> widget = CreateWidgetWithContent(contents);
AddPublicAccountUsers(1);
AddUsers(1);
LockContentsView::TestApi test_api(contents);
// Capture user info to validate it did not change during the swap.
AccountId primary_user =
test_api.primary_big_view()->GetCurrentUser().basic_user_info.account_id;
AccountId secondary_user = test_api.opt_secondary_big_view()
->GetCurrentUser()
.basic_user_info.account_id;
EXPECT_NE(primary_user, secondary_user);
// Primary user starts with auth. Secondary user does not have any auth.
EXPECT_TRUE(test_api.primary_big_view()->IsAuthEnabled());
EXPECT_FALSE(test_api.opt_secondary_big_view()->IsAuthEnabled());
// Verify the LoginBigUserView has built the child view correctly.
ASSERT_TRUE(test_api.primary_big_view()->public_account());
ASSERT_FALSE(test_api.primary_big_view()->auth_user());
ASSERT_FALSE(test_api.opt_secondary_big_view()->public_account());
ASSERT_TRUE(test_api.opt_secondary_big_view()->auth_user());
// Send event to swap users.
ui::test::EventGenerator* generator = GetEventGenerator();
LoginAuthUserView::TestApi secondary_test_api(
test_api.opt_secondary_big_view()->auth_user());
generator->MoveMouseTo(
secondary_test_api.user_view()->GetBoundsInScreen().CenterPoint());
generator->ClickLeftButton();
// User info is not swapped.
EXPECT_EQ(
primary_user,
test_api.primary_big_view()->GetCurrentUser().basic_user_info.account_id);
EXPECT_EQ(secondary_user, test_api.opt_secondary_big_view()
->GetCurrentUser()
.basic_user_info.account_id);
// Child view of LoginBigUserView stays the same.
ASSERT_TRUE(test_api.primary_big_view()->public_account());
ASSERT_FALSE(test_api.primary_big_view()->auth_user());
ASSERT_FALSE(test_api.opt_secondary_big_view()->public_account());
ASSERT_TRUE(test_api.opt_secondary_big_view()->auth_user());
// Active auth (ie, which user is showing password) is swapped.
EXPECT_FALSE(test_api.primary_big_view()->IsAuthEnabled());
EXPECT_TRUE(test_api.opt_secondary_big_view()->IsAuthEnabled());
}
// Ensures that when swapping from a user list, the entire user info is swapped
// and the primary big user will rebuild its child view when necessary.
TEST_F(LockContentsViewUnitTest, SwapUserListToPrimaryBigUser) {
// Build lock screen with 4 users: two public account users and two regular
// users.
auto* contents = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
std::unique_ptr<views::Widget> widget = CreateWidgetWithContent(contents);
AddPublicAccountUsers(2);
AddUsers(2);
LockContentsView::TestApi contents_test_api(contents);
ScrollableUsersListView::TestApi users_list(contents_test_api.users_list());
EXPECT_EQ(users().size() - 1, users_list.user_views().size());
LoginBigUserView* primary_big_view = contents_test_api.primary_big_view();
// Verify that primary_big_view is public account user.
ASSERT_TRUE(primary_big_view->public_account());
ASSERT_FALSE(primary_big_view->auth_user());
const LoginUserView* user_view0 = users_list.user_views()[0];
const LoginUserView* user_view1 = users_list.user_views()[1];
const LoginUserView* user_view2 = users_list.user_views()[2];
// Clicks on |view| to make it swap with the primary big user.
auto click_view = [&](const LoginUserView* view) {
ui::test::EventGenerator* generator = GetEventGenerator();
generator->MoveMouseTo(view->GetBoundsInScreen().CenterPoint());
generator->ClickLeftButton();
};
auto is_public_account = [](const LoginUserView* view) -> bool {
return view->current_user().basic_user_info.type ==
user_manager::USER_TYPE_PUBLIC_ACCOUNT;
};
// Case 1: Swap user_view0 (public account user) with primary big user (public
// account user).
EXPECT_TRUE(is_public_account(user_view0));
AccountId primary_id =
primary_big_view->GetCurrentUser().basic_user_info.account_id;
AccountId list_user_id =
user_view0->current_user().basic_user_info.account_id;
EXPECT_NE(primary_id, list_user_id);
// Send event to swap users.
click_view(user_view0);
// User info is swapped.
EXPECT_EQ(list_user_id,
primary_big_view->GetCurrentUser().basic_user_info.account_id);
EXPECT_EQ(primary_id, user_view0->current_user().basic_user_info.account_id);
// Child view of primary big user stays the same.
ASSERT_TRUE(primary_big_view->public_account());
ASSERT_FALSE(primary_big_view->auth_user());
// user_view0 is still public account user.
EXPECT_TRUE(is_public_account(user_view0));
// Case 2: Swap user_view1 (auth user) with primary big user (public account
// user).
EXPECT_FALSE(is_public_account(user_view1));
primary_id = primary_big_view->GetCurrentUser().basic_user_info.account_id;
list_user_id = user_view1->current_user().basic_user_info.account_id;
EXPECT_NE(primary_id, list_user_id);
// Send event to swap users.
click_view(user_view1);
// User info is swapped.
EXPECT_EQ(list_user_id,
primary_big_view->GetCurrentUser().basic_user_info.account_id);
EXPECT_EQ(primary_id, user_view1->current_user().basic_user_info.account_id);
// Primary big user becomes auth user and its child view is rebuilt.
ASSERT_FALSE(primary_big_view->public_account());
ASSERT_TRUE(primary_big_view->auth_user());
// user_view1 becomes public account user.
EXPECT_TRUE(is_public_account(user_view1));
// Case 3: Swap user_view2 (auth user) with primary big user (auth user).
EXPECT_FALSE(is_public_account(user_view2));
primary_id = primary_big_view->GetCurrentUser().basic_user_info.account_id;
list_user_id = user_view2->current_user().basic_user_info.account_id;
EXPECT_NE(primary_id, list_user_id);
// Send event to swap users.
click_view(user_view2);
// User info is swapped.
EXPECT_EQ(list_user_id,
primary_big_view->GetCurrentUser().basic_user_info.account_id);
EXPECT_EQ(primary_id, user_view2->current_user().basic_user_info.account_id);
// Child view of primary big user stays the same.
ASSERT_FALSE(primary_big_view->public_account());
ASSERT_TRUE(primary_big_view->auth_user());
// user_view2 is still auth user.
EXPECT_FALSE(is_public_account(user_view2));
// Case 4: Swap user_view0 (public account user) with with primary big user
// (auth user).
EXPECT_TRUE(is_public_account(user_view0));
primary_id = primary_big_view->GetCurrentUser().basic_user_info.account_id;
list_user_id = user_view0->current_user().basic_user_info.account_id;
EXPECT_NE(primary_id, list_user_id);
// Send event to swap users.
click_view(user_view0);
// User info is swapped.
EXPECT_EQ(list_user_id,
primary_big_view->GetCurrentUser().basic_user_info.account_id);
EXPECT_EQ(primary_id, user_view0->current_user().basic_user_info.account_id);
// Primary big user becomes public account user and its child view is rebuilt.
ASSERT_TRUE(primary_big_view->public_account());
ASSERT_FALSE(primary_big_view->auth_user());
// user_view0 becomes auth user.
EXPECT_FALSE(is_public_account(user_view0));
}
// Validates that swapping between two auth users also changes password focus.
TEST_F(LockContentsViewUnitTest, AuthUserSwapFocusesPassword) {
auto* contents = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
AddUsers(2);
std::unique_ptr<views::Widget> widget = CreateWidgetWithContent(contents);
auto do_test = [&](AuthTarget auth_target) {
SCOPED_TRACE(AuthTargetToString(auth_target));
LoginAuthUserView::TestApi test_api =
MakeLoginAuthTestApi(contents, auth_target);
LoginPasswordView* password = test_api.password_view();
// Focus user, validate password did not get focused, then activate the
// user, which shows and focuses the password.
test_api.user_view()->RequestFocus();
EXPECT_FALSE(HasFocusInAnyChildView(password));
GetEventGenerator()->PressKey(ui::KeyboardCode::VKEY_RETURN, 0);
EXPECT_TRUE(HasFocusInAnyChildView(password));
};
// do_test requires that the auth target is not active, so do secondary before
// primary.
do_test(AuthTarget::kSecondary);
do_test(AuthTarget::kPrimary);
}
// Validates that tapping on an auth user will refocus the password.
TEST_F(LockContentsViewUnitTest, TapOnAuthUserFocusesPassword) {
auto* contents = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
std::unique_ptr<views::Widget> widget = CreateWidgetWithContent(contents);
auto do_test = [&](AuthTarget auth_target) {
SCOPED_TRACE(testing::Message()
<< "users=" << users().size()
<< ", auth_target=" << AuthTargetToString(auth_target));
LoginAuthUserView::TestApi auth_user_test_api =
MakeLoginAuthTestApi(contents, auth_target);
LoginPasswordView* password = auth_user_test_api.password_view();
// Activate |auth_target|.
auth_user_test_api.user_view()->RequestFocus();
GetEventGenerator()->PressKey(ui::KeyboardCode::VKEY_RETURN, 0);
// Move focus off of |auth_target|'s password.
ASSERT_TRUE(HasFocusInAnyChildView(password));
GetEventGenerator()->PressKey(ui::KeyboardCode::VKEY_TAB, 0);
EXPECT_FALSE(HasFocusInAnyChildView(password));
// Click the user view, verify the password was focused.
GetEventGenerator()->MoveMouseTo(
auth_user_test_api.user_view()->GetBoundsInScreen().CenterPoint());
GetEventGenerator()->ClickLeftButton();
EXPECT_TRUE(HasFocusInAnyChildView(password));
};
SetUserCount(1);
do_test(AuthTarget::kPrimary);
SetUserCount(2);
do_test(AuthTarget::kPrimary);
do_test(AuthTarget::kSecondary);
SetUserCount(3);
do_test(AuthTarget::kPrimary);
}
// Validates that swapping between users in user lists maintains password focus.
TEST_F(LockContentsViewUnitTest, UserListUserSwapFocusesPassword) {
auto* contents = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
LockContentsView::TestApi contents_test_api(contents);
AddUsers(3);
std::unique_ptr<views::Widget> widget = CreateWidgetWithContent(contents);
LoginPasswordView* password_view =
LoginAuthUserView::TestApi(
contents_test_api.primary_big_view()->auth_user())
.password_view();
LoginUserView* user_view = contents_test_api.users_list()->user_view_at(0);
// Focus the user view, verify the password does not have focus, activate the
// user view, verify the password now has focus.
user_view->RequestFocus();
EXPECT_FALSE(HasFocusInAnyChildView(password_view));
GetEventGenerator()->PressKey(ui::KeyboardCode::VKEY_RETURN, 0);
EXPECT_TRUE(HasFocusInAnyChildView(password_view));
}
TEST_F(LockContentsViewUnitTest, BadDetachableBaseUnfocusesPasswordView) {
auto fake_detachable_base_model =
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher());
FakeLoginDetachableBaseModel* detachable_base_model =
fake_detachable_base_model.get();
auto* contents = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(), std::move(fake_detachable_base_model));
SetUserCount(3);
std::unique_ptr<views::Widget> widget = CreateWidgetWithContent(contents);
LockContentsView::TestApi test_api(contents);
LoginBigUserView* primary_view = test_api.primary_big_view();
LoginPasswordView* primary_password_view =
LoginAuthUserView::TestApi(primary_view->auth_user()).password_view();
EXPECT_TRUE(login_views_utils::HasFocusInAnyChildView(primary_password_view));
detachable_base_model->SetPairingStatus(
DetachableBasePairingStatus::kNotAuthenticated, "");
EXPECT_FALSE(
login_views_utils::HasFocusInAnyChildView(primary_password_view));
// Swapping to another user should still not focus password view.
LoginUserView* first_list_user = test_api.users_list()->user_view_at(0);
first_list_user->RequestFocus();
GetEventGenerator()->PressKey(ui::KeyboardCode::VKEY_RETURN, 0);
EXPECT_FALSE(
login_views_utils::HasFocusInAnyChildView(primary_password_view));
}
TEST_F(LockContentsViewUnitTest, ExpandedPublicSessionView) {
// Build lock screen with 3 users: one public account user and two regular
// users.
auto* contents = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
LockContentsView::TestApi lock_contents(contents);
std::unique_ptr<views::Widget> widget = CreateWidgetWithContent(contents);
AddPublicAccountUsers(1);
AddUsers(2);
views::View* main_view = lock_contents.main_view();
LoginExpandedPublicAccountView* expanded_view = lock_contents.expanded_view();
EXPECT_TRUE(main_view->GetVisible());
EXPECT_FALSE(expanded_view->GetVisible());
LoginBigUserView* primary_big_view = lock_contents.primary_big_view();
AccountId primary_id =
primary_big_view->GetCurrentUser().basic_user_info.account_id;
// Open the expanded public session view.
ui::test::EventGenerator* generator = GetEventGenerator();
generator->PressKey(ui::KeyboardCode::VKEY_RETURN, 0);
EXPECT_FALSE(main_view->GetVisible());
EXPECT_TRUE(expanded_view->GetVisible());
EXPECT_EQ(expanded_view->current_user().basic_user_info.account_id,
primary_id);
// Expect LanuchPublicSession mojo call when the submit button is clicked.
auto client = std::make_unique<MockLoginScreenClient>();
EXPECT_CALL(*client, LaunchPublicSession(primary_id, _, _));
// Click on the submit button.
LoginExpandedPublicAccountView::TestApi expanded_view_api(expanded_view);
generator->MoveMouseTo(
expanded_view_api.submit_button()->GetBoundsInScreen().CenterPoint());
generator->ClickLeftButton();
base::RunLoop().RunUntilIdle();
}
TEST_F(LockContentsViewUnitTest, OnAuthEnabledForUserChanged) {
auto* contents = new LockContentsView(
mojom::TrayActionState::kAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
SetUserCount(1);
SetWidget(CreateWidgetWithContent(contents));
const AccountId& kFirstUserAccountId = users()[0].basic_user_info.account_id;
LockContentsView::TestApi contents_test_api(contents);
LoginAuthUserView::TestApi auth_test_api(
contents_test_api.primary_big_view()->auth_user());
LoginPasswordView* password_view = auth_test_api.password_view();
LoginPinView* pin_view = auth_test_api.pin_view();
views::View* disabled_auth_message = auth_test_api.disabled_auth_message();
// The password field is shown by default.
EXPECT_TRUE(password_view->GetVisible());
EXPECT_FALSE(pin_view->GetVisible());
EXPECT_FALSE(disabled_auth_message->GetVisible());
// Setting auth disabled will hide the password field and show the message.
DataDispatcher()->DisableAuthForUser(kFirstUserAccountId,
GetTestDisabledAuthData());
EXPECT_FALSE(password_view->GetVisible());
EXPECT_FALSE(pin_view->GetVisible());
EXPECT_TRUE(disabled_auth_message->GetVisible());
// Setting auth enabled will hide the message and show the password field.
DataDispatcher()->EnableAuthForUser(kFirstUserAccountId);
EXPECT_TRUE(password_view->GetVisible());
EXPECT_FALSE(pin_view->GetVisible());
EXPECT_FALSE(disabled_auth_message->GetVisible());
// Set auth disabled again.
DataDispatcher()->DisableAuthForUser(kFirstUserAccountId,
GetTestDisabledAuthData());
EXPECT_FALSE(password_view->GetVisible());
EXPECT_FALSE(pin_view->GetVisible());
EXPECT_TRUE(disabled_auth_message->GetVisible());
// Enable PIN. There's no UI change because auth is currently disabled.
DataDispatcher()->SetPinEnabledForUser(kFirstUserAccountId, true);
EXPECT_FALSE(password_view->GetVisible());
EXPECT_FALSE(pin_view->GetVisible());
EXPECT_TRUE(disabled_auth_message->GetVisible());
// Set auth enabled again. Both password field and PIN keyboard are shown.
DataDispatcher()->EnableAuthForUser(kFirstUserAccountId);
EXPECT_TRUE(password_view->GetVisible());
EXPECT_TRUE(pin_view->GetVisible());
EXPECT_FALSE(disabled_auth_message->GetVisible());
}
TEST_F(LockContentsViewUnitTest,
ToggleNoteActionVisibilityOnAuthEnabledChanged) {
auto* tray_action = Shell::Get()->tray_action();
TestTrayActionClient action_client;
tray_action->SetClient(action_client.CreateRemoteAndBind(),
mojom::TrayActionState::kAvailable);
auto* contents = new LockContentsView(
Shell::Get()->tray_action()->GetLockScreenNoteState(),
LockScreen::ScreenType::kLock, DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
SetUserCount(1);
SetWidget(CreateWidgetWithContent(contents));
const AccountId& kFirstUserAccountId = users()[0].basic_user_info.account_id;
LockContentsView::TestApi contents_test_api(contents);
views::View* note_action_button = contents_test_api.note_action();
EXPECT_TRUE(note_action_button->GetVisible());
// Setting auth disabled hides the note action button.
DataDispatcher()->DisableAuthForUser(kFirstUserAccountId,
GetTestDisabledAuthData());
EXPECT_FALSE(note_action_button->GetVisible());
// Setting auth enabled shows the note action button.
DataDispatcher()->EnableAuthForUser(kFirstUserAccountId);
EXPECT_TRUE(note_action_button->GetVisible());
// Set auth disabled again.
DataDispatcher()->DisableAuthForUser(kFirstUserAccountId,
GetTestDisabledAuthData());
EXPECT_FALSE(note_action_button->GetVisible());
// Set the lock screen note state to |kNotAvailable| while the note action
// button is hidden.
tray_action->UpdateLockScreenNoteState(mojom::TrayActionState::kNotAvailable);
DataDispatcher()->EnableAuthForUser(kFirstUserAccountId);
// The note action button remains hidden after setting auth enabled.
EXPECT_FALSE(note_action_button->GetVisible());
}
TEST_F(LockContentsViewUnitTest, DisabledAuthMessageFocusBehavior) {
auto* contents = new LockContentsView(
mojom::TrayActionState::kAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
SetUserCount(1);
SetWidget(CreateWidgetWithContent(contents));
const AccountId& kFirstUserAccountId = users()[0].basic_user_info.account_id;
LockContentsView::TestApi contents_test_api(contents);
LoginAuthUserView::TestApi auth_test_api(
contents_test_api.primary_big_view()->auth_user());
views::View* disabled_auth_message = auth_test_api.disabled_auth_message();
LoginUserView* user_view = auth_test_api.user_view();
// The message is visible after disabling auth and it receives initial focus.
DataDispatcher()->DisableAuthForUser(kFirstUserAccountId,
GetTestDisabledAuthData());
EXPECT_TRUE(disabled_auth_message->GetVisible());
EXPECT_TRUE(HasFocusInAnyChildView(disabled_auth_message));
// Tabbing from the message will move focus to the user view.
ASSERT_TRUE(TabThroughView(GetEventGenerator(), disabled_auth_message,
false /*reverse*/));
EXPECT_TRUE(HasFocusInAnyChildView(user_view));
// Shift-tabbing from the user view will move focus back to the message.
ASSERT_TRUE(TabThroughView(GetEventGenerator(), user_view, true /*reverse*/));
EXPECT_TRUE(HasFocusInAnyChildView(disabled_auth_message));
// Additional shift-tabbing will eventually move focus to the status area.
ASSERT_TRUE(TabThroughView(GetEventGenerator(), disabled_auth_message,
true /*reverse*/));
views::View* status_area =
RootWindowController::ForWindow(contents->GetWidget()->GetNativeWindow())
->GetStatusAreaWidget()
->GetContentsView();
EXPECT_TRUE(HasFocusInAnyChildView(status_area));
}
// Tests that media controls do not show on lock screen when auth is disabled
// after media session changes to playing.
TEST_F(LockContentsViewUnitTest, DisableAuthAfterMediaSessionChanged) {
base::test::ScopedFeatureList feature_list;
feature_list.InitAndEnableFeature(features::kLockScreenMediaControls);
auto* contents = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
SetUserCount(1);
std::unique_ptr<views::Widget> widget = CreateWidgetWithContent(contents);
const AccountId& kFirstUserAccountId = users()[0].basic_user_info.account_id;
LockContentsView::TestApi lock_contents(contents);
// Simulate playing media session.
SimulateMediaSessionChanged(
lock_contents.media_controls_view(),
media_session::mojom::MediaPlaybackState::kPlaying);
EXPECT_TRUE(lock_contents.media_controls_view()->IsDrawn());
// Disable auth and media.
DataDispatcher()->DisableAuthForUser(
kFirstUserAccountId,
AuthDisabledData(AuthDisabledReason::kTimeWindowLimit,
base::Time::Now() + base::TimeDelta::FromHours(8),
base::TimeDelta::FromHours(1),
true /*disable_lock_screen_media*/));
EXPECT_FALSE(lock_contents.media_controls_view()->IsDrawn());
}
// Tests that media controls do not show on lock screen when auth is disabled
// before media session changes to playing.
TEST_F(LockContentsViewUnitTest, DisableAuthBeforeMediaSessionChanged) {
base::test::ScopedFeatureList feature_list;
feature_list.InitAndEnableFeature(features::kLockScreenMediaControls);
auto* contents = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
SetUserCount(1);
std::unique_ptr<views::Widget> widget = CreateWidgetWithContent(contents);
const AccountId& kFirstUserAccountId = users()[0].basic_user_info.account_id;
LockContentsView::TestApi lock_contents(contents);
// Disable auth and media.
DataDispatcher()->DisableAuthForUser(
kFirstUserAccountId,
AuthDisabledData(AuthDisabledReason::kTimeWindowLimit,
base::Time::Now() + base::TimeDelta::FromHours(8),
base::TimeDelta::FromHours(1),
true /*disable_lock_screen_media*/));
EXPECT_FALSE(lock_contents.media_controls_view()->IsDrawn());
// Simulate playing media session.
SimulateMediaSessionChanged(
lock_contents.media_controls_view(),
media_session::mojom::MediaPlaybackState::kPlaying);
EXPECT_FALSE(lock_contents.media_controls_view()->IsDrawn());
}
TEST_F(LockContentsViewUnitTest, DisableAuthAllowMediaControls) {
base::test::ScopedFeatureList feature_list;
feature_list.InitAndEnableFeature(features::kLockScreenMediaControls);
auto* contents = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
SetUserCount(1);
std::unique_ptr<views::Widget> widget = CreateWidgetWithContent(contents);
const AccountId& kFirstUserAccountId = users()[0].basic_user_info.account_id;
LockContentsView::TestApi lock_contents(contents);
// Simulate playing media session.
SimulateMediaSessionChanged(
lock_contents.media_controls_view(),
media_session::mojom::MediaPlaybackState::kPlaying);
EXPECT_TRUE(lock_contents.media_controls_view()->IsDrawn());
// Disable auth, but allow media.
DataDispatcher()->DisableAuthForUser(
kFirstUserAccountId,
AuthDisabledData(AuthDisabledReason::kTimeWindowLimit,
base::Time::Now() + base::TimeDelta::FromHours(8),
base::TimeDelta::FromHours(1),
false /*disable_lock_screen_media*/));
EXPECT_TRUE(lock_contents.media_controls_view()->IsDrawn());
}
// Tests parent access dialog showing/hiding and focus behavior.
TEST_F(LockContentsViewUnitTest, ParentAccessDialog) {
auto* contents = new LockContentsView(
mojom::TrayActionState::kAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
AddChildUsers(1);
SetWidget(CreateWidgetWithContent(contents));
LoginBigUserView* primary_view =
LockContentsView::TestApi(contents).primary_big_view();
LoginAuthUserView::TestApi auth_user =
LoginAuthUserView::TestApi(primary_view->auth_user());
EXPECT_TRUE(primary_view->auth_user());
EXPECT_FALSE(PinRequestWidget::Get());
EXPECT_TRUE(LoginPasswordView::TestApi(auth_user.password_view())
.textfield()
->HasFocus());
contents->ShowParentAccessDialog();
EXPECT_TRUE(primary_view->auth_user());
EXPECT_FALSE(LoginPasswordView::TestApi(auth_user.password_view())
.textfield()
->HasFocus());
PinRequestWidget::Get()->Close(false /* validation success */);
EXPECT_TRUE(primary_view->auth_user());
EXPECT_TRUE(LoginPasswordView::TestApi(auth_user.password_view())
.textfield()
->HasFocus());
}
// Tests parent access shelf button is showing and hiding.
TEST_F(LockContentsViewUnitTest, ParentAccessButton) {
GetSessionControllerClient()->SetSessionState(
session_manager::SessionState::LOCKED);
auto* contents = new LockContentsView(
mojom::TrayActionState::kAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
AddChildUsers(1);
const AccountId child_id = users()[0].basic_user_info.account_id;
SetWidget(CreateWidgetWithContent(contents));
// Simulate initial state - user auth disabled and button shown.
DataDispatcher()->DisableAuthForUser(child_id, GetTestDisabledAuthData());
Shell::Get()->login_screen_controller()->ShowParentAccessButton(true);
EXPECT_TRUE(LoginScreenTestApi::IsParentAccessButtonShown());
// Validation failed - show the button.
contents->ShowParentAccessDialog();
EXPECT_FALSE(LoginScreenTestApi::IsParentAccessButtonShown());
PinRequestWidget::Get()->Close(false /* validation success */);
EXPECT_TRUE(LoginScreenTestApi::IsParentAccessButtonShown());
// Validation succeeded - hide the button.
contents->ShowParentAccessDialog();
EXPECT_FALSE(LoginScreenTestApi::IsParentAccessButtonShown());
PinRequestWidget::Get()->Close(true /* validation success */);
EXPECT_FALSE(LoginScreenTestApi::IsParentAccessButtonShown());
// Validation failed but user auth got enabled - hide button.
// (Device got unlocked when parent access dialog was shown)
contents->ShowParentAccessDialog();
EXPECT_FALSE(LoginScreenTestApi::IsParentAccessButtonShown());
DataDispatcher()->EnableAuthForUser(child_id);
PinRequestWidget::Get()->Close(false /* validation success */);
EXPECT_FALSE(LoginScreenTestApi::IsParentAccessButtonShown());
}
using LockContentsViewPowerManagerUnitTest = LockContentsViewUnitTest;
// Ensures that a PowerManagerClient::Observer is added on LockScreen::Show()
// and removed on LockScreen::Destroy().
TEST_F(LockContentsViewPowerManagerUnitTest,
LockScreenManagesPowerManagerObserver) {
ASSERT_NO_FATAL_FAILURE(ShowLockScreen());
LockContentsView* contents =
LockScreen::TestApi(LockScreen::Get()).contents_view();
EXPECT_TRUE(chromeos::PowerManagerClient::Get()->HasObserver(contents));
LockScreen::Get()->Destroy();
// Wait for LockScreen to be fully destroyed
base::RunLoop().RunUntilIdle();
EXPECT_FALSE(chromeos::PowerManagerClient::Get()->HasObserver(contents));
}
// Verifies that the password box for the active user is cleared if a suspend
// event is received.
TEST_F(LockContentsViewUnitTest, PasswordClearedOnSuspend) {
ASSERT_NO_FATAL_FAILURE(ShowLoginScreen());
AddUsers(1);
LockScreen::TestApi lock_screen = LockScreen::TestApi(LockScreen::Get());
LockContentsView* contents = lock_screen.contents_view();
LoginPasswordView* password_view = LockContentsView::TestApi(contents)
.primary_big_view()
->auth_user()
->password_view();
views::Textfield* textfield =
LoginPasswordView::TestApi(password_view).textfield();
textfield->SetText(base::ASCIIToUTF16("some_password"));
// Suspend clears password.
EXPECT_FALSE(textfield->GetText().empty());
contents->SuspendImminent(power_manager::SuspendImminent_Reason_LID_CLOSED);
EXPECT_TRUE(textfield->GetText().empty());
}
TEST_F(LockContentsViewUnitTest, ArrowNavSingleUser) {
ASSERT_NO_FATAL_FAILURE(ShowLoginScreen());
SetUserCount(1);
LockContentsView* lock_contents =
LockScreen::TestApi(LockScreen::Get()).contents_view();
LoginBigUserView* primary_big_view =
LockContentsView::TestApi(lock_contents).primary_big_view();
EXPECT_TRUE(login_views_utils::HasFocusInAnyChildView(primary_big_view));
ui::test::EventGenerator* generator = GetEventGenerator();
generator->PressKey(ui::VKEY_RIGHT, 0);
EXPECT_TRUE(login_views_utils::HasFocusInAnyChildView(primary_big_view));
generator->PressKey(ui::VKEY_LEFT, 0);
EXPECT_TRUE(login_views_utils::HasFocusInAnyChildView(primary_big_view));
}
TEST_F(LockContentsViewUnitTest, ArrowNavTwoUsers) {
ASSERT_NO_FATAL_FAILURE(ShowLoginScreen());
AddUsers(1);
AddPublicAccountUsers(1);
LockContentsView::TestApi lock_contents = LockContentsView::TestApi(
LockScreen::TestApi(LockScreen::Get()).contents_view());
LoginPasswordView* primary_password_view =
LoginAuthUserView::TestApi(lock_contents.primary_big_view()->auth_user())
.password_view();
LoginBigUserView* secondary_user_view =
lock_contents.opt_secondary_big_view();
ASSERT_NE(nullptr, secondary_user_view);
EXPECT_TRUE(login_views_utils::HasFocusInAnyChildView(primary_password_view));
ui::test::EventGenerator* generator = GetEventGenerator();
generator->PressKey(ui::VKEY_RIGHT, 0);
EXPECT_TRUE(login_views_utils::HasFocusInAnyChildView(secondary_user_view));
generator->PressKey(ui::VKEY_RIGHT, 0);
EXPECT_TRUE(login_views_utils::HasFocusInAnyChildView(primary_password_view));
generator->PressKey(ui::VKEY_LEFT, 0);
EXPECT_TRUE(login_views_utils::HasFocusInAnyChildView(secondary_user_view));
generator->PressKey(ui::VKEY_LEFT, 0);
EXPECT_TRUE(login_views_utils::HasFocusInAnyChildView(primary_password_view));
}
TEST_F(LockContentsViewUnitTest, ArrowNavThreeUsers) {
ASSERT_NO_FATAL_FAILURE(ShowLoginScreen());
SetUserCount(3);
LockContentsView::TestApi lock_contents = LockContentsView::TestApi(
LockScreen::TestApi(LockScreen::Get()).contents_view());
LoginPasswordView* primary_password_view =
LoginAuthUserView::TestApi(lock_contents.primary_big_view()->auth_user())
.password_view();
LoginUserView* first_list_user = lock_contents.users_list()->user_view_at(0);
LoginUserView* second_list_user = lock_contents.users_list()->user_view_at(1);
EXPECT_TRUE(login_views_utils::HasFocusInAnyChildView(primary_password_view));
ui::test::EventGenerator* generator = GetEventGenerator();
generator->PressKey(ui::VKEY_RIGHT, 0);
EXPECT_TRUE(login_views_utils::HasFocusInAnyChildView(first_list_user));
generator->PressKey(ui::VKEY_RIGHT, 0);
EXPECT_TRUE(login_views_utils::HasFocusInAnyChildView(second_list_user));
generator->PressKey(ui::VKEY_RIGHT, 0);
EXPECT_TRUE(login_views_utils::HasFocusInAnyChildView(primary_password_view));
generator->PressKey(ui::VKEY_LEFT, 0);
EXPECT_TRUE(login_views_utils::HasFocusInAnyChildView(second_list_user));
generator->PressKey(ui::VKEY_LEFT, 0);
EXPECT_TRUE(login_views_utils::HasFocusInAnyChildView(first_list_user));
generator->PressKey(ui::VKEY_LEFT, 0);
EXPECT_TRUE(login_views_utils::HasFocusInAnyChildView(primary_password_view));
}
TEST_F(LockContentsViewUnitTest, UserSwapFocusesBigView) {
ASSERT_NO_FATAL_FAILURE(ShowLoginScreen());
SetUserCount(3);
LockContentsView::TestApi lock_contents = LockContentsView::TestApi(
LockScreen::TestApi(LockScreen::Get()).contents_view());
LoginPasswordView* primary_password_view =
LoginAuthUserView::TestApi(lock_contents.primary_big_view()->auth_user())
.password_view();
EXPECT_TRUE(login_views_utils::HasFocusInAnyChildView(primary_password_view));
lock_contents.users_list()->user_view_at(0)->RequestFocus();
ui::test::EventGenerator* generator = GetEventGenerator();
generator->PressKey(ui::VKEY_RETURN, 0);
EXPECT_TRUE(login_views_utils::HasFocusInAnyChildView(primary_password_view));
}
TEST_F(LockContentsViewUnitTest, PowerwashShortcutSendsMojoCall) {
auto* contents = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLogin,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
SetUserCount(1);
SetWidget(CreateWidgetWithContent(contents));
auto client = std::make_unique<MockLoginScreenClient>();
EXPECT_CALL(*client, ShowResetScreen());
ui::test::EventGenerator* generator = GetEventGenerator();
generator->PressKey(ui::KeyboardCode::VKEY_R, ui::EF_CONTROL_DOWN |
ui::EF_ALT_DOWN |
ui::EF_SHIFT_DOWN);
base::RunLoop().RunUntilIdle();
}
TEST_F(LockContentsViewUnitTest, UsersChangedRetainsExistingState) {
auto* contents = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
SetUserCount(2);
SetWidget(CreateWidgetWithContent(contents));
LockContentsView::TestApi test_api(contents);
AccountId primary_user =
test_api.primary_big_view()->GetCurrentUser().basic_user_info.account_id;
DataDispatcher()->SetPinEnabledForUser(primary_user, true);
// This user should be identical to the user we enabled PIN for.
SetUserCount(1);
EXPECT_TRUE(
LoginAuthUserView::TestApi(test_api.primary_big_view()->auth_user())
.pin_view()
->GetVisible());
}
TEST_F(LockContentsViewUnitTest, ShowHideWarningBannerBubble) {
// Build lock screen with a single user.
auto* lock = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
SetUserCount(1);
SetWidget(CreateWidgetWithContent(lock));
const AccountId& kUserAccountId = users()[0].basic_user_info.account_id;
LockContentsView::TestApi test_api(lock);
ui::test::EventGenerator* generator = GetEventGenerator();
// Creating lock screen does not show warning banner bubble.
EXPECT_FALSE(test_api.warning_banner_bubble()->GetVisible());
// Verifies that a warning banner is shown by giving a non-empty message.
DataDispatcher()->UpdateWarningMessage(base::ASCIIToUTF16("foo"));
EXPECT_TRUE(test_api.warning_banner_bubble()->GetVisible());
// Verifies that a warning banner is hidden by HideWarningBanner().
DataDispatcher()->UpdateWarningMessage({});
EXPECT_FALSE(test_api.warning_banner_bubble()->GetVisible());
// Shows a warning banner again.
DataDispatcher()->UpdateWarningMessage(base::ASCIIToUTF16("foo"));
EXPECT_TRUE(test_api.warning_banner_bubble()->GetVisible());
// Attempt and fail user auth - an auth error is expected to be shown.
// The warning banner should not be hidden.
auto client = std::make_unique<MockLoginScreenClient>();
client->set_authenticate_user_callback_result(false);
EXPECT_CALL(*client,
AuthenticateUserWithPasswordOrPin_(kUserAccountId, _, false, _));
// Submit password.
LoginAuthUserView::TestApi(test_api.primary_big_view()->auth_user())
.password_view()
->RequestFocus();
generator->PressKey(ui::KeyboardCode::VKEY_A, 0);
generator->PressKey(ui::KeyboardCode::VKEY_RETURN, 0);
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(test_api.auth_error_bubble()->GetVisible());
EXPECT_TRUE(test_api.warning_banner_bubble()->GetVisible());
}
TEST_F(LockContentsViewUnitTest, RemoveUserFocusMovesBackToPrimaryUser) {
// Build lock screen with one public account and one normal user.
auto* lock = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
AddPublicAccountUsers(1);
AddUsers(1);
users()[1].can_remove = true;
DataDispatcher()->SetUserList(users());
SetWidget(CreateWidgetWithContent(lock));
auto client = std::make_unique<MockLoginScreenClient>();
EXPECT_CALL(*client, RemoveUser(users()[1].basic_user_info.account_id))
.Times(1)
.WillOnce(Invoke(this, &LoginTestBase::RemoveUser));
LockContentsView::TestApi test_api(lock);
LoginAuthUserView::TestApi secondary_test_api(
test_api.opt_secondary_big_view()->auth_user());
LoginUserView::TestApi user_test_api(secondary_test_api.user_view());
// Remove the user.
ui::test::EventGenerator* generator = GetEventGenerator();
// Focus the dropdown to raise the bubble.
user_test_api.dropdown()->RequestFocus();
generator->PressKey(ui::KeyboardCode::VKEY_RETURN, 0);
base::RunLoop().RunUntilIdle();
// Focus the remove user bubble, tap twice to remove the user.
user_test_api.menu()->RequestFocus();
generator->PressKey(ui::KeyboardCode::VKEY_RETURN, 0);
base::RunLoop().RunUntilIdle();
generator->PressKey(ui::KeyboardCode::VKEY_RETURN, 0);
base::RunLoop().RunUntilIdle();
// Secondary user was removed.
EXPECT_EQ(nullptr, test_api.opt_secondary_big_view());
// Primary user has focus.
EXPECT_TRUE(HasFocusInAnyChildView(test_api.primary_big_view()));
}
// Verifies that setting fingerprint state keeps the backlights forced off. A
// fingerprint state change is not a user action, excluding too many
// authentication attempts, which will trigger the auth attempt flow.
TEST_F(LockContentsViewUnitTest,
BacklightRemainsForcedOffAfterFingerprintStateChange) {
// Enter tablet mode so the power button events force the backlight off.
Shell::Get()->power_button_controller()->OnTabletModeStarted();
// Show lock screen with one normal user.
auto* lock = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
AddUsers(1);
SetWidget(CreateWidgetWithContent(lock));
// Force the backlights off.
PressAndReleasePowerButton();
EXPECT_TRUE(
Shell::Get()->backlights_forced_off_setter()->backlights_forced_off());
// Change fingerprint state; backlights remain forced off.
DataDispatcher()->SetFingerprintState(
users()[0].basic_user_info.account_id,
FingerprintState::DISABLED_FROM_ATTEMPTS);
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(
Shell::Get()->backlights_forced_off_setter()->backlights_forced_off());
Shell::Get()->power_button_controller()->OnTabletModeEnded();
}
// Verifies that a fingerprint authentication attempt makes sure the backlights
// are not forced off.
TEST_F(LockContentsViewUnitTest,
BacklightIsNotForcedOffAfterFingerprintAuthenticationAttempt) {
// Enter tablet mode so the power button events force the backlight off.
Shell::Get()->power_button_controller()->OnTabletModeStarted();
// Show lock screen with one normal user.
auto* lock = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
AddUsers(1);
SetWidget(CreateWidgetWithContent(lock));
// Force the backlights off.
PressAndReleasePowerButton();
EXPECT_TRUE(
Shell::Get()->backlights_forced_off_setter()->backlights_forced_off());
// Validate a fingerprint authentication attempt resets backlights being
// forced off.
DataDispatcher()->NotifyFingerprintAuthResult(
users()[0].basic_user_info.account_id, false /*successful*/);
base::RunLoop().RunUntilIdle();
EXPECT_FALSE(
Shell::Get()->backlights_forced_off_setter()->backlights_forced_off());
Shell::Get()->power_button_controller()->OnTabletModeEnded();
}
TEST_F(LockContentsViewUnitTest, RightAndLeftAcceleratorsWithNoUser) {
// Show lock screen but do *not* initialize any users.
auto* lock = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
SetWidget(CreateWidgetWithContent(lock));
// Nothing to validate except that there is no crash.
lock->AcceleratorPressed(ui::Accelerator(ui::VKEY_RIGHT, 0));
lock->AcceleratorPressed(ui::Accelerator(ui::VKEY_LEFT, 0));
}
TEST_F(LockContentsViewUnitTest, OnFocusLeavingSystemTrayWithNoUsers) {
auto* lock = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
SetWidget(CreateWidgetWithContent(lock));
// Check that there is always a focusable view after transitioning focus.
lock->OnFocusLeavingSystemTray(false /* reverse */);
EXPECT_TRUE(lock->GetFocusManager()->GetFocusedView());
lock->OnFocusLeavingSystemTray(true /* reverse */);
EXPECT_TRUE(lock->GetFocusManager()->GetFocusedView());
}
TEST_F(LockContentsViewUnitTest, OnFocusLeavingSystemTrayWithOobeDialogOpen) {
auto* lock = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
SetWidget(CreateWidgetWithContent(lock));
// FocusOobeDialog called when OOBE dialog visible.
auto client = std::make_unique<MockLoginScreenClient>();
EXPECT_CALL(*client, FocusOobeDialog()).Times(1);
DataDispatcher()->NotifyOobeDialogState(OobeDialogState::GAIA_SIGNIN);
lock->OnFocusLeavingSystemTray(false /* reverse */);
}
TEST_F(LockContentsViewUnitTest, OnFocusLeavingSystemTrayWithOobeDialogClosed) {
auto* lock = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
SetWidget(CreateWidgetWithContent(lock));
// FocusOobeDialog not called when OOBE dialog not visible.
auto client = std::make_unique<MockLoginScreenClient>();
EXPECT_CALL(*client, FocusOobeDialog()).Times(0);
DataDispatcher()->NotifyOobeDialogState(OobeDialogState::HIDDEN);
lock->OnFocusLeavingSystemTray(false /* reverse */);
}
TEST_F(LockContentsViewUnitTest, LoginNotReactingOnEventsWithOobeDialogShown) {
auto* contents = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLogin,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
SetUserCount(3);
SetWidget(CreateWidgetWithContent(contents));
LockContentsView::TestApi lock_contents(contents);
ScrollableUsersListView::TestApi users_list(lock_contents.users_list());
const auto* const list_user_view = users_list.user_views()[0];
LoginBigUserView* auth_view = lock_contents.primary_big_view();
AccountId auth_view_user =
auth_view->GetCurrentUser().basic_user_info.account_id;
AccountId list_user =
list_user_view->current_user().basic_user_info.account_id;
DataDispatcher()->NotifyOobeDialogState(OobeDialogState::GAIA_SIGNIN);
// Send event to swap users.
ui::test::EventGenerator* generator = GetEventGenerator();
generator->MoveMouseTo(list_user_view->GetBoundsInScreen().CenterPoint());
generator->ClickLeftButton();
// User info is not swapped.
EXPECT_EQ(auth_view_user,
auth_view->GetCurrentUser().basic_user_info.account_id);
EXPECT_EQ(list_user,
list_user_view->current_user().basic_user_info.account_id);
// Hide OOBE dialog.
DataDispatcher()->NotifyOobeDialogState(OobeDialogState::HIDDEN);
// Attempt swap again.
generator->MoveMouseTo(list_user_view->GetBoundsInScreen().CenterPoint());
generator->ClickLeftButton();
// User info should be now swapped.
EXPECT_EQ(list_user, auth_view->GetCurrentUser().basic_user_info.account_id);
EXPECT_EQ(auth_view_user,
list_user_view->current_user().basic_user_info.account_id);
}
TEST_F(LockContentsViewUnitTest, LockScreenMediaControlsShownIfMediaPlaying) {
// Enable media controls.
base::test::ScopedFeatureList feature_list;
feature_list.InitAndEnableFeature(features::kLockScreenMediaControls);
// Build lock screen with 1 user.
auto* contents = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
SetUserCount(1);
std::unique_ptr<views::Widget> widget = CreateWidgetWithContent(contents);
LockContentsView::TestApi lock_contents(contents);
// Simulate playing media session.
SimulateMediaSessionChanged(
lock_contents.media_controls_view(),
media_session::mojom::MediaPlaybackState::kPlaying);
// Verify media controls are shown.
EXPECT_TRUE(lock_contents.media_controls_view()->IsDrawn());
}
TEST_F(LockContentsViewUnitTest, LockScreenMediaControlsHiddenAfterDelay) {
// Enable media controls.
base::test::ScopedFeatureList feature_list;
feature_list.InitAndEnableFeature(features::kLockScreenMediaControls);
// Build lock screen with 1 user.
auto* contents = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
SetUserCount(1);
std::unique_ptr<views::Widget> widget = CreateWidgetWithContent(contents);
LockContentsView::TestApi lock_contents(contents);
// Test timer
auto mock_timer_unique = std::make_unique<base::MockOneShotTimer>();
base::MockOneShotTimer* mock_timer = mock_timer_unique.get();
lock_contents.media_controls_view()->set_timer_for_testing(
std::move(mock_timer_unique));
// Simulate playing media session.
SimulateMediaSessionChanged(
lock_contents.media_controls_view(),
media_session::mojom::MediaPlaybackState::kPlaying);
// Simulate media session stopping and delay.
lock_contents.media_controls_view()->MediaSessionChanged(base::nullopt);
mock_timer->Fire();
base::RunLoop().RunUntilIdle();
// Simulate playing media session.
SimulateMediaSessionChanged(
lock_contents.media_controls_view(),
media_session::mojom::MediaPlaybackState::kPlaying);
// Verify media controls are hidden.
EXPECT_FALSE(lock_contents.media_controls_view()->IsDrawn());
}
TEST_F(LockContentsViewUnitTest,
MediaControlsHiddenIfScreenLockedWhileMediaPaused) {
// Enable media controls.
base::test::ScopedFeatureList feature_list;
feature_list.InitAndEnableFeature(features::kLockScreenMediaControls);
// Build lock screen with 1 user.
auto* contents = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
SetUserCount(1);
std::unique_ptr<views::Widget> widget = CreateWidgetWithContent(contents);
LockContentsView::TestApi lock_contents(contents);
// Simulate paused media session.
SimulateMediaSessionChanged(
lock_contents.media_controls_view(),
media_session::mojom::MediaPlaybackState::kPaused);
// Verify media controls are hidden.
EXPECT_FALSE(lock_contents.media_controls_view()->IsDrawn());
}
TEST_F(LockContentsViewUnitTest, KeepMediaControlsShownWithinDelay) {
// Enable media controls.
base::test::ScopedFeatureList feature_list;
feature_list.InitAndEnableFeature(features::kLockScreenMediaControls);
// Build lock screen with 1 user.
auto* contents = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
SetUserCount(1);
std::unique_ptr<views::Widget> widget = CreateWidgetWithContent(contents);
LockContentsView::TestApi lock_contents(contents);
// Simulate playing media session.
SimulateMediaSessionChanged(
lock_contents.media_controls_view(),
media_session::mojom::MediaPlaybackState::kPlaying);
// Simulate media session stopping.
lock_contents.media_controls_view()->MediaSessionChanged(base::nullopt);
// Simulate new media session starting within timer delay.
SimulateMediaSessionChanged(
lock_contents.media_controls_view(),
media_session::mojom::MediaPlaybackState::kPlaying);
// Verify media controls are shown.
EXPECT_TRUE(lock_contents.media_controls_view()->IsDrawn());
}
TEST_F(LockContentsViewUnitTest, LockScreenMediaControlsHiddenNoMedia) {
// Enable media controls.
base::test::ScopedFeatureList feature_list;
feature_list.InitAndEnableFeature(features::kLockScreenMediaControls);
// Build lock screen with 1 user.
auto* contents = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
SetUserCount(1);
std::unique_ptr<views::Widget> widget = CreateWidgetWithContent(contents);
LockContentsView::TestApi lock_contents(contents);
// Simulate no media session on lock screen.
lock_contents.media_controls_view()->MediaSessionInfoChanged(nullptr);
// Verify media controls are hidden.
EXPECT_FALSE(lock_contents.media_controls_view()->IsDrawn());
}
TEST_F(LockContentsViewUnitTest, ShowMediaControlsIfPausedAndAlreadyShowing) {
// Enable media controls.
base::test::ScopedFeatureList feature_list;
feature_list.InitAndEnableFeature(features::kLockScreenMediaControls);
// Build lock screen with 1 user.
auto* contents = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
SetUserCount(1);
std::unique_ptr<views::Widget> widget = CreateWidgetWithContent(contents);
LockContentsView::TestApi lock_contents(contents);
// Simulate playing media session.
SimulateMediaSessionChanged(
lock_contents.media_controls_view(),
media_session::mojom::MediaPlaybackState::kPlaying);
// Simulate media session paused.
SimulateMediaSessionChanged(
lock_contents.media_controls_view(),
media_session::mojom::MediaPlaybackState::kPaused);
// Verify media controls are shown.
EXPECT_TRUE(lock_contents.media_controls_view()->IsDrawn());
}
TEST_F(LockContentsViewUnitTest,
LockScreenMediaControlsHiddenIfPreferenceDisabled) {
// Enable media controls.
base::test::ScopedFeatureList feature_list;
feature_list.InitAndEnableFeature(features::kLockScreenMediaControls);
// Disable user preference for media controls.
PrefService* prefs =
Shell::Get()->session_controller()->GetLastActiveUserPrefService();
prefs->SetBoolean(prefs::kLockScreenMediaControlsEnabled, false);
// Build lock screen with 1 user.
auto* contents = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
SetUserCount(1);
std::unique_ptr<views::Widget> widget = CreateWidgetWithContent(contents);
LockContentsView::TestApi lock_contents(contents);
// Simulate active and playing media session.
SimulateMediaSessionChanged(
lock_contents.media_controls_view(),
media_session::mojom::MediaPlaybackState::kPlaying);
// Verify media controls are hidden.
EXPECT_FALSE(lock_contents.media_controls_view()->IsDrawn());
}
TEST_F(LockContentsViewUnitTest, MediaControlsHiddenOnLoginScreen) {
// Enable media controls.
base::test::ScopedFeatureList feature_list;
feature_list.InitAndEnableFeature(features::kLockScreenMediaControls);
// Build login screen with 1 user.
auto* contents = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLogin,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
SetUserCount(1);
std::unique_ptr<views::Widget> widget = CreateWidgetWithContent(contents);
LockContentsView::TestApi lock_contents(contents);
// Simulate active and playing media session.
SimulateMediaSessionChanged(
lock_contents.media_controls_view(),
media_session::mojom::MediaPlaybackState::kPlaying);
// Verify media controls are hidden on login screen for one user.
EXPECT_FALSE(lock_contents.media_controls_view()->IsDrawn());
SetUserCount(5);
// Verify that media controls view isn't created for non low-density layouts.
EXPECT_EQ(nullptr, lock_contents.media_controls_view());
}
TEST_F(LockContentsViewUnitTest, NoNavigationOrHotseatOnLockScreen) {
GetSessionControllerClient()->SetSessionState(
session_manager::SessionState::LOCKED);
LockContentsView* contents = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
std::unique_ptr<views::Widget> widget = CreateWidgetWithContent(contents);
ShelfWidget* shelf_widget =
Shelf::ForWindow(widget->GetNativeWindow())->shelf_widget();
EXPECT_FALSE(shelf_widget->navigation_widget()->IsVisible())
<< "The navigation widget should not appear on the lock screen.";
EXPECT_FALSE(shelf_widget->hotseat_widget()->IsVisible())
<< "The hotseat widget should not appear on the lock screen.";
}
TEST_F(LockContentsViewUnitTest, NoUsersToShow) {
// Build lock screen with 0 users.
auto* contents = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLock,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
std::unique_ptr<views::Widget> widget = CreateWidgetWithContent(contents);
LockContentsView::TestApi test_api(contents);
DataDispatcher()->SetUserList(users());
// Verify that primary big view is null.
EXPECT_THAT(test_api.primary_big_view(), IsNull());
// Verify that the main view has no children.
EXPECT_TRUE(test_api.main_view()->children().empty());
}
TEST_F(LockContentsViewUnitTest, ToggleGaiaOnUsersChanged) {
auto* contents = new LockContentsView(
mojom::TrayActionState::kNotAvailable, LockScreen::ScreenType::kLogin,
DataDispatcher(),
std::make_unique<FakeLoginDetachableBaseModel>(DataDispatcher()));
std::unique_ptr<views::Widget> widget = CreateWidgetWithContent(contents);
LockContentsView::TestApi test_api(contents);
auto client = std::make_unique<MockLoginScreenClient>();
// Expect Gaia to show when there is no users.
EXPECT_CALL(*client, ShowGaiaSignin(_)).Times(1);
AddUsers(0);
Mock::VerifyAndClearExpectations(client.get());
// Hide Gaia when users added.
EXPECT_CALL(*client, HideGaiaSignin()).Times(1);
AddPublicAccountUsers(1);
}
} // namespace ash
| [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
6e5bf4c0ddcab9548ba9941ca3acb46c1ca84db2 | a92939a7abdeb5d0733640cc8e87093d3e9f58fe | /util/geometry/s2edgeindex.cc | 1fdc829b51b7e46ac9a3c3d526d1f9ac9b67fde7 | [
"BSD-2-Clause",
"Apache-2.0"
] | permissive | Layty/beeri | 12f1e7ee5101406983f1687b451ff1b766998738 | 60718d0f3133fffdf1500f8844852a79c91d8351 | refs/heads/master | 2022-05-05T11:02:48.188222 | 2015-05-12T12:05:35 | 2015-05-12T12:05:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 16,296 | cc | // Copyright 2009 Google Inc. All Rights Reserved.
// julienbasch@google.com (Julien Basch)
// Implementation of class S2EdgeIndex, a fast lookup structure for edges in S2.
//
// An object of this class contains a set S of edges called the test edges.
// For a query edge q, you want to compute a superset of all test edges that
// intersect q.
//
// The idea is roughly that of
// Each edge is covered by one or several S2 cells, stored in a multimap
// cell -> edge*.
// To perform a query, you cover the query edge with a set of cells. For
// each such cell c, you find all test edges that are in c,in an ancestor of c
// or in a child of c.
//
// This is simple, but there are two complications:
//
// 1. For containment queries, the query edge is very long (from S2::Origin()
// to the query point). A standard cell covering of q is either useless or
// too large. The covering needs to be adapted to S: if a cell contains too
// many edges from S, you subdivide it and keep only the subcells that
// intersect q. See comments for FindCandidateCrossings().
//
// 2. To decide if edge q could possibly cross edge e, we end up comparing
// both with edges that bound s2 cells. Numerical inaccuracies
// can lead to inconcistencies, e.g.: there may be an edge b at the
// boundary of two cells such that q and e are on opposite sides of b,
// yet they cross each other. This special case happens a lot if your
// test and query edges are cell boundaries themselves, and this in turn
// is a common case when regions are approximated by cell unions.
//
// We expand here on the solution to the second problem. Two components:
//
// 1. Each test edge is thickened to a rectangle before it is S2-covered.
// See the comment for GetThickenedEdgeCovering().
//
// 2. When recursing through the children of a cell c for a query edge q,
// we test q against the boundaries of c's children in a 'lenient'
// way. That is, instead of testing e.g. area(abc)*area(abd) < 0,
// we check if it is 'approximately negative'.
//
// To see how the second point is necessary, imagine that your query
// edge q is the North boundary of cell x. We recurse into the four
// children a,b,c,d of x. To do so, we check if q crosses or touches any
// of a,b,c or d boundaries. As all the situations are degenerate, it is
// possible that all crossing tests return false, thus making q suddenly
// 'disappear'. Using the lenient crossing test, we are guaranteed that q
// will intersect one of the four edges of the cross that bounds a,b,c,d.
// The same holds true if q passes through the cell center of x.
#include "s2edgeindex.h"
#include <algorithm>
using std::min;
using std::max;
using std::swap;
using std::reverse;
#include <set>
using std::set;
using std::multiset;
#include <utility>
using std::pair;
using std::make_pair;
#include "base/commandlineflags.h"
#include "base/logging.h"
#include "s2cell.h"
#include "s2edgeutil.h"
#include "s2polyline.h"
#include "s2regioncoverer.h"
DEFINE_bool(always_recurse_on_children, false,
"When we test a query edge against a cell, we don't "
"recurse if there are only a few test edges in it. "
"For testing, it is useful to always recurse to the end. "
"You don't want to use this flag anywhere but in tests.");
void S2EdgeIndex::Reset() {
minimum_s2_level_used_ = S2CellId::kMaxLevel;
index_computed_ = false;
query_count_ = 0;
mapping_.clear();
}
void S2EdgeIndex::ComputeIndex() {
DCHECK(!index_computed_);
for (int i = 0; i < num_edges(); ++i) {
S2Point from, to;
vector<S2CellId> cover;
int level = GetCovering(*edge_from(i), *edge_to(i),
true, &cover);
minimum_s2_level_used_ = min(minimum_s2_level_used_, level);
for (vector<S2CellId>::const_iterator it = cover.begin(); it != cover.end();
++it) {
mapping_.insert(make_pair(*it, i));
}
}
index_computed_ = true;
}
bool S2EdgeIndex::IsIndexComputed() const {
return index_computed_;
}
void S2EdgeIndex::IncrementQueryCount() {
query_count_++;
}
// If we have m data edges and n query edges, then the brute force cost is
// m * n * test_cost
// where test_cost is taken to be the cost of EdgeCrosser::RobustCrossing,
// measured to be about 30ns at the time of this writing.
//
// If we compute the index, the cost becomes:
// m * cost_insert + n * cost_find(m)
//
// - cost_insert can be expected to be reasonably stable, and was measured
// at 1200ns with the BM_QuadEdgeInsertionCost benchmark.
//
// - cost_find depends on the length of the edge . For m=1000 edges,
// we got timings ranging from 1ms (edge the length of the polygon) to
// 40ms. The latter is for very long query edges, and needs to be
// optimized. We will assume for the rest of the discussion that
// cost_find is roughly 3ms.
//
// When doing one additional query, the differential cost is
// m * test_cost - cost_find(m)
// With the numbers above, it is better to use the quad tree (if we have it)
// if m >= 100.
//
// If m = 100, 30 queries will give m*n*test_cost = m*cost_insert = 100ms,
// while the marginal cost to find is 3ms. Thus, this is a reasonable
// thing to do.
void S2EdgeIndex::PredictAdditionalCalls(int n) {
if (index_computed_) return;
if (num_edges() > 100 && (query_count_ + n) > 30) {
ComputeIndex();
}
}
void S2EdgeIndex::GetEdgesInParentCells(
const vector<S2CellId>& cover,
const CellEdgeMultimap& mapping,
int minimum_s2_level_used,
vector<int>* candidate_crossings) {
// Find all parent cells of covering cells.
set<S2CellId> parent_cells;
for (vector<S2CellId>::const_iterator it = cover.begin(); it != cover.end();
++it) {
for (int parent_level = it->level() - 1;
parent_level >= minimum_s2_level_used;
--parent_level) {
if (!parent_cells.insert(it->parent(parent_level)).second) {
break; // cell is already in => parents are too.
}
}
}
// Put parent cell edge references into result.
for (set<S2CellId>::const_iterator it = parent_cells.begin(); it
!= parent_cells.end(); ++it) {
pair<CellEdgeMultimap::const_iterator,
CellEdgeMultimap::const_iterator> range =
mapping.equal_range(*it);
for (CellEdgeMultimap::const_iterator it2 = range.first;
it2 != range.second; ++it2) {
candidate_crossings->push_back(it2->second);
}
}
}
// Returns true if ab possibly crosses cd, by clipping tiny angles to
// zero.
static bool LenientCrossing(S2Point const& a, S2Point const& b,
S2Point const& c, S2Point const& d) {
DCHECK(S2::IsUnitLength(a));
DCHECK(S2::IsUnitLength(b));
DCHECK(S2::IsUnitLength(c));
// See comment for RobustCCW() in s2.h
const double kMaxDetError = 1.e-14;
double acb = a.CrossProd(c).DotProd(b);
double bda = b.CrossProd(d).DotProd(a);
if (fabs(acb) < kMaxDetError || fabs(bda) < kMaxDetError) {
return true;
}
if (acb * bda < 0) return false;
double cbd = c.CrossProd(b).DotProd(d);
double dac = d.CrossProd(a).DotProd(c);
if (fabs(cbd) < kMaxDetError || fabs(dac) < kMaxDetError) {
return true;
}
return (acb * cbd >= 0) && (acb * dac >= 0);
}
bool S2EdgeIndex::EdgeIntersectsCellBoundary(
S2Point const& a, S2Point const& b, const S2Cell& cell) {
S2Point vertices[4];
for (int i = 0; i < 4; ++i) {
vertices[i] = cell.GetVertex(i);
}
for (int i = 0; i < 4; ++i) {
S2Point from_point = vertices[i];
S2Point to_point = vertices[(i+1) % 4];
if (LenientCrossing(a, b, from_point, to_point)) {
return true;
}
}
return false;
}
void S2EdgeIndex::GetEdgesInChildrenCells(
S2Point const& a, S2Point const& b,
vector<S2CellId>* cover,
const CellEdgeMultimap& mapping,
vector<int>* candidate_crossings) {
CellEdgeMultimap::const_iterator it, start, end;
int num_cells = 0;
// Put all edge references of (covering cells + descendant cells) into result.
// This relies on the natural ordering of S2CellIds.
while (!cover->empty()) {
S2CellId cell = cover->back();
cover->pop_back();
num_cells++;
start = mapping.lower_bound(cell.range_min());
end = mapping.upper_bound(cell.range_max());
int num_edges = 0;
bool rewind = FLAGS_always_recurse_on_children;
// TODO(user): Maybe distinguish between edges in current cell, that
// are going to be added anyhow, and edges in subcells, and rewind only
// those.
if (!rewind) {
for (it = start; it != end; ++it) {
candidate_crossings->push_back(it->second);
++num_edges;
if (num_edges == 16 && !cell.is_leaf()) {
rewind = true;
break;
}
}
}
// If there are too many to insert, uninsert and recurse.
if (rewind) {
for (int i = 0; i < num_edges; ++i) {
candidate_crossings->pop_back();
}
// Add cells at this level
pair<CellEdgeMultimap::const_iterator,
CellEdgeMultimap::const_iterator> eq =
mapping.equal_range(cell);
for (it = eq.first; it != eq.second; ++it) {
candidate_crossings->push_back(it->second);
}
// Recurse on the children -- hopefully some will be empty.
if (eq.first != start || eq.second != end) {
S2Cell children[4];
S2Cell c(cell);
c.Subdivide(children);
for (int i = 0; i < 4; ++i) {
// TODO(user): Do the check for the four cells at once,
// as it is enough to check the four edges between the cells. At
// this time, we are checking 16 edges, 4 times too many.
//
// Note that given the guarantee of AppendCovering, it is enough
// to check that the edge intersect with the cell boundary as it
// cannot be fully contained in a cell.
if (EdgeIntersectsCellBoundary(a, b, children[i])) {
cover->push_back(children[i].id());
}
}
}
}
}
VLOG(1) << "Num cells traversed: " << num_cells;
}
// Appends to "candidate_crossings" all edge references which may cross the
// given edge. This is done by covering the edge and then finding all
// references of edges whose coverings overlap this covering. Parent cells
// are checked level by level. Child cells are checked all at once by taking
// advantage of the natural ordering of S2CellIds.
void S2EdgeIndex::FindCandidateCrossings(
S2Point const& a, S2Point const& b,
vector<int>* candidate_crossings) const {
DCHECK(index_computed_);
vector<S2CellId> cover;
GetCovering(a, b, false, &cover);
GetEdgesInParentCells(cover, mapping_, minimum_s2_level_used_,
candidate_crossings);
// TODO(user): An important optimization for long query
// edges (Contains queries): keep a bounding cap and clip the query
// edge to the cap before starting the descent.
GetEdgesInChildrenCells(a, b, &cover, mapping_, candidate_crossings);
// Remove duplicates: This is necessary because edge references are
// inserted into the map once for each covering cell. (Testing shows
// this to be at least as fast as using a set.)
sort(candidate_crossings->begin(), candidate_crossings->end());
candidate_crossings->erase(
unique(candidate_crossings->begin(), candidate_crossings->end()),
candidate_crossings->end());
}
// Returns the smallest cell containing all four points, or Sentinel
// if they are not all on the same face.
// The points don't need to be normalized.
static S2CellId ContainingCell(S2Point const& pa, S2Point const& pb,
S2Point const& pc, S2Point const& pd) {
S2CellId a = S2CellId::FromPoint(pa);
S2CellId b = S2CellId::FromPoint(pb);
S2CellId c = S2CellId::FromPoint(pc);
S2CellId d = S2CellId::FromPoint(pd);
if (a.face() != b.face() || a.face() != c.face() || a.face() != d.face()) {
return S2CellId::Sentinel();
}
while (a != b || a != c || a != d) {
a = a.parent();
b = b.parent();
c = c.parent();
d = d.parent();
}
return a;
}
// Returns the smallest cell containing both points, or Sentinel
// if they are not all on the same face.
// The points don't need to be normalized.
static S2CellId ContainingCell(S2Point const& pa, S2Point const& pb) {
S2CellId a = S2CellId::FromPoint(pa);
S2CellId b = S2CellId::FromPoint(pb);
if (a.face() != b.face()) return S2CellId::Sentinel();
while (a != b) {
a = a.parent();
b = b.parent();
}
return a;
}
int S2EdgeIndex::GetCovering(
S2Point const& a, S2Point const& b,
bool thicken_edge,
vector<S2CellId>* edge_covering) const {
edge_covering->clear();
// Thicken the edge in all directions by roughly 1% of the edge length when
// thicken_edge is true.
static const double kThickening = 0.01;
// Selects the ideal s2 level at which to cover the edge, this will be the
// level whose S2 cells have a width roughly commensurate to the length of
// the edge. We multiply the edge length by 2*kThickening to guarantee the
// thickening is honored (it's not a big deal if we honor it when we don't
// request it) when doing the covering-by-cap trick.
const double edge_length = a.Angle(b);
const int ideal_level = S2::kMinWidth.GetMaxLevel(
edge_length * (1 + 2 * kThickening));
S2CellId containing_cell;
if (!thicken_edge) {
containing_cell = ContainingCell(a, b);
} else {
if (ideal_level == S2CellId::kMaxLevel) {
// If the edge is tiny, instabilities are more likely, so we
// want to limit the number of operations.
// We pretend we are in a cell much larger so as to trigger the
// 'needs covering' case, so we won't try to thicken the edge.
containing_cell = S2CellId(0xFFF0).parent(3);
} else {
S2Point pq = (b - a) * kThickening;
S2Point ortho = pq.CrossProd(a).Normalize() *
edge_length * kThickening;
S2Point p = a - pq;
S2Point q = b + pq;
// If p and q were antipodal, the edge wouldn't be lengthened,
// and it could even flip! This is not a problem because
// ideal_level != 0 here. The farther p and q can be is roughly
// a quarter Earth away from each other, so we remain
// Theta(kThickening).
containing_cell = ContainingCell(p - ortho, p + ortho,
q - ortho, q + ortho);
}
}
// Best case: edge is fully contained in a cell that's not too big.
if (containing_cell != S2CellId::Sentinel() &&
containing_cell.level() >= ideal_level - 2) {
edge_covering->push_back(containing_cell);
return containing_cell.level();
}
if (ideal_level == 0) {
// Edge is very long, maybe even longer than a face width, so the
// trick below doesn't work. For now, we will add the whole S2 sphere.
// TODO(user): Do something a tad smarter (and beware of the
// antipodal case).
for (S2CellId cellid = S2CellId::Begin(0); cellid != S2CellId::End(0);
cellid = cellid.next()) {
edge_covering->push_back(cellid);
}
return 0;
}
// TODO(user): Check trick below works even when vertex is at interface
// between three faces.
// Use trick as in S2PolygonBuilder::PointIndex::FindNearbyPoint:
// Cover the edge by a cap centered at the edge midpoint, then cover
// the cap by four big-enough cells around the cell vertex closest to the
// cap center.
S2Point middle = ((a + b) / 2).Normalize();
int actual_level = min(ideal_level, S2CellId::kMaxLevel-1);
S2CellId::FromPoint(middle).AppendVertexNeighbors(
actual_level, edge_covering);
return actual_level;
}
void S2EdgeIndex::Iterator::GetCandidates(S2Point const& a, S2Point const& b) {
edge_index_->PredictAdditionalCalls(1);
is_brute_force_ = !edge_index_->IsIndexComputed();
if (is_brute_force_) {
edge_index_->IncrementQueryCount();
current_index_ = 0;
num_edges_ = edge_index_->num_edges();
} else {
candidates_.clear();
edge_index_->FindCandidateCrossings(a, b, &candidates_);
current_index_in_candidates_ = 0;
if (!candidates_.empty()) {
current_index_ = candidates_[0];
}
}
}
| [
"romange@gmail.com"
] | romange@gmail.com |
2759c61cdc43d37a03c2a7c2c1d6c51095f23c4e | d7275f563e01823c0fba4ec89eb82e79b3e3e319 | /include/decaf/security/MessageDigest.h | 7df30dff4bffd4c6e53fda01555f59b4700919cb | [] | no_license | worldzxm2000/AWPlatform | 6005c9c4919806340f26ba6620d8ff8fc7788eb8 | 6c6f333b42744cbe28af6908f840eca1729f89ef | refs/heads/master | 2020-04-06T22:33:51.304637 | 2018-11-30T03:58:45 | 2018-11-30T03:58:45 | 157,840,051 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,149 | h | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef _DECAF_SECURITY_MESSAGEDIGEST_H_
#define _DECAF_SECURITY_MESSAGEDIGEST_H_
#include <decaf/util/Config.h>
#include <decaf/security/MessageDigestSpi.h>
#include <decaf/nio/ByteBuffer.h>
#include <string>
namespace decaf {
namespace security {
class MessageDigestSpi;
class MessageDigestImpl;
class Provider;
/**
* This MessageDigest class provides applications the functionality of a message digest
* algorithm, such as MD5 or SHA. Message digests are secure one-way hash functions that
* take arbitrary-sized data and output a fixed-length hash value.
*
* A MessageDigest object starts out initialized. The data is processed through it using
* the update methods. At any point reset can be called to reset the digest. Once all the
* data to be updated has been updated, one of the digest methods should be called to
* complete the hash computation.
*
* The digest method can be called once for a given number of updates. After digest has
* been called, the MessageDigest object is reset to its initialized state.
*
* Implementations are free to implement the clone method. Client applications can test
* cloneability by attempting cloning and catching the CloneNotSupportedException:
*
* MessageDigest* md = MessageDigest::getInstance("SHA");
*
* try {
* md->update(toChapter1);
* MessageDigest* tc1 = md.clone();
* byte[] toChapter1Digest = tc1.digest();
* md.update(toChapter2);
* ...etc.
* } catch (CloneNotSupportedException& ex) {
* throw DigestException("couldn't make digest of partial content");
* }
*
* Note that if a given implementation is not cloneable, it is still possible to compute
* intermediate digests by instantiating several instances, if the number of digests is
* known in advance.
*
* @see MessageDigestSpi
*
* @since 1.0
*/
class DECAF_API MessageDigest {
private:
MessageDigestImpl* impl;
MessageDigestSpi* spi;
const Provider* provider;
std::string algorithm;
private:
MessageDigest(const MessageDigest&);
MessageDigest& operator= (const MessageDigest&);
protected:
MessageDigest(const std::string& name);
public:
virtual ~MessageDigest();
/**
* Completes the hash computation by performing final operations such as padding.
* The digest is reset after this call is made.
*/
std::vector<unsigned char> digest();
/**
* Completes the hash computation by performing final operations such as padding.
* The digest is reset after this call is made.
*
* @param input
* The output buffer for the computed digest.
* @param size
* The size of the given input buffer.
* @param offset
* The offset into the output buffer to begin storing the digest.
* @param length
* The number of bytes within buf allotted for the digest.
*
* @returns the number of bytes placed into buffer.
*
* @throws DigestException if an error occurs.
*/
int digest(unsigned char* input, int size, int offset, int length);
/**
* Performs a final update on the digest using the specified array of bytes, then
* completes the digest computation. That is, this method first calls update(input),
* passing the input array to the update method, then calls digest().
*
* @param input
* The input to be updated before the digest is completed.
* @param size
* The length in bytes of the input buffer.
*
* @returns the array of bytes for the resulting hash value.
*/
std::vector<unsigned char> digest(const unsigned char* input, int size);
/**
* Performs a final update on the digest using the specified array of bytes, then
* completes the digest computation. That is, this method first calls update(input),
* passing the input array to the update method, then calls digest().
*
* @param input
* The input to be updated before the digest is completed.
*
* @returns the array of bytes for the resulting hash value.
*/
std::vector<unsigned char> digest(const std::vector<unsigned char>& input);
/**
* Returns a string that identifies the algorithm, independent of implementation
* details. The name should be a standard name (such as "SHA", "MD5", etc).
*
* @returns the algorithm name.
*/
std::string getAlgorithmName() const {
return this->algorithm;
}
/**
* Returns the Provider associated with this MessageDigest.
*
* The pointer returned by this method remains the property of the Security framework
* and should be deleted by the calling application at any time.
*
* @return the provider associated with this MessageDigest.
*/
const Provider* getProvider() const {
return this->provider;
}
/**
* Returns the length of the digest in bytes, or 0 if this operation is not supported
* by the provider and the implementation is not cloneable.
*
* @returns the digest length in bytes, or 0 if this operation is not supported by the
* provider and the implementation is not cloneable.
*/
int getDigestLength() const;
/**
* Returns a clone of this MessageDisgest instance if the MessageDigestSpi in use
* is cloneable.
*
* @returns a clone of this MessageDigest if possible.
*
* @throws CloneNotSupportedException if the SPI in use cannot be cloned.
*/
MessageDigest* clone();
/**
* Resets the digest for further use.
*/
void reset();
/**
* Returns a string representation of this message digest object.
*
* @returns a string representation of this message digest object.
*/
std::string toString() const;
/**
* Updates the digest using the specified byte.
*
* @param input
* The byte with which to update the digest.
*/
void update(unsigned char input);
/**
* Updates the digest using the specified array of bytes, starting at the specified offset.
*
* @param input
* The array of bytes.
* @param input
* The size of the given input buffer.
* @param offset
* The offset to start from in the array of bytes.
* @param length
* The number of bytes to use, starting at offset.
*/
void update(unsigned char* input, int size, int offset, int len);
/**
* Updates the digest using the specified array of bytes.
*
* @param input
* The array of bytes to use for the update.
*/
void update(const std::vector<unsigned char>& input);
/**
* Update the digest using the specified ByteBuffer. The digest is updated using
* the input.remaining() bytes starting at input.position(). Upon return, the
* buffer's position will be equal to its limit; its limit will not have changed.
*
* @param input
* The input ByteBuffer to use for the update.
*/
void update(nio::ByteBuffer& input);
public:
/**
* Returns a MessageDigest object that implements the specified digest algorithm.
*
* This method traverses the list of registered security Providers, starting with the
* most preferred Provider. A new MessageDigest object encapsulating the MessageDigestSpi
* implementation from the first Provider that supports the specified algorithm is returned.
*
* Note that the list of registered providers may be retrieved via the
* Security.getProviders() method.
*
* @param algorithm
* The name of the algorithm requested. (MD5, SHA-1, etc)
*
* @returns a Message Digest object that implements the specified algorithm.
* @throws NoSuchAlgorithmException if no Provider supports a MessageDigestSpi implementation
* for the specified algorithm.
*/
static MessageDigest* getInstance(const std::string& algorithm);
/**
* Compares two digests for equality. Does a simple byte compare.
*
* @param digesta
* The first digest for comparison.
* @param digesta
* The second digest for comparison.
*
* @returns true if the two digests are equal.
*/
static bool isEqual(const std::vector<unsigned char>& digesta,
const std::vector<unsigned char>& digestb);
};
}}
#endif /* _DECAF_SECURITY_MESSAGEDIGEST_H_ */
| [
"Administrator@JERRY"
] | Administrator@JERRY |
5c42057d8c882114b8dc0282cef6a3d0d41c56b3 | 081e710037020908228a34189bbf178cc90e0d98 | /install/turtlesim/include/turtlesim/srv/kill__traits.hpp | 3a34a95e7aded4167150af4b8bc166731cbbc3e8 | [] | no_license | AitorMonreal/ROS2-learnings | 28c5944a1ed072f4f7a9b751652bb0b7a4d85088 | 545b1bb4448581261ecf7d88c0ea73b48f0dc06a | refs/heads/master | 2023-01-12T23:55:20.222037 | 2020-11-25T23:56:12 | 2020-11-25T23:56:12 | 316,079,120 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 84 | hpp | /home/aitor/ros2/build/turtlesim/rosidl_generator_cpp/turtlesim/srv/kill__traits.hpp | [
"monreaitorcelay@gmail.com"
] | monreaitorcelay@gmail.com |
1778af23cf6847b838dcf1dadaf2ff520755b4f7 | a63f168cf9580def12980a06ca8f6757e8cb440d | /resources/cp-book/ch2/ajju/seg.cpp | 26aea212f8cca5a89aa78af46c5afae8c231fb5a | [] | no_license | ajay-anand-verma/ds-algo | 6caf749d0c88d70830139d62826b0d43477217f5 | 305614fab61d80bdb169ea01feddb5862f74a173 | refs/heads/master | 2023-04-01T06:07:56.898661 | 2021-04-06T15:23:51 | 2021-04-06T15:23:51 | 293,047,928 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 818 | cpp | #include<cmath>
#include<cstdio>
#include<vector>
using namespace std;
typdef vector<int> vi;
class SegmentTree {
private:
vi st, A;
int n;
int left(int p) { return p<<1 ; }
int right(int p) { return (p<<1) + 1; }
void build(int p, int L, int R){
if(L==R)
st[p] = L;
else{
build(left(p), L, (L+R)/2 );
build(right(p), (L+R)/2 + 1, R);
int p1 = st[left(p)], p2 = st[right(p)];
st[p] = A[p1]<=A[p2]?p1:p2;
}
}
int rmq(int p, int L, int R, int i, int j){
if(i > R || j < L) return -1; // outside the query range
if(L >= i && R <= j) return st[p]; // inside querry range
p1 = rmq(p, L, (L+R)/2, i, j);
p2 = rmq(p, (L+R)/2 + 1, r, i, j);
if(p1==-1) return p2;
if(p2==-1) return p1;
return (A[p1]<=A[p2])?p1:p2;
}
public:
};
int main(){
}
| [
"ajay.codifer@gmail.com"
] | ajay.codifer@gmail.com |
7398f10867aeb5733a10d9c9affd67b238b28559 | 18ea049501fdaf523daefa4d8fa978385517fa24 | /module2/geometry/F.cpp | 3f4cb270b9d5d6b7676e9cac26a9d23e9a4d8614 | [] | no_license | vanka857/Algorithms-DS-3term | 0fb32f9ec1392d0aa3d23cecd4d8a45f31516741 | 7fe43f620093706aff7cd7a63d51ae46db70e7bb | refs/heads/master | 2023-03-23T03:57:36.329025 | 2021-03-12T21:43:19 | 2021-03-12T21:43:19 | 304,012,289 | 0 | 0 | null | 2021-03-12T21:43:20 | 2020-10-14T12:45:28 | C++ | UTF-8 | C++ | false | false | 3,694 | cpp | //F. Диаграмма Вороного
//Ограничение времени 1 секунда
// Ограничение памяти 128Mb
//Ввод стандартный ввод или input.txt
// Вывод стандартный вывод или output.txt
//
// Даны точки, никакие 3 из которых не лежат на одной прямой.
// Никакие 4 точки не лежат на одной окружности.
// Кроме того, все точки имеют различные x-координаты.
//
// Определите среднее число сторон в многоугольниках диаграммы Вороного этого множества точек.
// Считаются только конечные многоугольники.
// Если все многоугольники неограниченны, ответ полагается равным 0.
//
// Число точек n ≤ 100000. Алгоритм должен иметь асимптотику O(n log n).
//
//Формат ввода
// В каждой строке через пробел записаны действительные координаты точек xi yi.
//
//Формат вывода
// Число - среднее число сторон в ограниченных многоугольниках диаграммы Вороного с точностью 10^-6.
// Если таких многоугольников нет - ответ 0.
#include <set>
#include <iomanip>
#include "geometry3D.cpp"
template<typename T>
void printVector(const std::vector<T> & data, std::ostream & out) {
for (const auto & i : data) {
out << i << std::endl;
}
}
int main() {
using T = long double;
std::vector<Point3DChan<T>> points_Chan;
size_t id = 0;
T x, y;
while (std::cin && std::cin >> x && std::cin >> y) {
Point3DChan<T> p(x, y, x*x + y*y, id);
points_Chan.emplace_back(p);
id++;
}
// add to infinite points
Point3DChan<T> p1(INF_F, -INF_F+100, 2 * INF_F * INF_F, -1);
Point3DChan<T> p2(-INF_F, INF_F-100, 2 * INF_F * INF_F, -2);
points_Chan.push_back(p1);
points_Chan.push_back(p2);
// build lower convex hull using Chan algo
ConvexHull3D<T> cch3(points_Chan);
auto lower_hull_3D = cch3.partialHull(ConvexHull3D<T>::LOWER_HULL, ConvexHull3D<T>::xLess_zGreater);
// если нет ограниченных многоугольнков
if (lower_hull_3D.empty()) {
std::cout << 0;
return 0;
}
std::set<int> fake_points;
for (const auto & plane : lower_hull_3D) {
if ((plane.vertices[0].id < 0) ||
(plane.vertices[1].id < 0) ||
(plane.vertices[2].id < 0)) {
fake_points.insert(plane.vertices[0].id);
fake_points.insert(plane.vertices[1].id);
fake_points.insert(plane.vertices[2].id);
}
}
size_t edges_count = 0;
auto is_fake = [&fake_points](int64_t index){
return (fake_points.count(index) == 1);
};
for (const auto &plane : lower_hull_3D) {
if (!is_fake(plane.vertices[0].id))
++edges_count;
if (!is_fake(plane.vertices[1].id))
++edges_count;
if (!is_fake(plane.vertices[2].id))
++edges_count;
}
size_t points_count = points_Chan.size() - fake_points.size();
if (points_count == 0) {
std::cout << 0;
} else {
std::cout << std::setprecision(7) << static_cast<long double>(edges_count) / points_count;
}
}
| [
"vanka857@gmail.com"
] | vanka857@gmail.com |
e54071960abda7ee11fc815030b9d8700250d4d9 | 94439075e4af23e92cb7f529e10967327eb296df | /Project1/main.cpp | ea5ba189695f64b1d4b17fcd198c5cc35334c863 | [] | no_license | MrWayway/OpenGl_Lab01 | 635d55550a108ecd72e715567c3f6152cb81cdff | c9cf30938f48cd9ca5c61650eb27c663d4de2636 | refs/heads/master | 2020-04-26T02:41:14.936409 | 2019-03-01T07:24:13 | 2019-03-01T07:24:13 | 173,242,085 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 805 | cpp | #include <GL/glut.h>
#include <GL/gl.h>
#include <GL/glu.h>
void MyDisplay() {
glClear(GL_COLOR_BUFFER_BIT);
glViewport(0, 0, 300, 300);
glColor3f(1.0, 1.0, 1.0);
glBegin(GL_POLYGON);
glVertex3f(-0.5, -0.5, 0.0);
glVertex3f(0.5, -0.5, 0.0);
glVertex3f(0.5, 0.5, 0.0);
glVertex3f(-0.5, 0.5, 0.0);
glEnd();
glFlush();
}
int main(int argc, char** argv) {
glutInit(&argc, argv);
glutInitDisplayMode(GLUT_RGB);
glutInitWindowSize(300, 300);
glutInitWindowPosition(0, 0);
glutCreateWindow("OpenGL Sample Drawing");
glClearColor(0.0, 0.0, 0.0, 1.0);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
glOrtho(-1.0, 1.0, -1.0, 1.0, -1.0, 1.0);
glutDisplayFunc(MyDisplay);
glutMainLoop();
return 0;
} | [
"33680090+MrWayway@users.noreply.github.com"
] | 33680090+MrWayway@users.noreply.github.com |
5222f3baa7f285c6eaa4507a1579394f094c23c9 | 3ffdf7b6a75da2e034dbf4bd53bc4c7f40cca03b | /Lottie/Plugin/LottiePlugin/include/LottiePublisher.h | f14b76307a4ef26c12ffefc6f1388c8ecf7d84a0 | [] | no_license | kennylerma/Animate-Lottie-Plugin | 3f60f90d3508fd2a003ef11628ac27c3538fdaf4 | 89b326eea0bf9702b6e417558b67536f9c977c0f | refs/heads/master | 2022-03-23T06:54:54.963634 | 2019-12-16T05:10:46 | 2019-12-16T05:10:46 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,922 | h | /*************************************************************************
* ADOBE SYSTEMS INCORPORATED
* Copyright 2013 Adobe Systems Incorporated
* All Rights Reserved.
* NOTICE: Adobe permits you to use, modify, and distribute this file in accordance with the
* terms of the Adobe license agreement accompanying it. If you have received this file from a
* source other than Adobe, then your use, modification, or distribution of it requires the prior
* written permission of Adobe.
**************************************************************************/
/**
* @file Publisher.h
*
* @brief This file contains declarations for a Publisher plugin.
*/
#ifndef PUBLISHER_H_
#define PUBLISHER_H_
#include <vector>
#include "Version.h"
#include "FCMTypes.h"
#include "FCMPluginInterface.h"
#include "Exporter/Service/IResourcePalette.h"
#include "Exporter/Service/ITimelineBuilder2.h"
#include "Exporter/Service/ITimelineBuilderFactory.h"
#include "Publisher/IPublisher.h"
#include "FillStyle/ISolidFillStyle.h"
#include "FillStyle/IGradientFillStyle.h"
#include "FillStyle/IBitmapFillStyle.h"
#include "FrameElement/IClassicText.h"
#include "FrameElement/ITextStyle.h"
#include "Exporter/Service/IFrameCommandGenerator.h"
#include "OutputWriter.h"
#include "PluginConfiguration.h"
/* -------------------------------------------------- Forward Decl */
using namespace FCM;
using namespace Publisher;
using namespace Exporter::Service;
namespace Application
{
namespace Service
{
class IOutputConsoleService;
}
}
namespace LottieExporter
{
class CPublisher;
class ResourcePalette;
class TimelineBuilder;
class TimelineBuilderFactory;
class IOutputWriter;
class ITimelineWriter;
}
namespace DOM
{
namespace Service
{
namespace Shape
{
FORWARD_DECLARE_INTERFACE(IPath);
}
};
};
/* -------------------------------------------------- Enums */
/* -------------------------------------------------- Macros / Constants */
#ifdef USE_SWF_EXPORTER_SERVICE
#define OUTPUT_FILE_EXTENSION "swf"
#else
#define OUTPUT_FILE_EXTENSION "html"
#endif
#define MAX_RETRY_ATTEMPT 10
/* -------------------------------------------------- Structs / Unions */
/* -------------------------------------------------- Class Decl */
namespace LottieExporter
{
class CPublisher : public IPublisher, public FCMObjectBase
{
BEGIN_INTERFACE_MAP(CPublisher, Lottie_PLUGIN_VERSION)
INTERFACE_ENTRY(IPublisher)
END_INTERFACE_MAP
public:
virtual FCM::Result _FCMCALL Publish(
DOM::PIFLADocument pFlaDocument,
const PIFCMDictionary pDictPublishSettings,
const PIFCMDictionary pDictConfig);
virtual FCM::Result _FCMCALL Publish(
DOM::PIFLADocument pFlaDocument,
DOM::PITimeline pTimeline,
const Exporter::Service::RANGE &frameRange,
const PIFCMDictionary pDictPublishSettings,
const PIFCMDictionary pDictConfig);
virtual FCM::Result _FCMCALL ClearCache();
CPublisher();
~CPublisher();
private:
bool ReadString(
const FCM::PIFCMDictionary pDict,
FCM::StringRep8 key,
std::string& retString);
FCM::Result GetOutputFileName(
DOM::PIFLADocument pFlaDocument,
DOM::PITimeline pITimeline,
const PIFCMDictionary pDictPublishSettings,
std::string& outFile);
FCM::Result Export(
DOM::PIFLADocument pFlaDocument,
DOM::PITimeline pTimeline,
const Exporter::Service::RANGE* pFrameRange,
const PIFCMDictionary pDictPublishSettings,
const PIFCMDictionary pDictConfig);
FCM::Boolean IsPreviewNeeded(const PIFCMDictionary pDictConfig);
FCM::Result Init();
FCM::Result ShowPreview(const std::string& outFile);
FCM::Result ExportLibraryItems(FCM::FCMListPtr pLibraryItemList);
FCM::Result CopyRuntime(const std::string& outputFolder);
private:
AutoPtr<IFrameCommandGenerator> m_frameCmdGeneratorService;
AutoPtr<IResourcePalette> m_pResourcePalette;
};
class ResourcePalette : public IResourcePalette, public FCMObjectBase
{
public:
BEGIN_INTERFACE_MAP(ResourcePalette, Lottie_PLUGIN_VERSION)
INTERFACE_ENTRY(IResourcePalette)
END_INTERFACE_MAP
virtual FCM::Result _FCMCALL AddSymbol(
FCM::U_Int32 resourceId,
FCM::StringRep16 pName,
Exporter::Service::PITimelineBuilder pTimelineBuilder);
virtual FCM::Result _FCMCALL AddShape(
FCM::U_Int32 resourceId,
DOM::FrameElement::PIShape pShape);
virtual FCM::Result _FCMCALL AddSound(
FCM::U_Int32 resourceId,
DOM::LibraryItem::PIMediaItem pLibItem);
virtual FCM::Result _FCMCALL AddBitmap(
FCM::U_Int32 resourceId,
DOM::LibraryItem::PIMediaItem pLibItem);
virtual FCM::Result _FCMCALL AddClassicText(
FCM::U_Int32 resourceId,
DOM::FrameElement::PIClassicText pClassicText);
virtual FCM::Result _FCMCALL HasResource(
FCM::U_Int32 resourceId,
FCM::Boolean& hasResource);
ResourcePalette();
~ResourcePalette();
void Init(IOutputWriter* pOutputWriter);
void Clear();
FCM::Result HasResource(
const std::string& name,
FCM::Boolean& hasResource);
private:
FCM::Result ExportFill(DOM::FrameElement::PIShape pIShape,FCM::U_Int32 resourceId);
FCM::Result ExportStroke(DOM::FrameElement::PIShape pIShape,FCM::U_Int32 resourceId);
FCM::Result ExportStrokeStyle(FCM::PIFCMUnknown pStrokeStyle);
FCM::Result ExportSolidStrokeStyle(DOM::StrokeStyle::ISolidStrokeStyle* pSolidStrokeStyle);
FCM::Result ExportFillStyle(FCM::PIFCMUnknown pFillStyle);
FCM::Result ExportFillBoundary(DOM::Service::Shape::PIPath pPath);
FCM::Result ExportHole(DOM::Service::Shape::PIPath pPath);
FCM::Result ExportPath(DOM::Service::Shape::PIPath pPath,FCM::Boolean ishole);
FCM::Result ExportSolidFillStyle(
DOM::FillStyle::ISolidFillStyle* pSolidFillStyle);
FCM::Result ExportRadialGradientFillStyle(
DOM::FillStyle::IGradientFillStyle* pGradientFillStyle);
FCM::Result ExportLinearGradientFillStyle(
DOM::FillStyle::IGradientFillStyle* pGradientFillStyle);
FCM::Result ExportBitmapFillStyle(
DOM::FillStyle::IBitmapFillStyle* pBitmapFillStyle);
FCM::Result GetFontInfo(DOM::FrameElement::ITextStyle* pTextStyleItem, std::string& name, FCM::U_Int16 fontSize);
FCM::Result HasFancyStrokes(DOM::FrameElement::PIShape pShape, FCM::Boolean& hasFancy);
FCM::Result ConvertStrokeToFill(
DOM::FrameElement::PIShape pShape,
DOM::FrameElement::PIShape& pNewShape);
private:
IOutputWriter* m_pOutputWriter;
std::vector<FCM::U_Int32> m_resourceList;
std::vector<std::string> m_resourceNames;
int mCurveFactor =2;
};
class TimelineBuilder : public ITimelineBuilder2, public FCMObjectBase
{
public:
BEGIN_INTERFACE_MAP(TimelineBuilder, Lottie_PLUGIN_VERSION)
INTERFACE_ENTRY(ITimelineBuilder2)
END_INTERFACE_MAP
virtual FCM::Result _FCMCALL AddShape(
FCM::U_Int32 objectId,
SHAPE_INFO* pShapeInfo);
virtual FCM::Result _FCMCALL AddClassicText(
FCM::U_Int32 objectId,
CLASSIC_TEXT_INFO* pClassicTextInfo);
virtual FCM::Result _FCMCALL AddBitmap(
FCM::U_Int32 objectId,
BITMAP_INFO* pBitmapInfo);
virtual FCM::Result _FCMCALL AddMovieClip(
FCM::U_Int32 objectId,
MOVIE_CLIP_INFO* pMovieClipInfo,
DOM::FrameElement::PIMovieClip pMovieClip);
virtual FCM::Result _FCMCALL AddGraphic(
FCM::U_Int32 objectId,
GRAPHIC_INFO* pGraphicInfo);
virtual FCM::Result _FCMCALL AddSound(
FCM::U_Int32 objectId,
SOUND_INFO* pSoundInfo,
DOM::FrameElement::PISound pSound);
virtual FCM::Result _FCMCALL UpdateZOrder(
FCM::U_Int32 objectId,
FCM::U_Int32 placeAfterObjectId);
virtual FCM::Result UpdateMask(
FCM::U_Int32 objectId,
FCM::U_Int32 maskTillObjectId);
virtual FCM::Result _FCMCALL Remove(FCM::U_Int32 objectId);
virtual FCM::Result _FCMCALL UpdateBlendMode(
FCM::U_Int32 objectId,
DOM::FrameElement::BlendMode blendMode);
virtual FCM::Result _FCMCALL UpdateVisibility(
FCM::U_Int32 objectId,
FCM::Boolean visible);
virtual FCM::Result _FCMCALL UpdateGraphicFilter(
FCM::U_Int32 objectId,
PIFCMList pFilterable);
virtual FCM::Result _FCMCALL UpdateDisplayTransform(
FCM::U_Int32 objectId,
const DOM::Utils::MATRIX2D& matrix);
virtual FCM::Result _FCMCALL UpdateColorTransform(
FCM::U_Int32 objectId,
const DOM::Utils::COLOR_MATRIX& colorMatrix);
virtual FCM::Result _FCMCALL ShowFrame();
virtual FCM::Result _FCMCALL AddFrameScript(FCM::CStringRep16 pScript, FCM::U_Int32 layerNum);
virtual FCM::Result _FCMCALL RemoveFrameScript(FCM::U_Int32 layerNum);
virtual FCM::Result _FCMCALL SetFrameLabel(FCM::StringRep16 pLabel, DOM::KeyFrameLabelType labelType);
TimelineBuilder();
~TimelineBuilder();
virtual FCM::Result Build(
FCM::U_Int32 resourceId,
FCM::StringRep16 pName,
ITimelineWriter** ppTimelineWriter);
void Init(IOutputWriter* pOutputWriter);
private:
IOutputWriter* m_pOutputWriter;
ITimelineWriter* m_pTimelineWriter;
FCM::U_Int32 m_frameIndex;
};
class TimelineBuilderFactory : public ITimelineBuilderFactory, public FCMObjectBase
{
public:
BEGIN_INTERFACE_MAP(TimelineBuilderFactory, Lottie_PLUGIN_VERSION)
INTERFACE_ENTRY(ITimelineBuilderFactory)
END_INTERFACE_MAP
virtual FCM::Result _FCMCALL CreateTimelineBuilder(PITimelineBuilder& pTimelineBuilder);
TimelineBuilderFactory();
~TimelineBuilderFactory();
void Init(IOutputWriter* pOutputWriter);
private:
IOutputWriter* m_pOutputWriter;
};
FCM::Result RegisterPublisher(PIFCMDictionary pPlugins, FCM::FCMCLSID docId);
};
#endif // PUBLISHER_H_
| [
"ranawat@adobe.com"
] | ranawat@adobe.com |
85db77c79f1f081ca8423eee8c934096b225ab0b | 02c467b0502d803dd8d08c64ff66187c83f80132 | /DifficultyState.h | 57802d2c341e329d11d74928faf192b9a16ce261 | [
"MIT"
] | permissive | darienmiller88/Pong-Online | 5c8ed95e4477c93a0d96c132a13c5e5eca34b2b4 | 3b05890256b8ff7246bda10b2aa4b1fb81bc2c8e | refs/heads/master | 2021-02-11T06:32:19.063557 | 2020-11-19T04:37:02 | 2020-11-19T04:37:02 | 244,464,603 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 563 | h | #pragma once
#include "SFML Game engine/States/GameState.h"
#include "Enums.h"
class DifficultyState : public GameState{
public:
DifficultyState(const sf::Vector2u &windowSize, StateManager &manager);
void drawState(sf::RenderWindow &window) override;
void update(float deltaTime) override;
void pause() override;
void unpause() override;
void handleInput(StateManager &manager, const sf::Event &e, const sf::RenderWindow &window, float deltaTime) override;
private:
sf::Text title, beginner, intermediate, expert, goodLuck;
};
| [
"noreply@github.com"
] | noreply@github.com |
468933f974bb83656807f2b34f493aee1b48db0c | 1c0b5e8441b83a424307327359c90c7c12de8835 | /hash散列/1084.cpp | a11bead3e5916262c381fd5679129a666e6c31e2 | [] | no_license | shushengyuan/PAT | ea0ba41fca1c734a90cae24b451d29288fd52da6 | e7aac3281a054315e605b2c078cb0de9c5735096 | refs/heads/master | 2021-03-17T23:40:06.842499 | 2020-03-13T09:01:08 | 2020-03-13T09:01:08 | 247,026,679 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 935 | cpp | #include <iostream>
#include <string>
#include <string.h>
using namespace std;
char s1[100000], s2[100000];
int main(){
cin.getline(s1, 100000);
cin.getline(s2, 100000);
int lens1 = strlen(s1), lens2 = strlen(s2);
bool flag[256] = {false};
for(int i = 0; i < lens2; i++){
flag[s2[i]] = true;
if(s2[i]>='a'&&s2[i]<='z'){
flag[s2[i]+'A'-'a'] = true;
}else if(s2[i]>='A'&&s2[i]<='Z'){
flag[s2[i] -('A'-'a')] = true;
}
}
for(int i = 0; i < lens1; i++) {
if(!flag[s1[i]]){
flag[s1[i]] = true;
if(s1[i]>='a'&&s1[i]<='z'){
flag[s1[i]+'A'-'a'] = true;
}else if(s1[i]>='A'&&s1[i]<='Z'){
flag[s1[i] -('A'-'a')] = true;
}
if(s1[i]>='a'&&s1[i]<='z'){
printf("%c", s1[i]+'A'-'a');
}else {
printf("%c", s1[i]);
}
}
}
return 0;
} | [
"2637975471@qq.com"
] | 2637975471@qq.com |
1b9dbb258f0515c4ffe5d590e799cf06afde80fc | f0e276cd595518a98c857b3cf9a9db95bc639d70 | /map__copies__hash_map.cpp | c6dfac5113da1522211a6b473beafa55dc800093 | [] | no_license | greshem/develop_cpp | caa6fa4f07d925ff1423cab2f29684de40748eb3 | 4f3d4b780eed8d7d678b975c7f098f58bb3b860e | refs/heads/master | 2021-01-19T01:53:15.922285 | 2017-10-08T07:25:35 | 2017-10-08T07:25:35 | 45,077,580 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 523 | cpp | //#include <ext/hash_map>
#ifdef WINDOWSCODE
#include <hash_map>
#else
#include <ext/hash_map>
using namespace __gnu_cxx;
#endif
#include <iostream>
using namespace std;
//using namespace __gnu_cxx;
main()
{
int i;
hash_map <int, int> hmap_info;
hash_map <int, int>::iterator hmap_it;
pair<int, int> pair_int;
hmap_info.insert(make_pair(1, 1111));
hmap_it = hmap_info.find(1);
cout<< (*hmap_it).first<< "|||"<<(*hmap_it).second <<endl;
//cin >>i;
return 0;
}
| [
"qianzhongjie@gmail.com"
] | qianzhongjie@gmail.com |
155b90970dbfb2f366989ca2dc2106a8117dedcf | dfd5033c9ca9dda238984704d151f1fe85d9dc5a | /string.cpp | 0e1afd0369f596aa85803eb0efc6b92f5fc6e5a6 | [] | no_license | iamboyoungkim/SwExpertAcademy | 4c9e44fe0e8321c47e2523a31c6a22dbfbe8ace0 | 73146a354c2fa653490cf7595c437f61791c0ece | refs/heads/master | 2020-07-09T08:30:21.230791 | 2019-08-23T05:05:23 | 2019-08-23T05:05:23 | 203,927,231 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 589 | cpp | #include <iostream>
#include <string>
#include <algorithm>
using namespace std;
int main() {
for (int test = 0; test<10; test++) {
int t, cnt, idx;
string tofind, s;
cin >> t >> tofind >> s;
cnt = 0;
idx = 0;
for (int i = idx ;i<s.size(); i++) {
int sSize = s.size();
int fSize = tofind.size();
if (s.substr(i, sSize).find(tofind) == 1) {
cnt++;
idx += fSize;
}
else idx += 1;
}
cout << "#" << t << " " << cnt << endl;
}
} | [
"boyoung3205@gmail.com"
] | boyoung3205@gmail.com |
39112cc09ca82b24e250743ab24ce6fe78651273 | 1411b640a20453e45ba7d89a455223abb4e03b67 | /src/Evt_CloseWindow.h | 7005b97abcb85e8b8935a3afcafd80c02508354b | [] | no_license | brandon515/UnamedProject | dc32e031bacb0e71a4d293c7c31abda33e00cd17 | 5c031a4245557eac0e034f36ca984ef4c138bdfe | refs/heads/master | 2021-01-01T17:47:50.267646 | 2014-06-08T02:50:46 | 2014-06-08T02:50:46 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 574 | h | #ifndef EVT_CLOSEWINDOW_H_INCLUDED
#define EVT_CLOSEWINDOW_H_INCLUDED
#include "Event.h"
class Evt_CloseWindowData : public IEventData
{
public:
Evt_CloseWindowData(uint32_t pid):
id(pid)
{}
uint32_t id;
};
class Evt_CloseWindow : public Event
{
public:
explicit Evt_CloseWindow(uint32_t pid):
Event("Close Window", IEventDataPtr(new Evt_CloseWindowData(pid)))
{}
explicit Evt_CloseWindow():
Event("Close Window", IEventDataPtr(new Evt_CloseWindowData(0)))
{}
};
#endif
| [
"brandon.haley94@gmail.com"
] | brandon.haley94@gmail.com |
06633206e03d5b97c1819bd0bc604a3ca11d1596 | 0c360ce74a4b3f08457dd354a6d1ed70a80a7265 | /src/components/policy/include/policy/pt_ext_representation.h | 2c5db4f002e363b892eb9e7aa0799d96dd7e76ed | [] | permissive | APCVSRepo/sdl_implementation_reference | 917ef886c7d053b344740ac4fc3d65f91b474b42 | 19be0eea481a8c05530048c960cce7266a39ccd0 | refs/heads/master | 2021-01-24T07:43:52.766347 | 2017-10-22T14:31:21 | 2017-10-22T14:31:21 | 93,353,314 | 4 | 3 | BSD-3-Clause | 2022-10-09T06:51:42 | 2017-06-05T01:34:12 | C++ | UTF-8 | C++ | false | false | 11,649 | h | /*
Copyright (c) 2013, Ford Motor Company
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following
disclaimer in the documentation and/or other materials provided with the
distribution.
Neither the name of the Ford Motor Company nor the names of its contributors
may be used to endorse or promote products derived from this software
without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef SRC_COMPONENTS_POLICY_INCLUDE_POLICY_PT_EXT_REPRESENTATION_H_
#define SRC_COMPONENTS_POLICY_INCLUDE_POLICY_PT_EXT_REPRESENTATION_H_
#include "policy/pt_representation.h"
namespace policy {
enum StatisticsType {
S_NONE = 0,
S_IAP_BUFFER_FULL,
S_SYNC_OUT_OF_MEMORY,
S_SYNC_REBOOTS,
S_MINS_HMI_FULL,
S_MINS_HMI_LIMITED,
S_MINS_HMI_BACKGROUND,
S_MINS_HMI_NONE,
S_RFCOM_LIMIT_REACHED,
S_USER_SELECTIONS,
S_REJECTIONS_SYNC_OUT_OF_MEMORY,
S_REJECTIONS_NICKNAME_MISMATCH,
S_REJECTIONS_DUPLICATE_NAME,
S_REJECTED_RPC_CALLS,
S_RPCS_IN_HMI_NONE,
S_REMOVALS_MISBEHAVED,
S_RUN_ATTEMPTS_WHILE_REVOKED
};
enum LanguageType { L_NONE = 0, L_GUI, L_VUI };
class PTExtRepresentation : public virtual PTRepresentation {
public:
virtual ~PTExtRepresentation() {}
/**
* @brief Is application allowed to send notifications while in
* Backgound or limited mode.
* @param app_id Application id
* @return bool Allowed/disallowed.
*/
virtual bool CanAppKeepContext(const std::string& app_id) = 0;
/**
* @brief Is application allowed to move foreground at will?
* @param app_id Application id
* @return bool Allowed/disallowed.
*/
virtual bool CanAppStealFocus(const std::string& app_id) = 0;
/**
* @brief Get default_hmi for given application
* @param policy_app_id Unique application id
* @param default_hmi Default HMI level for application or empty, if value was
* not set
* @return true, if succedeed, otherwise - false
*/
virtual bool GetDefaultHMI(const std::string& policy_app_id,
std::string* default_hmi) = 0;
/**
* @brief Reset user consent for device data and applications permissions
* @return
*/
virtual bool ResetUserConsent() = 0;
/**
* @brief Reset user consent for device data
* @return
*/
virtual bool ResetDeviceConsents() = 0;
/**
* @brief Reset user consent for applications permissions
* @return
*/
virtual bool ResetAppConsents() = 0;
/**
* @brief Get user permissions for device data usage
* @param device_id Generated or obtained id of device
* @param consented_groups Groups consented by user
* @param disallowed_groups Groups not consented by user
* @return true, if query was successfull, otherwise - false
*/
virtual bool GetUserPermissionsForDevice(
const std::string& device_id,
StringArray* consented_groups = NULL,
StringArray* disallowed_groups = NULL) = 0;
/**
* @brief Gets list of groups permissions from policy table
* @param device_id Unique device id, which hosts specific application
* @param policy_app_id Unique application id
* @param group_types Group list sorted by permission status
* @return true, if query was successfull, otherwise - false
*/
virtual bool GetPermissionsForApp(const std::string& device_id,
const std::string& policy_app_id,
FunctionalIdType* group_types) = 0;
/**
* @brief Get device groups and preconsented groups from policies section
* @param groups List of groups to be consented for device usage
* @param preconsented_groups List of preconsented groups for device usage
* @return true, if query was successful, otherwise - false
*/
virtual bool GetDeviceGroupsFromPolicies(
policy_table::Strings* groups = NULL,
policy_table::Strings* preconsented_groups = NULL) = 0;
/**
* @brief Record information about mobile device in Policy Table.
* @param device_id Generated or obtained id of device
* @return bool Success of operation
*/
virtual bool SetDeviceData(const std::string& device_id,
const std::string& hardware = "",
const std::string& firmware = "",
const std::string& os = "",
const std::string& os_version = "",
const std::string& carrier = "",
const uint32_t number_of_ports = 0,
const std::string& connection_type = "") = 0;
/**
* @brief Sets user consent for particular mobile device,
* i.e. to use device for exchanging of Policy Table.
* @return bool Success of operation
*/
virtual bool SetUserPermissionsForDevice(
const std::string& device_id,
const StringArray& consented_groups = StringArray(),
const StringArray& disallowed_gropus = StringArray()) = 0;
/**
* @brief Update Application Policies as reaction
* on User allowing/disallowing device this app is running on.
*/
virtual bool ReactOnUserDevConsentForApp(const std::string& app_id,
bool is_device_allowed) = 0;
/**
* @brief Set user consent on functional groups
* @param permissions User consent on functional group
* @return true, if operation succedeed, otherwise - false
*/
virtual bool SetUserPermissionsForApp(
const PermissionConsent& permissions) = 0;
/**
* @brief Counter for statistics information: adds 1 to existing number.
* @param type Type of statistics (errors, mins in mode etc)
* @return bool Success of operation
*/
virtual bool IncreaseStatisticsData(StatisticsType type) = 0;
/**
* @brief Records information about what language
* application tried to register with.
* @param app_id Id of application
* @param type - language for UI/VR
* @param language Language
* @return bool Success of operation
*/
virtual bool SetAppRegistrationLanguage(const std::string& app_id,
LanguageType type,
const std::string& language) = 0;
/**
* @brief Records information about head unit system to PT
* @return bool Success of operation
*/
virtual bool SetMetaInfo(const std::string& ccpu_version,
const std::string& wers_country_code,
const std::string& language) = 0;
/**
* @brief Checks, if specific head unit is present in PT
* @return boot Suceess, if present, otherwise - false
*/
virtual bool IsMetaInfoPresent() = 0;
/**
* @brief Kms pass since last successfull PT update
*/
virtual int GetKmFromSuccessfulExchange() = 0;
/**
* @brief Days pass since last successfull PT update
*/
virtual int GetDayFromScsExchange() = 0;
/**
* @brief Ignition cycles pass since last successfull PT update
*/
virtual int GetIgnitionsFromScsExchange() = 0;
/**
* @brief Set current system language
* @param language System language
* @return true, if succedeed, otherwise - false
*/
virtual bool SetSystemLanguage(const std::string& language) = 0;
/**
* Increments global counter
* @param type type of counter
*/
virtual void Increment(const std::string& type) const = 0;
/**
* Increments counter of application
* @param app_id id application
* @param type type of counter
*/
virtual void Increment(const std::string& app_id,
const std::string& type) const = 0;
/**
* Sets value of application information
* @param app_id id application
* @param type type of information
* @param value value of information
*/
virtual void Set(const std::string& app_id,
const std::string& type,
const std::string& value) const = 0;
/**
* Adds value to stopwatch of application
* @param app_id id application
* @param type type of stopwatch
* @param seconds value for adding in seconds
*/
virtual void Add(const std::string& app_id,
const std::string& type,
int seconds) const = 0;
virtual bool CountUnconsentedGroups(const std::string& policy_app_id,
const std::string& device_id,
int* result) const = 0;
/**
* @brief Gets functional group names and user_consent_prompts, if any
* @param Array to be filled with group ids, names and functional prompts
* @return true, if succeeded, otherwise - false
*/
// TODO(AOleynik): Possibly, we can get rid of this method. Check this.
virtual bool GetFunctionalGroupNames(policy::FunctionalGroupNames& names) = 0;
/**
* @brief Set app policy to pre_DataConsented policy
* @param app_id Policy ID of application to be changed
* @return true, if succeeded, otherwise - false
*/
virtual bool SetPredataPolicy(const std::string& app_id) = 0;
/**
* @brief Updates application policy to either pre_DataConsented or not
* @param app_id Policy Id of application to be checked
* @param is_pre_data True of False to setting app policy to be
* pre_DataConsented
* @return true, if succeeded, otherwise - false
*/
virtual bool SetIsPredata(const std::string& app_id, bool is_pre_data) = 0;
/**
* @brief Removes unpaired devices
* @return true if success
*/
virtual bool CleanupUnpairedDevices(const DeviceIds& device_ids) const = 0;
/**
* Sets flag of unpaired device
* @param device_id Unique device id
* @param unpaired True, if unpaired, otherwise - false
* @return true if success
*/
virtual bool SetUnpairedDevice(const std::string& device_id,
bool unpaired) const = 0;
/**
* Gets list of unpaired devices
* @param device_ids output list
* @return true if success
*/
virtual bool UnpairedDevicesList(DeviceIds* device_ids) const = 0;
/**
* @brief Remove application consent for particular group
* @param policy_app_id Unique application id
* @param functional_group_name Functional group name, which consents should
* be removed
* @return true, in case of success, otherwise - false
*/
virtual bool RemoveAppConsentForGroup(
const std::string& policy_app_id,
const std::string& functional_group_name) const = 0;
};
} // namespace policy
#endif // SRC_COMPONENTS_POLICY_INCLUDE_POLICY_PT_EXT_REPRESENTATION_H_
| [
"luwanjia@aliyun.com"
] | luwanjia@aliyun.com |
dd681c0983014b804a1005842e5f5496f8dd08ca | f13ef18abfb61d983040f83249bd19c6f55c29c9 | /tools/Vitis-AI-Library/retinaface/test/test_anchor.cpp | 9a0c0dc9e31d58a78b3b6123288f737fcf027b7d | [
"Apache-2.0",
"LicenseRef-scancode-free-unknown"
] | permissive | AEW2015/Vitis-AI | 5487b6474924e57dbdf54f66517d1c604fc2c480 | 84798c76e6ebb93300bf384cb56397f214676330 | refs/heads/master | 2023-06-24T11:02:20.049076 | 2021-07-27T05:41:52 | 2021-07-27T05:41:52 | 390,221,916 | 1 | 0 | Apache-2.0 | 2021-07-28T05:12:07 | 2021-07-28T05:12:06 | null | UTF-8 | C++ | false | false | 5,482 | cpp | /*
* Copyright 2019 Xilinx Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <stdio.h>
#include <iostream>
#include <opencv2/opencv.hpp>
#include <string>
#include <vitis/ai/facedetect.hpp>
#include <vitis/ai/profiling.hpp>
using namespace std;
struct AnchorParam {
int stride;
int base_size;
std::vector<float> ratios;
std::vector<int> scales;
};
static std::vector<std::vector<int>> generate_anchor_fpn(const AnchorParam anchor_param) {
std::cout << "generate_anchors_fpn" << std::endl;
// topx, topy, bottomx, bottomy
std::array<int, 4> base_anchor{0, 0, anchor_param.base_size - 1, anchor_param.base_size - 1};
float w = base_anchor[2] - base_anchor[0] + 1;
float h = base_anchor[3] - base_anchor[1] + 1;
float center_x = base_anchor[0] + 0.5 * (w - 1);
float center_y = base_anchor[1] + 0.5 * (h - 1);
auto size = w * h;
std::vector<std::vector<float>> ratio_anchors(anchor_param.ratios.size());
for (auto i = 0u; i < anchor_param.ratios.size(); ++i) {
auto size_ratio = size / anchor_param.ratios[i];
auto ws = std::round(std::sqrt(size_ratio));
auto hs = ws * anchor_param.ratios[i];
ratio_anchors[i] = std::vector<float>{float(center_x - 0.5 * (ws - 1)),
float(center_y - 0.5 * (hs - 1)),
float(center_x + 0.5 * (hs - 1)),
float(center_y + 0.5 * (hs - 1))};
}
for (auto i = 0u; i < ratio_anchors.size(); ++i) {
std::cout << "ratio anchors[" << i << "] "
<< ratio_anchors[i][0] << ", "
<< ratio_anchors[i][1] << ", "
<< ratio_anchors[i][2] << ", "
<< ratio_anchors[i][3] << std::endl;
}
std::cout << "hi" << std::endl;
//std::vector<std::vector<int>> anchors(ratio_anchors.size() * anchor_param.scales.size());
std::vector<std::vector<int>> anchors;
for (auto i = 0u; i < ratio_anchors.size(); ++i) {
auto w = ratio_anchors[i][2] - ratio_anchors[i][0] + 1;
auto h = ratio_anchors[i][3] - ratio_anchors[i][1] + 1;
auto center_x = ratio_anchors[i][0] + 0.5 * (w -1);
auto center_y = ratio_anchors[i][0] + 0.5 * (h -1);
for (auto j = 0u; j < anchor_param.scales.size(); ++j) {
auto ws = w * anchor_param.scales[j];
auto hs = h * anchor_param.scales[j];
anchors.emplace_back(std::vector<int>{int(center_x - 0.5 * (ws - 1)),
int(center_y - 0.5 * (hs - 1)),
int(center_x + 0.5 * (hs - 1)),
int(center_y + 0.5 * (hs - 1))});
}
}
return anchors;
}
static std::vector<std::vector<int>> anchor_plane(int h, int w, int stride, const std::vector<std::vector<int>> anchor_fpn) {
auto anchor_fpn_size = anchor_fpn.size();
auto size = h * w * anchor_fpn_size;
std::vector<std::vector<int>> anchors(size);
for (auto ww = 0; ww < w; ww++) {
for (auto hh = 0; hh < h; hh++) {
for (auto i = 0u; i < anchor_fpn_size; i++) {
auto index = hh * w * anchor_fpn_size + ww * anchor_fpn_size + i;
anchors[index] = std::vector<int>{anchor_fpn[i][0] + ww * stride,
anchor_fpn[i][1] + hh * stride,
anchor_fpn[i][2] + ww * stride,
anchor_fpn[i][3] + hh * stride};
}
}
}
return anchors;
}
//static std::vector<std::vector<int>> generate_anchors(const std::vector<AnchorParam> anchor_params) {
static std::vector<std::vector<int>> generate_anchors() {
//std::vector<AnchorParam> params = std::vector<AnchorParam>{AnchorParam{32, 16, {1.0}, {32, 16}}};
std::vector<AnchorParam> params = std::vector<AnchorParam>{AnchorParam{32, 16, {1.0}, {32, 16}},
AnchorParam{16, 16, {1.0}, {8, 4}},
AnchorParam{8, 16, {1.0}, {2, 1}} };
// sort by stride descent
std::cout << "generate_anchors" << std::endl;
std::vector<std::vector<int>> anchors_fpns;
std::vector<std::vector<int>> anchors;
for (auto i = 0u; i < params.size(); ++i) {
auto anchor_fpn = generate_anchor_fpn(params[i]);
auto anchors_by_stride = anchor_plane(384 / params[i].stride, 640 / params[i].stride, params[i].stride, anchor_fpn);
//anchors_fpns.insert(anchors_fpns.end(), anchor_fpn.begin(), anchor_fpn.end());
anchors.insert(anchors.end(), anchors_by_stride.begin(), anchors_by_stride.end());
}
return anchors;
}
int main(int argc, char *argv[]) {
auto anchors = generate_anchors();
std::cout << "anchors size : " << anchors.size() << std::endl;
for (auto a : anchors) {
std::cout << "anchor: [" << a[0]
<< ", " << a[1]
<< ", " << a[2]
<< ", " << a[3]
<< "]" << std::endl;
}
return 0;
}
| [
"hanxue.lee@xilinx.com"
] | hanxue.lee@xilinx.com |
094e3274b8726691bddb2de07c0549f5bda9fbcb | a08cbd5e9b4e4a037deaaae1749ed4dc55c79661 | /include/IECoreMaya/ProceduralHolderComponentBoundIterator.h | adab144dc32303810feb7bed2ac1a0ffa81f6a6f | [] | no_license | victorvfx/cortex | 46385788b12dae375c1a5ade26d8f403d2dbccff | deb23599c8c69eac5671e59fe1a8ca0d5e943a36 | refs/heads/master | 2021-01-16T23:11:39.139147 | 2017-06-23T12:39:41 | 2017-06-23T12:39:41 | 95,709,763 | 1 | 0 | null | 2017-06-28T20:40:12 | 2017-06-28T20:40:12 | null | UTF-8 | C++ | false | false | 3,447 | h | //////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2007-2013, Image Engine Design Inc. All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//
// * Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// * Neither the name of Image Engine Design nor the names of any
// other contributors to this software may be used to endorse or
// promote products derived from this software without specific prior
// written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
// IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
//////////////////////////////////////////////////////////////////////////
#ifndef IECOREMAYA_PROCEDURALHOLDERCOMPONENTBOUNDITERATOR_H
#define IECOREMAYA_PROCEDURALHOLDERCOMPONENTBOUNDITERATOR_H
#include "maya/MPxGeometryIterator.h"
#include "maya/MPoint.h"
#include "maya/MBoundingBox.h"
#include "maya/MObjectArray.h"
#include "OpenEXR/ImathBox.h"
#include "IECoreMaya/ProceduralHolder.h"
namespace IECoreGL
{
//IE_CORE_FORWARDDECLARE( Scene );
}
namespace IECoreMaya
{
/// The ProceduralHolderComponentBoundIterator allows maya to iterate over the bounding box corners of
/// the ProceduralHolder components. It's currently used so you can frame procedural holder components
/// in the maya viewport.
class ProceduralHolderComponentBoundIterator : public MPxGeometryIterator
{
public:
ProceduralHolderComponentBoundIterator( void *userGeometry, MObjectArray &components );
ProceduralHolderComponentBoundIterator( void *userGeometry, MObject &components );
~ProceduralHolderComponentBoundIterator();
virtual bool isDone() const;
virtual void next();
virtual void reset();
virtual void component( MObject &component );
virtual bool hasPoints() const;
virtual int iteratorCount() const;
virtual MPoint point() const;
virtual void setPoint(const MPoint &) const;
virtual int setPointGetNext(MPoint &);
virtual int index() const;
virtual bool hasNormals() const;
virtual int indexUnsimplified() const;
private:
void computeNumComponents();
ProceduralHolder* m_proceduralHolder;
unsigned m_idx;
MObjectArray m_components;
unsigned m_numComponents;
};
} // namespace IECoreMaya
#endif // IECOREMAYA_PROCEDURALHOLDERCOMPONENTBOUNDITERATOR_H
| [
"davidm@image-engine.com"
] | davidm@image-engine.com |
a3637f1d67f1f4910e7bb732019bffbc913fc75d | 561ae2d4aa0ecaf3160d6670fd7292e3b1cf678c | /main.cpp | d1aaba915d1840e19e8e9f33d74a5440ef184804 | [] | no_license | wuchaopang/20151125-class | 92d6f4f5355730a345331f91cd14b0ac7bc00b2c | e963b4d22def32f2ffbf860533e823dd0656f0fa | refs/heads/master | 2021-01-10T01:18:01.804001 | 2015-11-25T10:40:57 | 2015-11-25T10:40:57 | 46,853,843 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 712 | cpp | //
// main.cpp
// 20151125
//
// Created by 20141105049 on 15/11/25.
// Copyright © 2015年 20141105049. All rights reserved.
//
#include <iostream>
using namespace std;
class student
{public:
student(int n,string nam,int ag,string s,float c):num(n),name(nam),age(ag),sex(s),score(c){}
void display()
{
cout << "num:" << num << endl;
cout << "name:" << name << endl;
cout << "age:" << age << endl;
cout << "sex:" << sex << endl;
cout << "score:" << score << endl;
}
private:
int num;
string name;
int age;
string sex;
float score;
};
int main()
{
student stud(1001,"wuchao",20,"m",98.9);
stud.display();
return 0;
}
| [
"20141105049wch@mac23.local"
] | 20141105049wch@mac23.local |
e468fa793277c38ba262b3a3fc897db351802b8b | 59c47e1f8b2738fc2b824462e31c1c713b0bdcd7 | /006-All_Test_Demo/000-vital/000-sodimas_notice/000-code/WindowsAPP-old/BST_IDE/global/log/dailyrollingfileappender.h | 7e74223aa9a5997f11a41401b8723688430e0651 | [] | no_license | casterbn/Qt_project | 8efcc46e75e2bbe03dc4aeaafeb9e175fb7b04ab | 03115674eb3612e9dc65d4fd7bcbca9ba27f691c | refs/heads/master | 2021-10-19T07:27:24.550519 | 2019-02-19T05:26:22 | 2019-02-19T05:26:22 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,684 | h | /******************************************************************************
*
* package: Log4Qt
* file: dailyrollingfileappender.h
* created: September 2007
* author: Martin Heinrich
*
*
* Copyright 2007 Martin Heinrich
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
******************************************************************************/
#ifndef LOG4QT_DAILYROLLINGFILEAPPENDER_H
#define LOG4QT_DAILYROLLINGFILEAPPENDER_H
/******************************************************************************
* Dependencies
******************************************************************************/
#include "log/fileappender.h"
#include <QtCore/QDateTime>
/******************************************************************************
* Declarations
******************************************************************************/
namespace Log4Qt
{
/*!
* \brief The class DailyRollingFileAppender extends FileAppender so that the
* underlying file is rolled over at a specified frequency.
*
* \note All the functions declared in this class are thread-safe.
*
* \note The ownership and lifetime of objects of this class are managed. See
* \ref Ownership "Object ownership" for more details.
*/
class DailyRollingFileAppender : public FileAppender
{
Q_OBJECT
/*!
* The property holds the date pattern used by the appender.
*
* The default is DAILY_ROLLOVER for rollover at midnight each day.
*
* \sa datePattern(), setDatePattern()
*/
Q_PROPERTY(QString datePattern READ datePattern WRITE setDatePattern)
public:
/*!
* The enum DatePattern defines constants for date patterns.
*
* \sa setDatePattern(DatePattern)
*/
enum DatePattern
{
/*! The minutely date pattern string is "'.'yyyy-MM-dd-hh-mm". */
MINUTELY_ROLLOVER = 0,
/*! The hourly date pattern string is "'.'yyyy-MM-dd-hh". */
HOURLY_ROLLOVER,
/*! The half-daily date pattern string is "'.'yyyy-MM-dd-a". */
HALFDAILY_ROLLOVER,
/*! The daily date pattern string is "'.'yyyy-MM-dd". */
DAILY_ROLLOVER,
/*! The weekly date pattern string is "'.'yyyy-ww". */
WEEKLY_ROLLOVER,
/*! The monthly date pattern string is "'.'yyyy-MM". */
MONTHLY_ROLLOVER
};
Q_ENUMS(DatePattern)
DailyRollingFileAppender(QObject *pParent = 0);
DailyRollingFileAppender(Layout *pLayout,
const QString &rFileName,
const QString &rDatePattern,
QObject *pParent = 0);
virtual ~DailyRollingFileAppender();
private:
DailyRollingFileAppender(const DailyRollingFileAppender &rOther); // Not implemented
DailyRollingFileAppender &operator=(const DailyRollingFileAppender &rOther); // Not implemented
public:
QString datePattern() const;
/*!
* Sets the datePattern to the value specified by the \a datePattern
* constant.
*/
void setDatePattern(DatePattern datePattern);
void setDatePattern(const QString &rDatePattern);
virtual void activateOptions();
protected:
virtual void append(const LoggingEvent &rEvent);
/*!
* Tests if all entry conditions for using append() in this class are
* met.
*
* If a conditions is not met, an error is logged and the function
* returns false. Otherwise the result of
* FileAppender::checkEntryConditions() is returned.
*
* The checked conditions are:
* - A valid pattern has been set (APPENDER_USE_INVALID_PATTERN_ERROR)
*
* The function is called as part of the checkEntryConditions() chain
* started by AppenderSkeleton::doAppend().
*
* \sa AppenderSkeleton::doAppend(),
* AppenderSkeleton::checkEntryConditions()
*/
virtual bool checkEntryConditions() const;
protected:
#ifndef QT_NO_DEBUG_STREAM
/*!
* Writes all object member variables to the given debug stream
* \a rDebug and returns the stream.
*
* <tt>
* %DailyRollingFileAppender(name:"DRFA" activedatepattern:"'.'yyyy-MM-dd-hh-mm"
* appendfile:false bufferedio:true
* datepattern:"'.'yyyy-MM-dd-hh-mm"
* encoding:"" frequency:"MINUTELY_ROLLOVER"
* file:"/log.txt" filter:0x0 immediateflush:true
* isactive:true isclosed:false layout:"TTCC"
* referencecount:1
* rollovertime:QDateTime("Mon Oct 22 05:23:00 2007")
* threshold: "NULL" writer: 0x0 )
* </tt>
* \sa QDebug, operator<<(QDebug debug, const LogObject &rLogObject)
*/
virtual QDebug debug(QDebug &rDebug) const;
#endif // QT_NO_DEBUG_STREAM
private:
void computeFrequency();
void computeRollOverTime();
QString frequencyToString() const;
void rollOver();
private:
QString mDatePattern;
DatePattern mFrequency;
QString mActiveDatePattern;
QDateTime mRollOverTime;
QString mRollOverSuffix;
};
/**************************************************************************
* Operators, Helper
**************************************************************************/
/**************************************************************************
* Inline
**************************************************************************/
inline QString DailyRollingFileAppender::datePattern() const
{ QMutexLocker locker(&mObjectGuard);
return mDatePattern; }
inline void DailyRollingFileAppender::setDatePattern(const QString &rDatePattern)
{ QMutexLocker locker(&mObjectGuard);
mDatePattern = rDatePattern; }
} // namespace Log4Qt
// Q_DECLARE_TYPEINFO(Log4Qt::DailyRollingFileAppender, Q_COMPLEX_TYPE); // Use default
#endif // LOG4QT_DAILYROLLINGFILEAPPENDER_H
| [
"1343726739@qq.com"
] | 1343726739@qq.com |
ddf4da26a04cdf50500ee5ed4d5a19e80f44aa47 | fc214bfc7caf6050eec8ec5201e7f7eb568e3a17 | /Windows/Qt/Qt5.12-msvc2019_static_64/5.12/msvc2019_static_64/include/QtDesigner/5.12.12/QtDesigner/private/qsimpleresource_p.h | cbd2e04925b114d7b3d8b8e3094c9e3573202383 | [] | no_license | MediaArea/MediaArea-Utils-Binaries | 44402a1dacb43e19ef6857da46a48289b106137d | 5cde31480dba6092e195dfae96478c261018bf32 | refs/heads/master | 2023-09-01T04:54:34.216269 | 2023-04-11T08:44:15 | 2023-04-11T08:44:15 | 57,366,211 | 4 | 1 | null | 2023-04-11T08:44:16 | 2016-04-29T07:51:36 | C++ | UTF-8 | C++ | false | false | 5,261 | h | /****************************************************************************
**
** Copyright (C) 2016 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the Qt Designer of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:GPL-EXCEPT$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 as published by the Free Software
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/
//
// W A R N I N G
// -------------
//
// This file is not part of the Qt API. It exists for the convenience
// of Qt Designer. This header
// file may change from version to version without notice, or even be removed.
//
// We mean it.
//
#ifndef QSIMPLERESOURCE_H
#define QSIMPLERESOURCE_H
#include "shared_global_p.h"
#include "abstractformbuilder.h"
#include <QtCore/qstringlist.h>
#include <QtCore/qvector.h>
QT_BEGIN_NAMESPACE
class DomCustomWidgets;
class DomCustomWidget;
class DomSlots;
class QDesignerFormEditorInterface;
namespace qdesigner_internal {
class WidgetDataBaseItem;
class QDESIGNER_SHARED_EXPORT QSimpleResource : public QAbstractFormBuilder
{
public:
explicit QSimpleResource(QDesignerFormEditorInterface *core);
~QSimpleResource() override;
QBrush setupBrush(DomBrush *brush);
DomBrush *saveBrush(const QBrush &brush);
inline QDesignerFormEditorInterface *core() const
{ return m_core; }
// Query extensions for additional data
static void addExtensionDataToDOM(QAbstractFormBuilder *afb,
QDesignerFormEditorInterface *core,
DomWidget *ui_widget, QWidget *widget);
static void applyExtensionDataFromDOM(QAbstractFormBuilder *afb,
QDesignerFormEditorInterface *core,
DomWidget *ui_widget, QWidget *widget);
// Return the script returned by the CustomWidget codeTemplate API
static QString customWidgetScript(QDesignerFormEditorInterface *core, QObject *object);
static QString customWidgetScript(QDesignerFormEditorInterface *core, const QString &className);
static bool hasCustomWidgetScript(QDesignerFormEditorInterface *core, QObject *object);
// Implementation for FormBuilder::createDomCustomWidgets() that adds
// the custom widgets to the widget database
static void handleDomCustomWidgets(const QDesignerFormEditorInterface *core,
const DomCustomWidgets *dom_custom_widgets);
protected:
static bool addFakeMethods(const DomSlots *domSlots, QStringList &fakeSlots, QStringList &fakeSignals);
private:
static void addCustomWidgetsToWidgetDatabase(const QDesignerFormEditorInterface *core,
QVector<DomCustomWidget *> &custom_widget_list);
static void addFakeMethodsToWidgetDataBase(const DomCustomWidget *domCustomWidget, WidgetDataBaseItem *item);
static bool m_warningsEnabled;
QDesignerFormEditorInterface *m_core;
};
// Contents of clipboard for formbuilder copy and paste operations
// (Actions and widgets)
struct QDESIGNER_SHARED_EXPORT FormBuilderClipboard {
typedef QList<QAction*> ActionList;
FormBuilderClipboard() {}
FormBuilderClipboard(QWidget *w);
bool empty() const;
QWidgetList m_widgets;
ActionList m_actions;
};
// Base class for a form builder used in the editor that
// provides copy and paste.(move into base interface)
class QDESIGNER_SHARED_EXPORT QEditorFormBuilder : public QSimpleResource
{
public:
explicit QEditorFormBuilder(QDesignerFormEditorInterface *core) : QSimpleResource(core) {}
virtual bool copy(QIODevice *dev, const FormBuilderClipboard &selection) = 0;
virtual DomUI *copy(const FormBuilderClipboard &selection) = 0;
// A widget parent needs to be specified, otherwise, the widget factory cannot locate the form window via parent
// and thus is not able to construct special widgets (QLayoutWidget).
virtual FormBuilderClipboard paste(DomUI *ui, QWidget *widgetParent, QObject *actionParent = 0) = 0;
virtual FormBuilderClipboard paste(QIODevice *dev, QWidget *widgetParent, QObject *actionParent = 0) = 0;
};
} // namespace qdesigner_internal
QT_END_NAMESPACE
#endif
| [
"gervais.maxime@gmail.com"
] | gervais.maxime@gmail.com |
da8ce22bf7398e29401be0034461efe80077be1a | f4761d973cdd6c98f53a2d2703fb6d9b111055f4 | /RECTANGL.cpp | 246db76e6b59a2d050e74406ca522a3d4bf491a1 | [] | no_license | anishsaha61/CompetetiveProgrammingSolutions | 2fd25350ec0a48f8704f16b394025ce3f3e1a1e7 | 5fc92121b459996b178549d190329d74a48a2a66 | refs/heads/master | 2022-06-24T11:31:30.416748 | 2020-05-10T17:44:12 | 2020-05-10T17:44:12 | 262,839,007 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 339 | cpp | #include <bits/stdc++.h>
using namespace std;
typedef long long int lint;
int main() {
lint rep;
cin >> rep;
while(rep--){
lint a, b, c, d;
cin >> a >> b >> c >> d;
if((a==b && c==d) || (a==c && b==d) || (a==d && b==c)){
cout << "YES" << endl;
}else{
cout << "NO" << endl;
}
}
return 0;
}
| [
"noreply@github.com"
] | noreply@github.com |
1672a3d43b44265795a88dd69a77db6dd3404214 | 55668745c9558d4ef501b9e51e3ee0662c94c2f1 | /normanAR/src/main.cpp | dc58a7de501019e3c8f61f8f4cb69ef1a764d4c3 | [
"Apache-2.0"
] | permissive | jiubadao/norman-ar | e86c7bf1ada0a28ddea880e3896acf515b5fca23 | 61131b9446cd285806f3346ad6204f9d7403ef89 | refs/heads/master | 2020-05-16T03:08:49.483812 | 2018-08-13T19:36:45 | 2018-08-13T19:36:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,143 | cpp | // Copyright 2017 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "ofMain.h"
#include "ofApp.h"
int main(){
ofSetLogLevel(OF_LOG_VERBOSE);
// for GL ES 2
ofGLESWindowSettings settings;
settings.setGLESVersion(2); // Set the version of openGL ES we want to use
ofCreateWindow(settings);
ofSetupOpenGL(1024,768, OF_WINDOW); // setup the GL context
// This kicks off the app
ofRunApp( new ofApp() );
return 0;
}
#ifdef TARGET_ANDROID
void ofAndroidApplicationInit()
{
//application scope init
}
void ofAndroidActivityInit()
{
//activity scope init
main();
}
#endif
| [
"irenea@irenea-macbookpro01.roam.corp.google.com"
] | irenea@irenea-macbookpro01.roam.corp.google.com |
e8e873f5a9ef0557a7ec738ebf9b7100f130f2c1 | 020beed263ee60ff21b5449b9b67d1f22604063e | /include/parser.hpp | e9a0499cd5ad751e113edfc662cae9206259999d | [] | no_license | terngkub/computor_v1 | a1390ea8b010cb1bb45e4df7c1a9f97df8df7f84 | 071cd41a0d6c5a2044d9f7930d8f6b1219d31591 | refs/heads/master | 2020-05-15T11:43:26.802061 | 2019-08-10T14:42:57 | 2019-08-10T14:42:57 | 182,241,318 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 595 | hpp | #pragma once
#include "ast.hpp"
#include "lexer.hpp"
#include "token.hpp"
#include <memory>
struct Parser
{
Parser(Lexer &);
INodePtr parse();
private:
typedef INodePtr (Parser::*ParserFunc)();
Lexer & lexer;
TokenPtr prev_token;
TokenPtr current_token;
std::string var_name;
bool has_equal;
void get_next_token();
bool is_minus();
INodePtr error(std::string error_message);
INodePtr equation();
INodePtr expression();
INodePtr term();
INodePtr power();
INodePtr factor();
INodePtr parenthesis();
INodePtr number();
INodePtr variable();
INodePtr natural_form();
}; | [
"terngnattapol@gmail.com"
] | terngnattapol@gmail.com |
8fc2da05e76f16f687164e898fe3c1004077a13e | 0101afee46a0c9aa7dfd834865e3a5573e81bf7c | /src/SimulationClass.h | 080a15f0fdf9a868e65887ff3d02a6cd53761296 | [] | no_license | liangjj/simpimc | 16c570365137e864d5a7ab249024e42ed1958660 | 51ebff983c9cb3e901a73f1080f82bc0bddd7417 | refs/heads/master | 2021-01-18T09:42:20.058273 | 2013-04-13T23:11:28 | 2013-04-13T23:11:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,002 | h | #ifndef SimulationClass_H
#define SimulationClass_H
#include "StandardLibraries.h" // Standard libraries
#include "GlobalConstants.h"
#include "PathClass.h" // paths class
#include "RNGClass.h" // RNG class
// Moves
#include "Moves/MoveClass.h" // moves class
// Observables
#include "Observables/ObservableClass.h" // observables class
class Simulation
{
private:
protected:
public:
// Constructor
Simulation( const int nPartIn , const int nDIn , const int nBeadIn, const double betaIn , const double lambdaIn , const int fermiIn , const int halfspaceIn , const int nodeTypeIn , const int useNodeDistIn , const double LIn )
: rng((int)time(0)) , path( nPartIn , nDIn , nBeadIn, betaIn , lambdaIn , fermiIn , halfspaceIn , nodeTypeIn , useNodeDistIn , LIn )
{
}
// Simulation Random Number Generator
RNG rng;
// Simulation Paths
Path path;
// Simulation Moves
std::vector<Move*> moves;
// Simulation Observables
std::vector<Observable*> observables;
};
#endif
| [
"ethan.w.brown@gmail.com"
] | ethan.w.brown@gmail.com |
127b6ff46eea7984c7258ac98a5313fb9de61124 | 3f97240b0faefd7cf010aefd83dc7b26477b8d98 | /3.10.cpp | a8d6a8bea7a3095b88192b411128e806d1149872 | [] | no_license | tuanduong3001/homework3.5 | a90a0578496c37526a36545bd8711c98bba0a1e0 | 83c3ad07e01725db7d6de79bb9b00ef1e9bdfd4d | refs/heads/master | 2021-01-02T06:38:25.183618 | 2020-05-31T17:02:28 | 2020-05-31T17:02:28 | 239,531,641 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 445 | cpp | #include<iostream>
using namespace std;
void input(int arr[], int& n)
{
for (int i = 0; i < n; i++) {
cin >> arr[i];
}
}
int findEven(int number, int arr[])
{
int count = 0;
for (int i = 0; i < number; i++) {
if (arr[i] % 2 == 0) {
count++;
return arr[i];
break;
}
}
if (count == 0)
return -1;
}
int main()
{
int n;
cin >> n;
int arr[1000];
input(arr, n);
cout << findEven(n, arr);
} | [
"noreply@github.com"
] | noreply@github.com |
38e6f7232f1d85e7c6b53e89a166776a9e6caffd | 407b65bd024c0b30c618353c44d5e4c5d92df9b6 | /Arrays/pascalGetRow.cpp | 72e7b24bf81c25e6344ec0658160fd412f390a20 | [] | no_license | rrichajalota/InterviewBit | 9f9bb56652c9068daff9b58a96143d5c56d84b93 | b6e7450497b631d384343bcc47da063d953fbffc | refs/heads/master | 2020-04-12T09:32:13.023509 | 2016-11-12T14:50:55 | 2016-11-12T14:50:55 | 61,781,681 | 4 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 927 | cpp | /* Kth Row of pascal's triangle
Given an index k, return the kth row of the Pascal’s triangle.
Pascal’s triangle : To generate A[C] in row R, sum up A’[C] and A’[C-1] from previous row R - 1.
Example:
Input : k = 3
Return : [1,3,3,1]
NOTE : k is 0 based. k = 0, corresponds to the row [1].
Note:Could you optimize your algorithm to use only O(k) extra space?
*/
vector<int> Solution::getRow(int A) {
vector<int> row;
if(A < 0)
return row;
row.push_back(1);
if(A==0)
return row;
row.push_back(1);
if(A==1)
return row;
int i=2;
vector<int> prev(2);
prev= row;
while( i <= A){
for(int j=1; j<= row.size()-1; j++){
row[j]= prev[j-1]+ prev[j];
}
row.push_back(1);
prev.resize(row.size());
prev= row;
i++;
}
return row;
}
| [
"rrichajalota@gmail.com"
] | rrichajalota@gmail.com |
47e53bc7a87f9a06bbbf59c5689bd3d55fd8bcb4 | 69784e105ddc2aca3699b6b07dbcb1834d7c242c | /Classes/Native/Newtonsoft_Json_Newtonsoft_Json_Serialization_Json1580437102.h | 6bc44ec6dd3d244f9c1d9fb4c06d62eb95b284d9 | [] | no_license | ryanmcgrail95/CRHC-iOS | 7e72139100b2140143deb424d21fdc69b2959ed1 | 1b00260e6c59f552d9a8b94e42fcae5e657a6c46 | refs/heads/master | 2021-06-12T11:21:33.461817 | 2017-03-04T01:08:34 | 2017-03-04T01:08:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,310 | h | #pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
// System.Reflection.MethodInfo
struct MethodInfo_t;
#include "mscorlib_System_Object2689449295.h"
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Newtonsoft.Json.Serialization.JsonContract/<>c__DisplayClass73_0
struct U3CU3Ec__DisplayClass73_0_t1580437102 : public Il2CppObject
{
public:
// System.Reflection.MethodInfo 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_t1580437102, ___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(&___callbackMethodInfo_0, value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
| [
"rmcgrai1@nd.edu"
] | rmcgrai1@nd.edu |
6321ef36430343ddec59ee3a2b2859d1cddcfcf6 | aad6b08ee56c2760b207d562f16be0a5bb8e3e2a | /tags/Doduo1.1.2/BAL/OWBAL/Concretizations/Internationalization/WK/BCBidiResolverWK.h | 8fadf08e9ced71fb9e3880297cdfe73ffff46861 | [] | no_license | Chengjian-Tang/owb-mirror | 5ffd127685d06f2c8e00832c63cd235bec63f753 | b48392a07a2f760bfc273d8d8b80e8d3f43b6b55 | refs/heads/master | 2021-05-27T02:09:03.654458 | 2010-06-23T11:10:12 | 2010-06-23T11:10:12 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 33,080 | h | /*
* Copyright (C) 2000 Lars Knoll (knoll@kde.org)
* Copyright (C) 2003, 2004, 2006, 2007, 2008 Apple Inc. All right reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
*/
#ifndef BidiResolver_h
#define BidiResolver_h
#include "BidiContext.h"
#include <wtf/Noncopyable.h>
#include <wtf/PassRefPtr.h>
#include <wtf/Vector.h>
namespace OWBAL {
// The BidiStatus at a given position (typically the end of a line) can
// be cached and then used to restart bidi resolution at that position.
struct BidiStatus {
BidiStatus()
: eor(WTF::Unicode::OtherNeutral)
, lastStrong(WTF::Unicode::OtherNeutral)
, last(WTF::Unicode::OtherNeutral)
{
}
BidiStatus(WTF::Unicode::Direction eorDir, WTF::Unicode::Direction lastStrongDir, WTF::Unicode::Direction lastDir, PassRefPtr<BidiContext> bidiContext)
: eor(eorDir)
, lastStrong(lastStrongDir)
, last(lastDir)
, context(bidiContext)
{
}
WTF::Unicode::Direction eor;
WTF::Unicode::Direction lastStrong;
WTF::Unicode::Direction last;
RefPtr<BidiContext> context;
};
inline bool operator==(const BidiStatus& status1, const BidiStatus& status2)
{
return status1.eor == status2.eor && status1.last == status2.last && status1.lastStrong == status2.lastStrong && *(status1.context) == *(status2.context);
}
inline bool operator!=(const BidiStatus& status1, const BidiStatus& status2)
{
return !(status1 == status2);
}
struct BidiCharacterRun {
BidiCharacterRun(int start, int stop, BidiContext* context, WTF::Unicode::Direction dir)
: m_start(start)
, m_stop(stop)
, m_override(context->override())
, m_next(0)
{
if (dir == WTF::Unicode::OtherNeutral)
dir = context->dir();
m_level = context->level();
// add level of run (cases I1 & I2)
if (m_level % 2) {
if (dir == WTF::Unicode::LeftToRight || dir == WTF::Unicode::ArabicNumber || dir == WTF::Unicode::EuropeanNumber)
m_level++;
} else {
if (dir == WTF::Unicode::RightToLeft)
m_level++;
else if (dir == WTF::Unicode::ArabicNumber || dir == WTF::Unicode::EuropeanNumber)
m_level += 2;
}
}
void destroy() { delete this; }
int start() const { return m_start; }
int stop() const { return m_stop; }
unsigned char level() const { return m_level; }
bool reversed(bool visuallyOrdered) { return m_level % 2 && !visuallyOrdered; }
bool dirOverride(bool visuallyOrdered) { return m_override || visuallyOrdered; }
BidiCharacterRun* next() const { return m_next; }
unsigned char m_level;
int m_start;
int m_stop;
bool m_override;
BidiCharacterRun* m_next;
};
template <class Iterator, class Run> class BidiResolver : public Noncopyable {
public :
BidiResolver()
: m_direction(WTF::Unicode::OtherNeutral)
, reachedEndOfLine(false)
, emptyRun(true)
, m_firstRun(0)
, m_lastRun(0)
, m_logicallyLastRun(0)
, m_runCount(0)
{
}
const Iterator& position() const { return current; }
void setPosition(const Iterator& position) { current = position; }
void increment() { current.increment(); }
BidiContext* context() const { return m_status.context.get(); }
void setContext(PassRefPtr<BidiContext> c) { m_status.context = c; }
void setLastDir(WTF::Unicode::Direction lastDir) { m_status.last = lastDir; }
void setLastStrongDir(WTF::Unicode::Direction lastStrongDir) { m_status.lastStrong = lastStrongDir; }
void setEorDir(WTF::Unicode::Direction eorDir) { m_status.eor = eorDir; }
WTF::Unicode::Direction dir() const { return m_direction; }
void setDir(WTF::Unicode::Direction d) { m_direction = d; }
const BidiStatus& status() const { return m_status; }
void setStatus(const BidiStatus s) { m_status = s; }
void embed(WTF::Unicode::Direction);
void commitExplicitEmbedding();
void createBidiRunsForLine(const Iterator& end, bool visualOrder = false, bool hardLineBreak = false);
Run* firstRun() const { return m_firstRun; }
Run* lastRun() const { return m_lastRun; }
Run* logicallyLastRun() const { return m_logicallyLastRun; }
unsigned runCount() const { return m_runCount; }
void addRun(Run*);
void prependRun(Run*);
void moveRunToEnd(Run*);
void moveRunToBeginning(Run*);
void deleteRuns();
protected:
void appendRun();
void reverseRuns(unsigned start, unsigned end);
Iterator current;
Iterator sor;
Iterator eor;
Iterator last;
BidiStatus m_status;
WTF::Unicode::Direction m_direction;
Iterator endOfLine;
bool reachedEndOfLine;
Iterator lastBeforeET;
bool emptyRun;
Run* m_firstRun;
Run* m_lastRun;
Run* m_logicallyLastRun;
unsigned m_runCount;
private:
void raiseExplicitEmbeddingLevel(WTF::Unicode::Direction from, WTF::Unicode::Direction to);
void lowerExplicitEmbeddingLevel(WTF::Unicode::Direction from);
Vector<WTF::Unicode::Direction, 8> m_currentExplicitEmbeddingSequence;
};
template <class Iterator, class Run>
inline void BidiResolver<Iterator, Run>::addRun(Run* run)
{
if (!m_firstRun)
m_firstRun = run;
else
m_lastRun->m_next = run;
m_lastRun = run;
m_runCount++;
}
template <class Iterator, class Run>
inline void BidiResolver<Iterator, Run>::prependRun(Run* run)
{
ASSERT(!run->m_next);
if (!m_lastRun)
m_lastRun = run;
else
run->m_next = m_firstRun;
m_firstRun = run;
m_runCount++;
}
template <class Iterator, class Run>
inline void BidiResolver<Iterator, Run>::moveRunToEnd(Run* run)
{
ASSERT(m_firstRun);
ASSERT(m_lastRun);
ASSERT(run->m_next);
Run* current = 0;
Run* next = m_firstRun;
while (next != run) {
current = next;
next = current->next();
}
if (!current)
m_firstRun = run->next();
else
current->m_next = run->m_next;
run->m_next = 0;
m_lastRun->m_next = run;
m_lastRun = run;
}
template <class Iterator, class Run>
inline void BidiResolver<Iterator, Run>::moveRunToBeginning(Run* run)
{
ASSERT(m_firstRun);
ASSERT(m_lastRun);
ASSERT(run != m_firstRun);
Run* current = m_firstRun;
Run* next = current->next();
while (next != run) {
current = next;
next = current->next();
}
current->m_next = run->m_next;
if (run == m_lastRun)
m_lastRun = current;
run->m_next = m_firstRun;
m_firstRun = run;
}
template <class Iterator, class Run>
void BidiResolver<Iterator, Run>::appendRun()
{
if (!emptyRun && !eor.atEnd()) {
addRun(new Run(sor.offset(), eor.offset() + 1, context(), m_direction));
eor.increment();
sor = eor;
}
m_direction = WTF::Unicode::OtherNeutral;
m_status.eor = WTF::Unicode::OtherNeutral;
}
template <class Iterator, class Run>
void BidiResolver<Iterator, Run>::embed(WTF::Unicode::Direction d)
{
using namespace WTF::Unicode;
ASSERT(d == PopDirectionalFormat || d == LeftToRightEmbedding || d == LeftToRightOverride || d == RightToLeftEmbedding || d == RightToLeftOverride);
m_currentExplicitEmbeddingSequence.append(d);
}
template <class Iterator, class Run>
void BidiResolver<Iterator, Run>::lowerExplicitEmbeddingLevel(WTF::Unicode::Direction from)
{
using namespace WTF::Unicode;
if (!emptyRun && eor != last) {
ASSERT(m_status.eor != OtherNeutral || eor.atEnd());
// bidi.sor ... bidi.eor ... bidi.last eor; need to append the bidi.sor-bidi.eor run or extend it through bidi.last
ASSERT(m_status.last == EuropeanNumberSeparator
|| m_status.last == EuropeanNumberTerminator
|| m_status.last == CommonNumberSeparator
|| m_status.last == BoundaryNeutral
|| m_status.last == BlockSeparator
|| m_status.last == SegmentSeparator
|| m_status.last == WhiteSpaceNeutral
|| m_status.last == OtherNeutral);
if (m_direction == OtherNeutral)
m_direction = m_status.lastStrong == LeftToRight ? LeftToRight : RightToLeft;
if (from == LeftToRight) {
// bidi.sor ... bidi.eor ... bidi.last L
if (m_status.eor == EuropeanNumber) {
if (m_status.lastStrong != LeftToRight) {
m_direction = EuropeanNumber;
appendRun();
}
} else if (m_status.eor == ArabicNumber) {
m_direction = ArabicNumber;
appendRun();
} else if (m_status.lastStrong != LeftToRight) {
appendRun();
m_direction = LeftToRight;
}
} else if (m_status.eor == EuropeanNumber || m_status.eor == ArabicNumber || m_status.lastStrong == LeftToRight) {
appendRun();
m_direction = RightToLeft;
}
eor = last;
}
appendRun();
emptyRun = true;
// sor for the new run is determined by the higher level (rule X10)
setLastDir(from);
setLastStrongDir(from);
eor = Iterator();
}
template <class Iterator, class Run>
void BidiResolver<Iterator, Run>::raiseExplicitEmbeddingLevel(WTF::Unicode::Direction from, WTF::Unicode::Direction to)
{
using namespace WTF::Unicode;
if (!emptyRun && eor != last) {
ASSERT(m_status.eor != OtherNeutral || eor.atEnd());
// bidi.sor ... bidi.eor ... bidi.last eor; need to append the bidi.sor-bidi.eor run or extend it through bidi.last
ASSERT(m_status.last == EuropeanNumberSeparator
|| m_status.last == EuropeanNumberTerminator
|| m_status.last == CommonNumberSeparator
|| m_status.last == BoundaryNeutral
|| m_status.last == BlockSeparator
|| m_status.last == SegmentSeparator
|| m_status.last == WhiteSpaceNeutral
|| m_status.last == OtherNeutral);
if (m_direction == OtherNeutral)
m_direction = m_status.lastStrong == LeftToRight ? LeftToRight : RightToLeft;
if (to == LeftToRight) {
// bidi.sor ... bidi.eor ... bidi.last L
if (m_status.eor == EuropeanNumber) {
if (m_status.lastStrong != LeftToRight) {
m_direction = EuropeanNumber;
appendRun();
}
} else if (m_status.eor == ArabicNumber) {
m_direction = ArabicNumber;
appendRun();
} else if (m_status.lastStrong != LeftToRight && from == LeftToRight) {
appendRun();
m_direction = LeftToRight;
}
} else if (m_status.eor == ArabicNumber
|| m_status.eor == EuropeanNumber && (m_status.lastStrong != LeftToRight || from == RightToLeft)
|| m_status.eor != EuropeanNumber && m_status.lastStrong == LeftToRight && from == RightToLeft) {
appendRun();
m_direction = RightToLeft;
}
eor = last;
}
appendRun();
emptyRun = true;
setLastDir(to);
setLastStrongDir(to);
eor = Iterator();
}
template <class Iterator, class Run>
void BidiResolver<Iterator, Run>::commitExplicitEmbedding()
{
using namespace WTF::Unicode;
unsigned char fromLevel = context()->level();
RefPtr<BidiContext> toContext = context();
for (size_t i = 0; i < m_currentExplicitEmbeddingSequence.size(); ++i) {
Direction embedding = m_currentExplicitEmbeddingSequence[i];
if (embedding == PopDirectionalFormat) {
if (BidiContext* parentContext = toContext->parent())
toContext = parentContext;
} else {
Direction direction = (embedding == RightToLeftEmbedding || embedding == RightToLeftOverride) ? RightToLeft : LeftToRight;
bool override = embedding == LeftToRightOverride || embedding == RightToLeftOverride;
unsigned char level = toContext->level();
if (direction == RightToLeft) {
// Go to the least greater odd integer
level += 1;
level |= 1;
} else {
// Go to the least greater even integer
level += 2;
level &= ~1;
}
if (level < 61)
toContext = new BidiContext(level, direction, override, toContext.get());
}
}
unsigned char toLevel = toContext->level();
if (toLevel > fromLevel)
raiseExplicitEmbeddingLevel(fromLevel % 2 ? RightToLeft : LeftToRight, toLevel % 2 ? RightToLeft : LeftToRight);
else if (toLevel < fromLevel)
lowerExplicitEmbeddingLevel(fromLevel % 2 ? RightToLeft : LeftToRight);
setContext(toContext);
m_currentExplicitEmbeddingSequence.clear();
}
template <class Iterator, class Run>
void BidiResolver<Iterator, Run>::deleteRuns()
{
emptyRun = true;
if (!m_firstRun)
return;
Run* curr = m_firstRun;
while (curr) {
Run* s = curr->next();
curr->destroy();
curr = s;
}
m_firstRun = 0;
m_lastRun = 0;
m_runCount = 0;
}
template <class Iterator, class Run>
void BidiResolver<Iterator, Run>::reverseRuns(unsigned start, unsigned end)
{
if (start >= end)
return;
ASSERT(end < m_runCount);
// Get the item before the start of the runs to reverse and put it in
// |beforeStart|. |curr| should point to the first run to reverse.
Run* curr = m_firstRun;
Run* beforeStart = 0;
unsigned i = 0;
while (i < start) {
i++;
beforeStart = curr;
curr = curr->next();
}
Run* startRun = curr;
while (i < end) {
i++;
curr = curr->next();
}
Run* endRun = curr;
Run* afterEnd = curr->next();
i = start;
curr = startRun;
Run* newNext = afterEnd;
while (i <= end) {
// Do the reversal.
Run* next = curr->next();
curr->m_next = newNext;
newNext = curr;
curr = next;
i++;
}
// Now hook up beforeStart and afterEnd to the startRun and endRun.
if (beforeStart)
beforeStart->m_next = endRun;
else
m_firstRun = endRun;
startRun->m_next = afterEnd;
if (!afterEnd)
m_lastRun = startRun;
}
template <class Iterator, class Run>
void BidiResolver<Iterator, Run>::createBidiRunsForLine(const Iterator& end, bool visualOrder, bool hardLineBreak)
{
using namespace WTF::Unicode;
ASSERT(m_direction == OtherNeutral);
emptyRun = true;
eor = Iterator();
last = current;
bool pastEnd = false;
BidiResolver<Iterator, Run> stateAtEnd;
while (true) {
Direction dirCurrent;
if (pastEnd && (hardLineBreak || current.atEnd())) {
BidiContext* c = context();
while (c->parent())
c = c->parent();
dirCurrent = c->dir();
if (hardLineBreak) {
// A deviation from the Unicode Bidi Algorithm in order to match
// Mac OS X text and WinIE: a hard line break resets bidi state.
stateAtEnd.setContext(c);
stateAtEnd.setEorDir(dirCurrent);
stateAtEnd.setLastDir(dirCurrent);
stateAtEnd.setLastStrongDir(dirCurrent);
}
} else {
dirCurrent = current.direction();
if (context()->override()
&& dirCurrent != RightToLeftEmbedding
&& dirCurrent != LeftToRightEmbedding
&& dirCurrent != RightToLeftOverride
&& dirCurrent != LeftToRightOverride
&& dirCurrent != PopDirectionalFormat)
dirCurrent = context()->dir();
else if (dirCurrent == NonSpacingMark)
dirCurrent = m_status.last;
}
ASSERT(m_status.eor != OtherNeutral || eor.atEnd());
switch (dirCurrent) {
// embedding and overrides (X1-X9 in the Bidi specs)
case RightToLeftEmbedding:
case LeftToRightEmbedding:
case RightToLeftOverride:
case LeftToRightOverride:
case PopDirectionalFormat:
embed(dirCurrent);
commitExplicitEmbedding();
break;
// strong types
case LeftToRight:
switch(m_status.last) {
case RightToLeft:
case RightToLeftArabic:
case EuropeanNumber:
case ArabicNumber:
if (m_status.last != EuropeanNumber || m_status.lastStrong != LeftToRight)
appendRun();
break;
case LeftToRight:
break;
case EuropeanNumberSeparator:
case EuropeanNumberTerminator:
case CommonNumberSeparator:
case BoundaryNeutral:
case BlockSeparator:
case SegmentSeparator:
case WhiteSpaceNeutral:
case OtherNeutral:
if (m_status.eor == EuropeanNumber) {
if (m_status.lastStrong != LeftToRight) {
// the numbers need to be on a higher embedding level, so let's close that run
m_direction = EuropeanNumber;
appendRun();
if (context()->dir() != LeftToRight) {
// the neutrals take the embedding direction, which is R
eor = last;
m_direction = RightToLeft;
appendRun();
}
}
} else if (m_status.eor == ArabicNumber) {
// Arabic numbers are always on a higher embedding level, so let's close that run
m_direction = ArabicNumber;
appendRun();
if (context()->dir() != LeftToRight) {
// the neutrals take the embedding direction, which is R
eor = last;
m_direction = RightToLeft;
appendRun();
}
} else if (m_status.lastStrong != LeftToRight) {
//last stuff takes embedding dir
if (context()->dir() == RightToLeft) {
eor = last;
m_direction = RightToLeft;
}
appendRun();
}
default:
break;
}
eor = current;
m_status.eor = LeftToRight;
m_status.lastStrong = LeftToRight;
m_direction = LeftToRight;
break;
case RightToLeftArabic:
case RightToLeft:
switch (m_status.last) {
case LeftToRight:
case EuropeanNumber:
case ArabicNumber:
appendRun();
case RightToLeft:
case RightToLeftArabic:
break;
case EuropeanNumberSeparator:
case EuropeanNumberTerminator:
case CommonNumberSeparator:
case BoundaryNeutral:
case BlockSeparator:
case SegmentSeparator:
case WhiteSpaceNeutral:
case OtherNeutral:
if (m_status.eor == EuropeanNumber) {
if (m_status.lastStrong == LeftToRight && context()->dir() == LeftToRight)
eor = last;
appendRun();
} else if (m_status.eor == ArabicNumber)
appendRun();
else if (m_status.lastStrong == LeftToRight) {
if (context()->dir() == LeftToRight)
eor = last;
appendRun();
}
default:
break;
}
eor = current;
m_status.eor = RightToLeft;
m_status.lastStrong = dirCurrent;
m_direction = RightToLeft;
break;
// weak types:
case EuropeanNumber:
if (m_status.lastStrong != RightToLeftArabic) {
// if last strong was AL change EN to AN
switch (m_status.last) {
case EuropeanNumber:
case LeftToRight:
break;
case RightToLeft:
case RightToLeftArabic:
case ArabicNumber:
eor = last;
appendRun();
m_direction = EuropeanNumber;
break;
case EuropeanNumberSeparator:
case CommonNumberSeparator:
if (m_status.eor == EuropeanNumber)
break;
case EuropeanNumberTerminator:
case BoundaryNeutral:
case BlockSeparator:
case SegmentSeparator:
case WhiteSpaceNeutral:
case OtherNeutral:
if (m_status.eor == EuropeanNumber) {
if (m_status.lastStrong == RightToLeft) {
// ENs on both sides behave like Rs, so the neutrals should be R.
// Terminate the EN run.
appendRun();
// Make an R run.
eor = m_status.last == EuropeanNumberTerminator ? lastBeforeET : last;
m_direction = RightToLeft;
appendRun();
// Begin a new EN run.
m_direction = EuropeanNumber;
}
} else if (m_status.eor == ArabicNumber) {
// Terminate the AN run.
appendRun();
if (m_status.lastStrong == RightToLeft || context()->dir() == RightToLeft) {
// Make an R run.
eor = m_status.last == EuropeanNumberTerminator ? lastBeforeET : last;
m_direction = RightToLeft;
appendRun();
// Begin a new EN run.
m_direction = EuropeanNumber;
}
} else if (m_status.lastStrong == RightToLeft) {
// Extend the R run to include the neutrals.
eor = m_status.last == EuropeanNumberTerminator ? lastBeforeET : last;
m_direction = RightToLeft;
appendRun();
// Begin a new EN run.
m_direction = EuropeanNumber;
}
default:
break;
}
eor = current;
m_status.eor = EuropeanNumber;
if (m_direction == OtherNeutral)
m_direction = LeftToRight;
break;
}
case ArabicNumber:
dirCurrent = ArabicNumber;
switch (m_status.last) {
case LeftToRight:
if (context()->dir() == LeftToRight)
appendRun();
break;
case ArabicNumber:
break;
case RightToLeft:
case RightToLeftArabic:
case EuropeanNumber:
eor = last;
appendRun();
break;
case CommonNumberSeparator:
if (m_status.eor == ArabicNumber)
break;
case EuropeanNumberSeparator:
case EuropeanNumberTerminator:
case BoundaryNeutral:
case BlockSeparator:
case SegmentSeparator:
case WhiteSpaceNeutral:
case OtherNeutral:
if (m_status.eor == ArabicNumber
|| m_status.eor == EuropeanNumber && (m_status.lastStrong == RightToLeft || context()->dir() == RightToLeft)
|| m_status.eor != EuropeanNumber && m_status.lastStrong == LeftToRight && context()->dir() == RightToLeft) {
// Terminate the run before the neutrals.
appendRun();
// Begin an R run for the neutrals.
m_direction = RightToLeft;
} else if (m_direction == OtherNeutral)
m_direction = m_status.lastStrong == LeftToRight ? LeftToRight : RightToLeft;
eor = last;
appendRun();
default:
break;
}
eor = current;
m_status.eor = ArabicNumber;
if (m_direction == OtherNeutral)
m_direction = ArabicNumber;
break;
case EuropeanNumberSeparator:
case CommonNumberSeparator:
break;
case EuropeanNumberTerminator:
if (m_status.last == EuropeanNumber) {
dirCurrent = EuropeanNumber;
eor = current;
m_status.eor = dirCurrent;
} else if (m_status.last != EuropeanNumberTerminator)
lastBeforeET = emptyRun ? eor : last;
break;
// boundary neutrals should be ignored
case BoundaryNeutral:
if (eor == last)
eor = current;
break;
// neutrals
case BlockSeparator:
// ### what do we do with newline and paragraph seperators that come to here?
break;
case SegmentSeparator:
// ### implement rule L1
break;
case WhiteSpaceNeutral:
break;
case OtherNeutral:
break;
default:
break;
}
if (pastEnd) {
if (eor == current) {
if (!reachedEndOfLine) {
eor = endOfLine;
switch (m_status.eor) {
case LeftToRight:
case RightToLeft:
case ArabicNumber:
m_direction = m_status.eor;
break;
case EuropeanNumber:
m_direction = m_status.lastStrong == LeftToRight ? LeftToRight : EuropeanNumber;
break;
default:
ASSERT(false);
}
appendRun();
}
current = end;
m_status = stateAtEnd.m_status;
sor = stateAtEnd.sor;
eor = stateAtEnd.eor;
last = stateAtEnd.last;
reachedEndOfLine = stateAtEnd.reachedEndOfLine;
lastBeforeET = stateAtEnd.lastBeforeET;
emptyRun = stateAtEnd.emptyRun;
m_direction = OtherNeutral;
break;
}
}
// set m_status.last as needed.
switch (dirCurrent) {
case EuropeanNumberTerminator:
if (m_status.last != EuropeanNumber)
m_status.last = EuropeanNumberTerminator;
break;
case EuropeanNumberSeparator:
case CommonNumberSeparator:
case SegmentSeparator:
case WhiteSpaceNeutral:
case OtherNeutral:
switch(m_status.last) {
case LeftToRight:
case RightToLeft:
case RightToLeftArabic:
case EuropeanNumber:
case ArabicNumber:
m_status.last = dirCurrent;
break;
default:
m_status.last = OtherNeutral;
}
break;
case NonSpacingMark:
case BoundaryNeutral:
case RightToLeftEmbedding:
case LeftToRightEmbedding:
case RightToLeftOverride:
case LeftToRightOverride:
case PopDirectionalFormat:
// ignore these
break;
case EuropeanNumber:
// fall through
default:
m_status.last = dirCurrent;
}
last = current;
if (emptyRun && !(dirCurrent == RightToLeftEmbedding
|| dirCurrent == LeftToRightEmbedding
|| dirCurrent == RightToLeftOverride
|| dirCurrent == LeftToRightOverride
|| dirCurrent == PopDirectionalFormat)) {
sor = current;
emptyRun = false;
}
increment();
if (!m_currentExplicitEmbeddingSequence.isEmpty())
commitExplicitEmbedding();
if (emptyRun && (dirCurrent == RightToLeftEmbedding
|| dirCurrent == LeftToRightEmbedding
|| dirCurrent == RightToLeftOverride
|| dirCurrent == LeftToRightOverride
|| dirCurrent == PopDirectionalFormat)) {
// exclude the embedding char itself from the new run so that ATSUI will never see it
eor = Iterator();
last = current;
sor = current;
}
if (!pastEnd && (current == end || current.atEnd())) {
if (emptyRun)
break;
stateAtEnd.m_status = m_status;
stateAtEnd.sor = sor;
stateAtEnd.eor = eor;
stateAtEnd.last = last;
stateAtEnd.reachedEndOfLine = reachedEndOfLine;
stateAtEnd.lastBeforeET = lastBeforeET;
stateAtEnd.emptyRun = emptyRun;
endOfLine = last;
pastEnd = true;
}
}
m_logicallyLastRun = m_lastRun;
// reorder line according to run structure...
// do not reverse for visually ordered web sites
if (!visualOrder) {
// first find highest and lowest levels
unsigned char levelLow = 128;
unsigned char levelHigh = 0;
Run* r = firstRun();
while (r) {
if (r->m_level > levelHigh)
levelHigh = r->m_level;
if (r->m_level < levelLow)
levelLow = r->m_level;
r = r->next();
}
// implements reordering of the line (L2 according to Bidi spec):
// L2. From the highest level found in the text to the lowest odd level on each line,
// reverse any contiguous sequence of characters that are at that level or higher.
// reversing is only done up to the lowest odd level
if (!(levelLow % 2))
levelLow++;
unsigned count = runCount() - 1;
while (levelHigh >= levelLow) {
unsigned i = 0;
Run* currRun = firstRun();
while (i < count) {
while (i < count && currRun && currRun->m_level < levelHigh) {
i++;
currRun = currRun->next();
}
unsigned start = i;
while (i <= count && currRun && currRun->m_level >= levelHigh) {
i++;
currRun = currRun->next();
}
unsigned end = i - 1;
reverseRuns(start, end);
}
levelHigh--;
}
}
endOfLine = Iterator();
}
} // namespace WebCore
#endif // BidiResolver_h
| [
"jcverdie@a3cd4a6d-042f-0410-9b26-d8d12826d3fb"
] | jcverdie@a3cd4a6d-042f-0410-9b26-d8d12826d3fb |
aca6c4e418683df272b5ed2b9f075de5a50aaf42 | 2b5c9a10607f9f138027b25856c4856942f55e49 | /raytracer/Vulkan/Instance.h | 0de8979274d40fe63c47ff61be0b88ab6e0d5e80 | [] | no_license | Draketuroth/Vulkan-Raytracer | c73bf0400d133305fe70d0a51072868dca6fb13d | 51ea1af38be333ce5322c6a1ab2f2a0d187e0dda | refs/heads/master | 2023-06-05T07:54:00.801796 | 2021-06-27T08:08:47 | 2021-06-27T08:08:47 | 345,343,334 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,451 | h | #ifndef VULKAN_INSTANCE_H
#define VULKAN_INSTANCE_H
namespace Core { class Window; }
namespace Vulkan
{
class Instance final
{
public:
Instance(const Core::Window& windowRef, const std::vector<const Platform::Type::Char*> validationLayersVec, Platform::Type::Uint32 vulkanVersion);
~Instance();
const Core::Window& getWindow() const { return window; }
const std::vector<VkExtensionProperties>& getExtensions() { return extensions; }
const std::vector<VkLayerProperties>& getLayers() { return layers; }
const std::vector<VkPhysicalDevice>& getDevices() { return devices; }
const std::vector<const Platform::Type::Char*>& getValidationLayers() const { return validationLayers; }
VkInstance getHandle() const { return instance; }
private:
void getVulkanExtensions();
void getVulkanLayers();
void getVulkanDevices();
static void checkMinimumSupportedVulkanVersion(Platform::Type::Uint32 minimumVersion);
static void checkVulkanValidationLayerSupport(const std::vector<const Platform::Type::Char*> validationLayersVec);
const Core::Window& window;
const std::vector<const Platform::Type::Char*> validationLayers;
VkInstance instance;
std::vector<VkExtensionProperties> extensions;
std::vector<VkLayerProperties> layers;
std::vector<VkPhysicalDevice> devices;
};
}
#endif | [
"fredrik-linde@outlook.com"
] | fredrik-linde@outlook.com |
e0c89c6c4a50e817f0aa9d24e1648e30150108a8 | 89492aa9393bf7274f3be366d3fda5a630c280d7 | /lab3/lab3/Math.cpp | 3ac5b3ba69eec490e3515903ec374dcce33ff824 | [] | no_license | stefichim/POO | c51cdc12410d45971fd29746b6957c3a8e183cbc | 323cfc0cf4590097e6e40ae1552d564cd5dbf6c3 | refs/heads/master | 2022-07-08T07:16:49.675607 | 2020-05-12T19:08:49 | 2020-05-12T19:08:49 | 263,426,617 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,483 | cpp | #define _CRT_SECURE_NO_WARNINGS
#include "Math.h"
#include<cstdarg>
#include<iostream>
#include<string>
Math::Math() {
}
int Math::Add(int x, int y) {
return x + y;
}
int Math::Add(int x, int y, int z) {
return x + y + z;
}
double Math::Add(double x, double y) {
return x + y;
}
double Math::Add(double x, double y, double z) {
return x + y + z;
}
int Math::Mul(int x, int y) {
return x * y;
}
int Math::Mul(int x, int y, int z) {
return x * y*z;
}
double Math::Mul(double x, double y) {
return x * y;
}
double Math::Mul(double x, double y, double z) {
return x * y*z;
}
int Math::Add(int count, ...) {
int value = 0,sum=0;
va_list v1;
va_start(v1, count);
for (int i = 0; i < count; i++) {
value = va_arg(v1, int);
sum = sum + value;
}
va_end(v1);
return sum;
//primul parametru este count(numarul de numerele pe care le voi aduna), iar dupa pun count numere!!!
}
char* Math::Add(const char* sir1, const char* sir2) {
if (sir1 == nullptr || sir2 == nullptr)
return nullptr;
int length = strlen(sir1) + strlen(sir2);//in length retin lungimea totala a celor 2 siruri
char* temp = new char[length];//aloc memorie pt un sir de dimensiunea cumulata a celor 2 siruri!
int i = 0;
for (int j = 0; j < strlen(sir1); j++) {
temp[i++] = sir1[j];
}//am pus in temp primul sir
for (int j = 0; j < strlen(sir2); j++) {
temp[i++] = sir2[j];
}//am pus in temp al doilea sir
temp[i] = '\0';// musai ca altfel imi da bazaconii!
return temp;
}
| [
"ichim.stefan99@gmail.com"
] | ichim.stefan99@gmail.com |
a68add4d69ac81b2b1343cf4942d3690be3e23d2 | 5945d6e644a25dcc1b1552205b6f96fffe159f5f | /src/lib/users/abstractusersmodel.cpp | bcf0898767bb1670a98520858fbcc53fbaa868ad | [
"BSD-3-Clause"
] | permissive | yuntan/twitter4qml | 5cba11e7f10eb53b547484ce680b115f3511d9c9 | 67a7ea7c5467293f6b288435e73bc9db18639985 | refs/heads/master | 2016-09-08T01:20:37.275268 | 2014-02-18T09:03:39 | 2014-02-18T09:03:39 | 16,941,630 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,426 | cpp | /* Copyright (c) 2012-2013 Twitter4QML Project.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of the Twitter4QML nor the
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL TWITTER4QML BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "abstractusersmodel.h"
AbstractUsersModel::AbstractUsersModel(QObject *parent)
: AbstractTwitterModel(parent)
, m_include_entities(false)
, m_count(0)
, m_page(0)
, m_next_cursor(0)
, m_previous_cursor(0)
{
QHash<int, QByteArray> roles;
roles[ContributorsEnabledRole] = "contributors_enabled";
roles[created_at_role] = "created_at";
roles[DefaultProfileRole] = "default_profile";
roles[DefaultProfileImageRole] = "default_profile_image";
roles[DescriptionRole] = "description";
roles[FavouritesCountRole] = "favourites_count";
roles[FollowRequestSentRole] = "follow_request_sent";
roles[FollowersCountRole] = "followers_count";
roles[FollowingRole] = "following";
roles[FriendsCountRole] = "friends_count";
roles[GeoEnabledRole] = "geo_enabled";
roles[id_role] = "id";
roles[id_str_role] = "id_str";
roles[IsTranslatorRole] = "is_translator";
roles[LangRole] = "lang";
roles[ListedCountRole] = "listed_count";
roles[LocationRole] = "location";
roles[name_role] = "name";
roles[NotificationsRole] = "notifications";
roles[ProfileBackgroundColorRole] = "profile_background_color";
roles[ProfileBackgroundImageurl_role] = "profile_background_image_url";
roles[ProfileBackgroundImageUrlHttpsRole] = "profile_background_image_url_https";
roles[ProfileBackgroundTileRole] = "profile_background_tile";
roles[ProfileImageurl_role] = "profile_image_url";
roles[ProfileImageUrlHttpsRole] = "profile_image_url_https";
roles[ProfileLinkColorRole] = "profile_link_color";
roles[ProfileSidebarBorderColorRole] = "profile_sidebar_border_color";
roles[ProfileSidebarFillColorRole] = "profile_sidebar_fill_color";
roles[ProfileTextColorRole] = "profile_text_color";
roles[ProfileUseBackgroundImageRole] = "profile_use_background_image";
roles[ProtectedRole] = "protected";
roles[screen_nameRole] = "screen_name";
roles[ShowAllInlineMediaRole] = "show_all_inline_media";
roles[StatusesCountRole] = "statuses_count";
roles[TimeZoneRole] = "time_zone";
roles[url_role] = "url";
roles[UtcOffsetRole] = "utc_offset";
roles[VerifiedRole] = "verified";
setRoleNames(roles);
}
void AbstractUsersModel::reload()
{
next_cursor(0);
next_cursor_str(QString());
previous_cursor(0);
previous_cursor_str(QString());
AbstractTwitterModel::reload();
}
void AbstractUsersModel::parseDone(const QVariant &result)
{
// DEBUG() << result;
if (result.type() == QVariant::List) {
QVariantList array = result.toList();
QAlgorithmsPrivate::qReverse(array.begin(), array.end());
foreach (const QVariant &result, array) {
if (result.type() == QVariant::Map) {
addData(result.toMap());
}
}
}
}
| [
"stasuku@gmail.com"
] | stasuku@gmail.com |
c2485e6e4f0ae5f3468c7a704b4b2b398ac18743 | ae0b73a65476caf00348c5a66ed10d78a28d9b08 | /Vendi/main.cpp | dc1b2b2d5ce9965ecdda6b5e69a5151ed24b2520 | [] | no_license | blitzF/CS-100-Projects | 81a90558b9554e08a178e8c39fd59f5feba2006e | 31b01bd57c1b3e8a15435cf2e444accadea388e7 | refs/heads/master | 2021-03-28T08:48:48.850484 | 2020-03-17T01:41:14 | 2020-03-17T01:41:14 | 247,852,899 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,170 | cpp | #include <iostream>
#include <stdlib.h>
#include <stdio.h>
#include <fstream>
#include <string>
#include <string.h>
#include <sstream>
#include <windows.h>
using namespace std;
bool exists_check(string name)
{
ifstream infile;
name = name + ".txt";
infile.open(name.c_str());
if(infile.fail())
{
return true;
}
else
{
infile.close();
return false;
}
}
void update_account(string user_name,string password,int balance, int amounts[], int prices[], string products[],int n)
{
int it = 0;
ofstream wfile,inv;
string file = user_name + ".txt";
string inventory_file = "inventory.txt";
string temp = "temp.txt";
string sample,input;
remove(file.c_str());
remove(inventory_file.c_str());
//updating the user information...
wfile.open(file.c_str());
wfile<<user_name;
wfile<<"\n";
wfile<<password;
wfile<<"\n";
wfile<<balance;
wfile.close();
//Updating the inventory....
inv.open(inventory_file.c_str());
inv<<"Product";
inv<<"\t\t\t";
inv<<"Price";
inv<<"\t\t\t";
inv<<"Amount";
inv<<"\n";
while(it < n)
{
inv<<products[it];
inv<<"\t\t\t";
inv<<prices[it];
inv<<"\t\t\t";
inv<<amounts[it];
inv<<"\n";
it++;
}
inv.close();
}
void vendi_main(string products[],int amounts[],int prices[],int n)
{
ifstream rfile;
ofstream wfile;
bool already;
string dec,user_name,password,file_name,dec2;
int balance,number,recharge;
cout<<"Are you a new user? (yes or no)"<<endl;
cin>>dec;
while(dec != "yes" && dec != "no")
{
cout<<"Error: Wrong Input"<<endl;
cout<<"Enter (yes) or (no) again:";cin>>dec;
}
if(dec == "yes")
{
balance = 100;
cout<<"Enter desired username: ";
cin>>user_name;
cout<<endl;
cout<<"Enter your password: ";
cin>>password;
cout<<endl;
already = exists_check(user_name);
while(!already)
{
cout<<"User already exists..."<<endl;
cout<<"Enter new username: ";cin>>user_name;
cout<<"Enter new password: ";cin>>password;
cout<<endl;
already = exists_check(user_name);
}
file_name = user_name + ".txt";
wfile.open(file_name.c_str());
wfile<<user_name;
wfile<<"\n";
wfile<<password;
wfile<<"\n";
wfile<<balance;
wfile.close();
}
else
{
string test_pass,test_user,st_balance;
cout<<"Enter your username: ";
cin>>user_name;
cout<<endl;
cout<<"Enter your password: ";
cin>>password;
cout<<endl;
file_name = user_name + ".txt";
rfile.open(file_name.c_str());
if(rfile.fail())
{
cout<<"You're not an existing user..."<<endl;
cout<<"Quitting Vendi.. Run again."<<endl;
exit(0);
}
getline(rfile,test_user);
getline(rfile,test_pass);
getline(rfile,st_balance);
balance = atoi(st_balance.c_str());
if (user_name == test_user && password == test_pass)
{
cout<<"Welcome to Vendi..."<<endl;
}
else
{
cout<<"Incorrect credentials... Quitting.."<<endl;
exit(0);
}
rfile.close();
}
while(1)
{
system("CLS");
system("color 9F");
Sleep(900);
cout<<"If you want to see the menu press 97....."<<endl;
cout<<"If you want to exit press 98..."<<endl;
cout<<"If you want to recharge your account press 99..."<<endl;
cin>>number;
if(number == 97)
{
system("CLS");
system("color DF");
cout<<"Here's the list of items you can purchase..."<<endl;
for(int i=0; i<n;i++)
{
cout<<i<<": "<<products[i]<<"\t"<<"Price: "<<prices[i]<<endl;
}
cout<<"Enter the number of product you want to purchase: "<<endl;
cout<<"You can still enter 98 to exit and 99 to recharge..."<<endl;
cin>>number;
}
while(number >= n && number != 99 && number != 98)
{
cout<<"Error: incorrect number entered..."<<endl;
Sleep(900);
continue;
}
if(number == 98)
{
cout<<"Thank you for using vendi.. Your details have been updated !"<<endl;
break;
}
if(number == 99)
{
cout<<"Enter the amount you want to recharge: ";cin>>recharge;
balance = balance + recharge;
cout<<"You have successfully recharged your account.."<<endl;
Sleep(1000);
continue;
}
if(balance >= prices[number] && amounts[number] > 0)
{
cout<<"You've successfully bought: "<<products[number]<<endl;
balance = balance - prices[number];
amounts[number] = amounts[number] - 1;
cout<<"Please collect your item from below...."<<endl;
Sleep(1000);
}
else
{
if(amounts[number] <= 0)
{
cout<<"The item is out of stock... Sorry!"<<endl;
cout<<"Please consider purchasing anything else..."<<endl;
Sleep(1000);
continue;
}
cout<<"Insufficient balance...Please recharge your account to purchase this."<<endl;
cout<<"Would you like to buy anything else? ";cin>>dec2;
if(dec2 == "no")
{
cout<<"Thank you for using vendi.."<<endl;
break;
}
if(dec2 =="yes")
{
continue;
}
}
}
update_account(user_name,password,balance,amounts,prices,products,n);
}
void file_read(string name)
{
bool T = true; //To check if the int obtained while reading is either a price or amount of product...
int counter = 0; //To count number of products in inventory
ifstream infile,testfile;
testfile.open(name.c_str());
string tester; //random string to read the file so that can obtain counter.
while(getline(testfile,tester))
{
counter++;
}
counter = counter-1;
testfile.close();
infile.open(name.c_str());
string garbage,input;
string concat = ""; //String to get Product names...
string products[counter]; //Products array for all the inventory products..
int k = 0;
int prices[counter]; //Array for prices of products..
int amounts[counter]; //Array containing quantity of products..
getline(infile,garbage);
while(getline(infile,input))
{
istringstream st(input);
string sample;
int price,amount,found;
while(st >> sample)
{
if(stringstream(sample) >> found)
{
if(sample == "300ml" || sample == "7up" || sample =="7up300ml")
{
concat = concat + sample;
continue;
}
if(T)
{
price = found;
T = false;
continue;
}
else
{
amount = found;
T = true;
continue;
}
}
concat = concat + sample;
}
products[k] = concat;
prices[k] = price;
amounts[k] = amount;
k++;
concat = "";
}
infile.close();
vendi_main(products,amounts,prices,counter);
}
int main()
{
//Here I am giving the program my inventory file so that It can take data from it..
//Reading the inventory file and storing the data in corresponding arrays....
string inv = "inventory.txt";
file_read(inv);
return 0;
}
| [
"noreply@github.com"
] | noreply@github.com |
c58c82bb41975cf300cc4e44c739021c51bd391b | 6894baa7cce4b199f5b41c41294b13c53648058e | /cost.h | 13d82124011a43079fa584c5e757ef6bbd8b133f | [] | no_license | larryniven/seg | ae9c7c9638a5218b31a22eb868eba5f0d560fc65 | b0e42aea90d1917b6bba238fc104340cc3b1dd0c | refs/heads/master | 2021-01-11T22:27:37.427065 | 2017-12-01T05:27:34 | 2017-12-01T05:27:34 | 78,964,722 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 808 | h | #ifndef COST_H
#define COST_H
#include <vector>
namespace cost {
template <class symbol>
struct segment {
long start_time;
long end_time;
symbol label;
};
template <class symbol>
struct cost_t {
virtual ~cost_t()
{}
virtual double operator()(std::vector<segment<symbol>> const& gold_edges,
segment<symbol> const& e) const = 0;
};
template <class symbol>
struct overlap_cost
: public cost_t<symbol> {
std::vector<symbol> sils;
overlap_cost();
overlap_cost(std::vector<symbol> sils);
virtual double operator()(std::vector<segment<symbol>> const& gold_edges,
segment<symbol> const& e) const override;
};
}
#include "seg/cost-impl.h"
#endif
| [
"haotang@ttic.edu"
] | haotang@ttic.edu |
5c5835437ebea9b812556d8841ee20df54a3c308 | 98cc078bae2a3e390ba81f8788c13a27cda48d23 | /src/Engine/Gfx/Gfx2D/Renderer2d.cpp | 85403f0a525d150117d914cd85ff588d5458acbf | [] | no_license | 4nc3str4l/LostEngine | a95d5c83b4d331b7db484387bef397600e6fa6a3 | 33e44313961b8900d85e708b6d76b43ae314bbf6 | refs/heads/master | 2021-01-19T13:39:37.979103 | 2020-04-25T23:27:15 | 2020-04-25T23:27:15 | 100,852,487 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,958 | cpp | #include "Renderer2d.h"
namespace le { namespace gfx2d {
Renderer2d::Renderer2d(Shader* _shader)
{
m_Shader = _shader;
Init();
}
void Renderer2d::Init()
{
GLuint VBO;
GLfloat vertices[] = {
0.0f, 1.0f, 0.0f, 1.0f,
1.0f, 0.0f, 1.0f, 0.0f,
0.0f, 0.0f, 0.0f, 0.0f,
0.0f, 1.0f, 0.0f, 1.0f,
1.0f, 1.0f, 1.0f, 1.0f,
1.0f, 0.0f, 1.0f, 0.0f
};
glGenVertexArrays(1, &m_QuadVAO);
glGenBuffers(1, &VBO);
glBindBuffer(GL_ARRAY_BUFFER, VBO);
glBufferData(GL_ARRAY_BUFFER, sizeof(vertices), vertices, GL_STATIC_DRAW);
glBindVertexArray(m_QuadVAO);
glEnableVertexAttribArray(0);
glVertexAttribPointer(0, 4, GL_FLOAT, GL_FALSE, 4 * sizeof(GLfloat), (GLvoid*)0);
glBindBuffer(GL_ARRAY_BUFFER, 0);
glBindVertexArray(0);
}
void Renderer2d::Prepare()
{
m_Shader->Use();
glActiveTexture(GL_TEXTURE0);
glBindVertexArray(m_QuadVAO);
glEnable(GL_BLEND);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
}
void Renderer2d::DrawSprite(GLuint _textureID, Sprite* _sprite)
{
glm::mat4 model;
model = glm::translate(model, glm::vec3(*_sprite->Position, 0.0f));
glBindTexture(GL_TEXTURE_2D, _textureID);
model = glm::translate(model, glm::vec3(0.5f * _sprite->Scale->x, 0.5f * _sprite->Scale->y, 0.0f));
model = glm::rotate(model, _sprite->Rotation, glm::vec3(0.0f, 0.0f, 1.0f));
model = glm::translate(model, glm::vec3(-0.5f * _sprite->Scale->x, -0.5f * _sprite->Scale->y, 0.0f));
model = glm::scale(model, glm::vec3(*_sprite->Scale, 1.0f));
m_Shader->SetMat4("model", model);
// Render textured quad
m_Shader->SetVec3("spriteColor", *_sprite->Color);
m_Shader->SetFloat("transparency", _sprite->Transparency);
glDrawArrays(GL_TRIANGLES, 0, 6);
}
void Renderer2d::Finnish()
{
glBindVertexArray(0);
}
Renderer2d::~Renderer2d()
{
delete m_Shader;
glDeleteVertexArrays(1, &m_QuadVAO);
}
}} | [
"cmuri_10@hotmail.com"
] | cmuri_10@hotmail.com |
261598d61f0e1fe19a2e3fb84400986a3b544898 | dc3cd8497e92583580396d61197830f6e31e4614 | /GNXT/value_tnna.h | 36a3f8456c9e75c89d638239a12d57cdfd974aea | [] | no_license | Mapoet/TG | 90169e9f3a17433e029e688897a6faadf7a72181 | 7622a2184097ac82dda503e32c2684a42604d159 | refs/heads/master | 2020-06-21T03:18:35.919489 | 2019-08-09T15:17:17 | 2019-08-09T15:17:17 | 197,331,118 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 870 | h | //
// value_tnna.h
// TNNA
//
// Created by Mapoet Niphy on 2018/11/3.
// Copyright © 2018年 Mapoet Niphy. All rights reserved.
//
#ifndef value_tnna_h
#define value_tnna_h
namespace TNNA{
template<typename Data>
class value{
template<typename Scales,typename Flows,typename Datas>
friend class cell;
protected:
Data _data;
value(const Data&data = Data()) :_data(data){}
virtual void print(std::ostream&ios) = 0;
public:
Data& data(){return _data;}
};
template<typename Data>
class DataValue :public value<Data>{
protected:
DataValue(const Data&data=Data()) :value<Data>(data){}
virtual void print(std::ostream&ios){
ios <<"Value:"<<this->_data;
}
public:
static std::shared_ptr<value<Data>>New(Data data = Data()){
return std::shared_ptr<value<Data>>(new DataValue<Data>(data));
}
};
}
#endif /* value_h */
| [
"Mapoet.Niphy@Gmail.com"
] | Mapoet.Niphy@Gmail.com |
6dcdc308451c1295bfa7b78f173554b0276aa3cc | c911876ed6339b39b38556c4eb4f5d9bc9c06f27 | /HWCH8/test.cpp | ce93d2012d77e436873941afd7992a7b80a5db22 | [] | no_license | Jodios/C-HW | e24eb8293289bbab1c206c2e8444e0fbd9f43a02 | ed413410b1791a58c3dfd802b4869855f93fa912 | refs/heads/master | 2021-09-25T10:19:31.731688 | 2018-04-26T23:36:34 | 2018-04-26T23:36:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 95 | cpp | #include <iostream>
int main(){
std::cout << "HELLO, YouTube :)" << std::endl;
return 0;
} | [
"joelandapophis@gmail.com"
] | joelandapophis@gmail.com |
967cd608fd30943165bbb60cc969f078af0914e0 | cc153bdc1238b6888d309939fc683e6d1589df80 | /prebuilt_HY11/target/product/msm8953_32/obj/include/cne/common/inc/CneConfigs.h | f2f32fc3f12b67872b50842e506404d3ac83abce | [] | no_license | ml-think-tanks/msm8996-vendor | bb9aa72dabe59a9bd9158cd7a6e350a287fa6a35 | b506122cefbe34508214e0bc6a57941a1bfbbe97 | refs/heads/master | 2022-10-21T17:39:51.458074 | 2020-06-18T08:35:56 | 2020-06-18T08:35:56 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,195 | h | #ifndef CNE_CONFIGS_H
#define CNE_CONFIGS_H
/**----------------------------------------------------------------------------
@file CneConfigs.h
The CneConfigs reads the CneConfig file a text file with config
elements and their values. ex:- ConfigType:ConfigValue
It parses and stores them and provides an api for the clients
to request for configuration value of a specific configuration.
-----------------------------------------------------------------------------*/
/*=============================================================================
Copyright (c) 2009,2010, 2016-2017 Qualcomm Technologies, Inc.
All Rights Reserved.
Confidential and Proprietary - Qualcomm Technologies, Inc.
=============================================================================*/
/*=============================================================================
EDIT HISTORY FOR MODULE
$Header: //depot/asic/sandbox/projects/cne/common/core/inc/CneConfigs.h#2 $
$DateTime: 2009/11/20 14:15:13 $
$Author: ggeldman $
$Change: 1092306 $
when who what, where, why
---------- --- ---------------------------------------------------------
2009-10-24 ysk First revision.
=============================================================================*/
/*----------------------------------------------------------------------------
* Include Files
* -------------------------------------------------------------------------*/
#include "CneDefs.h"
#include "cutils/properties.h"
#include <stdio.h>
/*----------------------------------------------------------------------------
* Preprocessor Definitions and Constants
* -------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
* Type Declarations
* -------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
* Class Definitions
* -------------------------------------------------------------------------*/
class CneConfigs
{
public:
/* Different configuration elments */
typedef enum
{
CONFIG_BAT_LOW_TO_MED_TRIG,
CONFIG_BAT_MED_TO_HIGH_TRIG,
CONFIG_BW_BASED_RAT_SEL,
CONFIG_SENSORS_IP_BASED_RAT_MGT,
CONFIG_BAT_IP_BASED_RAT_MGT,
CONFIG_RAT_ACQ_TIME_OUT,
CONFIG_RAT_ACQ_RETRY_TIME_OUT,
CONFIG_FMC_MODE,
CONFIG_FMC_INIT_TIME_OUT,
CONFIG_FMC_COMM_TIME_OUT,
CONFIG_FMC_RETRY,
CONFIG_RAT_WLAN_CHIPSET_OEM,
CONFIG_NSRM_ENABLED,
CONFIG_NSRM_BKG_EVT_FLAG
/* other things that i can think of that can be configurable
* what to substitute for RAT_ANY
*/
} CneConfigProperties;
typedef struct
{
CneConfigProperties configProperty;
union
{
uint32_t batLowToMedTrig;
uint32_t batMedToHighTrig;
uint8_t opPolicyLocPtr[PROPERTY_VALUE_MAX];
uint8_t userPolicyLocPtr[PROPERTY_VALUE_MAX];
uint8_t bwBasedRatSelFlag;
uint8_t sensorsIpBasedRatMgtFlag;
uint8_t batIpBasedRatMgtFlag;
uint32_t ratAcqTimeOut;
uint32_t ratAcqRetryTimeOut;
uint8_t fmcModeFlag; // turn on/off FMC feature
uint32_t fmcInitTimeOut; // timeout while creating socket
uint32_t fmcCommTimeOut; // timeout while sending enable/disable FMC
uint8_t fmcRetryFlag; // turn on/off FMC retry feature
uint8_t wlanChipsetOEM[PROPERTY_VALUE_MAX]; // OEM of wlan chipset
uint8_t NsrmEnabledFlag; //turn on/off Nsrm feature
uint16_t NsrmBkgEvtFlag; // turn on/off various Nsrm Background events
} configValue;
} CneConfigPropertyStruct;
/**
* @brief Returns an instance of the CneConfigs class.
The user of this class will call this function to get an
instance of the class. All other public functions will be
called on this instance
* @param None
* @see None
* @return An instance of the CneConfigs class is returned.
*/
static CneConfigs* getInstance
(
void
);
/**
* @brief Finds a static value of a configured property name, and
stores the result in the configValue parameter.
* The user of this function passes in the name of the property
* whose configuration is unknown, and the value of the
* configuration property is returned as its corresponding type,
* which is defined in the CneConfigValues structure.
* @param configValue Stores the name of the requested
* property and, when the function
* finishes, its configured value.
* @see None
* @return Positive value if the function is successful, or
* negative value if the function fails. If the requested
* property is a pointer to a string, returns the length
* of that string.
*/
CneRetType getConfigValue
(
CneConfigPropertyStruct& configValue
);
CneRetType setConfigValue
(
CneConfigs::CneConfigProperties configName,
const char* propertyVal
);
private:
/* constructor */
CneConfigs();
/* destructor */
~CneConfigs();
static CneConfigs* instancePtr;
};
/* Value to indicate RSSI override not provided */
#define CNE_RSSI_UNDEFINED_VAL 1
/* Value to maximum acceptable value for RSSI */
#define CNE_RSSI_MAX_CONFIG -10
/* Value to minimum acceptable value for RSSI */
#define CNE_RSSI_MIN_CONFIG -99
/*---------------------------------------------------------------------------
* Type Description: A structure containing RSSI overrides for add and drop
* thresholds
*-------------------------------------------------------------------------*/
typedef struct _CQEClientOverrides {
int16_t rssiHigh;
int16_t rssiLow;
_CQEClientOverrides(): rssiHigh(CNE_RSSI_UNDEFINED_VAL), rssiLow(CNE_RSSI_UNDEFINED_VAL) {}
} CQEClientOverrides;
static const char* default_folder = "ROW";
#endif /* CNE_CONFIGS_H*/
| [
"deepakjeganathan@gmail.com"
] | deepakjeganathan@gmail.com |
24154e05df8d2bbbb5327b87bdc6d2b8684bbcab | e3f9e4b0da46a6c09cd2bec37b841ccce9ae55ce | /brute-force/숫자 야구.cpp | b1b7a9b3c9b50be323da122b2704ffddf7086f95 | [] | no_license | us419/Programmers_algorithm_practice | 6e3cab27fd2086c5c92c8f6df69bca21a8a0b0d1 | 06b52da8eccf9d97a9da0525dc47bde6f1e15749 | refs/heads/master | 2022-04-21T19:10:38.119281 | 2020-04-20T18:32:13 | 2020-04-20T18:32:13 | 257,369,972 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,211 | cpp | #include <string>
#include <vector>
#include <set>
#include <string>
using namespace std;
int strike(int a, int b)
{
int count=0;
string A = to_string(a);
string B = to_string(b);
for (int i=0; i<3; i++)
{
if (A[i] == B[i])
count++;
}
return count;
}
int ball(int a, int b)
{
string A = to_string(a);
string B = to_string(b);
int count=0;
for (int i=0; i<3; i++)
for (int j=0; j<3; j++)
{
if (A[i] == B[j])
count++;
}
return count - strike(a,b);
}
bool isAnswer(int k, vector<vector<int>>& baseball)
{
string K = to_string(k);
set<char> s;
for (int i=0; i<3; i++)
{
if (K[i] == '0')
return false;
s.insert(K[i]);
}
if (s.size() != 3)
return false;
for (vector<int> i : baseball)
{
if (strike(i[0], k) != i[1] || ball(i[0], k) != i[2])
return false;
}
return true;
}
int solution(vector<vector<int>> baseball) {
int answer = 0;
string temp = to_string(answer);
for (int i=100; i<1000; i++)
{
if (isAnswer(i, baseball))
answer++;
}
return answer;
} | [
"us419@kaist.ac.kr"
] | us419@kaist.ac.kr |
1252d66b0b639ac3f11c48b6c5507639ce0f2389 | 37478f16e3392bb3af41d4cd8346dea5a1005629 | /sp2.cpp | 9ffd4fcc102a5b7c7430fd99dc700d9d04d47eb1 | [] | no_license | imanuelraja/rio | 470a3c362962f9ce799bd4ed3270e0beb47192c6 | da77eb4e743e04da9c73555d0177c1975453c194 | refs/heads/master | 2021-04-26T23:00:57.108644 | 2018-05-24T08:37:02 | 2018-05-24T08:37:02 | 123,913,878 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 170 | cpp | #include<iostream>
int main()
{
char s[50],i,c=0;
Cout<<"enter the input";
Cin>>s;
for(i=0;s[i]=0;i++)
{
if(s[i]>='0' && s[i]<=9)
{
c++;
}
Cout<<c;
}
}
| [
"noreply@github.com"
] | noreply@github.com |
217b8dcf5248b03946a0739cc569f78f1cb95d0e | bd7d4cbf62e25c958ce2a028835e754f4011ec77 | /02. Matrix/08. Rotate a matrix by 90 degree in clockwise direction without using any extra space.cpp | d274d604024a7bd93c10e3c51da8e3f8af2daba5 | [] | no_license | sahilgoyals1999/Love-Babber-DSA-450 | fa1d817d2d2a5fec8fb179a1cf2d0b0b063e43c9 | 0052da206aca196ef8e5b043b6e70ea736aef3f7 | refs/heads/main | 2023-04-10T00:08:13.067069 | 2021-04-19T11:48:14 | 2021-04-19T11:48:14 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,021 | cpp | // https://www.geeksforgeeks.org/rotate-a-matrix-by-90-degree-in-clockwise-direction-without-using-any-extra-space/
// T.C => O(n*sqrt(n)), S.C => O(1)
/* Let size of row and column be 3.
During first iteration –
a[i][j] = Element at first index (leftmost corner top)= 1.
a[j][n-1-i]= Rightmost corner top Element = 3.
a[n-1-i][n-1-j] = Righmost corner bottom element = 9.
a[n-1-j][i] = Leftmost corner bottom element = 7.
Move these elements in the clockwise direction.
During second iteration –
a[i][j] = 2.
a[j][n-1-j] = 6.
a[n-1-i][n-1-j] = 8.
a[n-1-j][i] = 4.
Similarly, move these elements in the clockwise direction. */
#define N 4
void rotate90Clockwise(int a[N][N]) {
// Traverse each cycle
for (int i = 0; i < N / 2; ++i) {
for (int j = i; j < N - i - 1; ++j) {
// Swap elements of each cycle in clockwise direction
int temp = a[i][j];
a[i][j] = a[N - 1 - j][i];
a[N - 1 - j][i] = a[N - 1 - i][N - 1 - j];
a[N - 1 - i][N - 1 - j] = a[j][N - 1 - i];
a[j][N - 1 - i] = temp;
}
}
} | [
"sahilgoyals1999@users.noreply.github.com"
] | sahilgoyals1999@users.noreply.github.com |
86e9514841e9f93c8eec51f63dd9365fba0d68a4 | e49d4eb9c611ef790131a5ac7ff3df959187f7fa | /toolsrc/src/vcpkg_Environment.cpp | ca68498ef624726331fd2edf467893829e85a282 | [
"MIT"
] | permissive | ibluerose/vcpkg | 5dea187a382277e1fe1f0705a48ec3a556f4eed0 | a9a8772ad470280bf63d81896c3019eac74bd21a | refs/heads/master | 2021-01-11T01:34:55.379530 | 2017-03-29T00:18:07 | 2017-03-29T00:18:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,082 | cpp | #include "pch.h"
#include "vcpkg_Environment.h"
#include "vcpkg_Commands.h"
#include "vcpkg_System.h"
#include "vcpkg_Strings.h"
#include "vcpkg_Files.h"
namespace vcpkg::Environment
{
static std::vector<std::string> get_VS2017_installation_instances(const vcpkg_paths& paths)
{
const fs::path script = paths.scripts / "findVisualStudioInstallationInstances.ps1";
const std::wstring cmd = System::create_powershell_script_cmd(script);
System::exit_code_and_output ec_data = System::cmd_execute_and_capture_output(cmd);
Checks::check_exit(VCPKG_LINE_INFO, ec_data.exit_code == 0, "Could not run script to detect VS 2017 instances");
return Strings::split(ec_data.output, "\n");
}
static optional<fs::path> find_vs2015_installation_instance()
{
const optional<std::wstring> vs2015_cmntools_optional = System::get_environmental_variable(L"VS140COMNTOOLS");
if (!vs2015_cmntools_optional)
{
return nullptr;
}
static const fs::path vs2015_cmntools = fs::path(*vs2015_cmntools_optional).parent_path(); // The call to parent_path() is needed because the env variable has a trailing backslash
static const fs::path vs2015_path = vs2015_cmntools.parent_path().parent_path();
return std::make_unique<fs::path>(vs2015_path);
}
static const optional<fs::path>& get_VS2015_installation_instance()
{
static const optional<fs::path> vs2015_path = find_vs2015_installation_instance();
return vs2015_path;
}
static fs::path find_dumpbin_exe(const vcpkg_paths& paths)
{
const std::vector<std::string> vs2017_installation_instances = get_VS2017_installation_instances(paths);
std::vector<fs::path> paths_examined;
// VS2017
for (const std::string& instance : vs2017_installation_instances)
{
const fs::path msvc_path = Strings::format(R"(%s\VC\Tools\MSVC)", instance);
std::vector<fs::path> msvc_subdirectories;
Files::non_recursive_find_matching_paths_in_dir(msvc_path, [&](const fs::path& current)
{
return fs::is_directory(current);
}, &msvc_subdirectories);
// Sort them so that latest comes first
std::sort(msvc_subdirectories.begin(), msvc_subdirectories.end(), [&](const fs::path& left, const fs::path& right)
{
return left.filename() > right.filename();
});
for (const fs::path& subdir : msvc_subdirectories)
{
const fs::path dumpbin_path = subdir / "bin" / "HostX86" / "x86" / "dumpbin.exe";
paths_examined.push_back(dumpbin_path);
if (fs::exists(dumpbin_path))
{
return dumpbin_path;
}
}
}
// VS2015
const optional<fs::path>& vs_2015_installation_instance = get_VS2015_installation_instance();
if (vs_2015_installation_instance)
{
const fs::path vs2015_dumpbin_exe = *vs_2015_installation_instance / "VC" / "bin" / "dumpbin.exe";
paths_examined.push_back(vs2015_dumpbin_exe);
if (fs::exists(vs2015_dumpbin_exe))
{
return vs2015_dumpbin_exe;
}
}
System::println(System::color::error, "Could not detect dumpbin.exe.");
System::println("The following paths were examined:");
for (const fs::path& path : paths_examined)
{
System::println(" %s", path.generic_string());
}
Checks::exit_fail(VCPKG_LINE_INFO);
}
const fs::path& get_dumpbin_exe(const vcpkg_paths& paths)
{
static const fs::path dumpbin_exe = find_dumpbin_exe(paths);
return dumpbin_exe;
}
static vcvarsall_and_platform_toolset find_vcvarsall_bat(const vcpkg_paths& paths)
{
const std::vector<std::string> vs2017_installation_instances = get_VS2017_installation_instances(paths);
std::vector<fs::path> paths_examined;
// VS2017
for (const fs::path& instance : vs2017_installation_instances)
{
const fs::path vcvarsall_bat = instance / "VC" / "Auxiliary" / "Build" / "vcvarsall.bat";
paths_examined.push_back(vcvarsall_bat);
if (fs::exists(vcvarsall_bat))
{
return { vcvarsall_bat , L"v141" };
}
}
// VS2015
const optional<fs::path>& vs_2015_installation_instance = get_VS2015_installation_instance();
if (vs_2015_installation_instance)
{
const fs::path vs2015_vcvarsall_bat = *vs_2015_installation_instance / "VC" / "vcvarsall.bat";
paths_examined.push_back(vs2015_vcvarsall_bat);
if (fs::exists(vs2015_vcvarsall_bat))
{
return { vs2015_vcvarsall_bat, L"v140" };
}
}
System::println(System::color::error, "Could not detect vcvarsall.bat.");
System::println("The following paths were examined:");
for (const fs::path& path : paths_examined)
{
System::println(" %s", path.generic_string());
}
Checks::exit_fail(VCPKG_LINE_INFO);
}
const vcvarsall_and_platform_toolset& get_vcvarsall_bat(const vcpkg_paths& paths)
{
static const vcvarsall_and_platform_toolset vcvarsall_bat = find_vcvarsall_bat(paths);
return vcvarsall_bat;
}
static fs::path find_ProgramFiles()
{
const optional<std::wstring> program_files = System::get_environmental_variable(L"PROGRAMFILES");
Checks::check_exit(VCPKG_LINE_INFO, program_files.get() != nullptr, "Could not detect the PROGRAMFILES environmental variable");
return *program_files;
}
static const fs::path& get_ProgramFiles()
{
static const fs::path p = find_ProgramFiles();
return p;
}
static fs::path find_ProgramFiles_32_bit()
{
const optional<std::wstring> program_files_X86 = System::get_environmental_variable(L"ProgramFiles(x86)");
if (program_files_X86)
{
return *program_files_X86;
}
return get_ProgramFiles();
}
const fs::path& get_ProgramFiles_32_bit()
{
static const fs::path p = find_ProgramFiles_32_bit();
return p;
}
static fs::path find_ProgramFiles_platform_bitness()
{
const optional<std::wstring> program_files_W6432 = System::get_environmental_variable(L"ProgramW6432");
if (program_files_W6432)
{
return *program_files_W6432;
}
return get_ProgramFiles();
}
const fs::path& get_ProgramFiles_platform_bitness()
{
static const fs::path p = find_ProgramFiles_platform_bitness();
return p;
}
}
| [
"alkarata@microsoft.com"
] | alkarata@microsoft.com |
08590880943ff267b920b0ca71116f04e4d5df70 | c483ff6de05aaa5a1b033ed0c2ced02515a559a1 | /JUCE-3.0.8/extras/Demo/Source/Demos/OpenGLDemo2D.cpp | 527c3aa68334d3fc7904e06f02c0e494aa0b5a0d | [] | no_license | AnonA2/Juce3LegacyPullRequestCompiled | 905c19dc8361f3790c922bc001a995d393ec333b | e1e8bc5e90e0774fc7ef3fdbf849cc09f3d20888 | refs/heads/master | 2022-12-26T14:53:48.816382 | 2020-10-02T01:38:18 | 2020-10-02T01:38:18 | 300,461,485 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,345 | cpp | /*
==============================================================================
This file is part of the JUCE library - "Jules' Utility Class Extensions"
Copyright 2004-12 by Raw Material Software Ltd.
------------------------------------------------------------------------------
JUCE can be redistributed and/or modified under the terms of the GNU General
Public License (Version 2), as published by the Free Software Foundation.
A copy of the license is included in the JUCE distribution, or can be found
online at www.gnu.org/licenses.
JUCE 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.
------------------------------------------------------------------------------
To release a closed-source product which uses JUCE, commercial licenses are
available: visit www.rawmaterialsoftware.com/juce for more information.
==============================================================================
*/
#include "../JuceDemoHeader.h"
#if JUCE_OPENGL
//==============================================================================
class OpenGL2DShaderDemo : public Component,
private CodeDocument::Listener,
private ComboBox::Listener,
private Timer
{
public:
OpenGL2DShaderDemo()
: fragmentEditorComp (fragmentDocument, nullptr)
{
setOpaque (true);
MainAppWindow::getMainAppWindow()->setOpenGLRenderingEngine();
addAndMakeVisible (statusLabel);
statusLabel.setJustificationType (Justification::topLeft);
statusLabel.setColour (Label::textColourId, Colours::black);
statusLabel.setFont (Font (14.0f));
Array<ShaderPreset> presets (getPresets());
StringArray presetNames;
for (int i = 0; i < presets.size(); ++i)
presetBox.addItem (presets[i].name, i + 1);
addAndMakeVisible (presetLabel);
presetLabel.setText ("Shader Preset:", dontSendNotification);
presetLabel.attachToComponent (&presetBox, true);
addAndMakeVisible (presetBox);
presetBox.addListener (this);
Colour editorBackground (Colours::white.withAlpha (0.6f));
fragmentEditorComp.setColour (CodeEditorComponent::backgroundColourId, editorBackground);
fragmentEditorComp.setOpaque (false);
fragmentDocument.addListener (this);
addAndMakeVisible (fragmentEditorComp);
presetBox.setSelectedItemIndex (0);
}
~OpenGL2DShaderDemo()
{
shader = nullptr;
}
void paint (Graphics& g)
{
g.fillCheckerBoard (getLocalBounds(), 48, 48, Colours::lightgrey, Colours::white);
if (shader == nullptr || shader->getFragmentShaderCode() != fragmentCode)
{
shader = nullptr;
if (fragmentCode.isNotEmpty())
{
shader = new OpenGLGraphicsContextCustomShader (fragmentCode);
Result result (shader->checkCompilation (g.getInternalContext()));
if (result.failed())
{
statusLabel.setText (result.getErrorMessage(), dontSendNotification);
shader = nullptr;
}
}
}
if (shader != nullptr)
{
statusLabel.setText (String::empty, dontSendNotification);
shader->fillRect (g.getInternalContext(), getLocalBounds());
}
}
void resized() override
{
Rectangle<int> area (getLocalBounds().reduced (4));
statusLabel.setBounds (area.removeFromTop (75));
area.removeFromTop (area.getHeight() / 2);
Rectangle<int> presets (area.removeFromTop (25));
presets.removeFromLeft (100);
presetBox.setBounds (presets.removeFromLeft (150));
area.removeFromTop (4);
fragmentEditorComp.setBounds (area);
}
void selectPreset (int preset)
{
fragmentDocument.replaceAllContent (getPresets()[preset].fragmentShader);
startTimer (1);
}
ScopedPointer<OpenGLGraphicsContextCustomShader> shader;
Label statusLabel, presetLabel;
ComboBox presetBox;
CodeDocument fragmentDocument;
CodeEditorComponent fragmentEditorComp;
String fragmentCode;
private:
enum { shaderLinkDelay = 500 };
void codeDocumentTextInserted (const String& /*newText*/, int /*insertIndex*/) override
{
startTimer (shaderLinkDelay);
}
void codeDocumentTextDeleted (int /*startIndex*/, int /*endIndex*/) override
{
startTimer (shaderLinkDelay);
}
void timerCallback() override
{
stopTimer();
fragmentCode = fragmentDocument.getAllContent();
repaint();
}
void comboBoxChanged (ComboBox*) override
{
selectPreset (presetBox.getSelectedItemIndex());
}
struct ShaderPreset
{
const char* name;
const char* fragmentShader;
};
static Array<ShaderPreset> getPresets()
{
#define SHADER_DEMO_HEADER \
"/* This demo shows the use of the OpenGLGraphicsContextCustomShader,\n" \
" which allows a 2D area to be filled using a GL shader program.\n" \
"\n" \
" Edit the shader program below and it will be \n" \
" recompiled in real-time!\n" \
"*/\n\n"
ShaderPreset presets[] =
{
{
"Simple Gradient",
SHADER_DEMO_HEADER
"void main()\n"
"{\n"
" " JUCE_MEDIUMP " vec4 colour1 = vec4 (1.0, 0.4, 0.6, 1.0);\n"
" " JUCE_MEDIUMP " vec4 colour2 = vec4 (0.0, 0.8, 0.6, 1.0);\n"
" " JUCE_MEDIUMP " float alpha = pixelPos.x / 1000.0;\n"
" gl_FragColor = pixelAlpha * mix (colour1, colour2, alpha);\n"
"}\n"
},
{
"Circular Gradient",
SHADER_DEMO_HEADER
"void main()\n"
"{\n"
" " JUCE_MEDIUMP " vec4 colour1 = vec4 (1.0, 0.4, 0.6, 1.0);\n"
" " JUCE_MEDIUMP " vec4 colour2 = vec4 (0.3, 0.4, 0.4, 1.0);\n"
" " JUCE_MEDIUMP " float alpha = distance (pixelPos, vec2 (600.0, 500.0)) / 400.0;\n"
" gl_FragColor = pixelAlpha * mix (colour1, colour2, alpha);\n"
"}\n"
},
{
"Cicle",
SHADER_DEMO_HEADER
"void main()\n"
"{\n"
" " JUCE_MEDIUMP " vec4 colour1 = vec4 (0.1, 0.1, 0.9, 1.0);\n"
" " JUCE_MEDIUMP " vec4 colour2 = vec4 (0.0, 0.8, 0.6, 1.0);\n"
" " JUCE_MEDIUMP " float distance = distance (pixelPos, vec2 (600.0, 500.0));\n"
"\n"
" " JUCE_MEDIUMP " float innerRadius = 200.0;\n"
" " JUCE_MEDIUMP " float outerRadius = 210.0;\n"
"\n"
" if (distance < innerRadius)\n"
" gl_FragColor = colour1;\n"
" else if (distance > outerRadius)\n"
" gl_FragColor = colour2;\n"
" else\n"
" gl_FragColor = mix (colour1, colour2, (distance - innerRadius) / (outerRadius - innerRadius));\n"
"\n"
" gl_FragColor *= pixelAlpha;\n"
"}\n"
},
{
"Solid Colour",
SHADER_DEMO_HEADER
"void main()\n"
"{\n"
" gl_FragColor = vec4 (1.0, 0.6, 0.1, pixelAlpha);\n"
"}\n"
}
};
return Array<ShaderPreset> (presets, numElementsInArray (presets));
}
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (OpenGL2DShaderDemo)
};
//==============================================================================
// This static object will register this demo type in a global list of demos..
static JuceDemoType<OpenGL2DShaderDemo> demo ("20 Graphics: OpenGL 2D");
#endif
| [
"zunivum@gmail.com"
] | zunivum@gmail.com |
b35c454b3df2f5cee7406198a7356db5fc7c7b15 | f320924c256bde35c84c3dddb2382a184716b0c8 | /Bullet.cpp | d376c353268397bc52a96fb56fb60850771b9899 | [] | no_license | ZTaylor97/JanGame_Tanks | b103180db76dc79d8b4d48778b0457167a00eb5f | 59d53cc1a5ab017fea131b5f068eaee15aeb3785 | refs/heads/master | 2020-12-03T15:42:37.132907 | 2020-02-24T00:39:33 | 2020-02-24T00:39:33 | 231,376,537 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 676 | cpp | #include "Bullet.h"
Bullet::Bullet(sf::Vector2f Coords, float barrelRotation, float velocity, float wind)
: angle{barrelRotation *(3.14159/180)},
bulletVelocity_X{velocity*sin(angle)},
bulletVelocity_Y{velocity*(-cos(angle))},
windFactor{wind}
{
bullet.setSize(sf::Vector2f(5,5));
bullet.setPosition(Coords);
}
Bullet::~Bullet()
{
}
// keep windfactor in the same scale of magnitude as gravity
void Bullet::moveBullet(float dt, float windFactor)
{
// acceleration
bulletVelocity_X += windFactor*dt;
bulletVelocity_Y += 175.0f*dt;
sf::Vector2f velocity(bulletVelocity_X*dt, bulletVelocity_Y*dt);
bullet.move(velocity);
}
| [
"zacktaylor97@gmail.com"
] | zacktaylor97@gmail.com |
59952f64fae4352e6104ed889d10f48901558c12 | 5285ddbbaf78192795ceda9a28ba368786bab906 | /FrameRender/RenderSystemDX9.h | be88c7c336670bffacbf9f368312b8e4e6e697c3 | [] | no_license | xmcpp/FrameRender | de2cc60b2d7e7dd5816962f3dea25234acd08177 | a5d1d7f1d5a591777356a987cfe8046df7171e8f | refs/heads/master | 2021-01-23T13:22:56.430630 | 2011-12-11T13:27:21 | 2011-12-11T13:27:21 | 1,888,646 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 892 | h | #ifndef __RENDERSYSTEMDX9_H__
#define __RENDERSYSTEMDX9_H__
#include "RenderSystem.h"
class RenderSystemDX9 : public RenderSystem
{
public:
RenderSystemDX9(HWND hwnd );
virtual ~RenderSystemDX9();
public:
struct CUSTOMTEXTUREVERTEX
{
float x , y , z ,w; //xyz-rhw
DWORD color;
float ux , uy; //uv
};
public:
virtual void createRenderSystem( int width , int height , COLOR_TYPE type = R8G8B8A8 );
virtual unsigned char * lockBuffer( int & pitch);
virtual void unLockBuffer();
virtual void beginScene();
virtual void endScene();
virtual void present();
private:
bool initD3d();
private:
HWND m_hwnd;
//D3D设备指针
IDirect3DDevice9 * m_p3d9Dev ;
IDirect3D9 * m_d3d ;
IDirect3DVertexBuffer9 * m_vertexBuff;
IDirect3DIndexBuffer9 * m_indexBuff;
//贴图和锁定的数据
IDirect3DTexture9 * m_texture;
bool m_isValid;
};
#endif //__RENDERSYSTEMDX9_H__
| [
"xumiao@139.com"
] | xumiao@139.com |
aa5d0ab3cf113aa82469803814efd678bfced81f | 3e54595cb3634edb4c60eafdbe7cba0b867281d6 | /uva/_1625/dfs.cpp | 1c24c13674b35b33dea0d417032296ed60c2e216 | [] | no_license | Rainboylvx/pcs | 1666cc554903827b98d82689fdccc2d76bda8552 | 5dd54decfc75960194d415c09119d95bef7c27a9 | refs/heads/master | 2023-08-18T10:02:21.270507 | 2023-08-13T01:36:52 | 2023-08-13T01:36:52 | 219,274,550 | 0 | 0 | null | 2023-07-21T09:19:37 | 2019-11-03T09:56:59 | C++ | UTF-8 | C++ | false | false | 1,318 | cpp | #include <bits/stdc++.h>
using namespace std;
char s1[500],s2[500];
char out[1000];
int l1,l2;
int cnt = 0;
bool vis[500];
int get_val(){
int i,j;
int ans = 0;
for(i=1;i<=l1+l2;i++){
char c = out[i];
if( !vis[c]){
vis[c] = 1;
for(j=l1+l2;j>=1;j--){
if( out[j] == out[i]){
ans += j-i;
break;
}
}
}
}
return ans;
}
int _min = 0x7f7f7f7f;
int flag = 0;
void dfs(int dep,int x,int y){
if( dep == l1+l2+1){
/* 输出 */
out[l1+l2+1] = '\0';
memset(vis,0,sizeof(vis));
int ans = get_val();
if( _min > ans)
_min = ans;
if( !flag){
printf("%d : %s ",++cnt,out+1);
printf("%d\n",ans);
}
else if( ans == _min)
printf("%s\n",out+1);
return ;
}
if( x <= l1){
out[dep] = s1[x];
dfs(dep+1,x+1,y);
}
if( y <= l2){
out[dep] = s2[y];
dfs(dep+1,x,y+1);
}
}
void init(){
scanf("%s",s1+1);
scanf("%s",s2+1);
l1 = strlen(s1+1);
l2 = strlen(s2+1);
}
int main(){
init();
dfs(1,1,1);
printf("===========\n");
printf("%d\n",_min);
flag=1;
dfs(1,1,1);
return 0;
}
| [
"rainboylvx@qq.com"
] | rainboylvx@qq.com |
ba5c65c474459429d4da6d3ec653ee9480d02753 | b1fbd94c6a8af38f171bad2fa92222db21da3af4 | /binarySortTree/binSortTree.cpp | 6431252a1c6e52899d37c443a2573539e7f4f516 | [] | no_license | EdwHua/binarySortTree | 5ebbd827a2a4e6c3ee4dd41eabcd574910459981 | 6fecac9f97cc0a79a058ff56775b086d1fe38130 | refs/heads/master | 2021-01-20T16:45:07.546727 | 2017-06-29T17:47:30 | 2017-06-29T17:47:30 | 95,732,133 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 3,851 | cpp | #include "binSortTree.h"
using namespace std;
binSortTree::binSortTree(BSTNode *& BSTroot, int * nodes, int n)
{
//BSTroot = NULL;
root = BSTroot = NULL;
for (int i = 0; i < n; i++) {
binSortTree::insert(root, nodes[i]);
}
}
binSortTree::binSortTree()
{
root = NULL;
}
binSortTree::~binSortTree()
{
clearTree(root);
}
//插入节点
void binSortTree::insert(BSTNode *& node, int num)
{
if (node == NULL) {
BSTNode * p = new BSTNode;
p->data = num;
p->leftSon = NULL;
p->rightSon = NULL;
node = p;
}
else if (num < node->data) {
binSortTree::insert(node->leftSon, num);
}
else
{
binSortTree::insert(node->rightSon, num);
}
}
//中序遍历
void binSortTree::midOrder(BSTNode * node)
{
if (node != NULL) {
midOrder(node->leftSon);
cout << node->data << ' ';
midOrder(node->rightSon);
}
}
// 删除节点
bool binSortTree::deleteNode(BSTNode * &node, const int &num)
{
// 从初始节点开始,寻找节点位置,t为目标节点,s为t的父节点(如果存在)
BSTNode *t = node, *s = NULL;
while (t != NULL) {
if (num == t->data) break;
else if (num<t->data) {
s = t; t = t->leftSon;
}
else { s = t; t = t->rightSon; }
}
if (t == NULL)return false;
// (1)左右子树皆空,叶结点
if (t->leftSon == NULL&&t->rightSon == NULL)
{
if (t == node)
node = NULL;
else if (t == s->leftSon)
s->leftSon = NULL;
else
s->rightSon = NULL;
delete t;
}
// (2)左节点或右节点为空,使用另一个替代删除值的位置
else if (t->leftSon == NULL || t->rightSon == NULL)
{
if (t == node) {
if (t->leftSon == NULL)
node = t->rightSon;
else
node = t->leftSon;
}
else {
if (t == s->leftSon&&t->leftSon != NULL)
s->leftSon = t->leftSon;
else if (t == s->leftSon&&t->rightSon != NULL)
s->leftSon = t->rightSon;
else if (t == s->rightSon&&t->leftSon != NULL)
s->rightSon = t->leftSon;
else if (t == s->rightSon &&t->rightSon != NULL)
s->rightSon = t->rightSon;
}
delete t;
}
// (3)左右子树皆为非空
else if (t->leftSon != NULL && t->rightSon != NULL)
{
BSTNode *p = t, *q = t->leftSon;
// q中将保存待删除结点t的左子树中的最后一个结点(数值最大)
while (q->rightSon != NULL) {
p = q;
q = q->rightSon;
}
// 将待删除位置的数据使用q的数据替换
t->data = q->data;
//调整指针指向,保证替换后的正确性,并删除用q所指向的节点
if (p == t)
t->leftSon = q->leftSon;
else
p->rightSon = q->leftSon;
delete q;
}
return true;
}
// 寻找节点
BSTNode * binSortTree::searchNode(BSTNode * node, int num)
{
if (node == NULL) return NULL;
else {
if (num == node->data) {
cout << "打印找到的子树" << endl;
binSortTree::printTree(node);
cout << endl;
return node;
}
else if (num < node->data) {
node = node->leftSon;
return searchNode(node, num);
}
else {
node = node->rightSon;
return searchNode(node, num);
}
}
}
//打印树
/* *******打印规则*************
同级别 < , >包含的为同一根节点的左右子树
例如,5<1,6>表示5为根节点,1为左子,6为右子
* ****************************/
bool binSortTree::printTree(BSTNode * printnode)
{
if (printnode == NULL) {
cout << ' ';
return 0;
}
else {
cout << printnode->data;
if (printnode->leftSon != NULL || printnode->rightSon != NULL)
{
// < 后紧跟的是左子树或左节点
cout << '<';
printTree(printnode->leftSon);
// , 左右分割
cout << ',';
printTree(printnode->rightSon);
cout << '>';
// > 前紧跟的是右子树
}
return 1;
}
}
//从节点清除树
void binSortTree::clearTree(BSTNode *& node)
{
if (node != NULL)
{
clearTree(node->leftSon);
clearTree(node->rightSon);
delete node;
node = NULL;
}
}
| [
"EdwardHua@EDWARDHUAPC"
] | EdwardHua@EDWARDHUAPC |
90ad7688adcd6f42d3f9f78f431944fe531ed0d7 | 78e2270db548253113f4a528e9be571b98f49df8 | /src/xsiRibData.cpp | e5d55e6fb15fa7561a3b8788978d99a93c223d8f | [] | no_license | nhaflinger/XSIMan | d9d6e2a8e70b3726d19eaedd07e8aea8770d9ccf | 50ab1d376d6beaf5c6e54e2d014b36e9ce4f77d2 | refs/heads/master | 2020-06-06T05:08:32.034757 | 2019-06-19T02:49:32 | 2019-06-19T02:49:32 | 192,646,001 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,625 | cpp | //*****************************************************************************
// File: xsiRibData.cpp
// Description: xsiRibData object class.
//
// Author: Doug Creel
// Graphic Primitives, LLC
// Copyright (C) 2005-2006. All Rights Reserved
//
// The RenderMan (R) Interface Procedures and Protocol are:
// Copyright 1988, 1989, Pixar. All Rights Reserved
//
//*****************************************************************************
#include "xsiRibData.h"
#include "xsiUtilities.h"
using namespace std;
xsiRibData::xsiRibData()
{
}
xsiRibData::~xsiRibData()
{
vector<xsiRibTokens>::iterator iter = ribTokens.begin();
while (iter != ribTokens.end()) {
if ((*iter).tokenFloats != NULL) {
delete (*iter).tokenFloats;
(*iter).tokenFloats = NULL;
}
if ((*iter).tokenString != NULL) {
delete (*iter).tokenString;
(*iter).tokenString = NULL;
}
++iter;
}
ribTokens.clear();
}
void xsiRibData::write()
{
}
void xsiRibData::addPrimvar(ParameterType paramType, UserDataMap primvarMap)
{
Application app;
CString udmname = primvarMap.GetName();
long slen = udmname.Length();
CString pvname = subString(udmname, 5, slen-1);
long numPrimvar = 0;
if (primvarMap.IsValid()) {
numPrimvar = primvarMap.GetCount();
xsiRibTokens primvarTokenData;
char* primvar = NULL;
XSIW2A(&primvar, pvname.GetWideString());
// get actual number of non-empty UDM values
long numpnts = 0;
for (long i = 0 ; i < numPrimvar; i++) {
if (!primvarMap.IsItemEmpty(i)) numpnts += 1;
}
bool isNurbsType = (type() == NurbsObject || type() == CurveObject) ? true : false;
bool isMeshType = (type() == MeshObject || type() == SubdivisionObject) ? true : false;
bool notConstantDetail = (numpnts == 1) ? false : true;
// need to repeat first point for curves
long offset = 0;
if (type() == CurveObject) offset = 1;
// if curve is not closed then repeat end value
long tail = 0;
if (type() == CurveObject && !isUClosed()) tail = 1;
if (paramType == PointType ) {
primvarTokenData.put(primvar, PointType, isNurbsType, notConstantDetail, false, numpnts+offset+tail);
if (notConstantDetail) primvarTokenData.putDetailType(VertexDetail);
else primvarTokenData.putDetailType(ConstantDetail);
}
else if (paramType == NormalType ) {
primvarTokenData.put(primvar, NormalType, isNurbsType, notConstantDetail, false, numpnts+offset+tail);
if (notConstantDetail) primvarTokenData.putDetailType(VertexDetail);
else primvarTokenData.putDetailType(ConstantDetail);
}
else if (paramType == VectorType ) {
primvarTokenData.put(primvar, VectorType, isNurbsType, notConstantDetail, false, numpnts+offset+tail);
if (notConstantDetail) primvarTokenData.putDetailType(VertexDetail);
else primvarTokenData.putDetailType(ConstantDetail);
}
else if (paramType == ColorType ) {
primvarTokenData.put(primvar, ColorType, isNurbsType, notConstantDetail, false, numpnts+offset+tail);
if (notConstantDetail) primvarTokenData.putDetailType(VertexDetail);
else primvarTokenData.putDetailType(ConstantDetail);
}
else if (paramType == FloatType ) {
primvarTokenData.put(primvar, FloatType, isNurbsType, notConstantDetail, false, numpnts+offset+tail);
if (type() == CurveObject && pvname == L"width" && notConstantDetail) primvarTokenData.putDetailType(VaryingDetail);
//else if (isMeshType && notConstantDetail) primvarTokenData.putDetailType(FaceVaryingDetail);
else if (notConstantDetail) primvarTokenData.putDetailType(VertexDetail);
else primvarTokenData.putDetailType(ConstantDetail);
}
else if (paramType == StringType ) {
primvarTokenData.put(primvar, StringType, isNurbsType, false, false, 0);
primvarTokenData.putDetailType(ConstantDetail);
}
for (long i = 0 ; i < numpnts; i++) {
unsigned char* pInternalData = NULL;
unsigned int cntData = 0;
primvarMap.GetItemValue(i, pInternalData, cntData);
if (paramType == FloatType) {
wchar_t* pData;
pData = (wchar_t*)pInternalData;
float fData = (float)_wtof(pData);
primvarTokenData.assignFloat(i+offset, fData);
// repeat first point for curves
if (i == 0 && type() == CurveObject)
primvarTokenData.assignFloat(0, fData);
// repeat last point for closed curves
if (i == numpnts-1 && type() == CurveObject && tail)
primvarTokenData.assignFloat(numpnts+offset+tail-1, fData);
}
else if (paramType == StringType) {
wchar_t* pData;
pData = (wchar_t*)pInternalData;
char* cData = NULL;
XSIW2A(&cData, pData);
slen = strlen(cData);
primvarTokenData.assignString(cData, slen);
}
else if (paramType == ColorType) {
struct dataStruct {
float r;
float g;
float b;
float a;
};
dataStruct* pData;
pData = (dataStruct*)pInternalData;
primvarTokenData.assignFloat(i+offset, (float)pData->r, (float)pData->g, (float)pData->b, (float)pData->a);
// repeat first point for curves
if (i == 0 && type() == CurveObject)
primvarTokenData.assignFloat(0, (float)pData->r, (float)pData->g, (float)pData->b, (float)pData->a);
// repeat last point for closed curves
if (i == numpnts-1 && type() == CurveObject && tail)
primvarTokenData.assignFloat(numpnts+offset+tail-1, (float)pData->r, (float)pData->g, (float)pData->b, (float)pData->a);
}
else {
struct dataStruct {
float x;
float y;
float z;
};
dataStruct* pData;
pData = (dataStruct*)pInternalData;
if (isNurbsType) primvarTokenData.assignFloat(i+offset, (float)pData->x, (float)pData->y, (float)pData->z, 1);
else primvarTokenData.assignFloat(i+offset, (float)pData->x, (float)pData->y, (float)pData->z);
// repeat first point for curves
if (i == 0 && type() == CurveObject) {
if (isNurbsType) primvarTokenData.assignFloat(0, (float)pData->x, (float)pData->y, (float)pData->z, 1);
else primvarTokenData.assignFloat(0, (float)pData->x, (float)pData->y, (float)pData->z);
}
// repeat last point for closed curves
if (i == numpnts-1 && type() == CurveObject && tail) {
if (isNurbsType) primvarTokenData.assignFloat(numpnts+offset+tail-1, (float)pData->x, (float)pData->y, (float)pData->z, 1);
else primvarTokenData.assignFloat(numpnts+offset+tail-1, (float)pData->x, (float)pData->y, (float)pData->z);
}
}
}
// add tokens
ribTokens.push_back(primvarTokenData);
}
}
| [
"noreply@github.com"
] | noreply@github.com |
8e8783b76bfee583875ad6a050bc132b4aedd2e4 | 256333313106721dfe7584c3b590bd9f69b81c29 | /day15_PrimAlgorithm/RoadConstruction.cpp | 9a063b6ce7ec7d04c48b68a4c6cd1c613e861deb | [] | no_license | hdthuc93/algorithm_basic | b67b8cf9a4811f1d2dce054dbed11309f086ef12 | b817f05ccb675761dfbc3f836ed6cccd840c79db | refs/heads/master | 2021-01-06T20:39:07.108721 | 2017-08-07T03:58:27 | 2017-08-07T03:58:27 | 99,534,760 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,309 | cpp | ////
//// Created by ThucHD on 7/12/17.
////
//
////
//// Created by ThucHD on 7/12/17.
////
//
//
//#include "RoadConstruction.h"
//
//#define MAX 300010
//#define INF 1000010
//
//
//struct Info {
// string city1;
// string city2;
//
// bool operator<(const Info &o) const {
// return this->city1 + this->city2 < o.city1 + o.city2;
// }
//
//};
//
//vector<pair<int, int> >graph[MAX];
//vector<int> dist;
//vector<int> path;
//vector<bool> visited;
//
//int n, m;
//
//void RoadConstruction() {
// int t;
// string str1, str2;
// int c;
// int nodeIndex;
// long res;
// map<string, int> m_street;
// map<Info, int> m_bistreet;
// Info info;
// cin >> t;
//
// for(int iT = 1; iT <= t; ++iT) {
// cin >> m;
//
// m_street.clear();
// m_bistreet.clear();
//
// nodeIndex = 0;
//
// for(int i = 0; i < m; ++i) {
// cin >> str1 >> str2 >> c;
//
// if(m_street.find(str1) == m_street.end()) {
// m_street[str1] = nodeIndex;
// nodeIndex++;
// }
//
// if(m_street.find(str2) == m_street.end()) {
// m_street[str2] = nodeIndex;
// nodeIndex++;
// }
//
// info.city1 = str1.compare(str2) < 0 ? str1 : str2;
// info.city2 = str1.compare(str2) < 0 ? str2 : str1;
//
// if(m_bistreet.find(info) == m_bistreet.end()) {
// m_bistreet[info] = c;
// } else if (m_bistreet[info] > c) {
// m_bistreet[info] = c;
// }
// }
//
// for(map<Info, int>::iterator it = m_bistreet.begin(); it != m_bistreet.end(); ++it) {
// info = it->first;
// graph[m_street[info.city1]].push_back(make_pair(m_street[info.city2], it->second));
// graph[m_street[info.city2]].push_back(make_pair(m_street[info.city1], it->second));
// }
//
// n = (int)m_street.size();
// dist = vector<int>((unsigned long)n, INF);
// path = vector<int>((unsigned long)n, -1);
// visited = vector<bool>((unsigned long)n, false);
//
// runMST(0);
// res = getDist();
// if(res == -1)
// cout << "Case " << iT << ": " << "Impossible" << endl;
// else
// cout << "Case " << iT << ": " << res << endl;
//
// // clear graph
// for(int i = 0; i < n; ++i) {
// graph[i].clear();
// }
// }
//}
//
//void runMST(int src) {
// priority_queue<pair<int, int>, vector<pair<int, int> >, greater<pair<int, int> > > pq;
// pq.push(make_pair(0, src));
// dist[src] = 0;
//
// while(!pq.empty()) {
// int u = pq.top().second;
// pq.pop();
// visited[u] = true;
//
// for(int i = 0; i < graph[u].size(); ++i) {
// int v = graph[u][i].first;
// int w = graph[u][i].second;
// if(!visited[v] && dist[v] > w) {
// dist[v] = w;
// path[v] = u;
// pq.push(make_pair(w, v));
// }
// }
// }
//}
//
//long getDist() {
// long res = 0;
// for(int i = 0; i < n; ++i) {
// if(dist[i] == INF) {
// return -1;
// }
// res += dist[i];
// }
//
// return res;
//} | [
"hdthuc93@gmail.com"
] | hdthuc93@gmail.com |
3e36b8fc890a68269e93436a2862e7e232f13895 | 25406beb3efa26052e6918024c302d1a86d744f6 | /LIME/src/LIME_FixedPoint_Accelerators.hpp | e9e01a0843656435314434748f7ded9f743d506e | [] | no_license | sandialabs/limeext | 5c5c30f011ae3ae5237ee9081a93d27ce6afba9a | 97d6a1c9606d3e478fd46bfbdfec3e1796a2e959 | refs/heads/main | 2023-01-09T00:18:41.867210 | 2020-11-05T15:26:00 | 2020-11-12T15:29:31 | 312,317,509 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,901 | hpp | // ********************************************************************************************
// LIME 1.0: Lightweight Integrating Multiphysics Environment for coupling codes, Version 1.0
// Copyright (c) 2012, Sandia National Laboratories
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without modification, are permitted
// provided that the following conditions are met:
// * Redistributions of source code must retain the above copyright notice, this list of
// conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright notice, this list of
// conditions and the following disclaimer in the documentation and/or other materials
// provided with the distribution.
// * Neither the name of Sandia National Laboratories nor the names of its contributors may
// be used to endorse or promote products derived from this software without specific prior
// written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
// IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
// FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
// IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
// OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// (Note: This is a BSD 3-Clause License. For info. see www.opensource.org/licenses/BSD-3-Clause )
// --------------------------------------------------------------------------------------------
//
// LIME_FixedPoint_Accelerators.hpp
//
// Description: Users should inherit from this, FixedPoint_Accelerator, class and
// implement the compute_update method.
//
// ********************************************************************************************
#ifndef LIME_FIXEDPOINT_ACCELERATORS_H
#define LIME_FIXEDPOINT_ACCELERATORS_H
#include "Teuchos_RefCountPtr.hpp"
#include "Teuchos_SerialDenseMatrix.hpp"
#include "Teuchos_SerialDenseVector.hpp"
#include "Teuchos_LAPACK.hpp"
#include "Epetra_MultiVector.h"
namespace LIME {
class FixedPoint_Accelerator
{
public:
FixedPoint_Accelerator() {}
virtual ~FixedPoint_Accelerator() {}
virtual bool compute_update(Epetra_Vector &) = 0;
private:
};
// For now, we implement the Anderson Acceleration using Teuchos BLAS/LAPACK
// and associated matrix/vector data. This implies a serial implementation
// with no support for parallel, eg mpi. The main component needed to make this
// parallel is a distributed QR factorization algorithm.
class Anderson_Acceleration : public FixedPoint_Accelerator
{
public:
Anderson_Acceleration(int, bool verbose = false);
virtual ~Anderson_Acceleration() {}
virtual void initialize(const Epetra_Vector &);
virtual bool compute_update(Epetra_Vector &);
private:
bool verbose_;
int mix_dim_;
int compute_count_;
Teuchos::RCP<Epetra_MultiVector> Dmatrix_;
Teuchos::RCP<Epetra_MultiVector> Kmatrix_;
Teuchos::LAPACK<int,double> lapack_;
Teuchos::SerialDenseVector<int,double> x_vec_;
Teuchos::SerialDenseVector<int,double> x_prev_;
Teuchos::SerialDenseVector<int,double> x_diff_;
Teuchos::SerialDenseVector<int,double> x_diff_prev_;
Teuchos::SerialDenseVector<int,double> alpha_;
Teuchos::SerialDenseVector<int,double> x_err_;
};
}
#endif
| [
"rhoope@sandia.gov"
] | rhoope@sandia.gov |
1ee05d3f57b6effa708fe6433fc777563adaa41e | 6f5eb05adf3bc609df2609be8dc2aa8e3f11d011 | /MainFrm.h | 760e85fefb03e967654305ed543236d8c9fbcb2b | [
"MIT"
] | permissive | CyberSys/3DEngine | 0aedca45e6599fa4845f1987198d92d6d7c22d62 | 0d98b7a90dbab286450d2b0ed17e50b662bc6206 | refs/heads/master | 2021-09-25T10:25:23.003145 | 2018-10-21T04:12:17 | 2018-10-21T04:12:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,346 | h | // MainFrm.h : interface of the CMainFrame class
//
/////////////////////////////////////////////////////////////////////////////
#if !defined(AFX_MAINFRM_H__7039CD68_DB84_11D5_8358_00A024E92462__INCLUDED_)
#define AFX_MAINFRM_H__7039CD68_DB84_11D5_8358_00A024E92462__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CMainFrame : public CMDIFrameWnd
{
DECLARE_DYNAMIC(CMainFrame)
public:
CMainFrame();
// Attributes
public:
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CMainFrame)
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~CMainFrame();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected: // control bar embedded members
CStatusBar m_wndStatusBar;
CToolBar m_wndToolBar;
// Generated message map functions
protected:
//{{AFX_MSG(CMainFrame)
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_MAINFRM_H__7039CD68_DB84_11D5_8358_00A024E92462__INCLUDED_)
| [
"jnwood@gmail.com"
] | jnwood@gmail.com |
7d20bb73b1e512f47734bbe28bcd5b350454b813 | db92a3f5f885a6733b385531f0109bfdb2cdca72 | /src/application/ui/Common/settings/c7settingwidget/c7settinglanguagewidget.cpp | 33f6a8f46f82b911dd59b27cf6f18b54696a01d3 | [] | no_license | zb872676223/QtFor2048 | fa850329fc8102088bc2cd375af849ca40a47a91 | b31dff79294e9ffeb2298a0bb7982883b6987bba | refs/heads/master | 2022-12-18T20:15:57.280852 | 2020-09-29T15:01:34 | 2020-09-29T15:01:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,268 | cpp | #include "c7settinglanguagewidget.h"
#include "c7commondef.h"
#include "tlutility.h"
#include "c7application.h"
C7SettingLanguageWidget::C7SettingLanguageWidget(int width,int height,C7BaseWidget *parent)
:C7BaseWidget(width,height,parent)
{
initUI();
retranslateUi();
}
C7SettingLanguageWidget::~C7SettingLanguageWidget()
{
}
void C7SettingLanguageWidget::initUI()
{
int current = Uti->value(SETTING_GROUP, LANGUAGE, 0).toInt();
m_pSimplifiedWidget = createRadioWidget(current);
m_pComplexWidget = createRadioWidget(current);
m_pEnglishWidget = createRadioWidget(current);
}
C7RadioWidget *C7SettingLanguageWidget::createRadioWidget(int currentSelect)
{
int count = m_lstLanguageChoice.size();
C7RadioWidget* pRadioWidget = new C7RadioWidget(QSize(658 * m_rScaleFactor, 50 * m_rScaleFactor), m_rScaleFactor, this);
pRadioWidget->move(0, count * (pRadioWidget->height() + m_nNormalSettingInterval * m_rScaleFactor) + 20 * m_rScaleFactor);
pRadioWidget->setProperty(LANGUAGE, count);
connect(pRadioWidget, &C7RadioWidget::sigClicked, this, &C7SettingLanguageWidget::onRadioWidgetClick);
pRadioWidget->setChecked(count == currentSelect);
m_lstLanguageChoice.append(pRadioWidget);
return pRadioWidget;
}
void C7SettingLanguageWidget::retranslateUi()
{
if(m_pSimplifiedWidget != nullptr){
m_pSimplifiedWidget->setText(tr("Simplified Chinese"));
}
if(m_pComplexWidget != nullptr){
m_pComplexWidget->setText(tr("Traditional Chinese"));
}
if(m_pEnglishWidget != nullptr){
m_pEnglishWidget->setText(tr("English"));
}
}
void C7SettingLanguageWidget::onRadioWidgetClick()
{
C7RadioWidget *pWidget = qobject_cast<C7RadioWidget*>(sender());
if (pWidget != nullptr)
{
if (m_lstLanguageChoice.contains(pWidget))
{
foreach (C7RadioWidget* pRadioWidget, m_lstLanguageChoice) {
pRadioWidget->setChecked(false);
}
pWidget->setChecked(true);
int sizeType = pWidget->property(LANGUAGE).toInt();
Uti->setValue(QString(SETTING_GROUP), LANGUAGE, sizeType);
cApp->linguist()->setLanguage(static_cast<TLLinguist::Language>(sizeType + 1));
}
}
}
| [
"1160975809@qq.com"
] | 1160975809@qq.com |
d98d0e5abc4d9a64c347e08dda6234b241b2591c | 1b3df6d30db0bc7906da46cde9e7bb5c02483208 | /source/MDUutilities/RFID_Test/RFID_Test.ino | 8cb266b86020d48d58513f8de690277f64d25d1e | [] | no_license | Rmadyun/CPE656TL | 8f02dcee2558f880204b6078ff61836945d2bb0d | ccd6a6165f16b1469914c60aab80a93353a54400 | refs/heads/master | 2020-04-06T06:58:28.776691 | 2016-05-18T11:57:31 | 2016-05-18T11:57:31 | 42,688,606 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,648 | ino | // RFID reader ID-12 for Arduino
// Based on code by BARRAGAN <http://people.interaction-ivrea.it/h.barragan>
// and code from HC Gilje - http://hcgilje.wordpress.com/resources/rfid_id12_tagreader/
// Modified for Arduino by djmatic
// Modified for ID-12 and checksum by Martijn The - http://www.martijnthe.nl/
//
// Use the drawings from HC Gilje to wire up the ID-12.
// Remark: disconnect the rx serial wire to the ID-12 when uploading the sketch
void setup() {
Serial.begin(9600); // connect to the serial port
}
void loop () {
byte i = 0;
byte val = 0;
byte code[6];
byte checksum = 0;
byte bytesread = 0;
byte tempbyte = 0;
if(Serial.available() > 0) {
if((val = Serial.read()) == 2) { // check for header
bytesread = 0;
while (bytesread < 12) { // read 10 digit code + 2 digit checksum
if( Serial.available() > 0) {
val = Serial.read();
if((val == 0x0D)||(val == 0x0A)||(val == 0x03)||(val == 0x02)) { // if header or stop bytes before the 10 digit reading
break; // stop reading
}
// Do Ascii/Hex conversion:
if ((val >= '0') && (val <= '9')) {
val = val - '0';
} else if ((val >= 'A') && (val <= 'F')) {
val = 10 + val - 'A';
}
// Every two hex-digits, add byte to code:
if (bytesread & 1 == 1) {
// make some space for this hex-digit by
// shifting the previous hex-digit with 4 bits to the left:
code[bytesread >> 1] = (val | (tempbyte << 4));
if (bytesread >> 1 != 5) { // If we're at the checksum byte,
checksum ^= code[bytesread >> 1]; // Calculate the checksum... (XOR)
};
} else {
tempbyte = val; // Store the first hex digit first...
};
bytesread++; // ready to read next digit
}
}
// Output to Serial:
if (bytesread == 12) { // if 12 digit read is complete
Serial.print("5-byte code: ");
for (i=0; i<5; i++) {
if (code[i] < 16) Serial.print("0");
Serial.print(code[i], HEX);
Serial.print(" ");
}
Serial.println();
Serial.print("Checksum: ");
Serial.print(code[5], HEX);
Serial.println(code[5] == checksum ? " -- passed." : " -- error.");
Serial.println();
}
bytesread = 0;
}
}
}
| [
"sanderscorey@yahoo.com"
] | sanderscorey@yahoo.com |
f1ff793978b39bfc5c771ed7d8dde2cf855eb260 | 183d30ccc4bb09cc89aaacbce9258a73c96d838f | /Desklets/1.2 Desklets/DesktopGrabber/ChangeNotifyRegisterImpl.h | 0c99a0480e01c2d3161f12b917cbd12e1f8de7d2 | [] | no_license | jackiejohn/AveDesk | 6efaa73d6ccd67845eb6f6954a63f412993edbef | 8f201dc1e14f65ddcfd1f9d281379f347ed22469 | refs/heads/master | 2021-05-27T17:50:41.693612 | 2015-02-21T15:35:43 | 2015-02-21T15:35:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 112 | h | class template<CWindow T> CChangeNotifyRegisterImpl
{
private:
CChangeNotifyRegisterImpl()
{
}
public:
}; | [
"ave+github@aveapps.com"
] | ave+github@aveapps.com |
f484a95c2b1cce6c82c3a94c2cdd01ceb7799401 | 9ada6ca9bd5e669eb3e903f900bae306bf7fd75e | /case3/ddtFoam_Tutorial/0.007000000/Xi | f4586a80346a57df90d992789c8f86fce23dfb75 | [] | no_license | ptroyen/DDT | a6c8747f3a924a7039b71c96ee7d4a1618ad4197 | 6e6ddc7937324b04b22fbfcf974f9c9ea24e48bf | refs/heads/master | 2020-05-24T15:04:39.786689 | 2018-01-28T21:36:40 | 2018-01-28T21:36:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 98,772 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.1.1 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "0.007000000";
object Xi;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 0 0 0 0 0 0];
internalField nonuniform List<scalar>
12384
(
7.64068
9.80988
10.9779
11.9573
12.8811
13.5603
13.9951
13.9498
13.641
12.989
12.1866
11.014
9.29598
6.56217
21.1031
21.9975
22.7028
23.4207
23.8286
24.383
24.9906
26.0333
26.9706
27.7581
28.0067
28.2375
28.9845
30.7442
33.3681
36.3245
39.3984
42.2526
44.5975
45.9718
46.5729
45.8217
45.0677
44.0478
42.7107
40.7297
37.5405
31.9028
23.5718
18.2224
24.3816
28.1872
30.6887
31.6689
32.1648
32.4796
33.0044
33.403
34.2371
34.963
36.324
38.6154
41.6657
45.1881
49.3427
53.1431
56.7118
59.5087
60.7454
60.2082
58.578
55.0837
53.8275
51.3333
49.455
46.8965
43.5629
37.6522
26.5727
20.1059
27.8888
30.3206
32.6084
34.9827
37.4737
39.9965
42.0643
44.1349
45.9968
47.8712
48.6508
49.2266
50.0286
51.4513
53.7762
57.8402
62.2659
67.0017
72.3631
75.7378
79.5578
79.1103
77.1851
74.3306
70.1601
65.4278
58.5071
46.7781
32.8944
29.2613
31.5305
38.3474
43.0059
46.3864
49.8205
53.8087
58.0276
62.5946
67.4145
72.2331
76.8503
80.5099
82.7545
83.5456
82.4432
80.2746
78.4712
75.3805
71.5928
67.149
60.0516
49.4392
37.5265
30.499
28.4931
28.2768
28.8256
29.028
28.4183
27.0457
23.3366
26.9123
29.1492
30.0507
30.3166
30.6117
32.436
34.3062
37.3603
40.0483
42.7095
45.0401
47.8827
51.4687
54.9447
58.552
62.0706
65.1185
67.2148
67.9985
66.3491
63.1112
59.7536
55.9713
52.2576
47.7137
41.3759
33.4388
25.8797
24.5551
26.144
27.6355
28.3303
31.1099
36.2817
42.2066
48.2902
54.1489
60.1489
66.3079
72.7519
79.2334
85.8357
91.7645
97.3023
98.8336
99.4488
95.0366
90.0455
84.6498
79.1941
73.1757
66.0397
56.4263
48.0402
43.0422
40.0378
37.989
37.6029
39.5288
21.1193
21.9186
27.936
35.1043
41.7254
47.4879
53.2306
58.5149
64.4121
67.6606
72.728
73.1118
74.1161
70.6852
68.4187
65.536
62.3087
58.7661
54.2459
48.4926
42.1603
35.3582
30.2292
27.7934
26.9702
27.1339
27.0374
26.4554
26.1872
25.8509
28.2122
42.0782
55.9123
65.8252
73.909
80.7112
85.797
89.0619
87.9043
86.2702
81.1965
80.7687
73.3281
70.6244
64.2009
59.6842
53.0999
45.4745
40.6267
33.8447
29.844
27.0694
27.0552
26.66
26.0331
24.6628
23.0796
21.8333
20.9456
20.269
26.6987
29.4383
36.153
46.4578
56.8423
66.4698
73.7514
80.6123
83.2254
85.1826
83.1675
83.4466
81.4355
79.2961
77.0222
74.6095
72.2123
69.2601
63.1261
56.0029
48.2002
40.6388
35.9873
35.38
35.389
34.4012
33.1295
31.4913
30.9938
31.1246
33.2182
48.0359
68.2484
80.3979
88.8143
94.7012
96.6607
92.5744
87.7274
84.1896
82.0775
79.6946
76.2591
72.6414
70.358
67.3148
63.5337
59.5524
55.1932
51.3836
49.0937
48.2428
47.9518
47.0639
45.5469
43.46
41.2814
39.2354
37.553
36.4396
32.5631
33.305
39.5139
41.3904
47.3425
55.0285
62.4079
68.511
74.3996
80.3955
83.6325
83.7728
80.9755
77.4004
72.9655
68.0456
63.4568
60.5345
59.7446
60.1792
61.3604
61.82
60.6194
59.5641
59.0248
58.9261
58.5352
59.0564
56.4349
47.2888
20.7088
24.2575
22.6209
19.9501
18.7221
24.9646
43.2913
41.5991
46.1174
50.3388
53.0816
55.1306
57.3272
59.8285
61.28
60.2632
57.6469
53.7618
49.3277
44.251
39.2549
34.6157
30.9309
28.1391
26.4667
25.1328
23.0934
18.9683
12.8612
6.94969
10.3172
7.51416
8.57443
9.97543
11.2327
12.2251
12.9664
13.393
13.4695
12.8822
11.7974
10.3663
8.8703
9.63454
21.4039
15.8952
16.8258
18.1999
19.7061
21.3565
22.5347
22.8796
21.7281
19.2779
17.145
16.6064
17.8375
20.8643
24.7584
29.1817
33.801
38.1918
42.2091
45.3436
47.8039
49.097
49.6299
49.3067
47.8184
44.8812
40.3043
33.9804
26.3986
29.1707
26.3781
25.0736
28.9067
31.1106
32.1883
32.4006
31.9003
30.6319
29.2208
28.3253
28.1554
29.6186
32.3718
36.7768
41.7555
47.4269
53.1104
58.616
63.4757
67.1319
68.9676
69.4326
68.0933
65.308
61.4078
55.7809
48.8561
40.3138
30.0787
31.9459
32.0987
30.0355
36.5517
42.4455
47.0831
50.3893
52.4905
53.2876
52.3644
49.8169
46.3527
42.5463
39.5018
38.0351
38.9948
43.2077
49.4026
57.0075
65.5938
74.2769
81.7598
87.6888
89.9321
89.6246
86.2439
80.0429
71.2607
59.1572
45.1113
42.3862
27.8132
21.6019
22.95
26.9479
31.9027
37.4891
43.9329
51.1853
58.9601
66.9327
74.7009
81.6873
88.211
93.4405
96.0597
97.2554
96.5949
94.4407
89.1099
82.4937
74.7839
63.6003
50.918
38.1629
23.9814
19.4406
19.256
19.0807
19.4891
28.5889
24.5971
21.1547
23.842
26.2587
28.4875
30.5283
32.2758
32.9427
32.7789
32.0634
31.8516
32.5536
34.7247
38.5409
43.3451
48.9785
54.9386
60.8031
66.0407
70.1921
72.9993
74.2301
73.6579
71.995
68.2661
62.9027
54.9091
44.1203
30.6925
29.0344
27.1718
24.9866
27.0156
30.262
33.7137
36.5434
39.5048
42.5975
46.5326
52.3504
59.3935
67.6027
77.0868
86.9374
96.3167
103.964
112.339
115.399
116.62
114.689
110.633
103.626
92.9139
78.1363
63.5384
51.5769
31.781
22.2349
25.049
41.0266
23.7817
17.0656
21.4447
27.1333
33.4574
40.4759
48.2595
56.5355
64.2282
72.0082
78.9908
84.9543
86.8816
89.0854
87.094
83.7599
78.9752
72.4472
64.0733
53.7118
43.0868
32.8167
24.8511
23.7404
23.7556
22.5256
21.1385
19.4769
18.1355
26.7038
33.5861
40.99
53.8941
65.5931
77.1724
88.8545
100.325
110.215
117.893
122.323
122.7
120.048
110.943
103.093
90.1884
77.988
61.126
46.1286
33.8583
27.4573
26.2082
24.9304
24.1728
23.2464
22.1035
20.552
18.3312
16.0153
14.9356
22.1729
27.1397
29.9835
45.0976
59.1299
71.6474
84.7744
97.1931
108.739
116.808
125.996
126.672
124.79
119.972
111.349
100.827
88.2412
75.5975
63.5024
51.1628
40.3022
34.8908
33.281
32.7954
31.4526
29.3133
26.9883
24.475
21.8782
20.071
31.3996
33.9835
55.4268
73.1849
87.5491
101.366
115.321
126.798
133.5
135.97
131.857
121.037
105.965
86.8784
67.0617
52.3482
45.0906
44.0078
46.1123
49.0605
50.3967
49.9852
48.202
45.5489
42.3275
38.7194
34.4102
30.1025
26.3841
24.5319
36.5662
37.5908
32.6479
49.6377
59.2348
70.9427
80.973
87.0397
92.3317
94.0043
94.0449
91.8583
88.1507
82.9225
75.6422
67.9654
59.9372
53.1413
49.3074
49.4924
52.7687
57.7309
63.0747
67.5759
69.8317
68.505
64.6577
59.3332
53.7982
47.4022
56.2054
28.7618
26.1696
24.6241
22.9376
24.2603
37.2824
46.2207
48.9774
56.7994
62.2044
64.9606
66.333
66.2776
65.0279
62.1955
58.1279
53.3626
48.1421
42.779
37.3183
31.6912
26.9321
23.503
21.4929
21.1876
21.8898
21.5532
18.4598
12.9216
8.21351
12.2655
9.29103
10.836
12.1313
12.8455
13.1833
13.4239
13.7339
14.0088
14.0661
13.309
11.7219
9.94663
11.0393
21.9577
16.0645
16.8608
18.4338
20.1226
21.6565
22.2759
21.1886
18.4138
16.2306
15.9397
17.6554
21.1767
25.7667
30.5014
34.6528
37.9156
40.3374
42.4162
44.0108
45.2973
46.3569
46.831
46.8689
46.629
45.5589
42.919
38.1722
31.2158
34.4329
27.3318
25.5972
27.5714
28.0229
27.8269
27.4839
27.2453
27.5134
28.3683
29.9623
32.2564
35.4898
39.2226
43.6134
48.1809
52.5238
56.7609
60.8084
64.1593
66.7608
68.6004
68.4147
67.7506
65.4124
62.6086
58.6609
53.2878
46.0783
36.7126
39.2596
34.6128
32.8953
38.2698
42.485
45.4674
47.584
48.8702
49.196
48.2582
46.8888
45.4154
44.5493
44.4675
45.3871
47.8125
52.6902
59.0079
65.7328
72.4479
78.5324
84.3518
87.9823
91.0804
89.9835
87.6613
83.2475
76.7685
67.2648
54.442
52.7716
29.0746
20.8052
23.9563
30.2849
36.9305
43.9745
51.1931
58.2625
64.8213
70.7321
75.98
81.0327
85.4494
88.3143
90.447
92.2129
91.8426
90.9538
89.2508
85.2537
79.9188
72.6861
62.0946
49.7908
36.0897
22.2809
18.7732
19.6743
20.9866
29.8544
25.9555
21.3014
22.8901
24.6141
26.8855
29.0041
30.7611
31.163
31.2567
31.4857
32.9191
35.6411
40.0649
44.8812
49.6431
54.0306
57.6896
60.617
63.0484
64.9205
66.776
67.5844
67.6387
66.9937
66.1009
63.7939
59.197
51.1971
39.3702
36.5221
28.7364
26.1773
27.0811
30.343
34.1523
37.4479
41.5922
46.7558
52.5872
59.2611
66.7682
73.6215
80.2269
86.0027
91.2916
96.9371
100.098
102.498
104.66
105.642
105.423
103.417
98.8358
89.0019
75.276
62.3996
48.0458
29.1574
23.425
40.9162
25.1933
19.5714
24.8376
31.7845
40.0751
48.5233
56.5737
63.2257
68.9034
74.7605
79.6332
82.0843
86.1291
85.8062
84.8449
82.6918
79.6703
75.9178
70.3871
62.3396
52.3332
42.2394
31.4558
23.2329
19.9157
19.8894
21.217
20.7303
18.8302
27.3306
42.9226
53.2675
66.8768
78.2764
88.1603
96.4303
105.221
112
118.945
123.352
121.815
121.935
114.879
108.881
97.4275
87.9799
72.1034
57.4151
41.8988
30.9256
25.8478
23.2585
23.433
24.9828
25.3212
23.9812
21.4987
18.2403
16.0017
23.0794
28.7258
44.5131
60.2524
73.5993
85.0274
95.2144
106.903
117.473
124.589
133.889
136.894
138.116
132.631
125.511
116.358
104.707
91.3953
77.5339
63.9961
50.7431
39.3325
32.5395
28.8166
27.5341
28.5287
28.8749
26.9173
24.0494
21.5459
31.5569
43.969
74.9454
95.6775
111.146
123.342
133.377
139.924
144.943
146.027
144.126
137.243
124.144
106.501
84.9528
65.1477
51.5067
44.7138
44.1734
46.3142
48.1059
49.3698
50.4332
50.9055
49.8107
46.3435
40.4069
33.202
26.9845
23.8739
38.0143
43.6148
46.728
57.8216
67.026
76.0345
81.4802
84.0993
86.1993
87.2561
87.7971
87.6631
86.322
85.21
83.3106
79.0132
72.5425
65.2572
59.5309
56.2354
55.0174
55.0893
56.5775
59.2682
62.0977
63.6239
62.6597
59.171
54.7833
49.9051
60.5227
33.0022
27.9187
23.2951
23.105
35.2007
50.4774
50.6054
55.2292
60.7682
63.3182
64.8495
65.7992
65.8429
64.4834
62.7873
60.0573
57.3059
54.0841
50.3136
45.3736
39.0081
31.7338
25.3053
20.3629
17.4715
15.7422
14.4882
12.5842
9.43127
6.50591
13.9811
11.3852
12.5535
12.9941
12.7751
12.4499
12.2034
12.2046
12.5258
13.3537
13.8655
13.1791
11.5057
12.1705
23.0277
17.4332
17.6796
19.0069
20.4141
21.3599
20.7561
18.4285
15.7761
15.1646
17.1107
21.0979
26.2066
31.7764
36.1636
38.8253
39.6673
39.8279
39.813
39.9136
40.3781
41.0629
41.8834
42.8469
43.6918
44.3576
44.0642
41.5333
35.9509
38.2013
28.1379
26.9523
26.916
25.4361
23.7992
22.8535
23.2821
25.2877
28.1068
31.9386
36.336
40.6572
45.1388
49.6461
53.7237
57.1823
59.7703
61.3817
62.8477
63.9726
64.7317
65.5425
64.7401
64.0397
62.2131
59.6424
56.1957
50.5345
42.6167
44.4261
36.6431
36.2687
39.6137
41.7359
42.9303
43.4716
43.4162
42.6308
41.8717
41.9449
43.4636
46.1723
49.3916
52.5483
55.7009
61.0229
67.6486
73.7666
77.8966
81.3454
83.7358
85.8754
85.8597
86.1585
85.4598
83.7458
80.3627
73.7793
62.9208
59.6834
34.0651
22.1648
26.0275
33.7239
41.821
49.7263
57.5573
64.2429
69.1798
72.4689
75.1335
77.5439
79.182
80.9526
82.9447
83.4492
83.7611
83.2834
83.4319
83.6876
81.7908
77.4447
69.7088
58.5639
45.4077
30.5231
19.5496
19.9482
22.3932
31.2815
27.5776
23.0099
23.2945
23.956
25.6937
27.3263
28.3957
28.5355
28.7528
30.3681
33.6228
38.2425
44.4837
51.0755
55.7276
58.8529
59.7919
59.5641
58.7923
58.2678
58.1059
58.9256
59.392
59.8905
60.8707
61.9392
60.8931
55.8605
45.9842
42.4349
30.5785
29.6393
28.2838
30.19
32.9995
36.8711
42.2202
48.9245
57.5401
66.7765
75.1883
80.8232
83.3644
83.6091
83.6684
84.0515
84.045
86.6044
88.734
90.6598
93.0102
96.0541
97.5188
94.5455
83.2542
70.376
56.9928
40.5392
26.2273
40.8
25.8295
21.7542
27.445
36.479
46.8935
56.2944
63.1677
67.6463
70.6808
73.3733
74.2141
76.3846
77.9096
78.7805
79.248
78.3306
76.8556
75.4979
73.426
68.5822
60.2486
50.2
40.1323
29.1508
20.997
19.6818
22.4062
22.1867
19.5068
27.7146
52.5703
63.3095
77.2586
87.703
94.5112
98.7087
103.463
106.451
110.34
113.794
116.116
114.552
110.886
109.706
99.5526
93.848
80.1694
66.6352
50.7687
38.0337
28.8698
24.8297
25.8001
28.5107
29.2224
27.6547
24.5951
20.9729
18.0005
23.4687
31.5802
57.198
72.169
82.9882
93.8146
100.994
106.338
115.181
122.783
126.823
133.357
134.554
134.724
130.47
125.035
116.342
103.554
90.5657
76.8906
61.7478
48.0238
37.5287
29.8715
28.5717
31.7313
32.3035
29.647
26.1851
23.2644
32.2256
64.4166
94.3099
116.673
130.505
137.586
138.711
142.281
145
146.428
144.339
142.003
136.548
122.975
102.859
81.3354
63.7637
51.7057
46.7699
45.4592
46.3103
48.8961
52.6565
56.3091
57.4288
54.9555
47.3647
37.2137
28.3912
24.3724
39.3723
50.9902
55.2491
63.8355
71.7731
76.4997
77.0522
77.3897
76.6722
77.2311
77.8721
79.1469
80.9163
82.6133
84.7285
85.338
82.0014
74.7664
68.4847
63.3392
59.6791
55.4979
51.7795
50.2881
52.0681
55.4459
58.216
58.0629
56.1119
53.2377
63.5153
34.6091
28.3002
23.8716
31.4271
48.775
55.2852
54.9107
59.2643
62.219
63.1124
63.5361
63.2819
62.9358
62.3419
61.2094
60.3659
59.2409
58.1221
55.9018
52.1264
45.6069
36.5921
27.9291
21.1702
16.835
12.1453
9.29036
8.2612
7.20327
4.91193
15.7601
12.8919
13.1471
12.8556
12.5824
12.3384
11.904
11.4549
11.3719
12.0502
13.5094
14.1897
13.1525
13.1358
24.332
19.1758
18.7216
19.4684
20.2317
20.4149
18.8745
16.1828
14.3559
15.3053
19.3295
25.1373
30.5502
36.221
39.8536
40.4726
39.5784
37.9824
36.287
34.9723
34.413
34.7634
35.9546
37.7108
39.9384
42.2403
44.1681
44.1742
40.4629
41.2842
28.4911
28.3279
27.0955
23.8324
20.4462
18.9186
20.0122
23.3057
27.7106
33.3658
39.1905
44.8109
49.6362
54.0785
58.2725
60.8883
60.756
59.9204
58.363
57.4642
57.6874
58.5418
59.5953
60.2004
60.5086
59.6316
57.9005
54.1611
47.9689
48.4096
38.4532
39.8487
41.0013
40.9818
40.1728
38.7041
36.4694
34.6216
34.7229
37.4145
41.7992
47.2934
53.129
58.2131
62.0087
67.7522
74.6957
79.7504
82.0757
81.6802
79.4379
76.9547
77.7327
79.0429
80.4318
82.2541
82.7388
79.6657
71.1628
64.4471
39.8954
23.4521
28.0129
36.692
45.7478
54.5767
62.4492
68.415
71.5487
72.7243
72.6553
71.8732
71.3727
71.551
71.8242
73.0068
74.5526
75.5017
76.1045
78.0473
80.1509
79.6382
74.6055
65.0009
52.1369
37.7001
22.9306
19.8209
23.1158
32.7875
28.9113
25.0552
24.389
23.9934
24.841
25.734
26.1684
25.9812
27.1029
29.8965
34.8484
40.8662
48.011
55.9254
60.8735
62.8444
61.4846
58.0287
54.4555
51.2915
49.1631
48.7797
50.4572
52.3408
55.0548
58.525
61.0544
59.2833
51.492
46.6366
32.6611
33.8393
29.8394
29.4912
31.3771
35.6233
42.3311
50.4801
61.0162
73.5206
82.9752
87.2349
85.5431
79.9912
75.6083
70.5344
68.0652
66.7912
68.8116
73.6694
79.7448
85.9749
93.0964
94.2296
88.1903
76.0322
62.1298
47.6493
31.0558
40.5749
27.0991
23.2629
30.1112
41.4288
53.3281
62.3469
67.1823
68.871
69.287
67.6261
66.1702
67.0386
66.47
67.7989
68.7774
70.8297
72.7116
73.7256
74.3371
72.5807
66.1863
56.576
46.0729
35.332
25.2056
21.962
23.9849
23.3365
20.0107
28.1704
60.4237
71.6701
85.1937
93.3733
96.4375
96.716
96.3937
95.8597
96.3039
98.7545
100.054
105.391
101.695
104.766
99.0917
95.735
84.9407
73.5645
57.4801
44.0897
32.9318
28.0692
29.0909
31.6794
31.8827
29.7446
26.2994
22.7834
20.1962
23.9233
37.624
65.8437
79.9941
91.0456
96.9733
103.123
105.562
105.546
108.787
114.852
118.72
125.192
128.018
128.8
126.124
119.734
111.682
100.699
86.0369
71.2729
57.1261
43.5404
33.8824
31.9498
34.5105
34.51
30.9996
26.7459
24.2537
32.4953
86.1268
113.543
134.404
143.67
141.755
138.219
135.04
134.841
137.346
141.11
142.422
140.735
134.699
118.877
96.6741
76.6959
62.0909
52.0691
47.5276
46.2735
48.3201
53.4782
59.4377
64.0066
63.4573
55.9705
44.1274
32.0501
25.8779
40.1461
57.2144
61.4208
68.5081
73.9669
74.0557
71.2401
68.9057
66.0399
66.0339
66.6296
68.848
73.113
78.0315
82.8916
86.5223
87.1036
81.3916
74.9823
69.4232
65.1256
59.6267
50.8641
42.8975
41.4162
46.9228
53.2364
56.9056
57.669
56.3848
65.2878
33.851
28.574
28.8458
41.2721
57.6528
58.4609
58.5494
61.5724
62.7016
61.6368
60.2131
58.4588
57.2529
56.8167
57.4598
58.6559
59.6902
60.1728
59.4972
56.7893
50.7745
41.0668
30.7651
22.7243
17.7046
11.4316
7.1767
6.52758
6.5519
4.23903
16.5649
13.4869
13.1789
13.1858
13.6182
13.7659
12.9009
11.624
10.7541
11.2308
13.0561
14.9377
14.718
13.9041
25.6756
20.9154
19.8638
19.7815
19.7812
19.2523
17.4577
14.7418
13.6391
15.6761
21.3989
28.3746
33.6034
39.2998
41.8548
41.1299
39.155
36.232
32.9643
30.2034
28.4291
28.2853
29.759
32.5539
36.099
40.0879
43.8896
46.3671
44.6225
43.314
28.7044
29.1941
27.6909
23.5406
18.655
16.1085
17.4937
21.778
27.244
33.5367
40.8959
47.3905
52.608
57.2555
61.8107
62.606
60.4604
56.1485
51.8792
48.7781
47.4842
49.2564
52.1421
55.1327
57.7625
59.0424
59.072
57.272
52.8927
51.3261
39.0689
42.6611
42.1938
40.6468
37.9214
33.9212
29.6875
27.417
29.1892
34.4667
41.6837
49.2164
55.7519
61.4254
65.9278
72.2899
79.3963
84.0021
83.7321
78.7057
72.919
66.5548
63.7575
67.2374
73.2554
79.7544
84.6973
85.0683
79.01
66.7952
44.5817
24.4982
29.6501
39.0159
48.5882
57.9069
66.0586
71.3069
73.2035
72.0548
68.9704
64.7773
60.8425
57.6908
56.4923
58.0215
61.5931
66.026
69.5257
72.8373
76.4868
79.6818
77.3155
69.6473
57.0952
42.7638
27.1268
19.9423
23.4175
34.066
30.3885
26.8374
25.9037
24.7394
24.6002
24.7316
24.7091
24.6446
26.3725
30.3874
35.9938
42.9457
50.5452
59.3119
64.6517
65.6456
61.6332
56.1581
50.0413
44.4899
40.4909
39.2941
40.7763
45.0069
50.1679
55.9249
60.8817
61.9858
56.0511
48.5506
34.2844
37.9006
31.0556
28.5548
29.6645
34.4949
42.0041
51.8346
63.8816
78.1122
88.8627
91.9688
86.015
77.724
68.6075
58.8395
52.887
51.1533
53.9149
59.2537
66.9948
77.5282
85.8109
92.4252
90.2285
79.265
64.8621
50.5426
34.7889
41.1518
30.2089
24.2168
32.9904
46.1594
58.4924
66.0982
68.8269
68.463
65.986
60.8313
57.9885
54.4642
52.9889
53.9652
57.7093
61.3393
66.0842
70.4099
73.3929
74.1324
70.1574
60.8639
49.8591
38.6351
28.262
23.9428
24.9233
23.6653
20.2743
28.8263
68.5391
78.2179
89.7264
95.1067
95.4714
91.2903
86.8955
81.6189
79.434
79.6848
81.948
89.1928
91.9428
97.0786
95.019
95.9492
87.238
77.1722
61.9615
47.3672
35.2422
29.4142
30.2294
32.7321
32.4422
29.0568
25.5523
23.319
21.8226
24.2191
46.4224
70.3281
84.9037
96.0623
102.495
100.738
101.839
96.4406
91.1633
93.2581
95.8902
100.385
108.886
116.944
119.233
120.189
116.31
104.741
92.112
78.4333
62.3729
46.9488
36.1737
33.3419
35.4947
34.6361
30.1048
25.9132
24.6111
33.125
105.73
131.287
148.723
151.043
141.795
129.483
115.938
106.002
110.797
124.697
140.265
146.873
144.074
131.04
109.592
88.8709
72.0724
59.5125
51.5189
46.954
47.3185
52.2573
59.9724
66.4551
69.0405
65.8094
54.5259
39.6711
29.538
41.492
61.4436
66.7585
72.2241
74.2631
71.0997
65.948
60.0439
55.9674
54.0562
54.6028
58.4487
64.2044
71.333
79.0917
84.999
87.702
84.7599
78.4792
73.063
69.5836
64.5896
54.5417
42.1545
34.4138
41.1423
50.4469
56.7815
59.386
58.5437
65.6201
32.9556
28.8272
33.5203
48.6963
62.1031
60.9915
61.3866
63.0125
62.3272
58.8355
55.6441
52.0171
49.5485
48.9359
50.8977
54.936
58.4094
60.9844
61.2743
59.3384
54.3148
45.1286
33.0862
24.0984
18.8735
12.5259
7.28765
6.4761
6.93337
4.3874
16.5446
13.4949
13.4799
14.881
16.0141
15.572
13.6774
11.4011
10.0513
10.6079
12.9158
15.7169
15.9517
14.3529
27.0892
22.4359
21.0266
20.1311
19.2576
18.1509
16.2218
13.7222
13.2061
16.0305
22.593
30.3455
35.3576
41.0686
42.6932
41.399
38.9225
34.9395
30.0633
25.5016
22.2596
21.7305
24.0689
27.9892
32.9441
38.3414
43.817
48.255
48.2244
44.0941
29.4424
29.3858
28.2188
24.4294
19.316
15.5565
16.3112
20.8929
26.58
33.1423
41.2054
48.6511
53.9355
59.0272
63.6015
63.138
58.7222
51.8373
44.725
38.9651
36.4832
38.7993
44.4842
49.8497
54.8763
58.2528
60.1769
59.8848
57.1442
52.9564
38.4959
44.8798
43.9387
41.0588
36.3764
30.7375
25.3933
22.8483
26.4209
33.9621
42.5661
50.815
57.4627
62.7903
66.9895
74.0701
82.3196
85.6885
82.5353
75.0861
63.5373
51.0863
48.5073
57.115
67.6532
77.5501
86.8123
89.788
85.3056
65.534
46.7332
25.3369
30.8681
40.5601
50.6151
59.9764
68.6225
73.5016
74.0783
71.5457
65.8791
57.5414
49.8259
44.0472
41.3393
43.3436
48.4722
55.3943
62.2018
68.2603
73.6937
78.8577
78.686
72.6415
60.4989
45.992
30.2562
20.6611
23.6983
35.6739
31.474
27.8873
27.329
26.3218
25.4231
24.7207
24.3286
24.4053
26.7781
31.3572
37.8142
44.5307
52.0549
60.7335
66.8607
66.8608
62.1246
54.8176
46.641
37.7523
30.9638
28.9073
32.7535
38.8455
45.9397
54.4572
61.1587
64.196
59.4892
48.6725
35.9211
41.3964
31.9852
27.3687
27.9231
33.5405
41.9453
52.3812
65.2072
80.7677
92.7043
94.4058
86.8162
77.7459
64.9431
51.4614
40.8517
35.9142
39.5261
48.0734
59.1578
69.7713
81.3933
90.8959
90.3302
80.0045
65.6953
51.3957
37.0753
41.429
34.0711
25.3138
36.1885
50.218
61.889
68.3972
69.29
68.3921
62.9902
55.8354
50.2951
42.8646
37.4082
39.8509
46.9025
54.3578
61.1305
67.7377
73.1069
75.111
72.0253
63.4722
51.6989
39.5219
28.6113
24.141
24.7154
23.3183
21.3593
31.3066
77.3241
81.5855
91.3855
94.5159
93.1657
86.033
77.6783
67.7873
59.5995
57.3671
62.6211
73.2226
80.6466
89.5803
91.14
93.9445
86.8192
79.0161
63.2329
48.3137
34.9837
28.4083
29.4399
32.7538
32.0811
28.0541
24.9114
23.8951
23.3492
24.9704
58.3388
72.2755
87.9085
99.9513
105.557
104.929
95.1792
89.5111
77.429
70.8442
68.1898
77.556
89.8602
101.121
110.974
117.838
113.467
106.832
96.7636
82.0136
64.9668
48.1596
35.2775
32.3187
36.0218
35.5944
31.5316
27.8556
26.199
34.4831
123.377
145.851
157.71
149.896
134.524
115.95
95.2135
84.3371
88.7417
103.09
123.035
144.428
148.8
141.381
122.366
98.8155
80.5213
67.4595
56.317
49.164
46.35
50.0819
57.3703
64.7622
70.2015
71.2052
65.0122
51.6752
38.381
47.3573
63.6211
71.4421
74.7422
74.1119
69.1518
61.1025
52.9061
46.6947
41.2194
41.746
47.7965
55.9623
65.342
74.107
81.3474
85.9718
84.231
78.1394
73.5254
72.0958
69.1755
61.2139
50.641
41.9629
44.6118
52.273
58.0577
60.3023
59.2526
64.9283
32.6401
27.1227
36.2452
53.1044
63.9748
62.7975
63.3986
63.7454
61.4025
56.3143
51.2129
44.7099
39.9226
39.2629
43.2991
49.7873
55.7848
60.8128
62.1238
60.467
55.8787
47.9357
34.8751
24.8698
20.357
14.8121
9.04563
7.99586
9.03542
6.06664
16.0612
13.5426
14.7864
17.0005
17.1752
15.2873
12.3623
9.77137
8.84077
10.2486
13.2128
16.5689
16.8839
14.4786
28.8614
23.9568
22.1177
20.8473
19.0768
17.2853
15.3815
13.2666
12.968
16.2517
22.9325
31.1267
36.0373
41.7589
42.8671
41.5598
38.9588
34.3479
28.039
21.5
16.2362
15.409
19.4635
24.857
30.929
37.6139
44.1498
50.2176
51.0403
43.075
30.0766
28.7799
28.1766
25.8638
21.7942
17.8537
17.1664
20.6895
25.9086
32.0294
40.1064
48.3911
53.6106
59.5481
64.0829
62.6733
56.7592
48.3445
39.1049
29.8546
25.4833
30.226
38.2134
45.9223
52.712
57.6567
61.1586
62.0852
60.4483
53.1493
38.0935
46.2266
44.762
41.2446
36.633
31.1633
25.8714
24.2288
29.0046
36.5923
44.4444
51.4638
57.1341
61.8172
65.6674
73.7164
82.6603
85.3989
80.5013
71.0329
54.7401
37.654
34.8458
49.6473
65.629
77.3081
89.2433
93.7101
89.4029
60.2486
47.5221
26.6721
31.9114
41.6596
51.734
61.2512
70.1284
74.9088
75.3669
71.7274
63.6573
53.266
43.2663
33.1906
26.6614
30.9209
38.9311
48.1383
56.6198
64.7655
71.8346
78.2068
79.5634
74.5018
62.436
47.8962
32.4243
21.757
24.2037
37.7427
33.0239
28.1145
28.3513
28.0647
27.0571
25.8863
25.0584
24.9876
27.6276
32.5243
39.112
45.7652
52.1295
60.6204
67.3838
66.9322
61.1747
53.8198
44.3021
34.132
24.3823
21.6196
27.3371
35.8858
44.4631
54.1092
62.6814
65.9563
61.4061
46.5259
37.2802
44.5892
33.0079
26.416
26.1678
32.0151
41.5334
52.6937
64.2503
80.7351
93.1299
95.4245
88.5952
79.149
65.072
51.3867
37.7526
29.8588
33.8404
44.1686
55.0446
67.3298
80.8252
89.2976
89.2357
79.2321
64.7728
50.5512
38.1728
42.9752
38.0243
27.2629
39.0242
53.0123
64.3645
69.5805
70.7122
68.0174
62.8051
54.0957
47.4902
35.9175
25.0854
28.5192
39.4383
49.4068
59.1367
66.0608
72.6178
75.977
72.9644
64.2723
51.7915
38.4267
26.9221
22.9942
25.8377
27.4809
29.5286
40.9652
84.3838
81.2747
90.9028
93.8404
91.4093
83.4881
72.1935
59.0638
45.556
36.8241
45.2436
61.5138
71.1774
83.7904
87.3251
91.9961
86.4009
78.2906
63.0583
47.074
33.6196
26.8434
30.2765
35.6632
35.5144
32.337
29.7183
28.2236
27.4823
28.1576
70.9363
73.0553
89.4622
101.439
108.2
107.038
99.5597
84.5343
74.098
58.3344
47.8223
54.9667
71.6861
90.4904
104.548
111.368
111.079
108.807
98.2518
83.4113
65.7653
47.1286
33.7566
35.8713
42.3788
44.1099
42.6597
39.8377
37.2974
44.866
148.953
152.152
154.834
146.586
127.747
104.975
81.2247
63.5607
68.1545
92.7448
114.737
138.105
154.755
144.855
129.531
108.706
89.9283
73.8453
61.4054
51.3597
45.611
46.3175
53.0241
61.462
67.3824
70.4761
70.1251
61.566
49.2091
57.3676
63.4907
74.6317
75.8373
74.392
67.7109
57.7757
48.7883
39.524
30.2096
29.0175
38.0883
49.8195
59.9566
69.0594
77.7528
81.8253
80.4187
75.7925
71.4528
70.7967
71.6019
67.6158
61.1956
55.4856
54.0718
56.7832
59.662
60.1173
57.8636
63.5519
33.6658
24.7607
36.2783
54.336
63.6889
63.7549
64.3845
64.2911
60.8654
54.545
47.3747
38.0275
29.377
28.1032
36.0368
45.7224
53.2211
59.8046
62.2019
61.0965
55.5753
49.5368
35.955
25.0258
20.9324
17.6739
12.8542
12.2905
15.5166
13.7526
15.3878
13.7746
16.3472
17.8849
16.4119
12.9499
9.9961
8.20663
8.25603
10.554
14.1369
17.4036
17.2335
14.9951
19.7598
26.1253
28.1438
24.8283
22.7307
21.5293
19.3625
16.9467
14.8615
13.0473
13.081
16.3448
22.6054
30.7308
35.5686
41.2542
42.4555
41.6805
39.2667
34.7449
27.978
20.4726
13.7613
11.8852
17.3866
23.6753
30.5518
37.686
45.3299
51.7402
52.802
45.5864
36.9224
34.8483
26.3788
26.6929
27.065
26.1955
23.9431
21.0192
19.585
21.4791
25.5426
30.8219
38.304
46.929
51.9112
58.4969
63.3346
61.5656
55.0578
47.0357
37.7892
27.7944
22.3771
27.0964
35.7278
44.1005
51.7054
57.3711
61.8612
63.6872
62.8839
56.6468
42.8901
40.7928
41.9264
45.4195
44.4175
41.979
38.3795
34.1521
31.0351
31.0649
35.1082
40.9611
46.724
51.4438
55.1574
58.4959
62.1161
70.6854
80.7487
83.3929
78.2157
68.1816
52.7485
37.9569
37.6399
51.6722
67.5428
80.5719
91.5658
95.3599
91.3327
61.5412
43.6334
44.8634
39.1928
29.8987
33.7472
42.9374
52.3086
61.5064
70.3229
75.5501
76.4885
72.6817
64.1712
54.376
43.513
32.3282
23.421
26.8885
35.5019
45.8124
54.4941
63.551
71.6214
78.0975
79.8596
74.9525
62.9724
48.6269
33.7492
23.7103
25.0857
28.4406
37.0647
36.6188
28.7126
27.9634
29.2405
30.0802
29.6473
28.4608
27.1018
26.7454
28.8804
33.3228
39.4667
45.7204
50.9305
58.723
65.9332
65.3672
60.2769
53.0612
44.1266
34.4934
25.6735
22.3563
27.5594
36.1887
45.5799
55.8076
64.1323
67.1915
61.7898
47.8966
45.9627
49.0177
44.9341
44.3839
32.8392
25.848
25.0149
30.5886
40.8879
52.1309
61.8251
77.5048
90.9723
95.2901
89.9183
81.6182
69.449
58.1059
47.1197
39.2227
40.0787
48.2017
57.7516
70.1755
82.7168
87.5133
87.2659
77.2478
62.2586
49.3572
40.6852
37.9871
38.6801
39.9986
30.5935
30.974
41.5429
54.7813
65.2258
71.0231
71.1886
69.397
64.3851
56.7839
51.6611
42.292
33.9673
35.0199
43.125
51.6925
60.5273
67.5222
73.2297
75.9737
72.8
63.6214
50.7562
37.074
27.7984
31.0204
36.9074
41.6815
45.4494
47.9483
56.3627
65.5951
65.5126
80.5346
90.6312
93.4706
91.443
84.1977
73.0346
60.2033
47.1591
36.8074
43.3418
57.8054
67.6638
80.8752
85.5214
89.3308
84.2821
76.8717
60.903
45.7346
32.5179
28.1841
34.6445
41.1241
43.4788
43.7077
42.8303
42.2585
42.4376
46.1008
61.1983
66.7567
55.4249
71.1668
88.1284
101.752
107.844
109.529
104.376
93.3257
78.3501
67.6765
52.0452
53.9721
67.8635
87.5067
99.1298
108.98
111.691
107.947
98.3004
84.1061
65.6856
47.7232
40.4964
46.9942
54.4261
58.4773
59.2143
57.5803
55.3434
54.6123
71.5511
83.2082
117.207
138.523
144.966
141.098
122.889
101.866
78.3936
57.5551
56.5761
84.0151
111.602
136.468
150.182
150.439
132.248
112.081
94.5661
79.8136
66.7452
54.7901
45.3675
41.8733
47.1136
55.182
62.9083
66.8863
68.5572
65.9383
54.2403
41.9712
51.3472
55.9661
66.4559
76.5006
76.518
74.4205
67.2258
57.2241
47.5267
37.5465
28.3309
26.5768
35.4827
46.7103
56.3827
66.0527
73.5281
76.9722
74.7228
69.4884
65.8554
66.7505
70.4255
71.8678
69.1975
66.024
63.9247
63.5448
63.4868
61.8716
57.9496
50.3754
40.4244
35.1705
24.9518
25.8542
34.1998
49.679
61.4812
63.5662
64.7296
64.3097
60.567
53.8603
45.913
35.4673
25.3469
23.9633
33.6371
44.2176
52.0077
59.0313
61.6176
60.7238
54.7984
49.1774
36.7407
24.851
21.0219
20.2595
18.9079
21.4119
24.7648
23.3279
8.94405
4.24241
14.8617
14.1703
17.0148
17.0347
13.7031
10.7303
8.76572
7.93514
8.93987
11.7673
15.286
17.6085
16.7024
14.4816
11.4304
14.8541
25.4298
24.5845
22.9471
21.9197
20.0735
17.5456
15.0697
13.4283
13.5792
16.3081
22.0061
29.583
34.0769
39.6306
41.5305
41.5233
39.8958
36.1827
30.5423
23.9781
18.7454
16.9556
20.1184
25.3821
31.7241
38.8736
46.4664
52.9068
53.3836
47.3486
23.6678
20.0267
22.5789
24.0597
25.3549
25.8992
25.3628
23.9201
22.5273
22.9606
25.4464
29.3293
35.7385
43.8319
49.1089
56.1993
61.4106
60.3561
54.7848
47.887
41.0643
34.4555
30.5167
32.2761
38.2755
44.8687
51.4818
57.4384
61.8197
64.2739
63.919
57.1542
27.3803
22.8427
37.8105
42.5959
43.1015
42.0418
39.9598
38.266
37.7096
38.9677
41.9214
45.5401
48.4472
50.3914
51.5384
53.3914
56.7623
66.5533
76.4966
80.4549
76.5545
68.5249
57.8928
49.7225
51.037
60.969
73.076
84.4465
92.5706
94.5958
88.0125
65.1125
29.0632
31.5004
35.4575
28.5689
33.7594
42.84
51.4249
60.0837
68.9945
74.9987
76.9917
74.4182
67.5942
59.7322
50.7375
42.9358
36.7157
36.5328
41.3918
48.8774
56.3587
64.9484
72.8164
77.8989
79.0348
74.1496
62.367
48.6087
34.6018
24.66
24.4843
26.4994
23.9798
23.7685
25.3088
27.3097
29.9045
31.9087
32.6747
31.8767
30.6092
29.6907
30.6107
33.8091
38.8677
44.1336
48.4671
55.255
63.2166
63.4425
58.9286
52.9242
45.71
38.0609
31.7274
29.2513
32.7073
39.8854
48.8606
58.4029
65.4059
67.113
60.9537
49.6506
38.1891
40.2044
49.4393
39.8533
30.9024
25.0958
24.2311
29.611
40.0502
50.3017
57.7503
71.5889
86.1056
93.8077
91.2307
84.8708
76.1455
67.4601
60.6085
54.722
55.0349
59.4091
67.7393
77.2265
84.2755
87.3797
84.0223
74.0806
60.8332
47.7771
35.2538
31.5539
28.7577
29.6886
28.2351
30.0464
40.9627
54.0015
64.9836
70.7667
72.6168
71.5071
67.928
62.4786
59.8532
54.3968
50.0812
50.0221
54.1862
59.6557
65.2955
70.7805
75.0983
75.6043
71.6904
62.3288
50.0765
38.191
31.7853
33.4933
36.7159
38.5818
39.4729
39.6418
40.5111
47.3933
65.1738
79.3031
89.7168
93.2929
92.3831
88.1588
80.6886
70.6571
62.0315
56.7703
57.2866
64.6485
71.3498
82.1647
83.3918
87.9211
82.3593
73.6952
58.9242
44.4861
32.5986
28.7436
33.2202
40.0678
44.9436
46.7674
47.0578
47.2151
46.8549
45.6527
43.202
43.7499
53.7021
67.3832
83.9142
99.3388
108.586
110.028
110.071
103.406
92.2706
86.579
78.3068
75.5471
84.5517
93.073
103.129
111.311
111.111
106.717
98.0182
83.5866
65.8378
50.2142
42.9718
43.9518
47.9518
51.4188
53.0438
52.567
50.8819
50.565
54.9063
64.7879
109.388
130.695
139.573
137.07
125.568
107.981
91.6716
75.6068
73.9274
91.2759
113.763
137.306
147.8
144.799
133.156
114.131
97.0463
84.1904
71.2141
58.3635
46.8341
39.307
38.8893
46.6543
56.5554
62.4564
65.4336
64.082
58.3206
44.0681
32.9777
38.0918
68.2292
74.4771
75.2346
73.3714
67.3355
58.6555
49.5758
41.4185
35.0634
34.1792
39.7001
48.1088
56.3135
64.576
70.5174
72.7916
68.1688
62.1981
59.2336
60.6742
65.7349
70.4828
72.1094
70.5601
68.4744
66.3596
63.9445
59.7905
49.101
36.387
26.2872
24.0266
23.4133
24.3727
30.8833
43.6084
57.2691
62.1569
63.593
63.8891
60.4752
54.2327
47.3945
39.4993
33.1141
32.7698
38.7593
46.6819
52.7745
58.8282
60.7624
59.4173
53.3503
47.5334
37.0067
24.8235
21.1935
22.3774
23.2045
26.3858
29.3372
23.555
5.49833
3.55074
14.3657
14.2151
16.6486
14.911
11.7688
9.98348
8.98556
8.90194
10.311
13.0608
15.8633
16.9915
15.7002
13.5414
9.82925
11.7546
21.2015
23.8248
23.2098
22.27
20.757
18.5132
16.0654
14.3763
14.3874
16.5727
21.2876
27.5341
31.4884
37.0768
39.935
41.0833
40.8144
38.6182
34.965
29.9429
26.0354
24.2333
25.5886
29.0106
34.2608
40.5149
47.9416
52.9783
53.2376
46.5459
22.2684
18.6852
20.9735
23.0251
24.9401
26.2529
26.686
26.0926
25.0091
24.5361
25.4389
27.9127
32.905
40.0354
45.4358
52.7391
58.7098
59.1376
55.4486
50.5183
46.251
42.2747
40.0334
40.3743
43.0496
46.9683
52.3823
57.0813
60.7225
63.3234
63.261
55.4936
24.7395
20.3311
32.0299
38.1016
40.488
41.0356
41.2486
41.4751
42.7362
44.6018
46.8171
48.3701
48.9001
48.0417
47.0231
47.0458
49.8736
60.7369
71.7349
76.4858
75.7348
70.9544
64.7498
61.1801
63.0825
69.7716
78.2651
86.2253
90.9373
90.0436
81.8686
59.2107
27.502
28.3835
31.0051
25.7347
32.9137
41.7081
48.6561
56.569
65.5895
72.8761
76.6569
76.3705
72.5992
67.5326
61.7651
56.4693
52.8585
52.1069
53.6412
57.6682
62.6939
68.6665
73.7992
77.655
77.2967
70.9624
59.8487
47.4685
33.8613
25.0014
24.6411
26.3327
24.4732
24.3852
25.0715
27.2922
30.1239
32.8208
34.5593
35.1502
34.4474
33.3867
33.0178
34.5823
37.4687
41.3633
44.7052
50.3695
58.4925
59.8122
57.3557
53.4451
48.8623
43.7317
39.7516
38.1951
40.1233
45.3416
52.531
60.4819
66.0892
66.5235
60.4059
51.2008
37.2355
36.4368
42.1585
34.6749
28.894
24.9299
24.8883
29.79
39.1055
47.4257
52.5179
63.8834
78.6458
89.2576
92.0981
88.4952
84.0155
78.2809
73.834
71.8333
70.7094
73.5844
77.9998
82.4799
87.2051
86.691
81.2544
72.0385
59.2859
42.6786
29.6976
26.7602
25.1303
24.6155
23.8754
27.3742
38.1541
51.2659
62.3709
69.7646
73.2871
73.7695
72.383
69.8572
68.4388
66.4033
65.8689
65.3321
65.9635
68.3927
71.6636
74.6579
76.3356
75.0217
69.5738
60.4475
49.7169
39.8272
33.731
32.2842
32.3677
31.9769
32.0183
32.7236
36.3149
45.3166
61.4643
75.8764
87.0614
92.6439
92.771
90.4243
87.4615
82.6724
76.9909
72.1539
73.3465
75.8573
78.9037
82.4824
83.8092
84.7615
78.1355
69.9189
55.8143
43.0898
32.4059
26.9701
26.7818
31.3447
36.448
40.0796
42.1821
42.5739
41.2711
38.4875
36.0139
38.1199
47.8758
61.3013
76.7596
92.7767
105.599
110.751
112.553
113.255
106.509
104.516
101.539
101.281
101.57
106.844
111.437
113.05
109.998
105.696
95.9344
81.3301
64.7843
50.3849
41.2017
37.0586
36.3155
37.3582
38.4652
39.4715
41.2371
46.199
56.2418
70.5457
102.535
122.764
134.881
135.485
131.572
120.278
112.495
105.772
106.77
112.273
123.176
137.435
141.785
137.959
127.252
111.713
97.4992
84.5309
72.1998
60.9729
50.1674
39.6764
34.2989
37.7333
48.1734
57.9278
61.3504
59.8849
57.5753
46.9661
35.3183
37.4296
62.8452
70.803
72.9956
71.7576
67.1598
60.4241
53.5235
47.6391
44.3122
44.5316
47.8665
52.6941
58.8408
64.6027
69.1391
69.0032
62.011
54.2213
51.5393
53.4388
58.8946
64.0541
68.5752
69.6377
67.3529
63.6758
59.1191
52.1785
38.4067
27.937
23.0472
21.9038
21.3167
21.8483
27.751
38.4815
51.4828
59.2536
62.0232
62.0693
60.5187
56.2594
50.742
46.0157
43.4374
43.829
46.7162
51.3522
55.4847
59.2104
59.82
57.2792
51.0225
45.0776
36.6051
25.2351
22.6782
24.9164
25.9741
28.6007
27.8188
18.0044
4.12
3.03706
13.8682
13.64
15.6511
13.4387
11.2088
10.3309
10.1338
10.6195
11.9576
13.9351
15.6724
15.8758
14.506
12.365
8.85378
9.54709
16.5025
22.4054
23.7487
23.282
21.8303
19.8537
17.7309
16.0432
15.8815
17.5671
21.0242
25.1115
27.9751
33.5673
37.6415
40.191
41.5895
41.3885
40.0499
37.1661
34.2978
32.3484
32.2839
34.0243
37.626
42.6017
48.1754
51.7526
51.5409
44.9317
21.3542
17.7482
19.7165
22.4434
24.7995
26.7979
27.7313
27.6067
26.8666
26.0142
25.7573
26.7377
29.8982
35.3029
40.8488
48.4071
55.4937
57.9819
56.794
54.1374
51.7282
49.9584
48.5635
47.7393
48.1751
50.3945
52.9144
55.4561
58.8498
61.0638
60.1701
52.8811
23.7551
18.8071
26.1205
32.6403
36.3005
38.7857
40.832
42.9283
45.2528
47.2608
48.6156
48.4904
47.2117
44.7948
42.1734
40.4633
42.6778
53.9901
65.8551
72.9728
75.0159
74.0758
72.2972
71.3479
72.7092
76.473
81.7554
86.1992
87.2782
83.712
72.98
51.8732
25.942
24.9017
25.7832
23.7613
32.1668
39.2924
44.011
50.9557
60.1752
68.8169
74.9083
77.5977
77.353
75.4279
72.8374
70.7242
68.8067
66.458
66.4291
67.5817
69.6215
72.0315
74.7118
75.8233
73.1974
66.0325
55.5622
43.8468
31.912
25.1006
24.7486
26.0367
24.5736
24.246
24.8923
27.0441
29.8617
32.5156
34.7883
36.1467
36.5035
35.8701
35.3302
35.0453
35.9279
38.0665
40.0312
44.4321
52.9756
56.3022
56.1076
54.3854
51.8618
49.4472
47.397
46.4372
47.4047
50.7159
55.8743
61.1635
64.5856
63.8121
57.7088
47.8909
33.1773
30.0593
34.1615
30.8294
28.4296
26.9943
27.881
32.2341
38.688
44.104
46.3417
54.6701
69.2314
82.2648
90.245
91.1239
90.2543
88.6751
87.4762
85.7895
85.5776
85.0814
87.0752
88.0561
87.5489
84.1626
79.1729
69.8723
55.5907
39.4009
28.738
24.9484
22.196
20.2607
19.0518
23.6526
33.1646
45.5993
57.6651
66.8222
72.6431
75.5217
76.4657
76.4571
77.569
76.8055
76.5958
77.8346
77.9971
77.6868
77.8647
77.9453
76.5568
72.805
66.3303
57.6898
48.4728
39.7057
32.8297
28.7815
26.1367
23.7183
22.8194
24.8592
30.4429
40.1047
54.553
69.0542
81.745
90.3716
93.8953
93.8255
92.3074
90.2341
87.9614
87.7573
84.598
84.2556
83.0937
84.9148
81.9186
81.1898
72.7757
64.3882
51.6362
40.6458
31.1385
25.2767
22.0313
21.919
24.1695
27.5766
30.3788
31.3402
30.3385
28.1211
26.4401
29.252
38.8561
52.3511
67.015
82.606
97.3077
107.686
113.013
117.33
120.012
119.674
122.632
120.93
120.894
119.435
117.807
113.421
108.776
101.667
90.7491
76.2019
60.3809
46.7727
36.744
30.4934
27.0088
25.55
25.4386
26.6256
29.7688
37.8578
51.6055
68.5431
94.2738
115.116
129.592
134.75
137.438
134.109
132.767
127.093
125.324
128.013
133.567
135.334
134.054
127.795
117.993
106.06
93.9865
83.0699
73.2426
63.1983
53.1847
44.5299
37.4578
35.8873
42.8359
52.4948
57.3824
55.7803
52.8195
46.5656
36.9932
37.4521
55.6462
64.7234
68.6011
68.6357
66.3053
62.4026
58.2734
55.0571
53.5684
53.8134
55.7608
59.0592
62.7254
66.6663
68.5746
66.2249
56.7051
47.0278
42.7326
46.6604
51.7364
55.9756
58.6078
59.7446
60.7765
58.2153
50.7982
39.504
29.0094
23.3526
21.7481
20.6666
20.055
20.7367
25.9803
35.4255
45.7458
54.2541
59.1162
60.4101
59.3006
57.8987
55.878
53.497
52.7078
53.5099
55.0415
57.4183
58.7193
59.9073
58.3806
54.3282
47.5208
41.979
35.4053
26.8212
26.9766
27.3597
27.038
26.3729
21.1353
9.92451
3.08975
2.77546
13.1455
12.633
14.6811
12.8602
11.3394
11.06
11.3331
12.0061
12.9458
14.021
14.7675
14.4479
13.162
11.086
8.17666
8.38482
12.8634
19.6629
23.1376
23.7702
22.8302
21.1499
19.4469
18.3176
18.3204
19.6837
21.4845
22.8375
23.865
29.1726
34.581
38.6394
41.7286
43.4321
44.3051
43.9802
42.849
41.1635
40.0186
39.9635
41.4265
43.7477
46.4932
48.2899
47.8858
41.5923
22.7787
18.2041
19.6246
21.8165
24.2011
26.4556
27.9032
28.4048
28.0063
27.2333
26.4727
26.4069
27.3153
30.4351
35.7807
43.3213
51.4044
56.412
58.1621
58.0432
57.3211
56.4
55.6371
54.532
53.9824
53.1773
52.7764
53.9445
55.2914
56.1511
55.5256
49.6375
24.4512
17.8269
21.3427
26.5972
31.2495
34.9899
38.6635
41.7221
44.4854
45.9246
46.6231
45.7721
44.2816
41.3083
37.9505
34.4029
35.4634
46.6044
59.1317
68.2009
73.3397
75.4215
76.2367
77.4525
78.0947
79.336
80.5998
80.9526
79.1668
73.672
62.4835
44.1821
24.436
22.1348
23.0524
26.8372
33.6343
37.7488
38.6862
43.3607
52.678
62.6791
70.9733
76.9994
80.5777
82.3741
82.9627
82.4863
81.6465
80.8833
79.2786
77.5895
75.6295
74.9803
73.9116
71.3286
66.7003
59.4652
49.5468
38.3229
28.9202
25.4735
25.5309
26.0336
24.6429
23.4104
23.4244
25.2793
27.9073
30.6018
32.8865
34.6702
35.6316
36.0235
35.609
35.0395
34.8595
35.0683
35.2256
37.8539
46.5366
51.8768
54.2818
55.1566
55.1254
54.5246
53.9792
53.7551
53.5777
54.626
56.5094
58.6507
59.6807
57.8333
51.6072
42.264
29.3126
25.2477
27.9645
28.9368
30.3458
31.6829
33.977
36.6659
39.532
40.7692
39.9761
45.1341
58.3388
72.4261
84.8601
91.4843
93.9628
94.292
95.4108
95.24
93.8075
92.7389
91.0223
87.9301
84.9056
79.8365
73.9123
63.1778
50.633
38.6265
30.4415
26.0682
22.0545
19.0345
17.6345
20.8697
27.2347
37.9185
50.5109
61.6628
69.7593
75.3088
79.0388
80.8543
83.2347
85.8614
85.6215
85.1027
85.4843
84.0004
81.567
78.4942
74.1078
68.5286
61.6404
53.6437
44.9661
36.7582
29.9828
24.9264
21.1952
18.2437
16.7329
18.7725
23.8812
31.9578
44.8416
59.379
73.3469
84.1288
91.4758
95.3793
97.214
97.8943
98.0336
94.3951
92.8375
89.5418
86.7538
83.4882
79.0972
73.3292
65.9905
56.7484
46.3921
37.0373
29.5812
24.4151
20.7214
18.6484
17.9781
18.3804
19.411
20.1994
20.0808
18.9355
18.3285
20.2153
27.8564
40.615
54.9877
70.0736
85.698
99.2426
109.515
116.811
124.698
129.12
129.193
131.841
128.596
124.483
117.988
111.656
104.331
94.0852
81.7289
67.8029
53.47
41.1856
32.4522
26.9823
23.5272
21.3552
20.1028
19.8371
20.8368
26.8864
41.7751
60.2474
82.4893
104.258
121.739
133.042
139.356
144.161
148.946
151.968
151.821
145.74
139.396
132.787
124.223
116.182
106.514
96.9001
87.466
79.0914
70.9273
63.7163
57.0797
51.3522
46.2228
44.8256
46.3018
51.9266
54.1012
51.7688
46.681
43.5648
36.9511
36.4534
47.656
55.7651
61.5479
64.0121
64.0099
62.9596
61.7411
61.0704
61.0733
62.0783
63.0443
65.0261
67.3798
69.0914
68.3083
62.7049
51.9854
41.793
36.0975
37.1774
42.6266
47.8438
50.6283
49.716
46.7204
42.5697
36.5529
29.5306
23.8932
21.4731
21.5308
20.6256
20.2911
21.159
25.4212
32.8341
40.3254
48.3363
53.8002
57.0495
58.3132
58.2425
59.0716
60.1376
60.7799
61.4383
61.8467
62.1123
61.2846
59.8909
56.1019
50.223
43.0643
37.5732
33.5546
29.1799
29.0934
28.1835
24.5172
19.8815
12.0014
5.92912
2.34187
2.59722
12.3068
11.5326
14.1615
13.1527
11.8417
11.7346
11.9806
12.3487
12.6558
12.8133
12.7844
12.2737
11.2988
9.68307
7.81888
8.4297
10.8947
16.0732
20.8925
22.8258
23.2001
22.4692
21.7153
21.5539
22.1743
22.9143
22.7975
21.5193
20.0502
24.2159
30.7824
36.0816
40.6665
44.0016
46.4971
48.073
49.0313
48.4923
47.1576
45.3959
43.8968
42.8216
42.3626
42.3419
41.4941
36.7543
25.2421
21.943
22.474
23.616
24.8285
26.4738
28.0932
29.1545
29.3508
28.8309
28.1401
27.3143
26.1937
26.178
30.2418
37.6016
46.5555
54.2237
58.9653
61.542
62.8869
63.4499
62.8228
61.5816
58.9373
55.6249
53.2901
51.508
50.1507
49.7558
49.1685
45.3401
29.1725
22.5219
21.8119
24.4265
28.5267
32.7827
36.6618
39.7132
41.8753
43.1093
43.7442
43.0802
41.4114
38.2719
34.5289
29.8772
28.9836
38.7099
51.4418
62.0815
69.4367
73.9026
76.1533
77.1806
77.1005
76.1142
74.2682
71.4983
67.5755
61.4545
51.5965
37.7433
28.2668
27.6565
30.4009
35.6433
39.5135
39.5511
35.6205
34.9929
43.6857
54.4927
64.8837
73.5628
80.4143
85.5621
89.0726
91.5156
92.465
90.7552
87.8669
83.6497
79.6788
75.0148
69.7897
64.3566
58.0646
50.4646
41.2321
32.1261
27.3038
26.9167
27.7321
27.5198
25.3932
23.1324
21.8992
22.7806
24.9286
27.4073
29.6655
31.6321
33.3871
34.4172
35.1251
35.1453
34.9239
33.5979
31.4105
31.6863
39.8637
47.2294
52.1524
55.3407
57.2494
58.2781
58.5847
58.1783
57.3094
56.0618
54.6269
53.2971
51.7044
48.8561
43.9247
37.6525
29.7595
26.6796
27.2126
28.8854
31.5612
34.6105
37.5019
39.6638
40.638
39.2969
34.8882
36.4924
47.6422
60.8993
75.246
86.995
94.4074
98.265
99.3964
100.126
98.8195
95.9651
90.4457
86.0231
79.047
72.9244
63.6897
53.1552
42.7431
34.4469
29.2367
26.9444
24.0077
22.0769
21.2233
21.754
23.2033
29.1551
41.0244
53.579
64.1093
71.899
78.1592
82.9793
85.7346
89.0304
91.6479
90.4659
88.0297
85.4287
81.0466
75.4517
69.2782
62.3844
54.9867
47.2089
39.094
31.6928
26.152
22.5835
20.2947
19.5614
20.1774
21.6228
22.7813
24.2095
33.4354
47.1889
62.0457
74.9646
84.7902
91.8691
96.5936
99.1039
99.0059
99.138
95.002
91.3943
84.8279
78.8255
71.5902
64.7608
56.6662
48.6666
40.1774
33.628
28.3621
24.59
21.4357
19.2837
17.841
17.2928
17.3403
17.697
17.8873
18.0709
18.3714
18.8246
20.5058
27.8626
41.5448
55.653
71.0677
86.9121
100.391
112.286
121.909
127.932
135.786
132.838
131.041
123.847
115.222
104.89
93.743
81.9648
69.4829
56.8335
45.4354
36.1808
30.2675
26.8747
24.4786
22.6541
21.2922
20.6344
20.3833
21.3023
28.5346
47.1423
67.8927
89.9439
110.651
126.393
138.447
148.356
155.602
159.17
155.181
151.566
140.269
127.629
115.781
104.352
94.3502
85.6301
78.0169
72.2244
67.4728
63.7601
60.8567
59.7967
57.4793
57.5676
56.432
57.0934
53.9946
48.1493
41.6557
39.1429
36.0577
35.016
40.442
45.2882
51.9364
56.6787
59.5951
61.7071
63.527
65.3939
66.9605
68.2757
69.8976
71.1162
71.7689
70.7613
65.9834
57.6611
46.8517
37.8883
32.7289
31.5761
33.3718
35.9706
38.0391
39.0516
38.655
35.8283
30.4982
25.2758
21.7161
21.0561
21.8842
21.805
21.9001
23.0378
25.823
30.532
35.2484
41.4119
47.0222
51.2505
55.0085
58.0767
60.4726
63.5567
65.8419
66.8269
66.5103
65.0328
62.3845
58.4327
52.3714
45.0143
37.5019
31.4606
30.8773
29.7965
29.2998
25.5098
18.1516
11.7269
7.01175
3.55461
1.93518
2.49297
11.3288
10.6043
14.0003
14.3797
13.0311
12.5638
12.519
12.3422
11.964
11.3657
10.6717
9.95963
9.27927
8.48733
8.23347
10.0172
11.4667
14.2686
17.9347
21.0175
22.9452
24.1124
24.8856
25.632
25.991
25.4696
23.8772
21.3517
18.3034
19.8112
26.5669
32.3669
38.0639
42.7305
46.2133
48.6639
50.2072
50.4057
49.1846
46.5889
42.9577
39.093
35.784
33.6182
32.2847
30.5041
27.4923
28.4449
28.9253
28.4982
27.7192
27.7422
28.4031
29.4275
30.3162
30.4071
30.075
28.9061
26.8157
24.5365
25.8542
32.0794
41.0082
50.6339
58.0935
63.319
66.6917
68.4228
68.7189
66.8901
62.935
58.7228
53.5075
48.109
44.0079
41.5644
40.562
39.9477
35.1268
34.2
34.151
34.6722
35.9455
37.5091
39.3647
40.828
41.8316
42.078
41.9206
40.2787
38.0511
34.9586
31.6654
27.6447
25.518
31.4328
42.4683
53.7909
62.8509
69.0055
72.4409
73.1231
71.4338
67.7806
62.9481
57.7974
52.8992
47.9298
42.2161
38.4248
39.1223
41.7693
45.0622
47.5279
47.3993
43.7136
36.7921
31.1943
35.3485
45.5521
56.5881
67.2744
76.2437
83.5996
89.6998
93.6346
95.4642
94.7969
91.0591
85.7526
79.092
70.7323
62.4615
54.5
46.7878
39.2082
31.5278
28.3284
29.1213
31.3011
32.343
31.5762
28.6218
25.064
22.4386
21.7837
23.242
25.5515
27.9532
30.2531
32.3807
34.2112
35.7535
36.4786
36.2208
33.8539
30.038
27.9537
34.0319
42.4327
49.1406
54.4481
58.1855
60.4648
61.2414
60.9626
58.7735
55.2928
50.7784
46.0725
41.6635
37.8851
34.622
33.2397
31.9515
32.3523
33.2648
34.6353
36.0235
37.51
39.1001
40.6289
41.1093
38.5339
32.5773
31.1196
39.0849
50.1968
62.767
75.6247
86.6923
95.6099
100.641
101.697
100.383
94.8116
89.2602
80.1418
71.3354
61.1802
50.683
40.4606
31.2288
25.7433
23.6082
23.9923
24.4875
25.1939
25.4136
24.9377
23.7194
23.2765
30.0145
42.6523
54.7474
64.8895
72.8649
79.9462
85.3593
87.9241
90.5497
90.9072
88.0762
83.3816
77.0947
69.9401
62.0813
54.0064
45.9794
38.2091
31.2645
26.196
23.7071
23.6812
24.8186
26.3475
27.7236
28.2513
27.5922
25.4643
24.1777
33.6267
48.4516
62.6684
74.7771
84.2162
91.0742
95.0929
97.6895
95.5993
92.9597
85.985
79.7594
70.6866
62.4541
54.2823
46.8611
40.1412
34.7728
31.1846
28.5414
26.7409
25.2207
24.0759
23.1891
22.8351
22.9863
23.5183
24.2345
24.8731
25.3813
25.302
24.6016
23.5323
26.9653
40.0963
54.6138
70.6931
86.5108
100.359
112.059
119.402
126.401
127.711
122.286
114.852
103.982
91.6346
78.9867
66.865
55.6138
45.8751
38.2193
33.6545
31.287
29.8567
28.7172
27.6223
26.8537
26.6303
26.7416
26.5727
26.2646
30.8072
50.6663
72.1663
95.068
115.41
131.971
145.923
154.634
161.851
161.021
150.624
138.731
123.856
108.12
94.165
82.3398
73.4057
66.8487
63.7188
62.9881
64.2006
66.4153
69.6264
70.3471
71.1896
67.7748
64.5804
56.1276
46.1892
38.4623
37.0821
37.112
36.0807
35.4369
36.1125
40.837
46.9243
52.7748
58.4529
63.6139
68.4177
71.9249
74.6606
75.8555
76.1704
73.7076
68.7477
60.9353
51.6486
42.7258
35.3141
31.8053
30.7152
30.7285
31.2909
31.7923
31.976
31.775
31.1244
28.4369
24.5084
21.7934
22.4034
24.2923
25.3565
26.0429
26.7172
27.357
28.5362
30.2161
33.4446
38.3574
43.5903
48.9445
54.9124
60.4111
64.3933
67.2957
68.8137
67.7415
65.1697
60.922
54.9079
47.1548
38.9176
30.5879
24.69
27.9096
27.9946
24.5977
18.0053
10.1427
6.34764
4.09528
2.39939
1.9033
2.44546
10.4422
13.0591
16.1983
17.2872
15.5467
14.6205
14.4454
14.4606
14.6347
14.6341
14.5002
14.3367
14.2956
14.7073
16.6801
19.8727
21.6929
22.346
23.6512
25.2175
26.3741
26.9842
26.7001
25.9929
25.319
24.5821
23.8388
23.3348
22.838
23.6566
28.9873
32.6023
34.6084
36.7459
38.6771
40.1146
41.3951
42.0852
43.0457
42.9616
41.8603
39.9527
37.7868
35.4984
33.3944
32.1992
30.6712
30.3016
30.288
30.4649
30.8479
31.3546
31.9361
32.4164
32.0201
31.042
30.3341
29.5325
28.9615
29.5741
32.8227
36.5098
40.9341
46.2752
50.3107
52.8953
54.7252
55.9922
56.8047
57.1355
57.3857
55.8809
53.237
50.8137
48.4946
46.7122
45.599
44.5514
41.7198
39.0205
37.8582
37.0413
36.9411
37.1088
37.7759
38.5934
39.4201
39.566
39.2549
37.4187
35.3142
34.0512
35.1616
37.504
39.3785
41.1993
44.0145
47.4136
50.0267
52.3775
54.4812
57.096
60.9789
62.4711
61.418
58.8676
55.5616
51.341
47.6705
45.2806
43.2526
42.2011
40.9975
39.9937
38.3926
36.9939
38.3737
42.2471
46.5907
50.7972
54.1288
57.264
60.3698
63.2408
65.7465
68.8895
70.8853
72.4315
74.0608
72.0526
69.0209
64.4201
59.0135
52.8686
46.4081
39.7265
36.1652
35.5086
35.808
36.0955
35.9318
35.064
33.8345
32.6104
31.9665
32.0587
32.8895
34.1836
35.6092
36.5211
36.926
36.2187
34.7356
32.6226
31.1795
31.0576
32.511
35.2258
40.8045
46.5737
48.7931
49.7122
50.1292
50.333
50.4627
50.4355
51.1765
50.2966
48.1652
45.1672
42.0504
39.1279
36.9629
36.952
35.8097
34.3206
33.5428
33.5998
33.9941
34.4874
34.6551
34.5909
33.7395
32.5268
33.9799
39.0918
46.412
51.9005
55.6734
59.7737
63.1083
64.6969
66.6559
67.8931
69.3826
69.8407
66.8568
63.4369
57.104
50.3737
43.2059
36.9775
32.4952
30.3127
29.2729
29.5005
29.7749
29.5463
28.5839
27.8842
27.0263
26.5208
27.9707
36.9173
46.5555
52.3633
57.16
60.6709
63.3571
66.6545
68.1954
71.3592
72.9185
72.0727
69.6629
65.6605
60.825
55.436
49.8834
44.4978
39.7644
36.8646
35.2007
34.1664
33.5202
33.2749
32.7413
32.6729
32.3355
31.8831
30.9506
30.7264
38.3965
52.7425
61.8229
67.8607
72.8325
76.9997
80.1313
83.6671
84.4732
84.664
81.2406
76.9485
71.1081
65.6128
59.4322
53.8421
48.9418
44.587
40.5435
37.2894
34.0894
31.7178
29.6908
28.5169
27.4802
27.1234
26.8317
27.0208
27.3735
28.1085
28.9793
29.8256
30.4762
31.1931
39.4452
54.4267
65.8611
73.6501
81.047
87.762
95.775
97.0212
101.77
99.3885
95.5608
89.6353
83.0833
76.1024
69.3565
62.7048
57.4771
53.0828
48.8819
44.3325
39.8253
36.4048
34.2642
33.43
33.7116
34.739
36.054
37.437
38.831
52.3781
74.9745
91.1183
103.482
114.603
123.573
132.445
135.871
139.974
136.315
130.172
122.346
113.747
106.297
99.7727
93.886
89.4371
85.5789
82.9607
79.7077
77.8803
73.1409
70.5374
64.4201
58.6535
52.1734
44.6501
46.0364
50.377
52.8181
53.4005
52.5985
51.6356
52.6699
56.0531
60.6334
65.3657
69.7272
72.6351
74.1182
73.7986
73.8333
74.0498
73.7808
72.0515
67.8039
62.9048
57.1909
49.7006
46.2205
45.2959
44.5201
44.7942
45.0701
45.3168
44.5106
43.2133
40.6899
34.4459
27.9686
25.711
25.0682
25.4699
26.096
27.3926
29.0586
31.679
34.984
38.676
43.3148
48.0165
52.1946
55.5828
58.5213
60.1217
59.3168
57.3853
55.2479
52.8195
50.3871
47.3265
42.7636
36.6911
26.9673
15.7447
11.9435
12.5675
12.3117
9.56074
6.78477
5.13196
4.0148
3.38417
3.02738
2.51106
7.60538
9.80433
10.9437
11.9704
12.8339
13.5856
13.9423
13.9966
13.6037
13.0466
12.1693
11.0361
9.3152
6.5685
21.1864
22.0385
22.7723
23.3889
23.9096
24.3076
25.0769
25.9483
27.0289
27.7119
28.0096
28.2308
28.984
30.7521
33.3643
36.3267
39.3897
42.2586
44.5375
46.1195
46.367
45.7594
44.9761
44.061
42.6928
40.709
37.533
31.8957
23.5625
18.1754
24.369
28.2144
30.6544
31.7124
32.1329
32.4647
32.8541
33.5618
34.0319
35.0383
36.4523
38.5184
41.5462
45.3491
49.1878
53.2687
56.7679
59.3323
60.8678
60.7802
57.5525
55.867
53.0208
51.7486
49.3415
46.9533
43.4781
37.6716
26.5638
20.1006
27.8952
30.3144
32.5981
35.0105
37.4856
39.8527
42.1212
44.2146
46.0483
47.7962
48.7106
49.2432
50.0048
51.4542
53.7908
57.816
62.238
67.2056
71.7394
76.8207
78.4474
79.8709
77.1251
73.8881
70.4749
65.5867
58.4177
46.7685
32.9107
29.26
31.5084
38.3064
43.1708
46.3616
49.743
53.8247
58.0241
62.5889
67.4286
72.3133
76.6875
80.4095
83.0583
83.7846
82.1664
80.1884
77.6444
75.4702
72.2208
67.1356
59.9065
49.458
37.5234
30.5267
28.5324
28.3067
28.8901
28.9093
28.4677
26.9608
23.309
26.9518
29.1972
30.0629
30.0919
30.9319
32.0505
34.7641
37.0897
40.1874
42.567
45.19
47.8244
51.4561
54.9392
58.5701
62.0678
65.1323
67.282
67.9368
66.5025
62.8279
59.2429
56.1085
52.3046
47.6691
41.3502
33.4787
25.8749
24.5772
26.1226
27.7045
28.2441
31.2223
36.1048
42.1484
48.2997
54.3605
60.0475
66.2762
72.6747
79.2884
85.994
91.9293
95.9993
100.356
99.2252
95.1951
90.2628
84.7053
79.5163
73.4129
65.7356
56.6022
47.9399
43.2041
39.8875
38.119
37.5215
39.5453
21.1088
21.9392
27.9344
35.1075
41.6877
47.5578
53.162
58.9549
63.3764
69.0977
71.1511
74.5555
72.7899
72.0439
68.5263
65.4541
62.3707
58.808
54.2801
48.4885
42.1433
35.4047
30.1118
27.7332
27.1222
27.0869
26.9467
26.6232
26.0508
25.9088
28.1867
42.1537
55.9261
65.7847
73.9519
80.7582
85.9543
88.1062
88.8486
84.6406
84.0575
77.4697
76.0634
68.7814
65.2078
59.1574
52.6716
46.6315
39.5948
34.5285
29.3645
27.362
26.7234
26.9991
25.9062
24.6142
23.1105
21.846
20.8961
20.2671
26.7236
29.4906
36.1394
46.4767
56.9304
65.8967
74.3941
79.9361
84.9273
84.2591
84.7382
82.5268
81.1524
79.3942
77.0289
74.3522
72.2947
69.2309
62.7548
56.1036
48.0603
40.7115
36.2418
35.1703
35.3687
34.5919
32.8911
31.6691
30.8344
31.2524
33.6212
48.05
68.2553
80.2956
88.9822
94.8483
96.6513
91.581
87.1796
84.3694
81.9415
79.6555
76.3975
72.5476
70.4341
67.3755
63.4412
59.3169
55.4579
51.4663
49.0976
48.2922
47.9252
47.1207
45.5265
43.4162
41.3465
39.2967
37.4168
36.4234
32.5577
33.3233
39.5938
41.421
47.1145
55.4793
61.9996
68.663
74.7837
80.2755
83.3874
83.1595
81.3757
77.5257
72.7798
68.0312
63.4896
60.5216
59.7184
60.2493
61.2078
61.945
60.5305
59.5705
59.1631
58.8508
58.5013
59.0405
56.4362
47.2871
20.8593
24.3256
22.6319
20.0845
18.8438
25.1698
43.3267
41.5679
46.1685
50.2927
53.0087
55.3091
57.3248
60.094
61.2344
60.307
57.5565
53.8473
49.3003
44.2742
39.2161
34.6366
30.9273
28.2271
26.4185
25.1425
23.1541
19.1118
13.0838
7.09917
10.3039
7.54218
8.53699
9.97109
11.2299
12.2323
12.9528
13.4263
13.4259
12.8872
11.7661
10.3141
8.84605
9.62502
21.3665
15.8128
16.8113
18.1324
19.765
21.3072
22.6059
22.8323
21.7645
19.2441
17.1762
16.6003
17.828
20.8771
24.7566
29.1824
33.7774
38.2414
42.1184
45.4895
47.699
49.2337
49.6822
49.2561
47.7979
44.876
40.307
33.9777
26.3977
29.165
26.3516
25.0742
28.9009
31.1119
32.2087
32.4079
31.8434
30.6471
29.2625
28.2102
28.3008
29.498
32.442
36.7073
41.8514
47.3777
53.0789
58.6375
63.4565
67.0093
69.2078
69.3733
68.0229
65.5019
61.1424
55.8574
48.8549
40.3161
30.0779
31.9488
32.0789
30.0316
36.6249
42.3844
47.0083
50.4762
52.5585
53.2355
52.2817
49.9416
46.3504
42.6168
39.5484
38.0371
38.9504
43.2143
49.4102
57.0652
65.5273
74.139
81.9855
87.2801
90.5838
89.5389
86.1236
80.2264
71.2819
59.1085
45.1293
42.4068
27.8264
21.5772
22.9623
26.9824
31.932
37.4637
43.9408
51.1935
58.9765
66.827
74.5625
82.0424
88.084
92.5572
95.9659
97.5741
96.5181
93.0842
89.094
83.3405
74.9021
63.4229
50.9068
38.2134
24.1436
19.4766
19.2465
19.1319
19.4304
28.6227
24.604
21.0698
23.91
26.2047
28.3707
30.6303
32.233
33.0167
32.6381
32.1718
31.8561
32.512
34.7578
38.5418
43.3378
48.9668
54.9718
60.7745
65.9336
69.9949
72.9272
74.3741
73.9339
71.4934
68.2378
63.0287
54.8923
44.1384
30.7749
29.0749
27.1966
25.0331
27.0011
30.2512
33.8658
36.7335
39.2354
42.5781
46.6913
52.3024
59.431
67.7128
77.0053
86.7153
96.226
105.087
109.823
115.591
116.559
114.636
110.26
103.436
92.9186
78.3588
63.3969
51.6072
32.1057
22.2718
24.9928
40.8762
23.7425
17.0324
21.4436
27.145
33.4159
40.6209
48.2797
56.1354
64.5712
72.2699
79.0172
83.7574
88.4354
87.7876
86.8789
83.7412
78.7529
72.471
64.1509
53.664
43.0855
32.8352
24.8816
23.6838
23.6995
22.6466
21.1215
19.4008
18.2306
26.6278
33.6294
40.9545
53.9016
65.6451
77.1378
88.8715
100.213
110.646
118.514
122.961
123.641
118.208
112.893
101.573
91.6907
76.5552
61.905
45.8941
33.6528
27.9315
25.6982
25.3771
24.033
23.1722
22.2059
20.5677
18.2649
16.0565
14.9493
22.1567
27.0619
30.1016
44.9545
59.0005
72.1948
84.3993
96.7583
108.455
119.481
123.192
128.218
126.291
119.28
110.657
100.375
88.5321
75.674
63.3556
51.4656
40.5535
34.8928
33.5353
33.0594
31.275
29.2917
27.1168
24.5379
21.7326
20.0332
31.2819
33.9925
55.3811
73.0881
87.8074
101.598
114.585
126.091
134.016
135.2
130.393
121.149
106.152
86.8103
67.0619
52.3539
45.16
44.0015
46.0958
48.9442
50.3367
50.0128
48.2589
45.5614
42.3518
38.6341
34.5213
30.0369
26.371
24.5709
36.5969
37.6165
32.5955
49.4879
59.3655
70.8938
80.6772
87.881
91.3588
94.312
94.368
92.6122
88.297
82.2791
75.9275
68.1827
59.9588
53.1441
49.2897
49.5089
52.7538
57.7494
63.1299
67.5608
69.856
68.3304
64.6032
59.4304
53.7471
47.4015
56.2054
28.7986
26.2135
24.6947
22.9597
24.3423
37.3599
46.1691
48.9601
56.7223
62.1524
65.2149
66.6707
66.7277
65.072
62.2102
58.1814
53.2956
48.1263
42.7962
37.3092
31.7326
26.9106
23.4636
21.5213
21.1224
21.948
21.5544
18.4713
12.9227
8.18893
12.2597
9.3088
10.7748
12.0832
12.8186
13.1923
13.4621
13.7082
14.0666
14.0387
13.387
11.7551
10.009
11.0513
22.0213
16.0573
16.8893
18.3848
20.1709
21.5934
22.3315
21.1304
18.4332
16.2005
15.9494
17.6515
21.1714
25.7646
30.5011
34.6435
37.8927
40.4142
42.3044
44.0498
45.3469
46.21
46.7535
47.0005
46.6303
45.5521
42.9173
38.1624
31.2165
34.4276
27.329
25.5999
27.5575
28.0347
27.8372
27.4469
27.3298
27.494
28.3359
29.942
32.3697
35.3171
39.2857
43.7192
48.0581
52.5214
56.8211
60.7445
64.2574
66.7708
68.2274
68.9718
67.3923
65.5991
62.4931
58.7888
53.2657
46.0788
36.7157
39.2626
34.572
32.9548
38.2501
42.4142
45.5129
47.6876
48.9168
49.0444
48.2292
46.6293
45.2494
44.452
44.5701
45.4926
47.8381
52.663
58.9981
65.7631
72.3483
78.7907
84.0298
88.8288
89.9481
90.1657
87.377
83.1777
76.9345
67.2502
54.4103
52.7831
29.0749
20.7634
24.0605
30.1611
37.0399
43.9476
51.2061
58.2835
64.7332
70.6616
76.2457
80.9213
85.1373
89.1888
91.7237
92.45
92.5461
90.7762
87.6248
84.9433
80.6548
72.8792
62.0182
49.7959
36.1274
22.2884
18.7724
19.6581
20.9576
29.7541
25.9737
21.3158
22.8818
24.6704
26.7269
29.1835
30.6254
31.3467
31.0972
31.5093
32.9386
35.6743
39.9719
44.9692
49.6199
53.9763
57.6065
60.6715
63.1597
65.1984
66.3407
67.7722
68.0149
67.3878
65.8353
63.7629
59.3146
51.1876
39.3422
36.5101
28.7327
26.2717
27.0484
30.3052
33.9298
37.5898
41.7599
46.5599
52.5097
59.4847
66.8664
73.5909
79.805
86.0708
91.9592
96.0669
100.201
103.795
105.591
106.063
105.457
103.149
98.5672
88.7786
75.4829
62.7205
47.8081
28.9838
23.4115
41.2163
25.2394
19.5638
24.7954
31.7915
40.0468
48.589
56.2515
63.3232
69.5735
74.278
78.7241
83.8517
84.7805
86.6469
85.6229
83.1914
79.7572
75.4973
70.2018
62.3439
52.3368
42.2369
31.5487
23.1463
19.9175
19.9232
21.215
20.6705
18.8846
27.2699
42.8839
53.1968
66.8355
78.3221
87.8307
97.2188
104.5
112.316
117.598
121.257
124.898
119.664
116.326
107.099
99.5062
86.0682
73.6428
56.5279
41.9369
31.4027
25.3608
23.3909
23.5988
24.8941
25.2251
24.0771
21.4733
18.1773
16.0273
23.0758
28.5553
44.3654
60.5413
73.1267
84.6154
96.7755
106.083
115.734
127.117
131.745
137.701
136.39
134.066
125.758
115.66
104.228
91.5494
78.0205
63.9863
50.032
38.9889
32.41
28.7799
27.6818
28.7427
28.7408
26.8243
24.2457
21.6107
31.755
43.9916
75.1752
95.6367
111.061
122.695
132.716
142.08
147.38
148.752
144.442
135.932
123.785
106.53
84.9021
65.2699
51.472
44.6364
44.3803
46.0804
47.9719
49.3351
50.5319
50.8935
49.7884
46.4949
40.3219
33.1366
27.1058
23.8418
38.0377
43.6014
46.6633
57.7666
67.1596
75.9626
81.3427
84.5695
86.0241
87.3878
87.5911
87.3869
87.0236
85.4111
82.6992
79.2518
72.4914
65.2943
59.521
56.2849
54.9667
55.1059
56.5518
59.2431
62.081
63.6373
62.5653
59.155
54.8668
49.9105
60.5217
33.0331
27.9322
23.3113
23.1328
35.2547
50.4686
50.6188
55.1453
60.7932
63.6632
64.9679
65.4184
65.3585
64.6409
62.6965
60.3354
57.2779
54.0686
50.3029
45.492
38.9723
31.6454
25.3111
20.4296
17.4096
15.7328
14.4052
12.5035
9.31396
6.39491
13.9599
11.4177
12.5888
12.9968
12.7766
12.4265
12.2414
12.1719
12.58
13.3216
13.8695
13.1844
11.4745
12.1602
23.0543
17.3993
17.703
18.9721
20.44
21.3031
20.7718
18.3748
15.7881
15.1652
17.111
21.093
26.2035
31.7754
36.1561
38.8131
39.6716
39.8451
39.7978
39.908
40.3113
41.1375
41.9592
42.744
43.7142
44.3607
44.0713
41.5278
35.9477
38.2091
28.0996
26.9454
26.9762
25.4376
23.791
22.8628
23.3823
25.1367
28.2406
31.9573
36.248
40.7022
45.1859
49.4897
53.7389
57.2087
59.7204
61.5889
62.7353
63.8974
65.0819
65.0272
65.1558
63.8242
62.157
59.779
56.1203
50.5513
42.6153
44.4172
36.7879
36.2445
39.5119
41.7461
43.0233
43.5314
43.1954
42.5639
41.9106
42.2216
43.5906
45.9764
49.0364
52.4582
55.8624
61.1803
67.6893
73.4898
78.3291
81.1714
83.6679
84.6749
86.7839
86.6547
85.5357
83.6688
80.3628
73.9079
62.9035
59.6686
33.9975
22.0859
26.1503
33.6496
41.7221
49.8603
57.5361
64.0384
69.1492
72.7384
75.243
77.4046
79.9201
81.6387
82.5732
84.2725
84.919
85.2184
83.9658
82.074
81.2442
77.9795
69.8643
58.4672
45.2768
30.5566
19.5534
19.9521
22.3749
31.2835
27.505
23.0535
23.1917
24.0792
25.5613
27.4745
28.2915
28.4951
28.7835
30.3762
33.563
38.2965
44.5449
50.9271
55.7804
58.9514
59.9943
59.5814
58.9279
58.4263
58.4012
58.3987
59.1559
60.1787
61.1511
61.6805
60.7554
55.9377
46.0243
42.4531
30.6545
29.68
28.3989
30.2917
33.0015
36.6893
42.264
49.1982
57.2455
66.6385
75.215
80.5298
83.1057
84.5121
83.7626
83.4354
84.7433
84.7313
86.8
89.9276
93.5539
96.1665
97.7122
93.7336
83.9658
70.2034
57.0168
40.5548
26.3198
40.523
25.7981
21.7472
27.4706
36.5426
46.7966
56.1611
63.2772
67.881
70.7363
72.384
75.3082
76.4039
77.5532
78.4926
78.2548
78.0221
77.4118
76.076
73.5171
68.6052
60.315
50.2197
40.06
29.1812
20.9831
19.6153
22.4547
22.1534
19.4568
27.7193
52.6119
63.3241
77.2287
87.5712
94.6807
99.2355
102.203
106.925
110.892
114.113
115.026
114.783
113.155
105.494
103.337
91.3778
81.5817
65.9148
51.2277
37.8678
28.9781
24.6892
25.8738
28.669
29.214
27.5419
24.7047
20.9492
17.9859
23.5679
31.6747
57.0428
71.997
84.1501
92.4218
100.501
109.199
114.112
120.095
129.177
134.127
137.339
135.48
132.425
125.466
115.312
104.529
90.8195
76.0961
62.2842
48.8118
37.546
29.7562
28.5849
31.4859
32.213
29.6802
26.0463
23.1952
32.0059
64.3914
94.2139
116.127
129.722
136.309
141.781
144.054
146.582
148.485
149.117
144.946
136.277
122.589
102.762
80.9592
63.6505
51.9614
46.5097
45.725
46.5492
48.8882
52.5348
56.1408
57.7341
54.7129
47.2833
37.3898
28.3997
24.3684
39.3577
51.0044
55.1798
63.9666
71.5439
76.4187
77.6247
76.6115
76.8856
77.0368
77.6748
78.6459
80.4543
83.2163
84.9373
84.7681
81.9516
74.7416
68.4523
63.429
59.4323
55.8042
51.8125
50.2609
52.0882
55.4668
58.1981
57.8899
56.1115
53.2327
63.5195
34.792
28.2821
23.8894
31.4204
48.7222
55.2283
54.8335
59.301
62.4519
63.0586
62.9746
62.9916
62.6296
61.6742
61.1085
60.2232
59.5271
58.0538
55.9436
51.9848
45.4273
36.6175
28.0225
21.1691
16.8241
12.0838
9.08847
8.20257
7.10376
4.74367
15.7738
12.8777
13.1524
12.8904
12.6304
12.3362
11.9338
11.432
11.4139
11.9942
13.5025
14.2236
13.1558
13.1486
24.3278
19.1599
18.7464
19.4322
20.2796
20.3865
18.9838
16.2064
14.3778
15.2947
19.3395
25.1427
30.5599
36.2254
39.8724
40.4922
39.5758
37.9457
36.333
35.0112
34.4171
34.7271
35.9029
37.7987
39.9135
42.2542
44.1525
44.1859
40.4735
41.2549
28.3876
28.3122
27.0783
23.7587
20.4997
18.8883
20.0062
23.2636
27.8728
33.1607
39.3404
44.7561
49.6324
54.0938
58.3791
60.6541
61.1445
59.6021
58.3931
57.5477
57.4436
58.528
59.4916
60.3756
60.3073
59.7524
57.9061
54.1521
47.9775
48.4118
38.3224
39.6223
40.9373
41.1086
40.2269
38.4491
36.4541
34.8469
35.0087
37.4272
42.0209
47.6905
53.2021
57.8751
61.8685
67.7549
74.6602
79.938
81.86
81.5495
79.9152
78.7462
77.0815
77.9437
80.291
81.9863
82.6893
79.7198
71.2848
64.3984
39.9719
23.4387
28.0899
36.7459
45.7137
54.3899
62.5151
68.576
71.7695
72.7594
72.5521
71.7892
70.8092
69.8894
70.347
71.3258
72.9304
75.2951
77.8534
78.7919
79.3292
79.2557
74.6964
65.0926
52.0301
37.7699
22.892
19.871
23.1185
32.8168
29.0392
25.1379
24.307
24.0719
24.7037
25.8636
25.9901
26.1741
26.9195
30.1013
34.7276
40.815
48.0639
56.0758
60.8461
62.8315
61.1327
57.8449
54.082
51.1895
49.5379
49.3756
49.8219
52.0095
55.3654
58.9349
61.05
59.2362
51.5207
46.4288
32.4885
33.8219
29.7529
29.5009
31.4842
35.7541
42.0874
50.4894
61.4752
73.1964
82.8463
86.8493
85.8232
81.0037
74.1863
70.4863
67.9465
68.5042
70.7741
74.0174
79.4041
86.3656
91.5733
95.1351
88.4734
75.6648
62.2215
47.6363
30.9737
40.8579
27.1534
23.2409
30.0731
41.4504
53.2947
62.3248
67.429
69.0908
68.2758
67.9715
67.4247
65.5502
66.6608
67.3847
69.39
70.3596
71.5696
73.4961
74.2425
72.2732
66.1873
56.5003
46.1231
35.3232
25.3034
21.8747
24.0851
23.2799
20.0264
28.1577
60.3955
71.765
85.0689
93.4668
96.3824
96.6356
96.0227
96.5639
97.3931
98.9749
102.989
101.604
106.299
101.132
101.202
94.0944
86.562
72.2976
58.3747
43.4591
33.2911
27.8676
29.0273
31.7348
31.9672
29.6564
26.2299
22.886
20.1601
23.8813
37.2651
65.8668
79.6002
90.6156
99.1075
101.16
103.993
108.349
110.217
112.444
119.34
121.709
125.356
126.325
125.415
122.073
112.144
99.0977
86.4723
71.8182
56.3382
43.2992
33.9091
31.9404
34.73
34.6641
31.0495
26.8061
24.3001
32.6915
86.2613
113.075
135.293
143.601
144.226
138.815
130.451
126.598
129.732
136.953
144.171
144.578
135.99
118.719
96.4318
76.6341
61.6391
52.3362
47.5264
46.0869
48.3504
53.3967
59.6449
63.6853
63.3266
56.3399
44.0992
32.0464
25.824
40.1257
57.2425
61.5981
68.573
73.6321
74.4932
71.5946
67.925
66.867
65.6948
66.6281
69.17
72.6838
77.5881
83.0583
86.9163
86.5603
81.4336
74.9827
69.2178
65.3603
59.5777
50.8595
42.8518
41.4623
46.9631
53.1882
56.872
57.5436
56.393
65.3114
33.7696
28.5674
28.8248
41.2977
57.5988
58.3892
58.5138
61.929
62.3282
61.4436
60.1073
58.9736
57.8703
57.1469
57.3059
58.2724
59.6804
60.3466
59.4818
56.6354
50.9248
41.2617
30.6368
22.7428
17.6287
11.3868
7.07346
6.47581
6.51281
4.07128
16.5533
13.4874
13.1367
13.1665
13.6254
13.7235
12.9204
11.5707
10.7713
11.2334
13.0179
14.9676
14.6809
13.9128
25.6607
20.9133
19.8491
19.7274
19.7981
19.1835
17.4017
14.6747
13.6623
15.6832
21.3823
28.3662
33.5908
39.2554
41.8395
41.1816
39.0586
36.2383
33.062
30.1449
28.4387
28.262
29.7621
32.5206
36.1129
40.063
43.8897
46.3347
44.6319
43.3304
28.8466
29.2656
27.777
23.5453
18.7378
16.0211
17.5377
21.8159
27.2169
33.561
40.8737
47.507
52.4831
57.3789
61.512
62.8959
60.3071
56.1947
51.8319
48.7592
47.8953
49.0589
52.083
55.3058
57.5931
59.0482
59.1958
57.2176
52.8607
51.3463
39.2064
42.9556
42.6728
40.7312
37.6764
33.9466
29.9891
27.3924
28.9174
34.2124
41.3579
49.1624
56.2533
61.7432
65.6229
72.0801
79.7664
83.7349
83.5509
79.4362
71.9647
66.152
64.7191
68.0501
74.176
79.8106
84.2512
85.0581
78.9777
66.9113
44.3882
24.4429
29.649
39.0154
48.6824
57.8357
65.9923
71.3755
73.1451
72.204
68.9307
64.5239
60.5334
58.0752
57.429
58.5701
61.1299
64.4871
69.0501
73.4608
77.1368
78.8381
77.688
69.68
57.0389
42.7958
27.0509
20.0095
23.4135
34.1279
30.2087
26.8137
25.8048
24.8706
24.5098
24.863
24.5511
24.7728
26.3065
30.3281
36.1319
42.8387
50.5382
59.2477
64.6408
65.477
62.2565
56.3958
50.1297
44.1407
40.0428
38.9265
41.3184
44.7222
49.6607
55.8221
61.0526
61.8306
56.0473
48.8811
34.4872
37.988
31.0549
28.4693
29.5797
34.5579
42.2276
51.5026
63.8517
78.5748
88.5772
91.3981
87.7376
77.5103
67.2938
60.0145
53.2881
50.3319
52.7106
59.1968
67.6141
76.0579
86.9377
92.7894
89.9733
78.9987
65.1439
50.5076
34.7484
41.1275
30.1069
24.3002
33.0418
46.2463
58.4161
66.1685
69.2802
68.2255
64.943
62.3968
57.3373
54.5667
53.1542
54.6046
57.7971
62.5338
66.4138
70.4694
73.968
74.5707
69.8126
60.9196
49.907
38.6052
28.2063
23.9566
25.0187
23.5417
20.197
28.7882
68.4855
78.2613
89.905
95.0433
94.608
92.2426
87.0249
82.0712
78.3312
78.4368
83.8106
86.89
93.9317
94.9339
98.0831
92.9055
89.1437
76.5519
62.3384
46.9392
35.4891
29.4649
30.178
32.6633
32.5192
29.0959
25.4112
23.2939
21.8357
24.1298
46.473
70.6142
84.8497
95.9234
101.263
104.405
98.4291
95.9669
94.423
90.9481
94.6805
103.253
111.033
116.741
121.462
119.553
113.775
105.699
93.168
77.728
62.3149
47.2976
36.2089
33.2781
35.4819
34.6051
30.0696
25.8922
24.5499
32.945
105.11
132.197
149.322
149.064
143.469
126.586
114.048
111.183
113.89
122.08
132.21
142.173
144.233
132.223
111.273
88.7181
71.9676
59.4421
51.2142
47.2053
47.4003
52.6237
59.6762
66.3112
69.7093
65.565
54.4966
39.6756
29.4997
41.5594
61.5199
66.919
71.8634
74.5922
71.4206
65.152
60.3554
56.1867
53.814
54.8303
58.6583
64.5862
71.6061
78.6127
85.1983
87.8973
84.8071
78.216
72.9643
69.9878
64.6077
54.5511
42.144
34.5317
41.177
50.4381
56.7595
59.3946
58.5638
65.5935
32.9906
28.9375
33.5064
48.6845
62.0846
60.9901
61.2833
63.296
61.6325
59.5044
55.796
52.3285
49.6932
49.3964
51.5973
54.5344
58.3666
60.9031
61.5047
59.258
54.4364
44.939
33.106
24.0666
18.862
12.3659
7.17677
6.50905
7.03779
4.31107
16.554
13.5162
13.5261
14.8309
16.0369
15.5355
13.7874
11.399
10.045
10.6164
12.924
15.6791
16.0018
14.3513
27.0908
22.4338
21.0475
20.202
19.3069
18.1618
16.3022
13.7978
13.1833
16.0163
22.6209
30.3639
35.398
41.0786
42.6987
41.4826
38.7983
34.9483
30.1853
25.387
22.2602
21.7675
24.0489
28.0053
32.9265
38.4168
43.7628
48.2522
48.2545
44.0485
29.3098
29.2993
28.1456
24.4254
19.2818
15.5202
16.3339
20.8267
26.5588
33.08
41.145
48.6911
53.8076
59.1843
63.4087
63.4177
58.5566
51.7801
44.8372
38.9986
36.355
39.1254
44.0996
50.106
54.7674
58.2466
60.1383
59.9504
57.1327
52.9364
38.2423
44.9862
43.5938
40.6054
36.5032
30.9802
25.2879
22.6521
26.4914
34.1251
42.5676
50.4842
57.2984
62.9281
67.0921
74.2819
82.0645
85.4757
83.5573
74.4697
62.54
51.7869
47.6126
55.8045
67.9132
78.9127
85.9591
89.719
85.2848
65.4991
46.9309
25.4166
30.9568
40.5583
50.608
60.1899
68.589
73.3396
74.5939
71.32
64.9557
58.1643
50.8221
44.5395
41.6162
43.8494
49.4411
55.3701
61.79
68.234
74.3528
77.9987
79.0806
72.6716
60.4968
46.0274
30.2956
20.6683
23.6792
35.8669
31.6855
27.9975
27.4477
26.391
25.297
24.8494
24.1672
24.5269
26.6387
31.4946
37.66
44.7242
51.9187
60.8022
66.896
66.9113
61.6338
54.6937
46.5863
38.291
30.9555
29.0178
32.8767
39.1098
46.4478
53.8149
61.5645
64.1901
59.4011
48.3695
35.7491
41.4415
32.0486
27.4299
27.9111
33.3787
41.9804
52.5918
64.8881
81.0751
91.5926
94.8127
89.1629
75.7305
64.4044
52.7682
40.3455
35.6014
39.7439
48.3739
57.8883
70.5097
82.5495
89.8621
89.6053
80.7402
65.69
51.1658
37.1274
41.5651
34.313
25.2834
36.0303
50.1566
61.8741
68.2701
70.4081
66.7903
62.7724
57.6637
49.0572
42.1954
37.9853
39.496
46.275
53.8251
61.3018
67.4786
72.5047
75.2834
72.3324
63.3955
51.7176
39.415
28.694
24.2114
24.5868
23.3103
21.4259
31.4502
77.2813
81.591
91.5997
94.6703
91.9677
87.2474
77.4489
67.7074
59.7266
56.2701
63.8877
71.8205
81.9821
87.6612
93.6146
91.1043
89.6378
77.3095
64.1709
47.7819
35.2635
28.2129
29.495
32.8665
32.173
28.0659
24.9624
23.9122
23.3985
24.9076
58.2894
72.5708
88.4629
99.855
105.072
102.741
99.6278
85.7799
78.5134
70.1546
69.3474
76.3541
89.7744
103.686
112.212
113.288
115.127
108.466
95.6862
81.7073
65.2696
48.0327
35.198
32.2833
35.9824
35.4234
31.5676
27.8532
26.2061
34.4873
124.614
146.987
154.537
152.227
136.938
114.249
97.2352
85.7635
90.109
108.755
129.401
142.63
148.769
140.72
120.846
99.9373
81.919
66.8355
56.2919
48.6771
46.2315
49.7895
57.5366
65.4235
70.1135
71.1248
64.9894
51.6179
38.3077
47.3342
63.4866
71.1089
74.5337
74.9669
68.4408
60.8313
53.8054
46.103
41.5869
41.6151
47.7365
56.2606
64.9201
73.9461
81.9377
85.6125
83.9054
78.7423
73.8025
71.5842
69.1169
61.2324
50.68
41.9966
44.6036
52.2803
58.0584
60.2919
59.2332
64.9267
32.5907
27.0292
36.215
53.0926
63.8661
62.9171
63.1602
64.0674
61.0393
57.0071
50.543
44.6033
39.3123
38.8133
43.6641
49.8465
56.2079
60.3257
62.3997
60.4783
55.763
48.0066
34.8201
24.9141
20.2955
14.8063
9.01923
8.02544
9.37362
6.26375
16.0452
13.5023
14.777
17.0545
17.1749
15.2369
12.3403
9.79311
8.86993
10.2252
13.2387
16.5519
16.8845
14.5067
28.8657
23.9014
22.0911
20.7906
19.0091
17.2561
15.3541
13.176
12.963
16.3128
22.8896
31.0714
36.0223
41.7379
42.854
41.6682
38.8837
34.2596
28.1467
21.4642
16.2319
15.4357
19.4984
24.8023
30.9698
37.5204
44.2843
50.0448
51.0415
43.0339
30.2097
28.8547
28.3134
25.8171
21.8249
17.8646
17.1788
20.6916
25.9165
32.0976
40.1315
48.5929
53.621
59.4392
64.0832
62.9608
56.5372
48.2849
39.0854
29.8674
25.4956
30.3114
38.092
46.0354
52.6229
57.8188
60.9878
62.0965
60.5531
53.0378
38.5607
46.0575
44.6714
41.6485
36.8324
30.9374
25.763
24.3488
29.1545
36.6498
44.5529
51.5469
57.0428
61.7101
65.8306
73.646
82.4473
85.1807
81.6931
69.6504
54.6344
38.0401
34.9074
49.0612
64.3754
79.6866
88.2303
93.1085
89.7231
60.3678
47.3892
26.6667
31.8793
41.6626
51.7984
61.2551
69.9367
75.0594
75.7088
71.0775
63.5046
54.254
42.942
32.6308
26.4625
30.7142
39.471
47.8042
56.787
64.921
72.3485
77.481
79.5853
74.4851
62.6075
47.7425
32.2829
21.8506
24.2693
37.8017
32.8379
28.1045
28.27
28.0276
26.9972
25.9432
24.8892
25.1434
27.5487
32.6274
39.0458
45.7369
52.2232
60.4766
67.3738
66.9115
61.3735
53.4304
44.669
33.9507
24.4529
21.4555
27.4902
35.3884
44.8466
54.1616
62.4132
66.0508
61.4273
46.625
37.3111
44.6642
32.9063
26.422
26.1937
31.9815
41.4899
52.6721
64.5175
80.5491
92.1909
96.6529
89.7616
76.5737
65.9355
52.2436
37.3351
29.8405
33.6243
43.1549
55.4421
68.4729
80.127
89.0582
88.9198
79.9848
64.2591
50.6981
38.3159
42.6523
37.8219
27.2627
39.1503
53.0677
63.9658
70.2489
70.773
67.5767
61.7461
56.2551
45.5813
36.2315
25.5849
28.7351
39.5038
49.9835
58.3322
66.9535
72.7118
75.3603
73.2397
64.2519
51.7298
38.4316
26.9912
22.9905
25.8609
27.377
29.2786
40.5671
84.4184
81.237
90.9943
94.0939
90.6353
83.7901
72.6299
59.256
45.4045
36.1313
46.8524
59.0848
73.9264
81.1886
90.2987
89.3833
88.205
77.3375
63.4226
47.0362
33.519
26.8834
30.5201
35.4766
35.6862
32.3124
29.5812
28.1527
27.4669
28.1035
70.8189
72.638
89.4515
102.922
107.81
105.543
98.4368
88.8781
70.9312
57.9393
48.1585
54.8157
73.4318
89.7016
103.103
110.795
113.675
107.256
97.8508
83.9066
65.8199
47.1749
33.7961
35.7274
42.288
44.0188
42.7005
39.7454
37.2804
44.9233
148.989
152.941
154.109
146.592
128.44
104.074
81.2674
62.9206
66.4557
88.6668
119.682
141.94
146.897
147.893
129.779
106.764
88.0318
74.7229
61.9335
51.7939
45.3855
46.4166
53.547
61.2982
67.1919
70.887
69.6093
61.7739
48.9868
57.9709
63.6976
74.5045
76.2476
74.3662
67.0019
58.4809
48.8268
38.9724
30.5632
28.9941
38.4413
49.1613
59.9764
69.7816
77.2667
81.7547
80.5884
75.0156
70.8501
70.848
71.588
67.6064
61.1603
55.5384
54.06
56.8257
59.6645
60.1015
57.8672
63.5048
33.7435
24.9115
36.327
54.2815
63.6036
63.8479
64.3826
64.266
60.5363
54.9521
46.8529
38.3635
29.464
27.9906
36.2109
45.0552
53.8595
59.4563
62.5965
60.6515
55.8564
49.3308
36.0735
24.9909
20.9119
17.4982
12.8962
12.4234
16.3335
14.4467
15.4185
13.8155
16.3149
17.8432
16.4386
12.9831
10.0214
8.18197
8.28539
10.5632
14.1905
17.3609
17.1992
14.9985
19.8517
26.2682
28.2105
24.7746
22.7457
21.5671
19.4203
16.9897
14.83
13.0854
13.1037
16.3174
22.6358
30.8133
35.5887
41.208
42.4605
41.6994
39.3404
34.5599
28.0437
20.5604
13.6521
11.9216
17.3574
23.7375
30.4629
37.8552
45.0625
51.9452
52.7089
45.6966
36.693
34.9917
26.228
26.5646
26.9534
26.1488
23.9391
21.0487
19.5599
21.4764
25.5376
30.7341
38.217
46.7621
51.9182
58.4989
63.143
61.7802
55.2032
46.8355
37.7734
27.9462
22.31
27.3433
35.5676
44.2365
51.5227
57.7276
61.5989
63.6314
62.9414
56.7229
42.7945
41.1357
41.6073
45.4494
44.7264
41.9732
38.1117
34.2851
31.189
31.1428
35.2252
40.8499
46.7657
51.5216
55.0481
58.4721
62.1322
71.1376
80.4235
83.0357
79.1718
67.4161
52.7749
38.6341
38.1408
51.6929
67.1434
81.7344
91.1238
95.3163
90.9805
61.8374
43.4285
44.8294
39.3908
29.811
33.7317
42.9139
52.3858
61.4254
70.2811
75.6609
76.6799
72.0717
64.5482
54.4232
43.3856
32.1635
23.336
26.5007
35.8631
44.6973
55.0539
63.7463
71.6147
77.6592
79.9464
75.104
62.9262
48.5288
33.8034
23.7305
25.12
28.3637
37.1561
36.715
28.8369
28.1164
29.3717
30.1264
29.7059
28.3783
27.1854
26.8422
28.7144
33.3892
39.4716
45.6011
51.0407
58.6734
66.1211
65.6186
60.1402
52.8557
44.3649
34.4111
25.4109
22.2527
27.6218
35.9377
45.9043
55.848
64.0099
67.0629
61.9383
47.9189
45.8909
48.8653
44.7951
44.4793
32.8502
25.7915
24.9709
30.6692
40.9429
51.9856
61.9375
77.3992
90.54
95.8659
91.1622
79.4583
70.1188
58.553
46.4319
39.3038
40.6506
48.0455
59.5674
70.6908
80.4522
89.3601
86.7756
76.9951
62.2054
49.917
40.2524
38.3254
38.4003
40.0134
30.6136
31.0174
41.3769
54.5525
65.4685
70.733
72.1636
68.3763
63.4985
58.863
49.7183
42.5293
34.7817
34.6085
42.617
51.9257
59.9845
67.7816
73.4952
75.6313
72.7959
63.7155
50.7528
37.115
27.808
31.1339
36.9183
41.4952
45.3839
47.8112
56.3429
65.5779
65.499
80.5657
90.4382
94.0961
90.5731
84.0282
73.9764
61.835
48.2536
37.7508
43.78
56.0313
70.9503
78.2936
86.8875
87.6693
86.2959
75.1639
62.0109
45.2537
32.628
28.2262
34.6077
41.126
43.6634
43.3081
42.8771
42.3423
42.4518
45.9746
61.1156
66.776
55.4711
70.8076
87.7104
101.707
110.419
108.228
102.527
93.1559
82.1606
64.0697
54.0945
53.094
69.257
84.8712
102.067
109.142
110.835
107.76
98.8594
83.9745
65.5888
47.7313
40.538
47.0318
54.5617
58.6117
59.2244
57.5865
55.2841
54.5869
71.5686
83.1951
117.449
137.988
146.011
139.266
124.012
101.28
79.0124
57.4143
56.6046
81.1627
112.724
138.703
151.208
146.105
134.339
113.445
94.7003
80.1994
66.8541
54.7754
45.7178
42.2673
46.3352
55.3896
62.3284
67.175
68.5638
65.6976
54.2491
41.9418
51.264
56.4831
66.5402
76.0677
77.084
74.1487
67.066
57.8195
47.6482
37.3761
28.2266
26.5744
35.2915
46.3618
57.2105
65.668
73.4252
76.9974
74.7593
69.8792
66.3
66.9974
70.5742
71.9125
69.1946
66.1085
63.9258
63.5283
63.4805
61.8635
57.9472
50.3227
40.4411
35.1555
24.8385
25.8967
34.0218
49.655
61.5325
63.8303
64.4904
64.3372
60.4553
54.2716
45.3261
35.7932
25.3471
23.869
34.1229
43.5464
52.6574
58.4442
62.2097
60.311
54.9837
49.1434
36.7827
24.8113
21.1192
20.2686
19.1315
21.3489
25.337
23.2038
8.99891
4.26231
14.8273
14.1668
17.0529
17.0853
13.6371
10.7085
8.79125
7.92303
8.91456
11.7361
15.3359
17.5916
16.7642
14.4646
11.348
14.6583
25.3569
24.5127
22.8439
21.8979
20.0456
17.4721
15.0576
13.4403
13.5289
16.3309
21.9576
29.4945
34.0534
39.6471
41.49
41.5397
39.9691
36.1849
30.437
24.138
18.6089
16.9772
20.0942
25.3394
31.706
38.8469
46.5706
52.924
53.4445
47.2297
23.7931
19.9409
22.694
24.0727
25.4545
25.9329
25.4181
23.9054
22.5355
22.9724
25.4533
29.3873
35.8128
43.9794
49.1331
56.2194
61.3699
60.3385
54.7382
48.0605
41.0771
34.5096
30.6806
32.4501
37.7779
44.987
51.7475
57.4023
61.74
64.283
63.8875
57.0902
27.3575
22.6078
38.0696
42.4621
43.1432
41.9081
40.0853
38.3371
37.6252
38.9442
41.8887
45.372
48.5725
50.3227
51.5974
53.356
56.5578
66.2466
77.1026
79.7416
76.9985
68.205
57.2861
48.8162
50.2042
60.1014
72.7683
84.2756
92.3958
94.1872
88.2516
64.9684
29.1782
31.4549
35.3258
28.6183
33.7488
43.0118
51.3361
60.0145
68.9957
75.0184
77.1253
73.9912
67.962
59.574
51.3824
42.7148
36.8832
36.9077
41.9754
48.7505
57.4148
65.0237
72.0546
78.072
79.4179
73.8079
62.0528
48.956
34.6554
24.5599
24.4893
26.5451
23.8926
23.8087
25.2801
27.3176
29.8266
31.9694
32.6373
32.0716
30.6079
29.6513
30.5996
33.9709
38.7198
44.1825
48.521
55.2205
62.8309
62.9796
58.8522
52.9085
45.934
38.4775
32.0173
29.6245
32.9915
39.849
48.847
58.1417
65.4604
67.1161
60.905
49.7226
38.2855
40.412
49.0355
39.9654
30.9089
25.0508
24.3635
29.5314
39.9277
50.2662
57.8044
71.6788
85.9038
93.3823
92.603
83.9863
76.3235
68.6418
60.0917
55.0623
54.213
59.4402
67.0536
75.9783
84.719
88.3111
83.9302
73.6844
60.9846
48.0055
35.2072
31.2096
28.9475
29.554
28.2183
29.8953
41.0023
54.2192
64.6508
71.2747
72.8318
70.6952
67.3571
64.4558
58.0114
54.2025
51.1011
51.1026
54.1942
59.2855
65.3109
70.9314
74.702
75.9307
71.5614
62.3034
50.1173
38.2052
31.8323
33.5651
36.5116
38.6588
39.2352
39.6738
40.5269
47.3922
65.1675
79.0677
89.6037
94.1828
92.0967
86.3632
78.3388
69.8716
60.6638
54.7085
58.1066
64.0549
73.769
78.1246
87.0092
85.5349
83.5698
73.1624
59.3034
44.1849
32.8091
28.5604
33.1995
40.2176
44.7646
46.8212
47.2331
47.1767
46.7775
45.6152
43.1485
43.7743
53.5214
67.8351
84.0386
98.7791
109.001
112.049
107.194
102.04
96.2218
83.471
76.151
76.8375
82.213
95.136
105.003
108.381
110.909
107.803
97.9774
83.4778
65.8826
50.2158
43.012
43.9683
47.8554
51.4419
52.9488
52.53
50.8731
50.5873
54.8725
64.7757
109.403
130.741
139.53
136.951
124.823
109.155
90.8868
77.7
77.0778
91.8085
116.201
136.376
147.349
146.092
131.424
114.275
98.316
83.1503
70.1586
58.1613
47.2421
38.719
38.9812
47.0513
55.9832
63.139
64.6763
64.4796
58.5326
44.1223
32.8645
37.952
68.2777
74.5918
75.4804
73.2704
67.1584
58.4764
49.5906
41.1885
35.3175
34.609
40.195
48.1318
56.5061
63.9375
70.8528
72.5221
68.3521
62.1309
59.1014
60.5751
65.6849
70.6519
72.0912
70.5353
68.4393
66.3689
63.9311
59.7888
49.0879
36.4663
26.2049
24.0271
23.4115
24.3777
30.9316
43.5576
56.9427
62.186
64.1067
63.331
60.2532
54.9556
47.0361
39.1207
32.8543
32.6276
38.8974
46.0051
53.4938
58.0899
61.3378
59.0412
53.495
47.5066
37.0676
24.7653
21.2804
22.235
23.1919
26.2935
29.5194
23.4
5.37552
3.44921
14.4197
14.2051
16.6772
14.9468
11.813
9.97463
8.99506
8.92126
10.3616
13.0512
15.8779
16.9485
15.6935
13.5336
9.83751
11.6609
21.1868
23.7906
23.2668
22.314
20.7292
18.5472
16.117
14.4005
14.3891
16.5727
21.3545
27.5825
31.4992
37.0875
39.9142
41.056
40.8027
38.8103
34.7035
30.1493
25.9867
24.2728
25.533
29.1419
34.1479
40.7441
47.7192
53.1995
53.1137
46.6521
22.0672
18.8154
20.9123
22.9999
24.8864
26.2154
26.6578
26.1023
25.0237
24.5337
25.4493
27.8628
32.8827
39.93
45.3732
52.8045
58.7508
59.1519
55.364
50.6053
45.9292
42.2974
39.9033
40.0903
42.9001
47.5548
52.0104
56.7642
61.234
63.6234
62.8593
55.4612
25.0177
20.5306
31.9135
38.2515
40.3945
41.1525
41.1054
41.6099
42.6316
44.6916
46.7825
48.4933
48.825
48.0709
46.9938
47.1024
50.0101
60.699
71.6771
76.6062
75.9656
71.1283
65.4094
61.5882
63.2483
69.8797
78.7425
86.7054
91.9886
90.7683
81.802
59.3434
27.3925
28.5053
31.1238
25.6646
32.8296
41.4525
48.5229
56.6443
65.5971
72.8482
76.7636
76.2218
72.5754
67.053
61.6918
56.7317
53.0113
51.4137
53.418
56.9795
62.3994
68.264
74.1671
77.5616
77.0789
71.2766
59.8431
47.1104
34.0155
25.1461
24.5054
26.1987
24.4531
24.3589
25.1261
27.3032
30.1999
32.8239
34.6361
35.0636
34.3543
33.3422
33.1608
34.4165
37.496
41.3949
44.6791
50.3988
58.6654
60.2154
57.6358
53.5542
48.4341
43.4767
39.5371
37.9574
40.1023
45.3885
52.8801
60.6554
66.0357
66.4581
60.5076
51.1934
37.3511
36.3088
42.2596
34.4848
28.8173
25.0872
24.7996
29.7093
39.1993
47.5723
52.5195
63.8697
78.6131
89.1101
92.3417
88.4747
82.7742
79.203
75.4472
71.2289
71.3034
72.9957
78.0581
84.3153
86.658
86.4335
81.349
72.2526
59.1828
42.3524
29.8484
26.7491
25.0377
24.8092
23.7409
27.2968
38.2879
51.0696
62.338
69.9737
73.2753
73.4032
72.1701
70.7062
68.111
66.5397
64.4704
65.099
67.1643
69.5622
72.1941
75.0347
76.3964
74.9936
69.5038
60.4394
49.6568
39.8662
33.7686
32.2896
32.2181
32.1257
31.6631
32.7014
36.2327
45.2778
61.3592
75.4073
86.78
93.3005
94.4898
92.0856
86.8943
80.7607
75.8792
73.7478
72.1299
74.4198
78.6976
82.1687
85.2807
83.0949
79.7109
68.6621
56.4381
42.8832
32.484
26.9128
26.9817
31.2308
36.4623
40.2344
42.1688
42.5285
41.1538
38.6646
35.9132
38.0552
47.9511
61.2796
76.6382
92.4895
105.173
111.712
113.021
110.134
110.777
105.341
102.23
100.588
104.785
108.14
110.167
111.535
111.806
105.772
95.5048
81.3425
64.752
50.3066
41.2158
37.066
36.2681
37.1622
38.4906
39.442
41.2276
46.1328
56.2109
70.5703
102.581
122.898
134.425
135.912
130.298
122.182
109.702
101.556
99.8179
109.194
124.244
135.409
142.37
138.644
126.802
111.92
97.6559
85.2103
73.4202
61.3034
49.512
40.0103
33.9503
37.8979
48.5073
57.5009
61.4374
60.0559
57.3292
46.9929
35.3708
37.6064
62.8633
70.92
72.6233
71.5124
67.2363
60.7333
53.7196
47.9685
44.3669
44.0566
47.3806
52.9371
58.524
64.7191
69.2466
69.1165
62.0572
54.0955
51.6043
53.4461
58.8694
64.0198
68.7255
69.6609
67.3538
63.6887
59.1178
52.2454
38.3596
28.0125
22.9814
21.9263
21.3005
21.8243
27.7187
38.6068
51.5799
58.839
62.0662
62.6405
59.9286
56.0086
51.3522
46.5944
43.285
43.5288
47.156
51.3238
55.8729
58.7934
60.1932
57.0168
51.0323
45.1311
36.6481
25.1887
22.7138
25.0334
25.8576
28.5585
27.4766
17.8397
4.0593
3.05627
13.8439
13.6398
15.633
13.4175
11.2055
10.3353
10.1229
10.6062
11.9356
13.9513
15.6784
15.9185
14.4991
12.3746
8.85107
9.49155
16.4205
22.4314
23.7622
23.2316
21.8383
19.8529
17.6851
16.0366
15.8791
17.566
21.0044
25.0773
27.9739
33.5733
37.6513
40.1831
41.5143
41.5619
39.8649
37.2512
34.2222
32.3923
32.3375
34.1397
37.5418
42.6216
48.1866
51.6036
51.5849
44.8145
21.3714
17.6292
19.8262
22.4214
24.8591
26.8336
27.7553
27.6407
26.8318
26.0266
25.7312
26.7578
29.9
35.3818
40.9218
48.3833
55.409
58.0126
56.6793
54.1054
51.6374
49.4495
48.2332
47.9437
48.7079
49.9486
52.6141
56.0782
58.7867
60.5486
60.3323
52.919
23.69
18.7422
26.1069
32.5857
36.3437
38.7812
40.8073
42.9649
45.2593
47.1848
48.4927
48.6014
47.1756
44.8145
42.174
40.4384
42.6706
54.0616
65.8055
72.5971
74.9414
74.1342
72.1207
71.4589
73.0224
76.8277
81.6629
85.6351
86.63
83.2246
72.9037
51.7876
25.975
24.7985
25.7614
23.859
32.12
39.3732
44.1225
50.9821
60.1641
68.7988
74.8638
77.5585
77.4069
75.5478
73.1416
70.2089
67.9775
67.3323
66.9404
67.726
69.6224
72.5756
74.8826
75.4734
73.1213
66.3137
55.8251
43.7731
31.6753
25.1593
24.9372
26.0384
24.6247
24.2737
24.8557
27.0529
29.7844
32.5549
34.7198
36.1526
36.4557
36.03
35.2011
35.0771
35.949
38.0536
40.0467
44.3793
53.0007
56.1061
55.9241
54.3583
52.124
49.4253
47.3783
46.6352
47.5462
50.7562
55.6349
61.0539
64.4619
63.8094
57.5704
47.9786
33.2278
30.3445
34.211
30.8399
28.5036
26.9611
27.831
32.3215
38.7673
43.924
46.3436
54.6788
69.1501
82.1544
90.2854
91.977
89.3518
87.2824
86.314
86.1282
85.2932
86.3095
86.7392
87.6672
87.0944
84.8154
78.8051
69.8193
55.8881
38.9868
28.8986
24.8864
22.1223
20.2633
19.1142
23.5692
33.1763
45.6262
57.5613
67.0007
72.6608
75.223
76.3879
77.1888
76.3847
77.3795
77.6528
76.347
76.5581
77.5894
78.0573
77.7507
76.3586
72.7413
66.3573
57.8314
48.4673
39.6003
32.9012
28.766
26.0731
23.768
22.6511
24.897
30.5096
39.8674
54.3511
69.2542
81.7726
89.7486
93.6148
94.8544
94.5043
92.8228
90.3232
85.8316
85.6818
84.413
85.3284
83.1057
84.1385
78.9955
74.4136
63.2503
52.2806
40.2537
31.3232
25.1456
22.0968
21.8668
24.2853
27.611
30.304
31.421
30.3333
28.1195
26.3867
29.3962
38.7404
52.1973
66.9095
82.8452
97.4183
107.356
113.749
116.558
118.505
121.625
119.394
120.048
118.049
117.568
115.64
114.112
109.243
101.315
90.5909
76.3097
60.5443
46.7538
36.7074
30.4672
27.0119
25.4671
25.5672
26.4694
29.8027
37.84
51.6369
68.5673
94.2558
115.286
129.16
135.322
135.598
137.537
132.386
132.803
131.863
132.991
133.202
134.555
133.952
128.034
117.859
105.813
93.9349
83.5887
72.6396
62.6049
53.5893
44.5229
37.4385
35.9194
42.8126
52.4607
57.7921
55.3854
52.7835
46.9014
36.9684
37.4065
55.6364
64.4967
68.4937
68.8929
66.3283
62.2951
58.0317
54.6653
53.2315
53.9058
55.8898
58.6901
62.7964
66.6305
68.8197
65.9856
56.8181
46.9792
42.7495
46.629
51.8275
55.8933
58.6612
59.7828
60.6405
58.1829
50.7557
39.4384
29.0047
23.3608
21.7135
20.6848
20.0465
20.6962
25.9433
35.3279
45.9194
54.5059
58.6679
60.2039
60.0495
57.6548
55.0481
53.7663
53.195
53.6932
55.2512
56.7403
58.9436
59.5728
58.7293
54.0731
47.654
41.8798
35.4811
26.751
26.9409
27.5326
26.9242
26.1046
20.7966
9.91661
3.01891
2.78579
13.163
12.6342
14.7328
12.8753
11.3594
11.0621
11.3458
12.0171
12.9532
14.0295
14.7405
14.467
13.1426
11.084
8.1736
8.37258
12.8372
19.6466
23.1007
23.8009
22.8414
21.1331
19.4323
18.3425
18.3014
19.6731
21.502
22.8406
23.8625
29.1641
34.5764
38.657
41.6588
43.5188
44.2285
44.1121
42.7321
41.1719
40.0077
40.0561
41.2516
43.8426
46.5536
48.2934
47.8961
41.5922
22.752
18.2113
19.5951
21.8047
24.2124
26.3906
27.9585
28.3808
28.0383
27.1947
26.5087
26.3746
27.3359
30.4055
35.7181
43.2986
51.4203
56.492
58.269
58.1394
57.5883
56.9984
56.1245
55.0145
53.4291
52.9202
53.3984
53.9121
54.9198
56.2102
55.609
49.7025
24.7708
17.9271
21.2558
26.7384
31.1224
35.1527
38.5141
41.8036
44.3387
46.0777
46.3111
46.0282
44.1122
41.425
37.9019
34.4335
35.4435
46.6418
59.2521
68.3137
73.0956
75.355
76.6253
77.2057
78.0987
79.4659
80.683
81.0104
79.1859
73.7416
62.5173
44.2156
24.4462
22.1454
23.0339
26.8202
33.7708
37.8246
38.685
43.3313
52.6642
62.6813
70.9962
77.0165
80.5584
82.2112
82.736
83.057
82.6997
80.4786
78.5811
77.1178
76.2893
74.8882
73.5469
71.471
66.8629
59.1724
49.4921
38.5838
28.9793
25.2796
25.519
26.1219
24.524
23.3921
23.4579
25.2226
27.9616
30.5845
32.8924
34.6285
35.7517
35.8787
35.6179
35.0898
34.7899
35.087
35.2022
37.8774
46.5206
51.9567
54.3847
55.1488
55.0351
54.5441
53.9346
53.3976
53.4834
54.4994
56.5003
58.7683
59.7091
57.8271
51.7063
42.4689
29.4361
25.3632
28.0152
28.8907
30.2046
31.7885
33.9499
36.6465
39.3932
40.8036
40.0278
45.2028
58.4134
72.3852
84.5872
91.956
94.3941
95.061
94.8062
94.9452
94.7519
92.8239
90.3848
88.2767
84.6062
80.5213
73.2469
63.5732
50.5406
38.3157
30.7438
25.8573
22.0627
19.0295
17.6467
20.8564
27.2481
37.8992
50.5149
61.6038
70.0096
75.199
78.3689
81.7415
83.649
84.3724
86.5325
86.8587
84.8584
83.281
81.1281
78.1107
74.2023
68.7202
61.5526
53.6065
45.1101
36.7758
29.8177
25.0063
21.2595
18.0902
16.718
18.7808
23.7849
31.9042
44.9416
59.5466
73.5463
84.1789
90.7508
94.5893
96.5658
97.2761
96.1398
96.5303
92.9871
90.2585
86.6438
82.8687
79.0003
73.5121
66.0059
56.705
46.5173
36.8547
29.7593
24.3197
20.7657
18.6605
17.9978
18.3665
19.3781
20.3482
19.9371
19.0158
18.2899
20.1459
27.7463
40.7759
55.1132
70.0161
85.6482
99.3373
109.647
118.068
122.885
128.27
134.223
131.234
129.375
124.688
119.571
112.161
103.798
93.8155
81.9327
67.7443
53.4642
41.3026
32.4111
26.953
23.5379
21.2961
20.1734
19.7311
20.8823
26.7575
41.7774
60.187
82.561
104.303
121.849
133.094
138.892
144.715
147.929
148.546
144.134
143.117
138.526
132.446
124.99
115.895
106.665
96.9458
87.2835
78.9513
71.2135
63.5725
57.0975
51.1335
46.7154
44.0149
47.232
51.2403
54.619
51.2145
47.1224
43.1987
36.9269
36.3543
47.7862
55.672
61.6762
64.027
64.0811
63.0274
61.8266
61.1199
61.354
61.8797
63.3389
65.1848
67.5357
69.2477
68.2263
62.5274
52.1057
41.738
36.1086
37.1945
42.6533
47.8265
50.6516
49.6002
46.8684
42.4433
36.626
29.5152
23.8947
21.4829
21.4916
20.6301
20.2507
21.1892
25.42
32.8966
40.342
48.3305
54.1087
56.7089
57.9929
59.0298
59.032
59.2966
60.4475
61.576
62.0892
61.9777
61.6521
59.7364
56.2218
50.1663
43.1134
37.557
33.5825
29.1965
29.075
28.2596
24.4382
19.525
11.7775
5.81071
2.3217
2.62632
12.2667
11.4878
14.1378
13.1684
11.8513
11.7494
11.9698
12.3672
12.64
12.8472
12.7601
12.2973
11.2763
9.69172
7.82008
8.42514
10.8898
16.0618
20.9175
22.8454
23.1732
22.465
21.7255
21.5661
22.1646
22.9091
22.7983
21.5144
20.0451
24.2206
30.7803
36.1022
40.6392
44.0344
46.3763
48.2136
48.819
48.5826
47.0799
45.3731
43.8561
42.9004
42.3345
42.3178
41.5152
36.6566
25.1762
21.8074
22.5479
23.5389
24.8873
26.4487
28.1569
29.1415
29.3169
28.8597
28.1297
27.3346
26.1834
26.1832
30.2571
37.6089
46.541
54.1654
58.9453
61.5006
62.8074
63.2847
62.9299
60.9796
58.7242
56.2707
53.239
51.1103
50.3302
49.9135
49.0927
45.2103
29.39
22.5
21.8957
24.4752
28.5137
32.7737
36.6463
39.6699
41.8057
43.1702
43.6182
43.198
41.2849
38.3867
34.454
29.9045
28.9915
38.6861
51.4077
62.1466
69.5264
73.6951
76.1434
77.4609
77.1609
75.936
74.0625
71.4318
67.5818
61.4295
51.567
37.7634
28.2737
27.6104
30.3505
35.6625
39.3948
39.5229
35.6079
34.9966
43.6937
54.4979
64.8774
73.567
80.3934
85.6541
89.2174
91.1183
91.6434
90.7764
87.9938
84.5875
79.5239
74.6175
69.8783
64.478
58.0562
50.5046
41.1393
32.0496
27.4686
26.9491
27.5957
27.4903
25.4431
23.091
21.9077
22.7696
24.9181
27.4061
29.6531
31.733
33.2625
34.4999
35.0319
35.2683
34.7902
33.6207
31.4286
31.6711
39.8759
47.189
52.156
55.3243
57.2891
58.265
58.6196
58.492
57.2859
55.9835
54.6617
53.3586
51.635
48.8615
43.809
37.7369
29.6921
26.6702
27.1617
28.889
31.5913
34.6641
37.505
39.6453
40.7013
39.316
34.9158
36.4592
47.6425
60.9017
75.0043
86.9309
94.4067
98.2448
100.717
100.082
98.1098
94.8444
91.4267
85.0309
79.9818
72.2916
63.8822
53.3455
42.55
34.3769
29.472
26.6876
24.1818
21.9124
21.1664
21.7463
23.2041
29.1601
41.0173
53.534
64.0501
72.2982
77.8524
82.2325
86.962
89.3056
89.8331
90.6246
89.4427
85.722
80.9617
75.6404
69.3567
62.3628
55.0128
47.1323
39.0942
31.7408
26.1615
22.444
20.4115
19.5325
20.1389
21.5665
22.8263
24.2941
33.421
47.1341
62.1023
75.0143
84.8459
91.6225
96.3988
98.7654
100.472
97.9723
95.7824
90.3461
85.3651
78.2872
72.0313
64.4286
56.9265
48.468
40.3535
33.4667
28.5309
24.4157
21.5371
19.2143
17.8472
17.2606
17.3644
17.6827
17.905
18.0276
18.423
18.8007
20.5119
27.8898
41.5424
55.6386
71.0728
86.7222
100.511
112.059
121.003
129.633
131.673
135.328
130.508
124.339
115.145
104.457
93.6092
82.0546
69.5562
56.8321
45.3476
36.1901
30.3442
26.8589
24.4565
22.5893
21.3122
20.592
20.3935
21.3107
28.6199
47.1084
67.9151
89.918
110.717
126.437
138.102
148.388
155.938
160.39
160.42
150.849
140.304
128.463
115.466
104.296
94.2814
85.7511
78.0724
72.0709
67.4568
63.8375
61.5762
58.896
58.4548
56.6863
57.5839
56.2249
54.5211
48.118
41.6685
39.0316
36.1315
34.9955
40.2647
45.3788
51.8861
56.6106
59.5649
61.6871
63.5364
65.3425
66.9948
68.5536
69.5831
71.1004
71.8139
70.4494
66.196
57.5657
46.9761
37.7745
32.7279
31.5735
33.3884
35.9718
38.0396
39.0378
38.6683
35.6839
30.5536
25.2438
21.7761
21.0017
22.0008
21.7099
22.0083
22.902
25.9195
30.4879
35.1362
41.3517
47.1157
51.5551
54.7157
57.7355
61.2131
63.715
65.5618
66.6483
66.3761
65.1012
62.4638
58.2799
52.4086
45.011
37.4611
31.5117
30.8812
29.8591
29.4556
25.5029
18.2629
11.4803
6.88345
3.50819
1.93922
2.50613
11.3726
10.6964
14.026
14.3166
13.0073
12.5463
12.5155
12.3248
11.9526
11.3725
10.6556
9.97432
9.24904
8.5082
8.25388
9.99068
11.4714
14.2872
17.9654
20.9875
22.9456
24.122
24.8788
25.631
26
25.4737
23.8818
21.3498
18.3048
19.8198
26.5589
32.3777
38.0611
42.76
46.0825
48.8558
50.1576
50.3514
49.2557
46.6033
42.9858
39.0834
35.7998
33.637
32.3289
30.5512
27.4599
28.3195
29.0392
28.4374
27.7725
27.699
28.3617
29.4844
30.2228
30.5153
30.0116
28.9462
26.8004
24.5323
25.8389
32.0763
41.0051
50.64
58.0842
63.3822
66.6611
68.2952
68.3215
66.6745
63.7987
58.6221
53.1595
48.2302
44.0963
41.506
40.597
39.9574
35.0722
34.0883
34.1549
34.7301
35.8463
37.5895
39.2818
40.8859
41.7437
42.2177
41.6815
40.4879
37.9138
35.0098
31.6322
27.6726
25.5
31.4311
42.4671
53.7683
62.9468
69.0671
72.1945
73.0169
71.3436
67.7341
63.0103
57.8515
52.9105
47.9318
42.1954
38.4394
39.0942
41.879
44.9974
47.5691
47.3935
43.7227
36.8242
31.2253
35.3432
45.5582
56.5985
67.2737
76.2487
83.5649
89.6112
93.9921
95.848
94.4468
91.3701
85.8123
78.4423
70.8452
62.5774
54.4147
46.7665
39.2343
31.6102
28.219
29.0541
31.3634
32.4513
31.4856
28.5786
25.1322
22.4014
21.7763
23.2921
25.5214
27.9725
30.2411
32.3659
34.25
35.6567
36.6169
36.0335
33.9319
30.0221
27.9577
34.0428
42.4196
49.1484
54.4391
58.1683
60.4898
61.4666
60.7864
58.7328
55.3325
50.8357
46.0064
41.6465
37.9213
34.6388
33.3428
31.9087
32.3262
33.2787
34.6325
35.9747
37.548
39.0896
40.6917
41.0893
38.5414
32.5448
31.133
39.1195
50.189
62.8351
75.7524
87.0479
95.0043
100.175
102.554
100.036
96.2652
88.2212
80.7772
71.1927
61.1125
50.8795
40.2635
31.3885
25.6683
23.6812
23.9462
24.6714
25.1161
25.4221
24.8491
23.7828
23.2709
29.9887
42.6701
54.689
64.8541
73.4163
79.4699
84.4921
89.5271
90.7927
89.7057
87.5284
83.3698
77.3133
70.0226
62.0109
54.0042
45.9862
38.2272
31.2313
26.1384
23.8457
23.6225
24.6963
26.458
27.7122
28.3015
27.5751
25.4276
24.1543
33.6367
48.3754
62.6848
74.9009
84.3496
90.9677
95.2954
96.5189
96.4068
91.7197
87.3024
78.6199
71.1129
62.4274
54.2915
46.8304
40.179
34.7826
31.1573
28.5932
26.6578
25.3033
24.0489
23.2263
22.8477
22.9951
23.5329
24.2495
24.9579
25.377
25.351
24.5935
23.5319
26.9774
40.1395
54.6173
70.8698
86.2783
99.9629
111.537
121.866
126.233
125.841
123.461
114.856
103.828
91.5458
79.1263
66.8546
55.6162
45.8531
38.258
33.5841
31.2756
29.9136
28.6847
27.5901
26.8348
26.6452
26.7401
26.5884
26.206
30.7561
50.6737
72.1777
95.0519
115.449
132.207
145.378
156.561
161.101
157.815
152.413
139.126
123.576
108.206
94.1976
82.3334
73.3483
66.9436
63.7544
62.8495
64.0741
66.7506
68.7984
71.5184
70.0544
69.1001
63.3413
56.8592
46.1853
38.2954
37.0928
37.1152
35.9183
35.5872
36.1348
40.8216
46.8622
52.7862
58.3951
63.7607
68.2822
72.0661
74.4473
76.139
75.8468
73.8714
68.6901
61.0013
51.5101
42.8121
35.3148
31.8246
30.7266
30.748
31.2819
31.7873
32.0054
31.7357
31.1273
28.4652
24.4731
21.8462
22.3507
24.3649
25.298
26.1435
26.6575
27.3005
28.5954
30.2722
33.4985
38.254
43.545
49.276
54.6631
59.9295
65.0171
67.7135
68.5864
67.7806
65.1642
60.8527
54.9339
47.1743
38.9434
30.5653
24.7447
27.8587
28.0171
24.9371
18.2525
10.194
6.28812
4.03041
2.38652
1.91252
2.43892
10.4147
12.9574
16.1293
17.2954
15.5642
14.6495
14.4089
14.482
14.6216
14.6468
14.5075
14.3435
14.3002
14.6878
16.6701
19.8437
21.7335
22.3314
23.6405
25.2069
26.4177
26.9578
26.7386
25.9802
25.3337
24.5798
23.8428
23.3182
22.8287
23.6587
28.9832
32.6045
34.6125
36.7543
38.6633
40.249
41.1808
42.2056
42.9259
43.008
41.8317
39.9594
37.7909
35.4847
33.4361
32.1826
30.6928
30.3378
30.3582
30.5889
30.7746
31.3805
31.8239
32.5081
31.9222
31.1462
30.2744
29.5964
28.9412
29.5767
32.8269
36.5221
40.9084
46.2788
50.3103
52.8865
54.7686
56.0391
57.0904
57.4988
57.202
55.5283
53.5331
50.806
48.4394
46.6926
45.6402
44.6108
41.7136
39.3905
37.8949
37.2112
36.822
37.1061
37.7776
38.7217
39.2338
39.7083
39.022
37.5989
35.2209
34.02
35.2296
37.4713
39.4113
41.1958
44.0188
47.4043
49.9992
52.4286
54.5755
57.0029
60.9822
62.5266
61.4512
58.8667
55.5477
51.3184
47.6443
45.1747
43.427
42.0225
40.9963
39.9433
38.4424
37.0374
38.4185
42.255
46.599
50.8
54.138
57.22
60.4023
63.1591
66.0942
68.3955
70.9179
72.9733
73.1543
72.4022
69.0622
64.5368
58.8861
52.8995
46.4272
39.7179
36.1699
35.622
35.7406
36.0669
35.9203
35.124
33.77
32.5655
32.0298
32.0095
32.8514
34.229
35.5527
36.5848
36.841
36.3141
34.535
32.723
31.2311
30.9633
32.5496
35.1986
40.8371
46.5517
48.8287
49.6957
50.1638
50.2974
50.2279
50.6319
51.2498
50.2802
48.0594
45.2007
42.0373
39.1302
36.9665
37.0302
35.7207
34.181
33.5289
33.5302
34.1074
34.4782
34.7347
34.6068
33.7786
32.5411
33.9592
39.1243
46.3626
51.8695
55.8518
59.7034
62.6811
65.303
66.415
67.4621
69.128
69.2401
67.8022
62.6553
57.3033
50.4056
43.2753
36.8353
32.667
30.1678
29.4063
29.4833
29.7715
29.5707
28.7914
27.7409
27.0929
26.5598
27.9604
36.9064
46.5462
52.4245
57.0533
60.7343
63.7634
65.712
69.2426
71.7104
72.8475
72.2329
69.5549
65.6935
60.7662
55.4511
49.8773
44.4942
39.8187
36.8324
35.1541
34.2007
33.5821
32.983
32.8977
32.5647
32.345
31.9065
30.9905
30.6829
38.4176
52.7095
61.7937
67.8936
72.919
76.8141
80.7021
82.5198
85.5758
83.9782
81.4158
76.6772
71.5243
65.2468
59.6189
53.7269
49.0971
44.4096
40.7528
37.1058
34.2256
31.5706
29.825
28.3486
27.6262
27
26.9293
26.948
27.3934
28.0979
28.9766
29.817
30.4768
31.1458
39.5061
54.6065
65.1934
73.8164
81.367
88.7069
92.4805
99.9625
99.8567
99.3404
95.4553
89.798
83.0642
76.0745
69.3778
62.686
57.4933
53.1469
48.7919
44.2371
39.874
36.3813
34.2047
33.4986
33.7381
34.6978
36.08
37.4311
38.8141
52.3917
74.8958
91.1791
103.683
114.336
124.075
131.017
138.426
138.652
136.919
130.312
122.196
113.791
106.322
99.7408
93.845
89.4631
85.8242
82.7481
80.7891
76.6951
74.731
69.0139
65.4526
59.1884
51.2777
45.2404
45.6084
50.7152
52.4135
53.7501
52.3174
51.7665
52.6607
56.0981
60.5713
65.4236
69.577
72.8356
74.0132
73.6169
73.9388
74.1124
73.7106
72.1023
67.8689
62.7431
57.1516
49.7075
46.1978
45.2893
44.5514
44.7161
45.2636
45.1296
44.6419
43.2097
40.6241
34.4498
28.0039
25.6401
25.1457
25.3713
26.2015
27.2784
29.1034
31.6599
34.942
38.6463
43.3375
47.906
52.1073
55.9803
58.4904
59.6187
59.4256
57.6566
55.1779
52.8578
50.4521
47.2762
42.7797
36.6612
26.967
15.8458
12.0158
12.701
12.3127
9.7139
6.78794
5.12892
4.02691
3.42037
3.03712
2.50574
)
;
boundaryField
{
wand
{
type zeroGradient;
}
frontAndBack
{
type empty;
}
}
// ************************************************************************* //
| [
"ubuntu@ip-172-31-45-175.eu-west-1.compute.internal"
] | ubuntu@ip-172-31-45-175.eu-west-1.compute.internal | |
71ef29722c10ddaa0dab2ef01a87be38c94a4369 | 536656cd89e4fa3a92b5dcab28657d60d1d244bd | /chrome/browser/ui/webui/chromeos/crostini_upgrader/crostini_upgrader_page_handler.cc | 5df21e1c70abc6abe16adeb382f59b51b3cb2e21 | [
"BSD-3-Clause"
] | permissive | ECS-251-W2020/chromium | 79caebf50443f297557d9510620bf8d44a68399a | ac814e85cb870a6b569e184c7a60a70ff3cb19f9 | refs/heads/master | 2022-08-19T17:42:46.887573 | 2020-03-18T06:08:44 | 2020-03-18T06:08:44 | 248,141,336 | 7 | 8 | BSD-3-Clause | 2022-07-06T20:32:48 | 2020-03-18T04:52:18 | null | UTF-8 | C++ | false | false | 4,000 | cc | // Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ui/webui/chromeos/crostini_upgrader/crostini_upgrader_page_handler.h"
#include <utility>
#include "base/bind.h"
#include "chrome/browser/chromeos/crostini/crostini_util.h"
#include "chrome/browser/ui/webui/chromeos/crostini_upgrader/crostini_upgrader_dialog.h"
#include "content/public/browser/web_contents.h"
namespace chromeos {
CrostiniUpgraderPageHandler::CrostiniUpgraderPageHandler(
content::WebContents* web_contents,
crostini::CrostiniUpgraderUIDelegate* upgrader_ui_delegate,
mojo::PendingReceiver<chromeos::crostini_upgrader::mojom::PageHandler>
pending_page_handler,
mojo::PendingRemote<chromeos::crostini_upgrader::mojom::Page> pending_page,
base::OnceClosure close_dialog_callback,
base::OnceClosure launch_closure)
: web_contents_{web_contents},
upgrader_ui_delegate_{upgrader_ui_delegate},
receiver_{this, std::move(pending_page_handler)},
page_{std::move(pending_page)},
close_dialog_callback_{std::move(close_dialog_callback)},
launch_closure_{std::move(launch_closure)} {
upgrader_ui_delegate_->AddObserver(this);
}
CrostiniUpgraderPageHandler::~CrostiniUpgraderPageHandler() {
upgrader_ui_delegate_->RemoveObserver(this);
}
namespace {
void Redisplay() {
CrostiniUpgraderDialog::Show(base::DoNothing());
}
} // namespace
void CrostiniUpgraderPageHandler::Backup() {
Redisplay();
upgrader_ui_delegate_->Backup(
crostini::ContainerId(crostini::kCrostiniDefaultVmName,
crostini::kCrostiniDefaultContainerName),
web_contents_);
}
void CrostiniUpgraderPageHandler::StartPrechecks() {
upgrader_ui_delegate_->StartPrechecks();
}
void CrostiniUpgraderPageHandler::Upgrade() {
Redisplay();
upgrader_ui_delegate_->Upgrade(
crostini::ContainerId(crostini::kCrostiniDefaultVmName,
crostini::kCrostiniDefaultContainerName));
}
void CrostiniUpgraderPageHandler::Restore() {
Redisplay();
upgrader_ui_delegate_->Restore(
crostini::ContainerId(crostini::kCrostiniDefaultVmName,
crostini::kCrostiniDefaultContainerName),
web_contents_);
}
void CrostiniUpgraderPageHandler::Cancel() {
upgrader_ui_delegate_->Cancel();
}
void CrostiniUpgraderPageHandler::Launch() {
std::move(launch_closure_).Run();
}
void CrostiniUpgraderPageHandler::CancelBeforeStart() {
upgrader_ui_delegate_->CancelBeforeStart();
}
void CrostiniUpgraderPageHandler::Close() {
if (launch_closure_) {
std::move(launch_closure_).Run();
}
std::move(close_dialog_callback_).Run();
}
void CrostiniUpgraderPageHandler::OnUpgradeProgress(
const std::vector<std::string>& messages) {
page_->OnUpgradeProgress(messages);
}
void CrostiniUpgraderPageHandler::OnUpgradeSucceeded() {
Redisplay();
page_->OnUpgradeSucceeded();
}
void CrostiniUpgraderPageHandler::OnUpgradeFailed() {
Redisplay();
page_->OnUpgradeFailed();
}
void CrostiniUpgraderPageHandler::OnBackupProgress(int percent) {
page_->OnBackupProgress(percent);
}
void CrostiniUpgraderPageHandler::OnBackupSucceeded() {
Redisplay();
page_->OnBackupSucceeded();
}
void CrostiniUpgraderPageHandler::OnBackupFailed() {
Redisplay();
page_->OnBackupFailed();
}
void CrostiniUpgraderPageHandler::PrecheckStatus(
chromeos::crostini_upgrader::mojom::UpgradePrecheckStatus status) {
page_->PrecheckStatus(status);
}
void CrostiniUpgraderPageHandler::OnRestoreProgress(int percent) {
page_->OnRestoreProgress(percent);
}
void CrostiniUpgraderPageHandler::OnRestoreSucceeded() {
Redisplay();
page_->OnRestoreSucceeded();
}
void CrostiniUpgraderPageHandler::OnRestoreFailed() {
Redisplay();
page_->OnRestoreFailed();
}
void CrostiniUpgraderPageHandler::OnCanceled() {
page_->OnCanceled();
}
} // namespace chromeos
| [
"pcding@ucdavis.edu"
] | pcding@ucdavis.edu |
b296ce4c44fb05d75e640efd62c1befe3422c1ae | 107d79f2c1802a3ff66d300d5d1ab2d413bac375 | /include/eepp/network/csocketselector.hpp | 25d7625c8a01642f3f9d362367c7dfe57055ba89 | [
"MIT"
] | permissive | weimingtom/eepp | 2030ab0b2a6231358f8433304f90611499b6461e | dd672ff0e108ae1e08449ca918dc144018fb4ba4 | refs/heads/master | 2021-01-10T01:36:39.879179 | 2014-06-02T02:46:33 | 2014-06-02T02:46:33 | 46,509,734 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,715 | hpp | #ifndef EE_NETWORKCSOCKETSELECTOR_HPP
#define EE_NETWORKCSOCKETSELECTOR_HPP
#include <eepp/network/base.hpp>
#include <eepp/system/ctime.hpp>
using namespace EE::System;
namespace EE { namespace Network {
class cSocket;
/** @brief Multiplexer that allows to read from multiple sockets */
class EE_API cSocketSelector
{
public :
/** @brief Default constructor */
cSocketSelector();
/** @brief Copy constructor
** @param copy Instance to copy */
cSocketSelector(const cSocketSelector& copy);
/** @brief Destructor */
~cSocketSelector();
/** @brief Add a new socket to the selector
** This function keeps a weak reference to the socket,
** so you have to make sure that the socket is not destroyed
** while it is stored in the selector.
** This function does nothing if the socket is not valid.
** @param socket Reference to the socket to add
** @see Remove, Clear */
void Add(cSocket& socket);
/** @brief Remove a socket from the selector
** This function doesn't destroy the socket, it simply
** removes the reference that the selector has to it.
** @param socket Reference to the socket to remove
** @see Add, Clear */
void Remove(cSocket& socket);
/** @brief Remove all the sockets stored in the selector
** This function doesn't destroy any instance, it simply
** removes all the references that the selector has to
** external sockets.
** @see Add, Remove */
void Clear();
/** @brief Wait until one or more sockets are ready to receive
** This function returns as soon as at least one socket has
** some data available to be received. To know which sockets are
** ready, use the isReady function.
** If you use a timeout and no socket is ready before the timeout
** is over, the function returns false.
** @param timeout Maximum time to wait, (use cTime::Zero for infinity)
** @return True if there are sockets ready, false otherwise
** @see IsReady */
bool Wait(cTime timeout = cTime::Zero);
/** @brief Test a socket to know if it is ready to receive data
** This function must be used after a call to Wait, to know
** which sockets are ready to receive data. If a socket is
** ready, a call to receive will never block because we know
** that there is data available to read.
** Note that if this function returns true for a cTcpListener,
** this means that it is ready to accept a new connection.
** @param socket cSocket to test
** @return True if the socket is ready to read, false otherwise
** @see IsReady */
bool IsReady(cSocket& socket) const;
/** @brief Overload of assignment operator
** @param right Instance to assign
** @return Reference to self */
cSocketSelector& operator =(const cSocketSelector& right);
private :
struct cSocketSelectorImpl;
// Member data
cSocketSelectorImpl* mImpl; ///< Opaque pointer to the implementation (which requires OS-specific types)
};
}}
#endif // EE_NETWORKCSOCKETSELECTOR_HPP
/**
@class cSocketSelector
@ingroup Network
cSocket selectors provide a way to wait until some data is
available on a set of sockets, instead of just one. This
is convenient when you have multiple sockets that may
possibly receive data, but you don't know which one will
be ready first. In particular, it avoids to use a thread
for each socket; with selectors, a single thread can handle
all the sockets.
All types of sockets can be used in a selector:
@li cTcpListener
@li cTcpSocket
@li cUdpSocket
A selector doesn't store its own copies of the sockets
(socket classes are not copyable anyway), it simply keeps
a reference to the original sockets that you pass to the
"add" function. Therefore, you can't use the selector as a
socket container, you must store them oustide and make sure
that they are alive as long as they are used in the selector.
Using a selector is simple:
@li populate the selector with all the sockets that you want to observe
@li make it wait until there is data available on any of the sockets
@li test each socket to find out which ones are ready
Usage example:
@code
// Create a socket to listen to new connections
cTcpListener listener;
listener.Listen(55001);
// Create a list to store the future clients
std::list<cTcpSocket*> clients;
// Create a selector
cSocketSelector selector;
// Add the listener to the selector
selector.Add(listener);
// Endless loop that waits for new connections
while (running)
{
// Make the selector wait for data on any socket
if (selector.Wait())
{
// Test the listener
if (selector.IsReady(listener))
{
// The listener is ready: there is a pending connection
cTcpSocket* client = new cTcpSocket;
if (listener.Accept(*client) == cSocket::Done)
{
// Add the new client to the clients list
clients.push_back(client);
// Add the new client to the selector so that we will
// be notified when he sends something
selector.Add(*client);
}
else
{
// Error, we won't get a new connection, delete the socket
delete client;
}
}
else
{
// The listener socket is not ready, test all other sockets (the clients)
for (std::list<cTcpSocket*>::iterator it = clients.begin(); it != clients.end(); ++it)
{
cTcpSocket& client = **it;
if (selector.IsReady(client))
{
// The client has sent some data, we can receive it
cPacket packet;
if (client.Receive(packet) == cSocket::Done)
{
...
}
}
}
}
}
}
@endcode
@see cSocket
*/
| [
"spartanj@gmail.com"
] | spartanj@gmail.com |
99d255d4b3d9232088bd479d46eb17a1b76bb835 | 94c24361fe1cbb556727aa30b95e1587f7ec89fa | /Tests/address_claim_frame_test.cpp | c86ceaecac7e152dabfadc899272d332a8fe8fd8 | [
"MIT"
] | permissive | famez/J1939-Framework | 78bc5e3755a692461eaa83a82cc3d5960b42653f | 5153e5005995ec4757ff705781e2e28fb77296da | refs/heads/master | 2022-11-28T09:51:05.860416 | 2021-12-15T22:28:39 | 2021-12-15T22:28:39 | 104,978,785 | 153 | 49 | MIT | 2023-03-04T14:50:42 | 2017-09-27T06:07:06 | C++ | UTF-8 | C++ | false | false | 1,492 | cpp | #include <gtest/gtest.h>
#include <Addressing/AddressClaimFrame.h>
using namespace J1939;
TEST(AddressClaimFrame_test, encode) {
{
EcuName name(25898, 1256, 5, 16, 241, 90, 15, 2, false);
AddressClaimFrame frame(name);
u32 id;
frame.setSrcAddr(0x35);
frame.setDstAddr(0x25);
frame.setPriority(5);
size_t length = frame.getDataLength();
ASSERT_EQ(length, 8);
u8 raw[] = {0x2A, 0x65, 0x00, 0x9D, 0x85, 0xF1, 0xB4, 0x2F};
u8 *buff = new u8[length];
frame.encode(id, buff, length);
ASSERT_EQ(id, 0x14EE2535);
ASSERT_EQ(memcmp(raw, buff, length), 0);
delete[] buff;
}
}
TEST(AddressClaimFrame_test, decode) {
{
AddressClaimFrame frame;
u32 id = 0x14EE2535;
size_t length = frame.getDataLength();
u8 raw[] = {0x2A, 0x65, 0x00, 0x9D, 0x85, 0xF1, 0xB4, 0x2F};
frame.decode(id, raw, length);
ASSERT_EQ(frame.getDataLength(), 8);
ASSERT_EQ(frame.getSrcAddr(), 0x35);
ASSERT_EQ(frame.getDstAddr(), 0x25);
ASSERT_EQ(frame.getPriority(), 5);
const EcuName& name = frame.getEcuName();
ASSERT_EQ(name.getIdNumber(), 25898);
ASSERT_EQ(name.getManufacturerCode(), 1256);
ASSERT_EQ(name.getEcuInstance(), 5);
ASSERT_EQ(name.getFunctionInstance(), 16);
ASSERT_EQ(name.getFunction(), 241);
ASSERT_EQ(name.getVehicleSystem(), 90);
ASSERT_EQ(name.getVehicleSystemInstance(), 15);
ASSERT_EQ(name.getIndustryGroup(), 2);
ASSERT_EQ(name.getEcuInstance(), 5);
ASSERT_EQ(name.isArbitraryAddressCapable(), false);
}
}
| [
"f.amez1992@gmail.com"
] | f.amez1992@gmail.com |
5e77bf4a0b57e41ba4c14cf55c2fc5556540cf5a | 4e02dd677840fda8ad49ea98b7dbc9a66811e5c8 | /EnumDriver/stdafx.cpp | 27fb9facd8b1a78fe43154f722212fa836be4010 | [] | no_license | aMonst/EnumDriver | c605fc036fb83068f251da169da0ce55c4e4f804 | 1138288cabc031be20a3efa6244538cbaedc1358 | refs/heads/master | 2021-01-20T13:16:29.359101 | 2017-02-21T13:35:50 | 2017-02-21T13:35:50 | 82,683,086 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 263 | cpp | // stdafx.cpp : 只包括标准包含文件的源文件
// EnumDriver.pch 将作为预编译头
// stdafx.obj 将包含预编译类型信息
#include "stdafx.h"
// TODO: 在 STDAFX.H 中
// 引用任何所需的附加头文件,而不是在此文件中引用
| [
"liu1793222129@163.com"
] | liu1793222129@163.com |
a84fae262a59f5553284a6066ee37cc2abe34f17 | 6259cc56345cc3158dbb9f7a49c96bad7b426196 | /LodeRunner/cSound.h | d1487544ba72359ddc9ac1c4653349ea7cd9a20d | [] | no_license | prasetyowira/schoolProjectDDemonstar | 2b601bdda29ad225aaf97c4af31c2f47215b3a21 | 1e2cc1a9e5fba6d903c95cdfc09a906dfb61c81a | refs/heads/master | 2021-06-08T01:53:25.961774 | 2016-09-30T13:58:43 | 2016-09-30T13:58:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 930 | h | // Copyright 2015 Kelvin Chandra, Software Laboratory Center, Binus University. All Rights Reserved.
#pragma once
#pragma comment(lib, "fmodex_vc.lib" ) // fmod library
#include <fmod.hpp> //fmod c++ header
//Sound array size
#define NUM_SOUNDS 15
//Sound identifiers
#define SOUND_AMBIENT1 0
#define SOUND_AMBIENT2 1
#define SOUND_AMBIENT3 2
class cSound
{
public:
static cSound& getInstance()
{
static cSound instance;
return instance;
}
bool Load();
void Play(int sound_id);
void StopAll();
void Update();
FMOD::System* system; //handle to FMOD engine
FMOD::Sound* sounds[NUM_SOUNDS]; //sound that will be loaded and played
FMOD::Channel* ambient1Channel;
FMOD::Channel* ambient2Channel;
FMOD::Channel* ambient3Channel;
FMOD::DSP* dspSmoothStop;
private:
~cSound(void);
cSound(void);
cSound(cSound const&) = delete;
void operator=(cSound const&) = delete;
}; | [
"prasetyowira@gmail.com"
] | prasetyowira@gmail.com |
8a7b34029b64a18ab4d5f807c0dfa0aa52868b4b | 4985aad8ecfceca8027709cf488bc2c601443385 | /build/Android/Debug/app/src/main/include/Uno.NotSupportedException.h | dcda035cb1ed33e286702716d625c4c041941d64 | [] | no_license | pacol85/Test1 | a9fd874711af67cb6b9559d9a4a0e10037944d89 | c7bb59a1b961bfb40fe320ee44ca67e068f0a827 | refs/heads/master | 2021-01-25T11:39:32.441939 | 2017-06-12T21:48:37 | 2017-06-12T21:48:37 | 93,937,614 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 979 | h | // This file was generated based on '../../AppData/Local/Fusetools/Packages/UnoCore/1.0.11/source/uno/exceptions/$.uno'.
// WARNING: Changes might be lost if you edit this file directly.
#pragma once
#include <Uno.Exception.h>
namespace g{namespace Uno{struct NotSupportedException;}}
namespace g{
namespace Uno{
// public sealed class NotSupportedException :287
// {
::g::Uno::Exception_type* NotSupportedException_typeof();
void NotSupportedException__ctor_3_fn(NotSupportedException* __this);
void NotSupportedException__ctor_4_fn(NotSupportedException* __this, uString* message);
void NotSupportedException__New4_fn(NotSupportedException** __retval);
void NotSupportedException__New5_fn(uString* message, NotSupportedException** __retval);
struct NotSupportedException : ::g::Uno::Exception
{
void ctor_3();
void ctor_4(uString* message);
static NotSupportedException* New4();
static NotSupportedException* New5(uString* message);
};
// }
}} // ::g::Uno
| [
"newreality64@gmail.com"
] | newreality64@gmail.com |
452c887f7f4b32301ebf6367cfe705c19361affb | 5899fefb8ec219f1b05035ec0c3c36c126c535a8 | /DP/Integer Replacement.cpp | f51ac4ce715fbb098170a9f70917be330c11e57d | [] | no_license | barani008/C-programs | ae702b58292e3439e1737c41cc95894132723162 | a8ea485c0b01b7d4051bea6b12dcd8111b0651ab | refs/heads/master | 2021-01-06T20:35:03.911077 | 2017-10-02T02:33:40 | 2017-10-02T02:33:40 | 99,524,882 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 892 | cpp | /*
Given a positive integer n and you can do operations as follow:
If n is even, replace n with n/2.
If n is odd, you can replace n with either n + 1 or n - 1.
What is the minimum number of replacements needed for n to become 1?
Example 1:
Input:
8
Output:
3
Explanation:
8 -> 4 -> 2 -> 1
Example 2:
Input:
7
Output:
4
Explanation:
7 -> 8 -> 4 -> 2 -> 1
or
7 -> 6 -> 3 -> 2 -> 1
*/
class Solution {
public:
unordered_map<long, int> map;
int integerReplacement(long n) {
if(n==1)
return 0;
if(map.find(n)==map.end()){
int res = 0;
if(n%2==0)
res = integerReplacement(n/2)+1;
else{
res = min(integerReplacement(n-1)+1, integerReplacement(n+1)+1);
}
map[n] = res;
return res;
}else{
return map[n];
}
}
}; | [
"barani008@gmail.com"
] | barani008@gmail.com |
a8d5425ad958fe63e3e7d8d212a127cc53ebfcd4 | 42136dbc35b311dd7a4665001539e48d44d5aa5e | /Source/UI/AnimView.h | 92b811c63df4b13e8679bf9e6cbf56d961149c98 | [] | no_license | mink365/RacingEngine | 4b2564cf10488c7e04e6bd3461355e472b047040 | 0ab4f1ac7e0aa8ee50d214e34bee424714347b88 | refs/heads/master | 2020-12-24T16:32:24.022254 | 2016-12-15T06:15:58 | 2016-12-15T06:16:59 | 17,405,087 | 4 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,146 | h | #ifndef __AnimView__
#define __AnimView__
#include <iostream>
#include <vector>
#include <functional>
namespace re {
namespace ui {
enum class ViewState {
IN_SHOW_ANIM,
IN_HIDE_ANIM,
SHOWN,
HIDDEN,
};
enum class ViewAnimEvent {
HIDE_START,
SHOW_START,
HIDE_END,
SHOW_END,
};
class AnimationView
{
public:
typedef std::function<void(AnimationView *view, ViewAnimEvent event)> AnimationEventListener;
public:
AnimationView();
virtual ~AnimationView();
virtual void show();
virtual void hide();
bool isHidden();
bool isShown();
bool isInAnim();
ViewState getViewState();
protected:
void addAnimListner(AnimationEventListener item);
void emitAnimEvent(ViewAnimEvent event);
void switchViewState(ViewState state);
public:
virtual void playShowAnim();
virtual void playHideAnim();
virtual void showImmed();
virtual void hideImmed();
protected:
ViewState viewState;
std::vector<AnimationEventListener> animListeners;
};
} // namespace ui
} // namespace re
#endif /* defined(__AnimView__) */
| [
"mink365@gmail.com"
] | mink365@gmail.com |
1927233c609b411f52ef14768cde0a4d451afe7e | 12d9e3ed40f1d5706932a3e44e8a08ca185b52cf | /UVa Online Judge/UVA 11624 - Fire!.cc | 139cbbe1ae25295b769f5416402e98f4c4a6ce35 | [] | no_license | SebastianJM/Competitive-Programming | 25f83ceb607fcc3d95fa35c5f06cb7894413b857 | 5cd9de9485ae3f882a7c85292a77e5d662fce08f | refs/heads/master | 2020-03-23T21:25:42.970408 | 2018-11-20T05:06:46 | 2018-11-20T05:06:46 | 142,105,914 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,435 | cc | #include <bits/stdc++.h>
using namespace std;
char matriz[1005][1005];
int visitado[1005][1005];
vector<pair<int,int> > fuego;
int x[4]={0,0,1,-1};
int y[4]={1,-1,0,0};
int inif,inic,res,f,c;
void bfs()
{
queue<pair<pair<int,int>,int> > cola;
pair<pair<int,int>,int> aux;
visitado[inif][inic]=1;
int yy,xx,dis;
bool cumplio=false;
for(int e=0;e<fuego.size();e++)
for(int i=0;i<4;i++)
if(fuego[e].first+y[i]<f && fuego[e].first+y[i]>=0 && fuego[e].second+x[i]<c
&& fuego[e].second+x[i]>=0 && visitado[fuego[e].first+y[i]][fuego[e].second+x[i]]<2)
//&& matriz[fuego[e].first+y[i]][fuego[e].second+x[i]]==0)
{
visitado[fuego[e].first+y[i]][fuego[e].second+x[i]]=2;
cola.push(pair<pair<int,int>,int >(pair<int,int>(fuego[e].first+y[i],fuego[e].second+x[i]),-1));
}
for(int i=0;i<4;i++)
if(inif+y[i]<f && inif+y[i]>=0 && inic+x[i]<c && inic+x[i]>=0)
{
if(!visitado[inif+y[i]][inic+x[i]])
{
visitado[inif+y[i]][inic+x[i]]=1;
cola.push(pair<pair<int,int>,int >(pair<int,int>(inif+y[i],inic+x[i]),1));
}
}
else
{
cumplio=true;
res=1;
break;
}
while(!cola.empty() && !cumplio)
{
yy=cola.front().first.first;
xx=cola.front().first.second;
dis=cola.front().second;
cola.pop();
for(int i=0;i<4;i++)
{
if(yy+y[i]<f && yy+y[i]>=0 && xx+x[i]<c && xx+x[i]>=0)
{
if(dis==-1 && visitado[yy+y[i]][xx+x[i]]<2/* && matriz[yy+y[i]][xx+x[i]]==0*/)
{
visitado[yy+y[i]][xx+x[i]]=2;
cola.push(pair<pair<int,int>,int >(pair<int,int>(yy+y[i],xx+x[i]),-1));
}
else if(dis>=0 && visitado[yy+y[i]][xx+x[i]]==0)
{
visitado[yy+y[i]][xx+x[i]]=1;
cola.push(pair<pair<int,int>,int >(pair<int,int>(yy+y[i],xx+x[i]),dis+1));
}
}
else if(dis>=0)
{
cumplio=true;
res=dis+1;
break;
}
}
}
}
int main()
{
int t;
//freopen ("out.txt","w",stdout);
cin>>t;
while(t--)
{
cin>>f>>c;
memset(matriz,0,sizeof matriz);
memset(visitado,0,sizeof visitado);
fuego=vector<pair<int,int> >();
res=-1;
for(int i=0;i<f;i++)
for(int e=0;e<c;e++)
{
cin>>matriz[i][e];
if(matriz[i][e]=='#')
visitado[i][e]=5;
else if(matriz[i][e]=='F')
{
visitado[i][e]=2;
fuego.push_back(pair<int,int>(i,e));
}
else if(matriz[i][e]=='J')
{
inif=i;
inic=e;
}
}
bfs();
if(res>=0)
cout<<res<<endl;
else
cout<<"IMPOSSIBLE"<<endl;
}
return 0;
} | [
"sebastianjmdlc@gmail.com"
] | sebastianjmdlc@gmail.com |
3f0b58ee140391e76a93f8b8fafac9f334363093 | 904441a3953ee970325bdb4ead916a01fcc2bacd | /src/apps/vis/properties/double/vis_properties_double_init.cpp | 76f9f85d248cc5984a6ab612dff070d662c1f235 | [
"MIT"
] | permissive | itm/shawn | 5a75053bc490f338e35ea05310cdbde50401fb50 | 49cb715d0044a20a01a19bc4d7b62f9f209df83c | refs/heads/master | 2020-05-30T02:56:44.820211 | 2013-05-29T13:34:51 | 2013-05-29T13:34:51 | 5,994,638 | 16 | 4 | null | 2014-06-29T05:29:00 | 2012-09-28T08:33:42 | C++ | UTF-8 | C++ | false | false | 1,930 | cpp | /************************************************************************
** This file is part of the network simulator Shawn. **
** Copyright (C) 2004,2005 by SwarmNet (www.swarmnet.de) **
** and SWARMS (www.swarms.de) **
** Shawn is free software; you can redistribute it and/or modify it **
** under the terms of the GNU General Public License, version 2. **
************************************************************************/
#include "../buildfiles/_apps_enable_cmake.h"
#ifdef ENABLE_VIS
#include "apps/vis/properties/double/vis_properties_double_init.h"
#include "apps/vis/properties/double/vis_property_constant_double.h"
#include "apps/vis/properties/double/vis_property_smooth_double.h"
#include "apps/vis/properties/double/vis_property_breathing_double.h"
#include "sys/simulation/simulation_controller.h"
#include "sys/simulation/simulation_task_keeper.h"
namespace vis
{
void init_vis_double_properties( shawn::SimulationController& sc )
{
sc.simulation_task_keeper_w().add( new PropertyConstantDoubleTask );
sc.simulation_task_keeper_w().add( new PropertySmoothDoubleTask );
sc.simulation_task_keeper_w().add( new PropertyBreathingDoubleTask );
}
}
#endif
/*-----------------------------------------------------------------------
* Source $Source: /cvs/shawn/shawn/tubsapps/vis/properties/double/vis_properties_double_init.cpp,v $
* Version $Revision: 1.3 $
* Date $Date: 2006/02/05 20:22:35 $
*-----------------------------------------------------------------------
* $Log: vis_properties_double_init.cpp,v $
* Revision 1.3 2006/02/05 20:22:35 ali
* more vis
*
* Revision 1.2 2006/02/01 17:07:29 ali
* *** empty log message ***
*
* Revision 1.1 2006/01/31 12:44:00 ali
* *** empty log message ***
*
*-----------------------------------------------------------------------*/
| [
"github@farberg.de"
] | github@farberg.de |
fb0ed70dccfcd0cbfe8ae2194d64a1272590036d | 041be0173284c77ae202cc1bbd8e76b40704a5de | /CardManage/Launch/DbHelper.h | 2d19852b38ed575f36b08a017a327ca8b8d52371 | [] | no_license | jueane/CardManage | 5aa377966a7d98dc21983b1d14c66f19f9706835 | 7d27db59a196e512f903a741157a7969e6aaef84 | refs/heads/master | 2022-12-11T05:10:04.097325 | 2020-09-16T16:22:38 | 2020-09-16T16:22:38 | 103,733,893 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 497 | h | #pragma once
#include <Card.h>
#include <string>
using namespace std;
class DbCallback{
public:
void callback();
};
class DbHelper
{
public:
DbHelper();
~DbHelper();
void select(string *dbName, string *sql, int(*callback)(void*, int, char**, char**));
void insert(string *dbName, string *sql);
void update(string *dbName, string *sql);
void remove(string *dbName, string *sql);
private:
void execute(string *dbName, string *sql, int(*callback)(void*, int, char**, char**));
};
| [
"jueane@live.com"
] | jueane@live.com |
f3109f3753248345f5f0652c80a874fda375dcf5 | 9d7efc84a880983fd78dea3937ada08dc3ba27fb | /Lista_Facil_Selecao/testes.cpp | 6309f77ddfd99c525c82cd068f437202710bdd95 | [] | no_license | YagoAlves/FUP_SI | 4c7d4c7653e0412d2ee073190411bfe8b797e967 | bfdbc6f385e2bd2e97f9abf64e76500156165589 | refs/heads/master | 2020-04-04T21:33:09.970011 | 2014-03-28T19:46:45 | 2014-03-28T19:46:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,065 | cpp | #include "aluno.cpp"
#include "engine.cpp"
Tester t;
void test_valor_maximo2()
{
t.open("valor_maximo2", 1);
t.add(valor_maximo2(1,3) == 3);
t.add(valor_maximo2(3,2) == 3);
t.add(valor_maximo2(2,3) == 3);
t.add(valor_maximo2(5,7) == 7);
t.close();
}
void test_a_eh_maior()
{
t.open("a_eh_maior", 1);
t.add(a_eh_maior(1,3,5) == false);
t.add(a_eh_maior(3,2,1) == true);
t.add(a_eh_maior(2,3,7) == false);
t.add(a_eh_maior(5,7,1) == false);
t.close();
}
void test_valor_maximo3()
{
t.open("valor_maximo3", 1);
t.add(valor_maximo3(5,4,7) == 7);
t.add(valor_maximo3(10,5,6) == 10);
t.add(valor_maximo3(3,5,8) == 8);
t.add(valor_maximo3(25,10,16) == 25);
t.close();
}
void test_valor_maximo4()
{
t.open("valor_maximo4", 2);
t.add(valor_maximo4(1,6,5,3) == 6);
t.add(valor_maximo4(-1,6,8,2) == 8);
t.add(valor_maximo4(1,9,15,0) == 15);
t.add(valor_maximo4(-6,-5,-4,-3) == -3);
t.add(valor_maximo4(500,-100,300,200) == 500);
t.close();
}
void test_a_esta_meio()
{
t.open("a_esta_meio", 1);
t.add(a_esta_meio(2,6,5) == false);
t.add(a_esta_meio(6,5,9) == true);
t.add(a_esta_meio(87,12,100) == true);
t.add(a_esta_meio(5,60,50) == false);
t.close();
}
void test_resto_divisao()
{
t.open("resto_divisao", 1);
t.add(resto_divisao(5,2) == 1);
t.add(resto_divisao(10,2) == 0);
t.add(resto_divisao(8,5) == 3);
t.add(resto_divisao(6,4) == 2);
t.close();
}
void test_resto_divisao_maior()
{
t.open("resto_divisao", 1);
t.add(resto_divisao(5,2) == 1);
t.add(resto_divisao(10,3) == 1);
t.add(resto_divisao(3,5) == 3);
t.add(resto_divisao(4,6) == 2);
t.close();
}
void test_eh_par()
{
t.open("eh_par", 1);
t.add(eh_par(2) == true);
t.add(eh_par(3) == false);
t.add(eh_par(4) == true);
t.add(eh_par(-1) == false );
t.add(eh_par(0) == true);
t.close();
}
void test_eh_mult3()
{
t.open("eh_mult3",1);
t.add(eh_mult3(9) == true);
t.add(eh_mult3(5) == false);
t.add(eh_mult3(-5) == false);
t.add(eh_mult3(27) == true);
t.close();
}
void test_eh_mult()
{
t.open("eh_mult",1);
t.add(eh_mult(4,2) == true);
t.add(eh_mult(27,3) == true);
t.add(eh_mult(5,30) == false);
t.add(eh_mult(4,9) == false);
t.close();
}
void test_eh_sobra31_div5()
{
t.open("eh_sobra31_div5",1);
t.add(eh_sobra31_div5(10) == true);
t.add(eh_sobra31_div5(15) == false);
t.add(eh_sobra31_div5(19) == false);
t.add(eh_sobra31_div5(25) == true);
t.close();
}
void test_eh_par_n46()
{
t.open("eh_par_n46", 2);
t.add(eh_par_n46(10) == true);
t.add(eh_par_n46(14) == true);
t.add(eh_par_n46(22) == true);
t.add(eh_par_n46(16) == false);
t.add(eh_par_n46(5) == false);
t.close();
}
void test_satisfaz_situacao()
{
t.open("satisfaz_situacao", 1);
t.add(satisfaz_situacao(199, 0) == 1);
t.add(satisfaz_situacao(55,-2) == 0);
t.add(satisfaz_situacao(-9, 35) == 0);
t.add(satisfaz_situacao(100, 9) == 1);
t.add(satisfaz_situacao(80, 0) == 1);
t.close();
}
void test_modulo()
{
t.open("modulo", 1);
t.add(modulo(-5) == 5);
t.add(modulo(3) == 3);
t.add(modulo(-100) == 100);
t.add(modulo(15) == 15);
t.close();
}
void test_operacao()
{
t.open("operacao", 1);
t.add(operacao(4) == 20);
t.add(operacao(-3) == -6);
t.add(operacao(3) == 15);
t.add(operacao(-15) == -18);
t.add(operacao(-5) == -8);
t.close();
}
void test_operacao2()
{
t.open("operacao2", 1);
t.add(operacao2(4,2) == 0);
t.add(operacao2(5,3) == 5);
t.add(operacao2(8,5) == 12);
t.add(operacao2(21,4) == 21);
t.add(operacao2(17,6) == 85);
t.close();
}
void test_ambos_3_ou_ambos_5()
{
t.open("ambos_3_ou_ambos_5",1);
t.add(ambos_3_ou_ambos_5(9,27) == true);
t.add(ambos_3_ou_ambos_5(100,20) == true);
t.add(ambos_3_ou_ambos_5(35,10) == true);
t.add(ambos_3_ou_ambos_5(18,5) == false);
t.add(ambos_3_ou_ambos_5(21,29) == false);
t.close();
}
void test_restos_iguais( )
{
t.open("restos_iguais",2);
t.add(restos_iguais(10,3,8,7) == true );
t.add(restos_iguais(3,3,5,5) == true);
t.add(restos_iguais(18,5,19,4) == true);
t.add(restos_iguais(24,7,35,32) == true);
t.add(restos_iguais(25,6, 8,3) == false);
t.close();
}
void test_div_35()
{
t.open("div35",1);
t.add(div_35(3) == 1 );
t.add(div_35(6) == 1);
t.add(div_35(10) == 2);
t.add(div_35(15) == 3);
t.add(div_35(30) == 3);
t.close();
}
int main()
{
test_valor_maximo2();
test_a_eh_maior();
test_valor_maximo3();
test_valor_maximo4();
test_a_esta_meio();
test_resto_divisao();
test_resto_divisao();
test_eh_par();
test_eh_mult3();
test_eh_mult();
test_eh_sobra31_div5();
test_eh_par_n46();
test_eh_par_n46();
test_satisfaz_situacao();
test_modulo();
test_operacao();
test_operacao2();
test_ambos_3_ou_ambos_5();
test_ambos_3_ou_ambos_5();
test_restos_iguais();
test_div_35();
t.total();
return 0;
}
| [
"phmacedoaraujo@gmail.com"
] | phmacedoaraujo@gmail.com |
7d609186e3dc50ea4126b4a10e200fc049e6d186 | dc7f1d597cb68be8cddc5ccc1856a8647a348129 | /xCodeProject/Classes/Native/Bulk_mscorlib_7.cpp | 41b6c3679091788de5497080dc48a807c8c57b14 | [] | no_license | hong672850430/UnitySplashScreen | 5a7b9caac39ae81a0bd74e555ba49e5d97fb0305 | 9b52d6aaf306814d48e431463d4ff829751354e4 | refs/heads/master | 2022-12-08T14:02:54.852746 | 2020-08-28T08:27:33 | 2020-08-28T08:27:33 | 279,816,278 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,002,921 | cpp | #include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <cstring>
#include <string.h>
#include <stdio.h>
#include <cmath>
#include <limits>
#include <assert.h>
#include <stdint.h>
#include "il2cpp-class-internals.h"
#include "codegen/il2cpp-codegen.h"
#include "il2cpp-object-internals.h"
template <typename R>
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 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 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, 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, typename T2, typename T3, typename T4, typename T5, typename T6>
struct VirtFuncInvoker6
{
typedef R (*Func)(void*, T1, T2, T3, T4, T5, T6, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, p6, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3>
struct VirtFuncInvoker3
{
typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename T1, typename T2>
struct VirtActionInvoker2
{
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename R, typename T1, typename T2>
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);
}
};
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, 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);
}
};
// Microsoft.Win32.SafeHandles.SafeFileHandle
struct SafeFileHandle_tE1B31BE63CD11BBF2B9B6A205A72735F32EB1BCB;
// Microsoft.Win32.Win32Native/WIN32_FIND_DATA
struct WIN32_FIND_DATA_t8A943FFC86D2F011824E8A9402E1DD1C54E27B56;
// System.Action`1<System.Object>
struct Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0;
// System.ArgumentException
struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1;
// System.ArgumentNullException
struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD;
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA;
// System.AsyncCallback
struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4;
// System.Attribute
struct Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74;
// System.AttributeUsageAttribute
struct AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388;
// System.Boolean[]
struct BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040;
// System.Byte
struct Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07;
// System.Byte[]
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821;
// System.Char
struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9;
// System.Char[]
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
// System.Collections.Generic.Dictionary`2/Entry<System.String,System.LocalDataStoreSlot>[]
struct EntryU5BU5D_tF47AA275DDFB02146AFA62DA32AA55794E13F046;
// System.Collections.Generic.Dictionary`2/Entry<System.Type,System.AttributeUsageAttribute>[]
struct EntryU5BU5D_tAB32E48E1EF03718E6E17D1056D26DD6C7EB7E12;
// System.Collections.Generic.Dictionary`2/Entry<System.Type,System.MonoCustomAttrs/AttributeInfo>[]
struct EntryU5BU5D_t3579035BE570C7E05C388F86010EECDCE65B7E8F;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.String,System.LocalDataStoreSlot>
struct KeyCollection_t3050E2E250DD1DB73E5D8EA2C7D592250D47E70A;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.Type,System.AttributeUsageAttribute>
struct KeyCollection_tAA50784758BF3D5C7D911FB978233D04C2EE7CEA;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.Type,System.MonoCustomAttrs/AttributeInfo>
struct KeyCollection_tDE0FF85FBA4F0A8F2A2F9FB41087B790F709C515;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.String,System.LocalDataStoreSlot>
struct ValueCollection_t4A2F7D81D3EC61BE67642C0B0FA962D896A3E1E7;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.Type,System.AttributeUsageAttribute>
struct ValueCollection_t154EDF3CAEA5134C6141C82CDC837C8E4446DBA4;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.Type,System.MonoCustomAttrs/AttributeInfo>
struct ValueCollection_tD47DAB180B5AF6301D65DD513C7061AC268026A2;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo>
struct Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Threading.Tasks.Task>
struct Dictionary_2_t70161CFEB8DA3C79E19E31D0ED948D3C2925095F;
// 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.Int32>
struct Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB;
// System.Collections.Generic.Dictionary`2<System.String,System.LocalDataStoreSlot>
struct Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08;
// System.Collections.Generic.Dictionary`2<System.Type,System.AttributeUsageAttribute>
struct Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236;
// System.Collections.Generic.Dictionary`2<System.Type,System.MonoCustomAttrs/AttributeInfo>
struct Dictionary_2_t772861296417691DD84C8A9E8D84AAC7F39FD992;
// System.Collections.Generic.IEqualityComparer`1<System.String>
struct IEqualityComparer_1_t1F07EAC22CC1D4F279164B144240E4718BD7E7A9;
// System.Collections.Generic.IEqualityComparer`1<System.Type>
struct IEqualityComparer_1_t84A1E76CEF8A66F732C15925C1E1DBC7446DB3A4;
// System.Collections.Generic.IList`1<System.Reflection.CustomAttributeData>
struct IList_1_tE0C117F07E4E8ABEAD1951B553655F0835E9F485;
// System.Collections.Generic.IList`1<System.Reflection.CustomAttributeNamedArgument>
struct IList_1_tD431CA53D2DA04D533C85B6F283DF4535D06B9FC;
// System.Collections.Generic.IList`1<System.Reflection.CustomAttributeTypedArgument>
struct IList_1_t6CC82F01278D7AA7C3DC2939506F0C54E06AAADE;
// System.Collections.Generic.IReadOnlyDictionary`2<System.Object,System.Object>
struct IReadOnlyDictionary_2_tF12AC6C54B252680968AC58C45E1522DA1C72D03;
// System.Collections.Generic.IReadOnlyDictionary`2<System.String,System.LocalDataStoreSlot>
struct IReadOnlyDictionary_2_t5D3B73C50000DF2E22FCD72C00895EB73200ABA9;
// System.Collections.Generic.List`1<System.LocalDataStore>
struct List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D;
// System.Collections.Generic.List`1<System.Object>
struct List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D;
// System.Collections.Hashtable
struct Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9;
// System.Collections.IDictionary
struct IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7;
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>
struct ReadOnlyCollection_1_t5D996E967221C71E4EC5CC11210C3076432D5A50;
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeData>
struct ReadOnlyCollection_1_tDD4D93FFE40A14E74D1B366764AABCE0121ED99F;
// System.Delegate
struct Delegate_t;
// System.DelegateData
struct DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE;
// System.Delegate[]
struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86;
// System.Diagnostics.StackTrace[]
struct StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196;
// System.Double[]
struct DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D;
// System.Exception
struct Exception_t;
// System.FormatException
struct FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC;
// System.Func`1<System.Threading.Tasks.Task/ContingentProperties>
struct Func_1_t48C2978A48CE3F2F6EB5B6DE269D00746483BB1F;
// 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.Object,System.String>
struct Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF;
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.Int32>>
struct Func_2_tBCA034BF330CE1C3008C166BF27F309CD4C41C24;
// System.Globalization.Calendar
struct Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5;
// System.Globalization.CodePageDataItem
struct CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB;
// System.Globalization.CompareInfo
struct CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1;
// System.Globalization.CultureData
struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD;
// System.Globalization.CultureInfo
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F;
// System.Globalization.DateTimeFormatInfo
struct DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F;
// System.Globalization.NumberFormatInfo
struct NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8;
// System.Globalization.TextInfo
struct TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8;
// System.IAsyncResult
struct IAsyncResult_t8E194308510B375B42432981AE5E7488C458D598;
// System.IConvertible
struct IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380;
// System.IFormatProvider
struct IFormatProvider_t4247E13AE2D97A079B88D594B7ABABF313259901;
// System.IO.DirectoryNotFoundException
struct DirectoryNotFoundException_tDD7866E46935FAD8898B4B35A82A354605DADF55;
// System.IO.DriveNotFoundException
struct DriveNotFoundException_tE24C6582F3C8F9A24BF0BD5BE63BCB2B6983353C;
// System.IO.EndOfStreamException
struct EndOfStreamException_t1B47BA867EC337F83056C2833A59293754AAC01F;
// System.IO.FileNotFoundException
struct FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431;
// System.IO.FileStream
struct FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418;
// System.IO.IOException
struct IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA;
// System.IO.PathTooLongException
struct PathTooLongException_t8DFBC40E5D45388A65B3327CF0D1F677C0F923AA;
// System.IO.SearchResult
struct SearchResult_tB01A1197ED99DD064C9BB9ED2990ABCD8FD6BCAE;
// System.IO.SearchResultHandler`1<System.Object>
struct SearchResultHandler_1_t8F3FC374A9C3B6ACC965D7728D3926838F62AA4A;
// System.IO.SearchResultHandler`1<System.String>
struct SearchResultHandler_1_t512E43241A0A98FD5802FD1BDA5ABD335315853C;
// System.IO.Stream
struct Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7;
// System.IO.Stream/ReadWriteTask
struct ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80;
// System.IO.StreamReader
struct StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E;
// System.IO.StreamReader/NullStreamReader
struct NullStreamReader_t0417C5015CD6E626B701E9BE83FBD298CB22D5D0;
// System.IO.StreamWriter
struct StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E;
// System.IO.StringReader
struct StringReader_t3095DEB3D26F40D1A7F9B76835D80AFE70E47E12;
// System.IO.StringResultHandler
struct StringResultHandler_tA57B2E939732C5126B9780732364D603FF7D44A6;
// System.IO.TextReader
struct TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A;
// System.IO.TextReader/<>c
struct U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590;
// System.IO.TextReader/NullTextReader
struct NullTextReader_tCEFA26A066B5EE58FEC359F4D3791D42EB7A03C1;
// System.IO.TextReader/SyncTextReader
struct SyncTextReader_t7F10F41C83862CC5CE2C92DD5A7DF48D8A645EB8;
// System.IO.TextWriter
struct TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0;
// System.IO.TextWriter/<>c
struct U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7;
// System.IO.TextWriter/NullTextWriter
struct NullTextWriter_t0831C630ABC3E000027E0BD4A8FC59B3D416E3C5;
// System.IO.TextWriter/SyncTextWriter
struct SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93;
// System.IO.UnexceptionalStreamReader
struct UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA;
// System.IO.UnexceptionalStreamWriter
struct UnexceptionalStreamWriter_t15265DC169F829537681A0A5A1826F6713ABC1CB;
// System.IO.UnmanagedMemoryStream
struct UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E;
// System.IndexOutOfRangeException
struct IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF;
// System.Int32
struct Int32_t585191389E07734F19F3156FF88FB3EF4800D102;
// System.Int32[]
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83;
// System.Int64
struct Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436;
// System.IntPtr[]
struct IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD;
// System.InvalidCastException
struct InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA;
// System.InvalidOperationException
struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1;
// System.InvalidProgramException
struct InvalidProgramException_tF3B9678AC1136E8FA85EE6F0069D39578DECB358;
// System.InvalidTimeZoneException
struct InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25;
// System.LocalDataStore
struct LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE;
// System.LocalDataStoreElement
struct LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA;
// System.LocalDataStoreElement[]
struct LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0;
// System.LocalDataStoreHolder
struct LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304;
// System.LocalDataStoreMgr
struct LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9;
// System.LocalDataStoreSlot
struct LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E;
// System.LocalDataStore[]
struct LocalDataStoreU5BU5D_tC9F54954E109455B4DE4A059EE52379BEB3BFDCD;
// System.MarshalByRefObject
struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF;
// System.MemberAccessException
struct MemberAccessException_tDA869AFFB4FC1EA0EEF3143D85999710AC4774F0;
// System.MethodAccessException
struct MethodAccessException_tD507764699290F19BF6AF6DEE1E0068927E428EB;
// System.MissingFieldException
struct MissingFieldException_tDDE5A10CB4AC8418D5507B2A00B8C55C8B053D37;
// System.MissingMemberException
struct MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD;
// System.MissingMethodException
struct MissingMethodException_t7D33DFD3009E4F19BE4DD0967F04D3878F348498;
// System.MonoAsyncCall
struct MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD;
// System.MonoCustomAttrs/AttributeInfo
struct AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A;
// System.MonoLimitationAttribute
struct MonoLimitationAttribute_t60914056F9C7FD1017B4187D3C41E5D199C362E4;
// System.MonoTODOAttribute
struct MonoTODOAttribute_t0D37CE020492CC4F1A620F173C52E5780E2A9666;
// System.MonoTypeInfo
struct MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D;
// System.MulticastDelegate
struct MulticastDelegate_t;
// System.MulticastNotSupportedException
struct MulticastNotSupportedException_tDAC3C31B20ACDAE95C396052199B385C00C41211;
// System.NonSerializedAttribute
struct NonSerializedAttribute_t1D1C4A9662B6C2FAC28237FCDFA49FA4747BC3BA;
// System.NotImplementedException
struct NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4;
// System.NotSupportedException
struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010;
// System.NullConsoleDriver
struct NullConsoleDriver_t4608D1A2E1195946C2945E3459E15364CF4EC43D;
// System.NullReferenceException
struct NullReferenceException_t204B194BC4DDA3259AF5A8633EA248AE5977ABDC;
// System.NumberFormatter
struct NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC;
// System.NumberFormatter/CustomInfo
struct CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1;
// System.ObjectDisposedException
struct ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A;
// System.Object[]
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A;
// System.OperationCanceledException
struct OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90;
// System.OverflowException
struct OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D;
// System.Predicate`1<System.Object>
struct Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979;
// System.Predicate`1<System.Threading.Tasks.Task>
struct Predicate_1_tF4286C34BB184CE5690FDCEBA7F09FC68D229335;
// System.Reflection.Assembly
struct Assembly_t;
// System.Reflection.Assembly/ResolveEventHolder
struct ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E;
// System.Reflection.Binder
struct Binder_t4D5CB06963501D32847C057B57157D6DC49CA759;
// System.Reflection.ConstructorInfo
struct ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF;
// System.Reflection.CustomAttributeData
struct CustomAttributeData_t2CD9D78F97B6517D5DEE35DEE97159B02C078F88;
// System.Reflection.CustomAttributeData/LazyCAttrData
struct LazyCAttrData_t4C5DC81EA7740306D01218D48006034D024FBA38;
// System.Reflection.CustomAttributeData[]
struct CustomAttributeDataU5BU5D_tE5B7BD0F5BF214F2158089D8B3FDA19FE1834BEB;
// System.Reflection.CustomAttributeFormatException
struct CustomAttributeFormatException_tE63CB0CF2AB9605E56F823E2F32B41C5E24E705D;
// System.Reflection.EventInfo
struct EventInfo_t;
// System.Reflection.EventInfo/AddEventAdapter
struct AddEventAdapter_t90B3498E1AA0B739F6390C7E52B51A36945E036B;
// System.Reflection.FieldInfo
struct FieldInfo_t;
// System.Reflection.ICustomAttributeProvider
struct ICustomAttributeProvider_tA83E69D2C560A6EF8DDA8C438BD4C80C2EA03D55;
// System.Reflection.MemberFilter
struct MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381;
// System.Reflection.MemberInfo
struct MemberInfo_t;
// System.Reflection.MethodBase
struct MethodBase_t;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// System.Reflection.MonoCMethod
struct MonoCMethod_tFB85687BEF8202F8B3E77FE24BCC2E400EA4FC61;
// System.Reflection.MonoEvent
struct MonoEvent_t;
// System.Reflection.MonoMethod
struct MonoMethod_t;
// System.Reflection.MonoProperty
struct MonoProperty_t;
// System.Reflection.MonoProperty/GetterAdapter
struct GetterAdapter_t74BFEC5259F2A8BF1BD37E9AA4232A397F4BC711;
// System.Reflection.ParameterInfo
struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB;
// System.Reflection.PropertyInfo
struct PropertyInfo_t;
// System.Reflection.RuntimeConstructorInfo
struct RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D;
// System.Runtime.InteropServices.ComImportAttribute
struct ComImportAttribute_t274D44BA1076F587D6AC97C2AFBA0A7B25EFDF40;
// System.Runtime.InteropServices.MarshalAsAttribute
struct MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020;
// System.Runtime.InteropServices.SafeBuffer
struct SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208;
// System.Runtime.Remoting.Contexts.Context
struct Context_tE86AB6B3D9759C8E715184808579EFE761683724;
// System.Runtime.Remoting.Contexts.DynamicPropertyCollection
struct DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C;
// System.Runtime.Remoting.IChannelInfo
struct IChannelInfo_tBB94344D943AE3690E34FC989F82D79CEE4F0F4D;
// System.Runtime.Remoting.IEnvoyInfo
struct IEnvoyInfo_t11D78CB5D6976205E23180E5F0911CEF40672148;
// System.Runtime.Remoting.IRemotingTypeInfo
struct IRemotingTypeInfo_t510B5BDF4B8C7290A270755122F69C90EDE1B56C;
// System.Runtime.Remoting.Lifetime.Lease
struct Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3;
// System.Runtime.Remoting.Messaging.IMessageSink
struct IMessageSink_tB1CED1C3E8A2782C843D48468DB443B7940FC76C;
// System.Runtime.Remoting.ObjRef
struct ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2;
// System.Runtime.Remoting.ServerIdentity
struct ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2;
// System.Runtime.Serialization.IFormatterConverter
struct IFormatterConverter_tC3280D64D358F47EA4DAF1A65609BA0FC081888A;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770;
// System.Runtime.Serialization.SerializationInfo
struct SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26;
// System.Security.Principal.IPrincipal
struct IPrincipal_t63FD7F58FBBE134C8FE4D31710AAEA00B000F0BF;
// System.SerializableAttribute
struct SerializableAttribute_t2522EA746802F84F4805F489ECE9CFAC1A817F0F;
// System.String
struct String_t;
// System.String[]
struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E;
// System.SystemException
struct SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782;
// System.Text.Decoder
struct Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26;
// System.Text.DecoderFallback
struct DecoderFallback_t128445EB7676870485230893338EF044F6B72F60;
// System.Text.Encoder
struct Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464;
// System.Text.EncoderFallback
struct EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63;
// System.Text.EncoderFallbackBuffer
struct EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C;
// System.Text.Encoding
struct Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4;
// System.Text.StringBuilder
struct StringBuilder_t;
// System.Text.UTF8Encoding
struct UTF8Encoding_t77ED103B749A387EF072C3429F48C91D12CA08DE;
// System.Threading.AsyncLocal`1<System.Globalization.CultureInfo>
struct AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A;
// System.Threading.CancellationTokenSource
struct CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE;
// System.Threading.ContextCallback
struct ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676;
// System.Threading.ExecutionContext
struct ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70;
// System.Threading.InternalThread
struct InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192;
// System.Threading.SemaphoreSlim
struct SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048;
// System.Threading.Tasks.StackGuard
struct StackGuard_tE431ED3BBD1A18705FEE6F948EBF7FA2E99D64A9;
// System.Threading.Tasks.Task
struct Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2;
// System.Threading.Tasks.Task/ContingentProperties
struct ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08;
// System.Threading.Tasks.TaskFactory
struct TaskFactory_tF3C6D983390ACFB40B4979E225368F78006D6155;
// System.Threading.Tasks.TaskFactory`1<System.Int32>
struct TaskFactory_1_t35BBF03CDA9AA94D2BE8CB805D2C764236F56CC7;
// System.Threading.Tasks.TaskScheduler
struct TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114;
// System.Threading.Tasks.Task`1<System.Int32>
struct Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87;
// System.Threading.Thread
struct Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7;
// System.Tuple`2<System.IO.TextWriter,System.Char>
struct Tuple_2_t090B35D3DF6A166894F43442BEFD1A1F08D0EEC8;
// System.Tuple`2<System.IO.TextWriter,System.String>
struct Tuple_2_tD1FC5C7507045B6D28C0A35144BF8C31F5FAC962;
// System.Tuple`2<System.Object,System.Char>
struct Tuple_2_t10AF2DAB336473A3A993F224EC2171B187E7D000;
// System.Tuple`2<System.Object,System.Object>
struct Tuple_2_t66BEEC45F61266028F5253B4045F569CB4C812F5;
// System.Tuple`4<System.IO.TextReader,System.Char[],System.Int32,System.Int32>
struct Tuple_4_tBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE;
// System.Tuple`4<System.IO.TextWriter,System.Char[],System.Int32,System.Int32>
struct Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094;
// System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>
struct Tuple_4_tF7CBADC8FB46E4E6569992CB77252B1C464DA8B1;
// System.Type
struct Type_t;
// System.Type[]
struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F;
// System.UInt32[]
struct UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB;
// System.UInt64
struct UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E;
// System.UnauthorizedAccessException
struct UnauthorizedAccessException_tC2210A745BFDD3AE3559A87A4219E2945EEC9F75;
// System.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017;
extern RuntimeClass* Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0_il2cpp_TypeInfo_var;
extern RuntimeClass* ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var;
extern RuntimeClass* ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var;
extern RuntimeClass* ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var;
extern RuntimeClass* AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A_il2cpp_TypeInfo_var;
extern RuntimeClass* AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17_il2cpp_TypeInfo_var;
extern RuntimeClass* AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388_il2cpp_TypeInfo_var;
extern RuntimeClass* BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var;
extern RuntimeClass* BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040_il2cpp_TypeInfo_var;
extern RuntimeClass* ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var;
extern RuntimeClass* CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var;
extern RuntimeClass* Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var;
extern RuntimeClass* ComImportAttribute_t274D44BA1076F587D6AC97C2AFBA0A7B25EFDF40_il2cpp_TypeInfo_var;
extern RuntimeClass* CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_il2cpp_TypeInfo_var;
extern RuntimeClass* Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var;
extern RuntimeClass* CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var;
extern RuntimeClass* CustomAttributeFormatException_tE63CB0CF2AB9605E56F823E2F32B41C5E24E705D_il2cpp_TypeInfo_var;
extern RuntimeClass* CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1_il2cpp_TypeInfo_var;
extern RuntimeClass* Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var;
extern RuntimeClass* DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86_il2cpp_TypeInfo_var;
extern RuntimeClass* Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236_il2cpp_TypeInfo_var;
extern RuntimeClass* Dictionary_2_t772861296417691DD84C8A9E8D84AAC7F39FD992_il2cpp_TypeInfo_var;
extern RuntimeClass* Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08_il2cpp_TypeInfo_var;
extern RuntimeClass* DirectoryNotFoundException_tDD7866E46935FAD8898B4B35A82A354605DADF55_il2cpp_TypeInfo_var;
extern RuntimeClass* DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D_il2cpp_TypeInfo_var;
extern RuntimeClass* Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var;
extern RuntimeClass* DriveNotFoundException_tE24C6582F3C8F9A24BF0BD5BE63BCB2B6983353C_il2cpp_TypeInfo_var;
extern RuntimeClass* EmptyArray_1_t40AF87279AA6E3AEEABB0CBA1425F6720C40961A_il2cpp_TypeInfo_var;
extern RuntimeClass* EmptyArray_1_tCF137C88A5824F413EFB5A2F31664D8207E61D26_il2cpp_TypeInfo_var;
extern RuntimeClass* EndOfStreamException_t1B47BA867EC337F83056C2833A59293754AAC01F_il2cpp_TypeInfo_var;
extern RuntimeClass* Exception_t_il2cpp_TypeInfo_var;
extern RuntimeClass* FieldInfo_t_il2cpp_TypeInfo_var;
extern RuntimeClass* FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431_il2cpp_TypeInfo_var;
extern RuntimeClass* FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418_il2cpp_TypeInfo_var;
extern RuntimeClass* FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var;
extern RuntimeClass* Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF_il2cpp_TypeInfo_var;
extern RuntimeClass* Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6_il2cpp_TypeInfo_var;
extern RuntimeClass* GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var;
extern RuntimeClass* ICustomAttributeProvider_tA83E69D2C560A6EF8DDA8C438BD4C80C2EA03D55_il2cpp_TypeInfo_var;
extern RuntimeClass* IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var;
extern RuntimeClass* IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var;
extern RuntimeClass* Il2CppComObject_il2cpp_TypeInfo_var;
extern RuntimeClass* IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var;
extern RuntimeClass* Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_il2cpp_TypeInfo_var;
extern RuntimeClass* Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var;
extern RuntimeClass* Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var;
extern RuntimeClass* Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var;
extern RuntimeClass* IntPtr_t_il2cpp_TypeInfo_var;
extern RuntimeClass* InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var;
extern RuntimeClass* InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var;
extern RuntimeClass* List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D_il2cpp_TypeInfo_var;
extern RuntimeClass* List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D_il2cpp_TypeInfo_var;
extern RuntimeClass* LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0_il2cpp_TypeInfo_var;
extern RuntimeClass* LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA_il2cpp_TypeInfo_var;
extern RuntimeClass* LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304_il2cpp_TypeInfo_var;
extern RuntimeClass* LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E_il2cpp_TypeInfo_var;
extern RuntimeClass* LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE_il2cpp_TypeInfo_var;
extern RuntimeClass* Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var;
extern RuntimeClass* MethodInfo_t_il2cpp_TypeInfo_var;
extern RuntimeClass* MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var;
extern RuntimeClass* MonoEvent_t_il2cpp_TypeInfo_var;
extern RuntimeClass* MonoMethod_t_il2cpp_TypeInfo_var;
extern RuntimeClass* MonoProperty_t_il2cpp_TypeInfo_var;
extern RuntimeClass* MulticastDelegate_t_il2cpp_TypeInfo_var;
extern RuntimeClass* NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var;
extern RuntimeClass* NullConsoleDriver_t4608D1A2E1195946C2945E3459E15364CF4EC43D_il2cpp_TypeInfo_var;
extern RuntimeClass* NullTextReader_tCEFA26A066B5EE58FEC359F4D3791D42EB7A03C1_il2cpp_TypeInfo_var;
extern RuntimeClass* NullTextWriter_t0831C630ABC3E000027E0BD4A8FC59B3D416E3C5_il2cpp_TypeInfo_var;
extern RuntimeClass* NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_il2cpp_TypeInfo_var;
extern RuntimeClass* NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var;
extern RuntimeClass* ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A_il2cpp_TypeInfo_var;
extern RuntimeClass* ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var;
extern RuntimeClass* OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90_il2cpp_TypeInfo_var;
extern RuntimeClass* OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var;
extern RuntimeClass* ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_il2cpp_TypeInfo_var;
extern RuntimeClass* PathTooLongException_t8DFBC40E5D45388A65B3327CF0D1F677C0F923AA_il2cpp_TypeInfo_var;
extern RuntimeClass* Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var;
extern RuntimeClass* RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var;
extern RuntimeClass* SecurityException_tBB116BA16A419AB19A4F7DEEF43A3FC2A638E8D5_il2cpp_TypeInfo_var;
extern RuntimeClass* SerializableAttribute_t2522EA746802F84F4805F489ECE9CFAC1A817F0F_il2cpp_TypeInfo_var;
extern RuntimeClass* StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E_il2cpp_TypeInfo_var;
extern RuntimeClass* StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_il2cpp_TypeInfo_var;
extern RuntimeClass* Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_il2cpp_TypeInfo_var;
extern RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var;
extern RuntimeClass* String_t_il2cpp_TypeInfo_var;
extern RuntimeClass* SyncTextReader_t7F10F41C83862CC5CE2C92DD5A7DF48D8A645EB8_il2cpp_TypeInfo_var;
extern RuntimeClass* SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93_il2cpp_TypeInfo_var;
extern RuntimeClass* Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var;
extern RuntimeClass* TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_il2cpp_TypeInfo_var;
extern RuntimeClass* TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_il2cpp_TypeInfo_var;
extern RuntimeClass* Tuple_2_t090B35D3DF6A166894F43442BEFD1A1F08D0EEC8_il2cpp_TypeInfo_var;
extern RuntimeClass* Tuple_2_tD1FC5C7507045B6D28C0A35144BF8C31F5FAC962_il2cpp_TypeInfo_var;
extern RuntimeClass* Tuple_4_tBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE_il2cpp_TypeInfo_var;
extern RuntimeClass* Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094_il2cpp_TypeInfo_var;
extern RuntimeClass* TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var;
extern RuntimeClass* Type_t_il2cpp_TypeInfo_var;
extern RuntimeClass* U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590_il2cpp_TypeInfo_var;
extern RuntimeClass* U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7_il2cpp_TypeInfo_var;
extern RuntimeClass* UTF8Encoding_t77ED103B749A387EF072C3429F48C91D12CA08DE_il2cpp_TypeInfo_var;
extern RuntimeClass* UnauthorizedAccessException_tC2210A745BFDD3AE3559A87A4219E2945EEC9F75_il2cpp_TypeInfo_var;
extern RuntimeClass* UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_il2cpp_TypeInfo_var;
extern RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____379C06C9E702D31469C29033F0DD63931EB349F5_24_FieldInfo_var;
extern RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____40981BAA39513E58B28DCF0103CC04DE2A0A0444_31_FieldInfo_var;
extern RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____609C0E8D8DA86A09D6013D301C86BA8782C16B8C_47_FieldInfo_var;
extern RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____8D231DD55FE1AD7631BBD0905A17D5EB616C2154_72_FieldInfo_var;
extern String_t* _stringLiteral00C75FBF9FDF37741287FE5138D60B6AEC257FF6;
extern String_t* _stringLiteral0253A7DA857E36DFB4AB8D7957C356E36829F5F7;
extern String_t* _stringLiteral0547FFE19A268F683E119C580E67B2822ECB1CA8;
extern String_t* _stringLiteral06034170A9EFD60729A8166B3398BD58485D6DEE;
extern String_t* _stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A;
extern String_t* _stringLiteral0B99FE9B8D9E5DCC187DB9C1DCB067CE403B1FFF;
extern String_t* _stringLiteral0F12541AFCCE175FB34BB05A79C95B76E765488B;
extern String_t* _stringLiteral104B2949F6F6A59C62E2F1CE4F43D6B3B9B197DF;
extern String_t* _stringLiteral106347FA01CECDD3F27627F13CD2F8689DDAEB49;
extern String_t* _stringLiteral14A9DC09E10179B15BEAF94C0AED53904ACE0336;
extern String_t* _stringLiteral180FCBE698D0F2C44101A06215C472930BBD0A01;
extern String_t* _stringLiteral1B1DF1408555872EE44D2433990E37F37C6057B8;
extern String_t* _stringLiteral2068B0AE2DE93955C64C2244FFC32581BB827B1E;
extern String_t* _stringLiteral223C5EC119A56013FF9761A6462704E438095BAA;
extern String_t* _stringLiteral24B55FE81E9E7B11798D3A4E4677DD48FFC81559;
extern String_t* _stringLiteral2675279F496EAF8EB26AC07B8F1A8E61C759A2A3;
extern String_t* _stringLiteral29A6E802123FF6EA94EC6F96DDA470B3FA755A58;
extern String_t* _stringLiteral2BCB5536759D024FC4C84E0F923502D4B9E8B26E;
extern String_t* _stringLiteral2CF7D6096047D30EF507FB93AC4C208A294D0D2E;
extern String_t* _stringLiteral2D3767ECF17FE52403E47357B1DE071CC86B255E;
extern String_t* _stringLiteral2DE206896014770EA4546008B698FF620310313E;
extern String_t* _stringLiteral2E2FC55ECA0F95E74B3E4F4CEB108D4486D3F1A6;
extern String_t* _stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D;
extern String_t* _stringLiteral3150ECD5E0294534A81AE047DDAC559DE481D774;
extern String_t* _stringLiteral328B8E8918DCC5480BFFCEC1BCF1A68EFF1C3293;
extern String_t* _stringLiteral32957566199CF3D8AAF6F91DEC9B58897A18C474;
extern String_t* _stringLiteral35EFFFE2370AD1E1EBB40B27FB092EFF5D7E1D4C;
extern String_t* _stringLiteral376A1C1EC35E50EC842B660B9E346C386ABA78C1;
extern String_t* _stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727;
extern String_t* _stringLiteral3BCB560C93B84A12D8D29EE915252365391D82AE;
extern String_t* _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
extern String_t* _stringLiteral3DEE701517E5DC4B50EFF674034A0B7F7C69237A;
extern String_t* _stringLiteral3DF63B7ACB0522DA685DAD5FE84B81FDD7B25264;
extern String_t* _stringLiteral40272C70580D7C109CB89E34D31411747867424C;
extern String_t* _stringLiteral43E4B01DA5BC310916BDCD59560588C54E5A08C9;
extern String_t* _stringLiteral44AC91F010ECDD855BA22A4FE5878DA9B04839E4;
extern String_t* _stringLiteral4FA1555162B320F87E718E7D03508690DA6245A7;
extern String_t* _stringLiteral51B23CF776EFF138FA5B4A92E15B0F80DB0CFACA;
extern String_t* _stringLiteral53A610E925BBC0A175E365D31241AE75AEEAD651;
extern String_t* _stringLiteral58700C5522A1E65B9667A019F67113C5F9666D37;
extern String_t* _stringLiteral59B2021BD6AB5F81D9C5385CB14DEBA14BCAD549;
extern String_t* _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889;
extern String_t* _stringLiteral5D979813AACA82577D6C8D83D57DA0FAA5DE9671;
extern String_t* _stringLiteral5F547FBCFA545D5B8CD060929EB2311739FF8BFD;
extern String_t* _stringLiteral66D145F9BC4E163069F795822A1EA8BEF2E4E55B;
extern String_t* _stringLiteral6976E9D2306260A73687B281AF880C13AB05F910;
extern String_t* _stringLiteral6B3F00A5708C6496295B0EDCDEC7AA844B71A6D9;
extern String_t* _stringLiteral6CB021F4DE5A59C914CE2FD45BD52E5CA6A397FC;
extern String_t* _stringLiteral6EB197EFF2520A15200111CB1E6DCAAF5ADB14E4;
extern String_t* _stringLiteral71071FE5B0CC6568A7A21FDD842333F6D6361758;
extern String_t* _stringLiteral743B68D46C6B7339FD2325D2DF22FE108889647C;
extern String_t* _stringLiteral781C42C8B8E58290D48A10D0FDEF4A87279EF7DA;
extern String_t* _stringLiteral792ACC91EE5889D8CEE5B2697A416308D546BCB1;
extern String_t* _stringLiteral7982E8C08D84551A97DDE8C3CC98E03FC2D6082C;
extern String_t* _stringLiteral7CB1F56D3FBE09E809244FC8E13671CD876E3860;
extern String_t* _stringLiteral83266F61D5BE5A1B8CFE1DFE7E2B83410F5A6CE2;
extern String_t* _stringLiteral854D8C35482A3B8FFE553FACB75F29D1167E941B;
extern String_t* _stringLiteral858B28677610CF07E111998CCE040F14F5256455;
extern String_t* _stringLiteral8FF423F750EAB821AF9F4C9C956D5052DFEF62AF;
extern String_t* _stringLiteral933E9DEDE3C0119BCED3AEE351569D160C28BC18;
extern String_t* _stringLiteral952604412082661142BB4448D6792E048E0317FC;
extern String_t* _stringLiteral97E3C8FAF75EBD4A5B79D9632596155B4EB5403F;
extern String_t* _stringLiteral9B5C0B859FABA061DD60FD8070FCE74FCEE29D0B;
extern String_t* _stringLiteral9D4F4EF8DD2FA106FAD50D3C601D6CDA629B6218;
extern String_t* _stringLiteralA0F1490A20D0211C997B44BC357E1972DEAB8AE3;
extern String_t* _stringLiteralA2DE159285074E167990DE97D55BBF9C966A2A8F;
extern String_t* _stringLiteralA3F4A5587A5729C3EFB8474E3AAA2722613DD4DB;
extern String_t* _stringLiteralAAD19283FC942FFC547E9D76151FC155278475DF;
extern String_t* _stringLiteralAC231C16BB6DC0735FDE11475AE90E9439B40BC1;
extern String_t* _stringLiteralAE2D86CD2BE6BF988588077152DC43D7030A504A;
extern String_t* _stringLiteralAF7D82A0090AC7ECC269B2EBAD304900F101A823;
extern String_t* _stringLiteralB2DFA6C94FCB93E0645DBB6C79D5282340489A50;
extern String_t* _stringLiteralB35BB38DF9605E4C5858316B7853A16E42EA6997;
extern String_t* _stringLiteralB4DCD844520DA1F2BBC77A98F8B314501F8C092D;
extern String_t* _stringLiteralB6589FC6AB0DC82CF12099D1C2D40AB994E8410C;
extern String_t* _stringLiteralB80ADA17FA6976840EA2EE6BFF02BC04F45EEBA7;
extern String_t* _stringLiteralB858CB282617FB0956D960215C8E84D1CCF909C6;
extern String_t* _stringLiteralB877A8E0CC86712F39624B45B20AC74BE887E398;
extern String_t* _stringLiteralBAE1EBEC7E602C6020B7B0FC2AB9BBE7B9F5F915;
extern String_t* _stringLiteralBC112DFA2BA868FD548B5E793DA720F4BA4B7F4A;
extern String_t* _stringLiteralBD8E5715A35A52835F116AEA5F84A3B21F98BBC7;
extern String_t* _stringLiteralBEE42D2FC435CCAA88B02E953C7318706D195EE9;
extern String_t* _stringLiteralC19E61A380CA7CE4691A9B314627EC2DBF71206E;
extern String_t* _stringLiteralC29FDD9E1725BFBAC261A919AEA0F811B7D7A0A9;
extern String_t* _stringLiteralC82E3D7279EFA3ECA576370AF952C815D48CE41F;
extern String_t* _stringLiteralC9C545814A86552A9F3ADF0A724DCF384DA46FF6;
extern String_t* _stringLiteralCA8EFDD5F0C04A868408904A3C252F0CA567598B;
extern String_t* _stringLiteralCDC89A30ABEE9559AAC98D6CE0043622D5487F95;
extern String_t* _stringLiteralD0189667B8E2F597BB375A5DA6046DAD5C52570A;
extern String_t* _stringLiteralD2F0257C42607F2773F4B8AAB0C017A3B8949322;
extern String_t* _stringLiteralD5DF16A053AC14B040C62E79CA35CBD99E8BA7C8;
extern String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
extern String_t* _stringLiteralDAA58D8010113F4E181D2FE5796A123551AAA764;
extern String_t* _stringLiteralDD752B29EC066D8D7C811D0D1588EF5458A6FB0E;
extern String_t* _stringLiteralDFEFBEE8FA51C19A77377FDC99C6D1E91AC2EBB8;
extern String_t* _stringLiteralE015438306ACF3FAB184DF1F0062CFCF7CC11917;
extern String_t* _stringLiteralE165BC316E01BC9110D90356CA81693D51C6EE78;
extern String_t* _stringLiteralE1E79CC3983700F455A4D5F772D7BDA5995AB2F8;
extern String_t* _stringLiteralE53C2EA1FE4BD2B78BF4723C7C155A578E020A25;
extern String_t* _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
extern String_t* _stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497;
extern String_t* _stringLiteralE823D95FC8DE056EA2DD064AAB872C4F18B15938;
extern String_t* _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556;
extern String_t* _stringLiteralEF46D75152852B41CC6121A161522C9643FFF123;
extern String_t* _stringLiteralF05ED8D2787C37C90E1473E7577892374D421A43;
extern String_t* _stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F;
extern String_t* _stringLiteralF21F90700909B9F6000A5EDC822B69CE57F0FC2B;
extern String_t* _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5;
extern String_t* _stringLiteralF379853755CB070E42B380890B2D70F78F11E230;
extern String_t* _stringLiteralF4753A4DEE54EE10A75B28C6D04EB9EA0D19ACCE;
extern String_t* _stringLiteralF4B203C13607C6CE36A755A30A248EF452047C4F;
extern String_t* _stringLiteralF75E94DCC92ECC309EF861E9A10FFFB6B1A383AF;
extern String_t* _stringLiteralF81DB58077C32951A07F4AF53F388BC5335C06AE;
extern String_t* _stringLiteralFE28F10D2C6DAB4E315F2659ADAA6A4F16B5E4B8;
extern const RuntimeMethod* Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510_RuntimeMethod_var;
extern const RuntimeMethod* Array_AsReadOnly_TisCustomAttributeData_t2CD9D78F97B6517D5DEE35DEE97159B02C078F88_m30364FCF20CF26279523189E6647C3D40B0BBB7E_RuntimeMethod_var;
extern const RuntimeMethod* Array_LastIndexOf_TisDelegate_t_mEF3643667769C5E754C0DF7DD1B0C9D54E493C45_RuntimeMethod_var;
extern const RuntimeMethod* Array_Resize_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mE3769C688380A92B93977FA652B43B0C793F4EDC_RuntimeMethod_var;
extern const RuntimeMethod* CollectionExtensions_GetValueOrDefault_TisString_t_TisLocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E_mCC4662D48DF2FE54F66A984047EA92CE774363AE_RuntimeMethod_var;
extern const RuntimeMethod* Dictionary_2_Add_m3DFDBF11129C60DC0ECECB033EC05774E050982A_RuntimeMethod_var;
extern const RuntimeMethod* Dictionary_2_Add_m6DC5880D3A3E5230394E72108396862B76ACE31C_RuntimeMethod_var;
extern const RuntimeMethod* Dictionary_2_Remove_mC54306ED55A13BB48ACE4E0796F308D460A27CC1_RuntimeMethod_var;
extern const RuntimeMethod* Dictionary_2_TryGetValue_m0F44FDB3488E44FD0A1C8D1D1490DFA483E3BC73_RuntimeMethod_var;
extern const RuntimeMethod* Dictionary_2_TryGetValue_mCF45E61BB80AB25D2060B3C4F73161D47C8CEE56_RuntimeMethod_var;
extern const RuntimeMethod* Dictionary_2__ctor_m75E41D2EE0C3109FBF9ACDBB01D255B7BB0A5C4E_RuntimeMethod_var;
extern const RuntimeMethod* Dictionary_2__ctor_mEE3657EA369C703F44E13F63138E65536EC62533_RuntimeMethod_var;
extern const RuntimeMethod* Dictionary_2__ctor_mF0DECB37208B782E5DC487657101B9FBFA2491C8_RuntimeMethod_var;
extern const RuntimeMethod* Dictionary_2_set_Item_mD180D4FC3F0C1345E889F4BDC76AE4AE4F7D3D2F_RuntimeMethod_var;
extern const RuntimeMethod* Func_2__ctor_m0E11CA9B34D5352759D42FDEA69CC14E7C949427_RuntimeMethod_var;
extern const RuntimeMethod* Func_2__ctor_m54408ED2EFA4F730EF559B45507C0009D7EC7917_RuntimeMethod_var;
extern const RuntimeMethod* Int16_CompareTo_m75483243B6AE62C89F02D137A5625051AF41306C_RuntimeMethod_var;
extern const RuntimeMethod* Int16_Parse_mA406579E2A230A3489048B2140AE2F81E68A5622_RuntimeMethod_var;
extern const RuntimeMethod* Int16_System_IConvertible_ToDateTime_mE67E531150E271467E435831A1397A9309A0F26A_RuntimeMethod_var;
extern const RuntimeMethod* Int32_CompareTo_m01C9CAA9D47EB4046F4784603646BD28567D66B2_RuntimeMethod_var;
extern const RuntimeMethod* Int32_System_IConvertible_ToDateTime_mF77E94D74BA940647D099B2639EC019283BEBADD_RuntimeMethod_var;
extern const RuntimeMethod* Int64_CompareTo_m8FCB93E6F212C873AD99C264E7F501559AD2C190_RuntimeMethod_var;
extern const RuntimeMethod* Int64_System_IConvertible_ToDateTime_m9885F222F844D272F9C0C5913DB93E0A39A22B1D_RuntimeMethod_var;
extern const RuntimeMethod* IntPtr_System_Runtime_Serialization_ISerializable_GetObjectData_m5D9D75902BF6B3E73AD7C5BA3E4D964F38ED3816_RuntimeMethod_var;
extern const RuntimeMethod* List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_RuntimeMethod_var;
extern const RuntimeMethod* List_1_Add_mE9BF53EC826B27040A078E87C78E46CBE5793760_RuntimeMethod_var;
extern const RuntimeMethod* List_1_CopyTo_mBC8DEE264FD7E346D098E28FB1D5096B0F9132FB_RuntimeMethod_var;
extern const RuntimeMethod* List_1_Remove_mA8778E00C87CE50D5466C24C94239B38DAC85F94_RuntimeMethod_var;
extern const RuntimeMethod* List_1__ctor_mE9560E61EBE0949DDA139866213E36AB1F51D535_RuntimeMethod_var;
extern const RuntimeMethod* List_1__ctor_mEE468B81D8E7C140F567D10FF7F5894A50EEEA57_RuntimeMethod_var;
extern const RuntimeMethod* List_1_get_Count_m417EECDB01F2D358551281253CC9E5A408B01572_RuntimeMethod_var;
extern const RuntimeMethod* List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_RuntimeMethod_var;
extern const RuntimeMethod* List_1_get_Item_mD27D84BD9B6ABB638EB1C85C37CEA1DBC7EB3537_RuntimeMethod_var;
extern const RuntimeMethod* LocalDataStoreMgr_AllocateDataSlot_m879EF0F47F1E07F1B0F905EB2F964E875CF7E036_RuntimeMethod_var;
extern const RuntimeMethod* LocalDataStoreMgr_ValidateSlot_m7D28FF28A27A12AB0DD0F029B5A32EEB546B55E9_RuntimeMethod_var;
extern const RuntimeMethod* LocalDataStore_GetData_mEC1E4E690BDC29818205F9CF24910AA543F0EFF5_RuntimeMethod_var;
extern const RuntimeMethod* LocalDataStore_PopulateElement_m16D54E54CB4EA8F2F385B162B3011C8B3EB2568E_RuntimeMethod_var;
extern const RuntimeMethod* LocalDataStore_SetData_m9F62362E786F82989BF7DE1D08B46F9D40A73C7D_RuntimeMethod_var;
extern const RuntimeMethod* MarshalByRefObject_CreateObjRef_m5710DD1277B24CE674482A6672D8DF1CA7AE0C16_RuntimeMethod_var;
extern const RuntimeMethod* MarshalByRefObject_InitializeLifetimeService_m9DA40CE045D04935ED21EA83D2AF57CD1EBF6B9D_RuntimeMethod_var;
extern const RuntimeMethod* MarshalByRefObject_get_ObjectIdentity_m7416B44A5332EFEB874C4E6A8100F22511D3997C_RuntimeMethod_var;
extern const RuntimeMethod* MarshalByRefObject_set_ObjectIdentity_mE1E420865553E02EA38D821EF08642EC35E891B2_RuntimeMethod_var;
extern const RuntimeMethod* Math_AbsHelper_mBB53E92A37FF9A4AD65D354BBAC103F935C20802_RuntimeMethod_var;
extern const RuntimeMethod* MissingMemberException_GetObjectData_m8C3183FC543A5EFC6C43E57C4EFD46003B2A09BA_RuntimeMethod_var;
extern const RuntimeMethod* MonoCustomAttrs_GetCustomAttributesData_mAB4CAB0551B8FBEC9877A3093A379242C54D8632_RuntimeMethod_var;
extern const RuntimeMethod* MonoCustomAttrs_GetCustomAttributes_m1FD79FB099EEB9D47077C17F9496F4E17AD97115_RuntimeMethod_var;
extern const RuntimeMethod* MonoCustomAttrs_GetCustomAttributes_m6CA0C6509BA75EC908CC1D8B8D66ABAE6B7D6B03_RuntimeMethod_var;
extern const RuntimeMethod* MonoCustomAttrs_IsDefined_m9AFDDAF3585947E9D03C1AB992DF1011D7CB0CF4_RuntimeMethod_var;
extern const RuntimeMethod* MonoCustomAttrs_RetrieveAttributeUsageNoCache_m1218D6C313469F040577C11FCCAB830B29806949_RuntimeMethod_var;
extern const RuntimeMethod* MulticastDelegate_RemoveImpl_mEC70774A4A3E151E86CE936D0A06829B79FCB547_RuntimeMethod_var;
extern const RuntimeMethod* Nullable_GetUnderlyingType_m038B195642BF738026196B1629997705B6317D04_RuntimeMethod_var;
extern const RuntimeMethod* NumberFormatter_AppendNonNegativeNumber_m9AF8B3BAFDE9443EF437F2A4659E2759913D70E1_RuntimeMethod_var;
extern const RuntimeMethod* NumberFormatter_IntegerToString_m167EB2E9184CBA8A18A5A7AE72CD61602227AA50_RuntimeMethod_var;
extern const RuntimeMethod* NumberFormatter_NumberToString_m831CA24EE69F2EEA3AD4D4FD4AA9353B40FF2FB3_RuntimeMethod_var;
extern const RuntimeMethod* Number_ParseDecimal_m0D2FF289F648F210AB219D617813E954769B7CCE_RuntimeMethod_var;
extern const RuntimeMethod* Number_ParseDouble_m1114DFDF930B69AB3222044E9818855F131B5672_RuntimeMethod_var;
extern const RuntimeMethod* Number_ParseInt32_mF4B8DA28891C736EAC85641489780C2E91F8AECF_RuntimeMethod_var;
extern const RuntimeMethod* Number_ParseInt64_m33AA7A0F69E575B698C474AA716B508904B92B62_RuntimeMethod_var;
extern const RuntimeMethod* Number_ParseSingle_mF8DD4A8C88973C759A7700C1A9B126566AFAFC4B_RuntimeMethod_var;
extern const RuntimeMethod* Number_ParseUInt32_mF280A62925FED84E23D64DC6B86BC50AD96896FB_RuntimeMethod_var;
extern const RuntimeMethod* Number_ParseUInt64_m80F0E92F3D98C3390741451845F261F93A103E27_RuntimeMethod_var;
extern const RuntimeMethod* Number_StringToNumber_m430FD04F901D7715B727832A85D4D8DCD6EB4BED_RuntimeMethod_var;
extern const RuntimeMethod* SearchResultHandler_1__ctor_m9FE92302F53647F2B3BE0C14514BF1EDFEA9BC32_RuntimeMethod_var;
extern const RuntimeMethod* StreamWriter_CheckAsyncTaskInProgress_mC3770987306B0EF9B870E1DB1D04723C1ACBA10E_RuntimeMethod_var;
extern const RuntimeMethod* StreamWriter_Write_m8056BDE8A4AD4816F9D7DBDBCB80D03BE8F3ED14_RuntimeMethod_var;
extern const RuntimeMethod* StreamWriter__ctor_m96BF593FFB42FB4DE81E4F37D4CF8F52DE34CC85_RuntimeMethod_var;
extern const RuntimeMethod* StreamWriter__ctor_mBDBE79E3F9A95CB601CEEE2D5464EA3DB663A779_RuntimeMethod_var;
extern const RuntimeMethod* StringReader_Read_m683E57834DF8E10FA7957AEB3D6041F4C72A148F_RuntimeMethod_var;
extern const RuntimeMethod* StringReader__ctor_mA55383C19EFBC075E762145D88F15A2B8B0CDA17_RuntimeMethod_var;
extern const RuntimeMethod* Task_1_get_Result_m80E150EF93681DF361700DB6F78C976BE3EC871B_RuntimeMethod_var;
extern const RuntimeMethod* Task_FromCancellation_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m9308AB377C21815221796A65F008519EA9FE7DE6_RuntimeMethod_var;
extern const RuntimeMethod* Task_FromException_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mF3C6382F7FF59C06CCB6AF3DEDF0C7E42B3EFC52_RuntimeMethod_var;
extern const RuntimeMethod* Task_FromResult_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mFBACD0478E006CC68E4A4EAC261326DDE1B6D6CB_RuntimeMethod_var;
extern const RuntimeMethod* TextReader_Read_m055B04C72D5511C20A674B021A8DFBEB035A80AA_RuntimeMethod_var;
extern const RuntimeMethod* TextReader_Synchronized_mAC0571B77131073ED9B627C8FEE2082CB28EDA9D_RuntimeMethod_var;
extern const RuntimeMethod* TextWriter_Synchronized_m09204B9D335A228553F62AB1588490109E5DCD86_RuntimeMethod_var;
extern const RuntimeMethod* TextWriter_Write_m2F4DFB4147572864DEB552CE8AEFC04D45FB955B_RuntimeMethod_var;
extern const RuntimeMethod* Tuple_2_get_Item1_m527678C5A00E2F9C507E8D584FB3DC1C322626E2_RuntimeMethod_var;
extern const RuntimeMethod* Tuple_2_get_Item1_mA19909B4C3EABD3B8D6195E5E7F669EE836229E1_RuntimeMethod_var;
extern const RuntimeMethod* Tuple_2_get_Item2_m5C14925582F6593098C9A7B04EED31F70AE0D908_RuntimeMethod_var;
extern const RuntimeMethod* Tuple_2_get_Item2_m70254B4E070331E2DEFB6DFAC62E3AA89487CF9B_RuntimeMethod_var;
extern const RuntimeMethod* Tuple_4_get_Item1_m32F731E4D564371F4E37481673CA7CF2F7BD5272_RuntimeMethod_var;
extern const RuntimeMethod* Tuple_4_get_Item1_m39C8A1A8D6E4AF89146C46BC85FC3558DA836A87_RuntimeMethod_var;
extern const RuntimeMethod* Tuple_4_get_Item2_mB5B46A5AB646B577CA14E9F4D0468B390E46801B_RuntimeMethod_var;
extern const RuntimeMethod* Tuple_4_get_Item2_mF40CE211C4A2B12E95DA95E399E6F83EEDC21BC4_RuntimeMethod_var;
extern const RuntimeMethod* Tuple_4_get_Item3_m9DC2B35F08BABAEAEF52F778F565CA1CA7FD97DA_RuntimeMethod_var;
extern const RuntimeMethod* Tuple_4_get_Item3_mABD6CF1A9B4DE5BABDC83733456B99CD19C26F46_RuntimeMethod_var;
extern const RuntimeMethod* Tuple_4_get_Item4_m6E1B7A0E892B4180E4B6FFBBAF3448082FAEC52F_RuntimeMethod_var;
extern const RuntimeMethod* Tuple_4_get_Item4_mDA629EEB249C899F4520F710850DB753C680B86E_RuntimeMethod_var;
extern const RuntimeMethod* U3CU3Ec_U3C_cctorU3Eb__22_0_m5FA84DE2E51772EC0D643C393A08683107DD2A27_RuntimeMethod_var;
extern const RuntimeMethod* U3CU3Ec_U3C_cctorU3Eb__22_1_m79BB5DA57C6FBC5B24A881168FDB0BD2838ABF66_RuntimeMethod_var;
extern const RuntimeMethod* U3CU3Ec_U3C_cctorU3Eb__73_0_m3B1FF41F549E0E7AA2334079D1D26252D18105B7_RuntimeMethod_var;
extern const RuntimeMethod* U3CU3Ec_U3C_cctorU3Eb__73_1_m2EAB86EE51BF32E8DE49B5066EB33B030007F089_RuntimeMethod_var;
extern const RuntimeMethod* U3CU3Ec_U3C_cctorU3Eb__73_2_m9DBB698CF400EEC7CF39A0259760712ACC725C89_RuntimeMethod_var;
extern const RuntimeMethod* U3CU3Ec_U3C_cctorU3Eb__73_3_mACCED9B9CC89A76110744CF30009510404F8C3C3_RuntimeMethod_var;
extern const RuntimeMethod* U3CU3Ec_U3C_cctorU3Eb__73_4_mB71BEAAAD8D1B478FCB0385F8305C170C4E9ACBD_RuntimeMethod_var;
extern const RuntimeMethod* U3CU3Ec_U3C_cctorU3Eb__73_5_m088E29ED249A2EC902368BF4FCD1A9D335B5E733_RuntimeMethod_var;
extern const RuntimeMethod* U3CU3Ec_U3C_cctorU3Eb__73_6_mF5D48543C70DDB142FA1A87A3312AEA854A5DC3D_RuntimeMethod_var;
extern const RuntimeMethod* UnexceptionalStreamReader_Read_mCDBCFCCE88507C52224150414BE559B996428195_RuntimeMethod_var;
extern const RuntimeMethod* UnmanagedMemoryStream_Initialize_m8DAC8A1A09A4FA06187944DE2DA5D718FDFB6196_RuntimeMethod_var;
extern const RuntimeMethod* UnmanagedMemoryStream_ReadAsync_m9365011A8EA2266D91FAE823DBFD31C15FB7E9D3_RuntimeMethod_var;
extern const RuntimeMethod* UnmanagedMemoryStream_Read_mA93FD9DA48DAC9A7E5E11E51E507C4B4A4945754_RuntimeMethod_var;
extern const RuntimeMethod* UnmanagedMemoryStream_Seek_mF247A85CB3170986E397A5EF632C3C8E06CB4713_RuntimeMethod_var;
extern const RuntimeMethod* UnmanagedMemoryStream_WriteAsync_m35A3170A45ABFBA4A884747F52D86E78C804DB2C_RuntimeMethod_var;
extern const RuntimeMethod* UnmanagedMemoryStream_WriteByte_mEF8DEF7777C9ABCB846D9234073A451717F908B6_RuntimeMethod_var;
extern const RuntimeMethod* UnmanagedMemoryStream_Write_m9256DCD481FB6F93D3761684B74CD1639E3AEC6C_RuntimeMethod_var;
extern const RuntimeMethod* UnmanagedMemoryStream_get_PositionPointer_m679CDF3178C1512CA36CAB5FD1A39F5A398A2ADB_RuntimeMethod_var;
extern const RuntimeMethod* UnmanagedMemoryStream_set_Position_m9E69460D1AB811E973FA8A85CF8E3AC4A1B6D73C_RuntimeMethod_var;
extern const RuntimeMethod* __Error_EndOfFile_m48F4E14C7AD452BCA036E0F7537CC2B196A5A7F5_RuntimeMethod_var;
extern const RuntimeMethod* __Error_EndReadCalledTwice_mC80DEEBE51D036D4CCC24671947ED863E470A7FA_RuntimeMethod_var;
extern const RuntimeMethod* __Error_EndWriteCalledTwice_m991D9485115C8EE93569537674B4206DC8EADB2C_RuntimeMethod_var;
extern const RuntimeMethod* __Error_FileNotOpen_m72E3844C53F9BBA3DA2AB9A113480804F1954633_RuntimeMethod_var;
extern const RuntimeMethod* __Error_MemoryStreamNotExpandable_mF68838F1E20B6FD1A292017A734F89534C002F7F_RuntimeMethod_var;
extern const RuntimeMethod* __Error_ReadNotSupported_mE20D002F31774F786CAC01DE88CF2FD9F46C0696_RuntimeMethod_var;
extern const RuntimeMethod* __Error_ReaderClosed_mDEB32103741D23496C28421032CA44B7DB2E0717_RuntimeMethod_var;
extern const RuntimeMethod* __Error_StreamIsClosed_mAD2694451AA25C7099F2FD1C2357D5C3F1969F37_RuntimeMethod_var;
extern const RuntimeMethod* __Error_WinIOError_mDA34FD0DC2ED957492B470B48E69838BB4E68A4B_RuntimeMethod_var;
extern const RuntimeMethod* __Error_WriteNotSupported_mDC018F02757EB3116B45F9CEE41F83910ED5FC1B_RuntimeMethod_var;
extern const RuntimeMethod* __Error_WriterClosed_m0CC83C102ABE14A259F83C3943DC72B372D1CC2F_RuntimeMethod_var;
extern const RuntimeMethod* __Error_WrongAsyncResult_m612D2B72EAE5B009FFB4DFD0831140EE6819B909_RuntimeMethod_var;
extern const RuntimeType* AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388_0_0_0_var;
extern const RuntimeType* ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_0_0_0_var;
extern const RuntimeType* Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var;
extern const RuntimeType* MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_0_0_0_var;
extern const RuntimeType* Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var;
extern const RuntimeType* String_t_0_0_0_var;
extern const uint32_t CustomInfo_Format_m1A29FF4C0EF0861E7E2564D8548EEA6916D91252_MetadataUsageId;
extern const uint32_t CustomInfo_GetActiveSection_m3C48CF37C771F5434981309EEBDB47383654E25A_MetadataUsageId;
extern const uint32_t CustomInfo_Parse_m221FEE3DBA88FC585E7EC4F51CE590B9BE0E334A_MetadataUsageId;
extern const uint32_t IndexOutOfRangeException__ctor_m17448AB4B27BC9D8AEB4605CDB0EA053626ABEC1_MetadataUsageId;
extern const uint32_t Int16_CompareTo_m75483243B6AE62C89F02D137A5625051AF41306C_MetadataUsageId;
extern const uint32_t Int16_Equals_mB1FFCF510D2A74D15014660A0AFA1B5B0AE2F024_MetadataUsageId;
extern const uint32_t Int16_Parse_mA406579E2A230A3489048B2140AE2F81E68A5622_MetadataUsageId;
extern const uint32_t Int16_System_IConvertible_ToBoolean_mAD9C67C2CD06B4C537DBF416474DEABE1C168A02_MetadataUsageId;
extern const uint32_t Int16_System_IConvertible_ToByte_mD200B0391F35F2C349843C9B326AB68F435F422E_MetadataUsageId;
extern const uint32_t Int16_System_IConvertible_ToChar_m7262DBBB8CE3561D40929E34003790296142BBB9_MetadataUsageId;
extern const uint32_t Int16_System_IConvertible_ToDateTime_mE67E531150E271467E435831A1397A9309A0F26A_MetadataUsageId;
extern const uint32_t Int16_System_IConvertible_ToDecimal_mAD89611276C5804EFF4B236032F0DB906355EBF4_MetadataUsageId;
extern const uint32_t Int16_System_IConvertible_ToDouble_mA60DE1A6D594144BE9DB9959314D2722064305CA_MetadataUsageId;
extern const uint32_t Int16_System_IConvertible_ToInt32_mE41B51DE2ABF8B6ECD413AD83FCD58459437A150_MetadataUsageId;
extern const uint32_t Int16_System_IConvertible_ToInt64_mEA23608FC01CA0533C47D984B594C0FF93CEFA51_MetadataUsageId;
extern const uint32_t Int16_System_IConvertible_ToSByte_mEC3DBCD9D04D7E5A396D88031B1E770D11D1DE24_MetadataUsageId;
extern const uint32_t Int16_System_IConvertible_ToSingle_m0835ED262A97BD626712668A214700986F0506F7_MetadataUsageId;
extern const uint32_t Int16_System_IConvertible_ToType_m8BE4912BFC63C00B6434A78D045251007E2D31D3_MetadataUsageId;
extern const uint32_t Int16_System_IConvertible_ToUInt16_mE08D8131FFDEFCB4AA5FE34CB8C2DC62D5A14B30_MetadataUsageId;
extern const uint32_t Int16_System_IConvertible_ToUInt32_m2723ECDC51455D3954F3ADB25F822024010E84C6_MetadataUsageId;
extern const uint32_t Int16_System_IConvertible_ToUInt64_m923F81B1E4E6D28FFEE8362D735E0084C25CE10C_MetadataUsageId;
extern const uint32_t Int32_CompareTo_m01C9CAA9D47EB4046F4784603646BD28567D66B2_MetadataUsageId;
extern const uint32_t Int32_Equals_mBE9097707986D98549AC11E94FB986DA1AB3E16C_MetadataUsageId;
extern const uint32_t Int32_System_IConvertible_ToBoolean_mE6733B98A89CEE394F9B2013DBAB3A6CCFDB2D3D_MetadataUsageId;
extern const uint32_t Int32_System_IConvertible_ToByte_m994642D028B0635653E63412AED073E3DE1DE4CA_MetadataUsageId;
extern const uint32_t Int32_System_IConvertible_ToChar_mB0BF53FFE0642F288E8BBC20EC14D581BF473FE1_MetadataUsageId;
extern const uint32_t Int32_System_IConvertible_ToDateTime_mF77E94D74BA940647D099B2639EC019283BEBADD_MetadataUsageId;
extern const uint32_t Int32_System_IConvertible_ToDecimal_m8A2A9D17341AA91D8EC3D9B2F601EBA7B51CD0E1_MetadataUsageId;
extern const uint32_t Int32_System_IConvertible_ToDouble_mA689675733A81D913A74373B805F68CCA6BEB53E_MetadataUsageId;
extern const uint32_t Int32_System_IConvertible_ToInt16_m294F3466C92E10984CB25DD6DE2019DDD867DA22_MetadataUsageId;
extern const uint32_t Int32_System_IConvertible_ToInt64_m0D1DD55099D29C77A7F3DF423CBAD0D9446A8CC1_MetadataUsageId;
extern const uint32_t Int32_System_IConvertible_ToSByte_m3AE5F790ABB177CAC8C13DCFFFF7114108EB467B_MetadataUsageId;
extern const uint32_t Int32_System_IConvertible_ToSingle_mD0F2590754E9373E5EF9F56DA2772BF9DD2BA7C1_MetadataUsageId;
extern const uint32_t Int32_System_IConvertible_ToType_m4FEECCC81AEEBE645FC073AC87BF9AE58FF57A6C_MetadataUsageId;
extern const uint32_t Int32_System_IConvertible_ToUInt16_m75BCB9F028E5A90A092854436D36986F68901995_MetadataUsageId;
extern const uint32_t Int32_System_IConvertible_ToUInt32_mEFA1E74EEA43FA4DBA9B15C4845F110AD727D58A_MetadataUsageId;
extern const uint32_t Int32_System_IConvertible_ToUInt64_m957A272747A361A7A59C76F4B056B81830345E4E_MetadataUsageId;
extern const uint32_t Int64_CompareTo_m8FCB93E6F212C873AD99C264E7F501559AD2C190_MetadataUsageId;
extern const uint32_t Int64_Equals_m217A2D6F9F752A690AA8BF039B1DF2091A7FE78C_MetadataUsageId;
extern const uint32_t Int64_System_IConvertible_ToBoolean_m678B7CC49A2836D5E6D5E6ABA81ED0693CD1D0C7_MetadataUsageId;
extern const uint32_t Int64_System_IConvertible_ToByte_m4EF22DEB0E2F10C70C2E8D6029064CE178714D75_MetadataUsageId;
extern const uint32_t Int64_System_IConvertible_ToChar_m86A13E02736A1D84736DFBCC3DB7FA1A3D1035F4_MetadataUsageId;
extern const uint32_t Int64_System_IConvertible_ToDateTime_m9885F222F844D272F9C0C5913DB93E0A39A22B1D_MetadataUsageId;
extern const uint32_t Int64_System_IConvertible_ToDecimal_m8638C21E67A5D07CE98F13EC2FC76E150E9C9FBB_MetadataUsageId;
extern const uint32_t Int64_System_IConvertible_ToDouble_mBF9D431716723F0B8614D0C3C7906D447788431E_MetadataUsageId;
extern const uint32_t Int64_System_IConvertible_ToInt16_m300B40C5CCB4B0A742603476A6EFE6E4198EE755_MetadataUsageId;
extern const uint32_t Int64_System_IConvertible_ToInt32_mF857699718EF937019CDA97783F80904E77DEAA5_MetadataUsageId;
extern const uint32_t Int64_System_IConvertible_ToSByte_mABEF3207B39F4C9FD1C21A01581010C67629FC0C_MetadataUsageId;
extern const uint32_t Int64_System_IConvertible_ToSingle_m282A94EF4F2EBA18296B2824CB143B35F4F07A86_MetadataUsageId;
extern const uint32_t Int64_System_IConvertible_ToType_m553EB95677AEB0ABAA6CF513BD42EC32D19543B5_MetadataUsageId;
extern const uint32_t Int64_System_IConvertible_ToUInt16_m969A9B2B7390416D6A28B5E5AF05ED13EEE1E933_MetadataUsageId;
extern const uint32_t Int64_System_IConvertible_ToUInt32_m3F6CDD0B28BA8BBC9F0CA38DB5904D7A04F5BF38_MetadataUsageId;
extern const uint32_t Int64_System_IConvertible_ToUInt64_mA8E1ABEFFF58D3299B47D571ADBDBC9D0F7D7E38_MetadataUsageId;
extern const uint32_t IntPtr_Equals_m4C1C372B05E29E20EC5E9B48EF8AAEA3E49B874D_MetadataUsageId;
extern const uint32_t IntPtr_System_Runtime_Serialization_ISerializable_GetObjectData_m5D9D75902BF6B3E73AD7C5BA3E4D964F38ED3816_MetadataUsageId;
extern const uint32_t IntPtr__ctor_mB9F614446AB7E84C11B210CC4E93696BBE80F50B_MetadataUsageId;
extern const uint32_t InvalidCastException__ctor_mB14CE363FB346D9BC0C0763CAF0B67AF90902144_MetadataUsageId;
extern const uint32_t InvalidOperationException__ctor_m1F94EA1226068BD1B7EAA1B836A59C99979F579E_MetadataUsageId;
extern const uint32_t InvalidProgramException__ctor_m196DA4095281E02BB54223A57497738B29958D89_MetadataUsageId;
extern const uint32_t InvalidTimeZoneException__ctor_m45B9443C467C8D8353DBB6F6E7A6E4E7F96CF591_MetadataUsageId;
extern const uint32_t InvalidTimeZoneException__ctor_m565DFEFCEFD9DB3E307E643A059B9AC57B2B57DD_MetadataUsageId;
extern const uint32_t InvalidTimeZoneException__ctor_m5CF26CC0EAFEFD50238D8A317644BE84B8A91764_MetadataUsageId;
extern const uint32_t InvalidTimeZoneException__ctor_m8FFF6B288E617CAA9269D849618C289FC589BE14_MetadataUsageId;
extern const uint32_t KnownTerminals_get_ansi_m2ECEBC902EBB68D9A849ED1B76F8008918BEBB4D_MetadataUsageId;
extern const uint32_t KnownTerminals_get_linux_m9A34213D8DB968ED3864B4E321BA4B71DB7E8B95_MetadataUsageId;
extern const uint32_t KnownTerminals_get_xterm_mA890BFD590F820BBB23B219E1AD1C8BCD3DFA345_MetadataUsageId;
extern const uint32_t LocalDataStoreMgr_AllocateDataSlot_m879EF0F47F1E07F1B0F905EB2F964E875CF7E036_MetadataUsageId;
extern const uint32_t LocalDataStoreMgr_AllocateNamedDataSlot_mAD7738795BC4FF13631C2993592F6256FC309FF2_MetadataUsageId;
extern const uint32_t LocalDataStoreMgr_CreateLocalDataStore_m5455FCABE10BCFC739E52A0EF6404FF033E93417_MetadataUsageId;
extern const uint32_t LocalDataStoreMgr_DeleteLocalDataStore_m943DBF460E197662F6D146A370A3DCD94CBD51A3_MetadataUsageId;
extern const uint32_t LocalDataStoreMgr_FreeDataSlot_mD32D43F69A116AAE4F0233FD8DE999D81B3643FA_MetadataUsageId;
extern const uint32_t LocalDataStoreMgr_FreeNamedDataSlot_mBCCD17FD544CEA1AA4777AE367B20DA4F8F3C03D_MetadataUsageId;
extern const uint32_t LocalDataStoreMgr_GetNamedDataSlot_m71CB7DDCB5F93DBE1DDBCD5FCE756083E50CF199_MetadataUsageId;
extern const uint32_t LocalDataStoreMgr_ValidateSlot_m7D28FF28A27A12AB0DD0F029B5A32EEB546B55E9_MetadataUsageId;
extern const uint32_t LocalDataStoreMgr__ctor_m8AB872E90E987DD5268F7484DE1DA726960073EB_MetadataUsageId;
extern const uint32_t LocalDataStore_GetData_mEC1E4E690BDC29818205F9CF24910AA543F0EFF5_MetadataUsageId;
extern const uint32_t LocalDataStore_PopulateElement_m16D54E54CB4EA8F2F385B162B3011C8B3EB2568E_MetadataUsageId;
extern const uint32_t LocalDataStore_SetData_m9F62362E786F82989BF7DE1D08B46F9D40A73C7D_MetadataUsageId;
extern const uint32_t LocalDataStore__ctor_m2FDC5D7F0A6331A045F5C5E90C1EE386AF755910_MetadataUsageId;
extern const uint32_t MarshalByRefObject_CreateObjRef_m5710DD1277B24CE674482A6672D8DF1CA7AE0C16_MetadataUsageId;
extern const uint32_t MarshalByRefObject_InitializeLifetimeService_m9DA40CE045D04935ED21EA83D2AF57CD1EBF6B9D_MetadataUsageId;
extern const uint32_t MarshalByRefObject_get_ObjectIdentity_m7416B44A5332EFEB874C4E6A8100F22511D3997C_MetadataUsageId;
extern const uint32_t MarshalByRefObject_set_ObjectIdentity_mE1E420865553E02EA38D821EF08642EC35E891B2_MetadataUsageId;
extern const uint32_t MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_com_FromNativeMethodDefinition_MetadataUsageId;
extern const uint32_t MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_pinvoke_FromNativeMethodDefinition_MetadataUsageId;
extern const uint32_t Math_AbsHelper_mBB53E92A37FF9A4AD65D354BBAC103F935C20802_MetadataUsageId;
extern const uint32_t Math_Abs_m7F5374AE27F11C3FFBB648DA0EE075317C37C097_MetadataUsageId;
extern const uint32_t Math_Log_m5C457D6A666677B3E260C571049528D5BE93B7AF_MetadataUsageId;
extern const uint32_t Math__cctor_m74DAC117CAF47A5126D22880C729D8B4991DC62E_MetadataUsageId;
extern const uint32_t MemberAccessException__ctor_mDD27777FCB5B591E3A785846CB00EC52CBDEA4D7_MetadataUsageId;
extern const uint32_t MethodAccessException__ctor_mA04BCF385465A563D2B65C08391624EAE14C33C8_MetadataUsageId;
extern const uint32_t MissingFieldException__ctor_m61B031B5A45BA495D873FBFFD8481A95489A54A4_MetadataUsageId;
extern const uint32_t MissingFieldException_get_Message_m43F026B46192C9A79B507F6D1E69C163C07B1254_MetadataUsageId;
extern const uint32_t MissingMemberException_GetObjectData_m8C3183FC543A5EFC6C43E57C4EFD46003B2A09BA_MetadataUsageId;
extern const uint32_t MissingMemberException__ctor_m0E998DF25E681F352D27BD1575F45AD78788F481_MetadataUsageId;
extern const uint32_t MissingMemberException__ctor_mE928DEDD684F9B56B2D739CC7C0D36F189B9BC13_MetadataUsageId;
extern const uint32_t MissingMemberException_get_Message_m3995693C813787B7034776FC6F82C0DF7BDBC619_MetadataUsageId;
extern const uint32_t MissingMethodException__ctor_m1DF6EAD8AE77C7C77D64E7FAE249FE024C56EB71_MetadataUsageId;
extern const uint32_t MissingMethodException_get_Message_mD35DBB99C4AC01DB84CEABD0A4C84877C85DF7BA_MetadataUsageId;
extern const uint32_t MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD_com_FromNativeMethodDefinition_MetadataUsageId;
extern const uint32_t MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD_pinvoke_FromNativeMethodDefinition_MetadataUsageId;
extern const uint32_t MonoCustomAttrs_GetBasePropertyDefinition_mE4F385A4AAB21725646424F839451ACE328562D8_MetadataUsageId;
extern const uint32_t MonoCustomAttrs_GetBase_m14B26004C94018740FB8627C7FE3383E16E3BD5F_MetadataUsageId;
extern const uint32_t MonoCustomAttrs_GetCustomAttributesBase_mBF75044E83593AAD9DA29F0C19056B1FB1D98673_MetadataUsageId;
extern const uint32_t MonoCustomAttrs_GetCustomAttributesData_mAB4CAB0551B8FBEC9877A3093A379242C54D8632_MetadataUsageId;
extern const uint32_t MonoCustomAttrs_GetCustomAttributes_m1FD79FB099EEB9D47077C17F9496F4E17AD97115_MetadataUsageId;
extern const uint32_t MonoCustomAttrs_GetCustomAttributes_m6CA0C6509BA75EC908CC1D8B8D66ABAE6B7D6B03_MetadataUsageId;
extern const uint32_t MonoCustomAttrs_GetPseudoCustomAttributes_m0D01BF6CDDC677D096E44DC0F32136E4D3812DE9_MetadataUsageId;
extern const uint32_t MonoCustomAttrs_GetPseudoCustomAttributes_m7598697AAF50EA30FF6E03C8F9F510FC60434988_MetadataUsageId;
extern const uint32_t MonoCustomAttrs_IsDefined_m9AFDDAF3585947E9D03C1AB992DF1011D7CB0CF4_MetadataUsageId;
extern const uint32_t MonoCustomAttrs_IsUserCattrProvider_m9B868B5F0A99FE40FD0CC0387036A0E9BBB75932_MetadataUsageId;
extern const uint32_t MonoCustomAttrs_RetrieveAttributeUsageNoCache_m1218D6C313469F040577C11FCCAB830B29806949_MetadataUsageId;
extern const uint32_t MonoCustomAttrs_RetrieveAttributeUsage_m229824E6B6B43362F51318A23656CCA20729B39F_MetadataUsageId;
extern const uint32_t MonoCustomAttrs__cctor_m095035BF9D3044644C6BB85C3FE34E186A7A779C_MetadataUsageId;
extern const uint32_t MulticastDelegate_CombineImpl_m722E5D3AD0B2C04F4EDAD82FAFB0733CACAF28B9_MetadataUsageId;
extern const uint32_t MulticastDelegate_Equals_mCC476453B26687950C1623E6944CA786A2DC9C49_MetadataUsageId;
extern const uint32_t MulticastDelegate_GetInvocationList_m3B9C8F9FA6E7721D588ED947018372A96871EB97_MetadataUsageId;
extern const uint32_t MulticastDelegate_RemoveImpl_mEC70774A4A3E151E86CE936D0A06829B79FCB547_MetadataUsageId;
extern const uint32_t MulticastNotSupportedException__ctor_m4E7EEFC6E42FEAB6FA8D775E2CC71A0C3B970CD2_MetadataUsageId;
extern const uint32_t NotImplementedException__ctor_m8BEA657E260FC05F0C6D2C43A6E9BC08040F59C4_MetadataUsageId;
extern const uint32_t NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33_MetadataUsageId;
extern const uint32_t NullConsoleDriver_ReadKey_mD8783671CC38E7E2BA8949C9C2631BB90D5A0317_MetadataUsageId;
extern const uint32_t NullConsoleDriver__cctor_m0B892457EA9435B6B2E8483E8F7588290E9573D0_MetadataUsageId;
extern const uint32_t NullReferenceException__ctor_m7D46E331C349DD29CBA488C9B6A950A3E7DD5CAE_MetadataUsageId;
extern const uint32_t NullStreamReader_ReadToEnd_mEEED7270C45A89D861A6816C2F0DD27CB7D2B8B8_MetadataUsageId;
extern const uint32_t NullStreamReader__ctor_mFC80352B41353767D65E0BE0AA46A5ABDCDC2BF8_MetadataUsageId;
extern const uint32_t NullStreamReader_get_BaseStream_m5EFE3833B56E4E0E587F776133554658EC9A09A3_MetadataUsageId;
extern const uint32_t NullTextReader__ctor_m7397DE48AF5DCEFAC0F1B12637AF1C54D1CB59B6_MetadataUsageId;
extern const uint32_t NullTextWriter__ctor_m8F8E71063B4BFCDBC22823364C0CABC7CB5EA7C6_MetadataUsageId;
extern const uint32_t Nullable_GetUnderlyingType_m038B195642BF738026196B1629997705B6317D04_MetadataUsageId;
extern const uint32_t NumberBuffer__cctor_mB263774D1C650BD48E32AC15403F941154721DCE_MetadataUsageId;
extern const uint32_t NumberFormatter_AddOneToDecHex_mD5A7D9EA97B16B9B318D5FC7E9F6007E98990878_MetadataUsageId;
extern const uint32_t NumberFormatter_AppendExponent_m642543981CFC9CB61ECCE7DD35289F1711ED0F0C_MetadataUsageId;
extern const uint32_t NumberFormatter_AppendNonNegativeNumber_m9AF8B3BAFDE9443EF437F2A4659E2759913D70E1_MetadataUsageId;
extern const uint32_t NumberFormatter_CountTrailingZeros_m10E7E51D6F3BEFE9FE7D5982334C3A39074F1BD3_MetadataUsageId;
extern const uint32_t NumberFormatter_DecHexLen_m6624BB04300860C2C7187CC1C66FF3FB9A68D97B_MetadataUsageId;
extern const uint32_t NumberFormatter_DecHexLen_m89FBA140789567E30D1C73851FBBE539088E5579_MetadataUsageId;
extern const uint32_t NumberFormatter_FastToDecHex_m70F4537592F2D301B57DCB01BF0BF5F5B929845F_MetadataUsageId;
extern const uint32_t NumberFormatter_FormatCustom_m5DAC683F225013EEBFC4FDC1682A88C40152A85F_MetadataUsageId;
extern const uint32_t NumberFormatter_FormatDecimal_mE1966648115F3FB18A1C369BAB5EA78E2CED2168_MetadataUsageId;
extern const uint32_t NumberFormatter_FormatHexadecimal_mCDD30C1720063B4956F47E52F32775D60B5444AC_MetadataUsageId;
extern const uint32_t NumberFormatter_FormatRoundtrip_m8339767BDB6A61BABFE5AB826D923D6151DDD816_MetadataUsageId;
extern const uint32_t NumberFormatter_GetClone_m6D13FD559EC8229D8C0F802988E32965EF53119A_MetadataUsageId;
extern const uint32_t NumberFormatter_GetInstance_mA49673EC58400C43805623A779916C2F6705AF99_MetadataUsageId;
extern const uint32_t NumberFormatter_GetTenPowerOf_mFB4993FB5A5C694F12FC7772DF431C0AA3F6E43C_MetadataUsageId;
extern const uint32_t NumberFormatter_InitDecHexDigits_m42646433FC393F360E2B559C275DA76F30E1CAD0_MetadataUsageId;
extern const uint32_t NumberFormatter_InitDecHexDigits_m6B41DFE2085FE5ECE27586ACA44B44359C3E3883_MetadataUsageId;
extern const uint32_t NumberFormatter_InitDecHexDigits_mDDED506A219AEEA8A1A12EBC660550D440FF873B_MetadataUsageId;
extern const uint32_t NumberFormatter_Init_mD235F6B64FD6B6A4FD970449FD0BF75EC0D621C2_MetadataUsageId;
extern const uint32_t NumberFormatter_Init_mE4CB58F7935FD515BDBC5A88C389CCAE85A45286_MetadataUsageId;
extern const uint32_t NumberFormatter_Init_mF96F3A764D7CCB55B5B187EEDB14881E4BD5A2CB_MetadataUsageId;
extern const uint32_t NumberFormatter_InitialFloatingPrecision_m0E00B5AAAD8CEE7FBFFF538CED95D40FBE8A5184_MetadataUsageId;
extern const uint32_t NumberFormatter_IntegerToString_m167EB2E9184CBA8A18A5A7AE72CD61602227AA50_MetadataUsageId;
extern const uint32_t NumberFormatter_IsZeroOnly_m34EC372F18B62ED7716195F4BD28945F7B1C2716_MetadataUsageId;
extern const uint32_t NumberFormatter_NumberToString_m2BCC98CB4910CBDA506DD64B026DB3C66A66A657_MetadataUsageId;
extern const uint32_t NumberFormatter_NumberToString_m52F79BE9C6B6531191AE27454C6DEBA1C09A4717_MetadataUsageId;
extern const uint32_t NumberFormatter_NumberToString_m831CA24EE69F2EEA3AD4D4FD4AA9353B40FF2FB3_MetadataUsageId;
extern const uint32_t NumberFormatter_NumberToString_mB04F03382B99D07E7DDEE769E704C823EC6EF201_MetadataUsageId;
extern const uint32_t NumberFormatter_NumberToString_mB2192DEA3E3EFE9F8799E9D931F21586823E61D9_MetadataUsageId;
extern const uint32_t NumberFormatter_NumberToString_mBA9C9AB4809ADB1CEDAC880569E1F4EC2ADB547C_MetadataUsageId;
extern const uint32_t NumberFormatter_NumberToString_mD13D145869D2857BFDAEDD127A04E68A6B929950_MetadataUsageId;
extern const uint32_t NumberFormatter_NumberToString_mF2FEDF5FC0B3511F8BE51DC6C6FF1B6326BDDA05_MetadataUsageId;
extern const uint32_t NumberFormatter_Release_mDCB5A3DC8C2A7E6FFF66C72576E7D29AB4E95D83_MetadataUsageId;
extern const uint32_t NumberFormatter_ResetCharBuf_m6F248689219DB23CBC466C266D313DBE0E64AAA1_MetadataUsageId;
extern const uint32_t NumberFormatter_Resize_m5DDC37B326ECCCFEE173B9F90431116E294F64B1_MetadataUsageId;
extern const uint32_t NumberFormatter_ScaleOrder_m712CE7B5E134E507EC41CC93A43D76F02FC2D8C2_MetadataUsageId;
extern const uint32_t NumberFormatter_ToDecHex_m6EF9C97FE4375306151C2AD7C0F47C993D12454D_MetadataUsageId;
extern const uint32_t NumberFormatter__cctor_m4742B866AF2C274FEE807160C61B979ADB071A2C_MetadataUsageId;
extern const uint32_t NumberFormatter__ctor_m8C967CC13F98B4F01D3E9D0691465B0C919FC280_MetadataUsageId;
extern const uint32_t Number_FormatDecimal_mD9017BCCC840DA365FF4BE687382AB95D22CF562_MetadataUsageId;
extern const uint32_t Number_FormatDouble_m75CA311327BBDA4F918A84B0C0B689B5C4F84EC2_MetadataUsageId;
extern const uint32_t Number_FormatInt32_mFA98EABDFB7493EF299EB1F0C2B432EAFDFC7984_MetadataUsageId;
extern const uint32_t Number_FormatInt64_m4D4B9098DEEF54C61927074C5471C272A1B64BEB_MetadataUsageId;
extern const uint32_t Number_FormatSingle_m323E2B56236A6DAA51251B75618122C0A58F5256_MetadataUsageId;
extern const uint32_t Number_FormatUInt32_m585E2571063A256E46836A51BC4A54CFF151BDEE_MetadataUsageId;
extern const uint32_t Number_FormatUInt64_m04004F09D1913C13C59635153D0F45AF37F8248A_MetadataUsageId;
extern const uint32_t Number_ParseDecimal_m0D2FF289F648F210AB219D617813E954769B7CCE_MetadataUsageId;
extern const uint32_t Number_ParseDouble_m1114DFDF930B69AB3222044E9818855F131B5672_MetadataUsageId;
extern const uint32_t Number_ParseInt32_mF4B8DA28891C736EAC85641489780C2E91F8AECF_MetadataUsageId;
extern const uint32_t Number_ParseInt64_m33AA7A0F69E575B698C474AA716B508904B92B62_MetadataUsageId;
extern const uint32_t Number_ParseSingle_mF8DD4A8C88973C759A7700C1A9B126566AFAFC4B_MetadataUsageId;
extern const uint32_t Number_ParseUInt32_mF280A62925FED84E23D64DC6B86BC50AD96896FB_MetadataUsageId;
extern const uint32_t Number_ParseUInt64_m80F0E92F3D98C3390741451845F261F93A103E27_MetadataUsageId;
extern const uint32_t Number_StringToNumber_m430FD04F901D7715B727832A85D4D8DCD6EB4BED_MetadataUsageId;
extern const uint32_t Number_TryParseInt64_m62C1C9F9BAC32770297859436DE8E68DF0E1E598_MetadataUsageId;
extern const uint32_t StreamWriter_CheckAsyncTaskInProgress_mC3770987306B0EF9B870E1DB1D04723C1ACBA10E_MetadataUsageId;
extern const uint32_t StreamWriter_Close_mAE61E73AE3168E9DA2DAAFFC301F912DEC52AA31_MetadataUsageId;
extern const uint32_t StreamWriter_CreateFile_m6900D5037BD4731DA905CA306E35DFFF26AFD3A6_MetadataUsageId;
extern const uint32_t StreamWriter_Flush_m7C6A130948CE24E30E49CF155F5C8195DD2E4A1C_MetadataUsageId;
extern const uint32_t StreamWriter_Init_m1AC24C15954A849C621FBEAFF94737EB12058FF5_MetadataUsageId;
extern const uint32_t StreamWriter_Write_m8056BDE8A4AD4816F9D7DBDBCB80D03BE8F3ED14_MetadataUsageId;
extern const uint32_t StreamWriter__cctor_m201F8BD01435889E27515048CF151323BAC42345_MetadataUsageId;
extern const uint32_t StreamWriter__ctor_m1795A943BBA92A3335FDC2112A2082ADD47DF9C4_MetadataUsageId;
extern const uint32_t StreamWriter__ctor_m96BF593FFB42FB4DE81E4F37D4CF8F52DE34CC85_MetadataUsageId;
extern const uint32_t StreamWriter__ctor_mB84BC6A7038D0550163682CD317A76740620E039_MetadataUsageId;
extern const uint32_t StreamWriter__ctor_mBDBE79E3F9A95CB601CEEE2D5464EA3DB663A779_MetadataUsageId;
extern const uint32_t StreamWriter_get_UTF8NoBOM_mF9D881F064CFC1B6E16547F3E6830FD5E87A4CA8_MetadataUsageId;
extern const uint32_t StringReader_Read_m683E57834DF8E10FA7957AEB3D6041F4C72A148F_MetadataUsageId;
extern const uint32_t StringReader__ctor_mA55383C19EFBC075E762145D88F15A2B8B0CDA17_MetadataUsageId;
extern const uint32_t StringResultHandler__ctor_m88B61167B257C333679A5C8CD893238E5B0A56A3_MetadataUsageId;
extern const uint32_t SyncTextReader_Dispose_mD8824E922534B09273852261FF986840CDBA0AB1_MetadataUsageId;
extern const uint32_t SyncTextReader__ctor_m446DFB6FF4BB359C37F582969794678305C7AC00_MetadataUsageId;
extern const uint32_t SyncTextWriter_Dispose_m12B3249821E891828F58F13CBD6F154F4FE739D6_MetadataUsageId;
extern const uint32_t SyncTextWriter__ctor_m91ED4D434EA5ADAAAC7C914E8CF4EEEED23AD3B6_MetadataUsageId;
extern const uint32_t TextReader_Dispose_m9DA31CD42D5E73A1452F4EEC014C5703B5872930_MetadataUsageId;
extern const uint32_t TextReader_ReadLine_m44D609BFD3E8C6C8225A5EF91E2DF9D1D9EE2336_MetadataUsageId;
extern const uint32_t TextReader_ReadToEnd_m0132D9AB2B3B376AE3BF4CD4A809D60A08E38179_MetadataUsageId;
extern const uint32_t TextReader_Read_m055B04C72D5511C20A674B021A8DFBEB035A80AA_MetadataUsageId;
extern const uint32_t TextReader_Synchronized_mAC0571B77131073ED9B627C8FEE2082CB28EDA9D_MetadataUsageId;
extern const uint32_t TextReader__cctor_m4DC7D8BFF04344567D945853BF464C47AADC8663_MetadataUsageId;
extern const uint32_t TextWriter_Close_m0AAE67F57C5EA4BF166C9FA78B3FEF104979B9BF_MetadataUsageId;
extern const uint32_t TextWriter_Dispose_m8B516B9539EB72469E3B3852BEDFB7DC5A677569_MetadataUsageId;
extern const uint32_t TextWriter_Synchronized_m09204B9D335A228553F62AB1588490109E5DCD86_MetadataUsageId;
extern const uint32_t TextWriter_WriteLine_m8502FED0DEE6B89056D2D7D04B798D6BA8D14E38_MetadataUsageId;
extern const uint32_t TextWriter_Write_m2F4DFB4147572864DEB552CE8AEFC04D45FB955B_MetadataUsageId;
extern const uint32_t TextWriter__cctor_mD358433C9213A8F66FE33D65996DEBA8315C1219_MetadataUsageId;
extern const uint32_t TextWriter__ctor_m9E003066292D16C33BCD9F462445436BCBF9AAFA_MetadataUsageId;
extern const uint32_t TextWriter__ctor_mB84CC0FA15C2F1759F4FFAB205C3E311EFAF3715_MetadataUsageId;
extern const uint32_t U3CU3Ec_U3C_cctorU3Eb__22_0_m5FA84DE2E51772EC0D643C393A08683107DD2A27_MetadataUsageId;
extern const uint32_t U3CU3Ec_U3C_cctorU3Eb__22_1_m79BB5DA57C6FBC5B24A881168FDB0BD2838ABF66_MetadataUsageId;
extern const uint32_t U3CU3Ec_U3C_cctorU3Eb__73_0_m3B1FF41F549E0E7AA2334079D1D26252D18105B7_MetadataUsageId;
extern const uint32_t U3CU3Ec_U3C_cctorU3Eb__73_1_m2EAB86EE51BF32E8DE49B5066EB33B030007F089_MetadataUsageId;
extern const uint32_t U3CU3Ec_U3C_cctorU3Eb__73_2_m9DBB698CF400EEC7CF39A0259760712ACC725C89_MetadataUsageId;
extern const uint32_t U3CU3Ec_U3C_cctorU3Eb__73_3_mACCED9B9CC89A76110744CF30009510404F8C3C3_MetadataUsageId;
extern const uint32_t U3CU3Ec_U3C_cctorU3Eb__73_4_mB71BEAAAD8D1B478FCB0385F8305C170C4E9ACBD_MetadataUsageId;
extern const uint32_t U3CU3Ec_U3C_cctorU3Eb__73_5_m088E29ED249A2EC902368BF4FCD1A9D335B5E733_MetadataUsageId;
extern const uint32_t U3CU3Ec_U3C_cctorU3Eb__73_6_mF5D48543C70DDB142FA1A87A3312AEA854A5DC3D_MetadataUsageId;
extern const uint32_t U3CU3Ec__cctor_m0A826CA81945CBA6D7FC29CCD4289C0A4265478F_MetadataUsageId;
extern const uint32_t U3CU3Ec__cctor_m8FECC4F9793F3511CB4737E4315989A627B9BA94_MetadataUsageId;
extern const uint32_t UnexceptionalStreamReader_CheckEOL_mB2A29E7FB02FC55ADFCA77C29386227B66AD0199_MetadataUsageId;
extern const uint32_t UnexceptionalStreamReader_Peek_mB5A106F3ABBC672E906ECC85D2C78D2EBC5975A7_MetadataUsageId;
extern const uint32_t UnexceptionalStreamReader_ReadLine_m6075E7BFF09EF43C2620DD57A508E8C925778533_MetadataUsageId;
extern const uint32_t UnexceptionalStreamReader_ReadToEnd_mFFF67772696E14242FFE13674054746AE61B3AE2_MetadataUsageId;
extern const uint32_t UnexceptionalStreamReader_Read_m763AE2B1D9BB0572ACE16E91236FAF9C716DC359_MetadataUsageId;
extern const uint32_t UnexceptionalStreamReader_Read_mCDBCFCCE88507C52224150414BE559B996428195_MetadataUsageId;
extern const uint32_t UnexceptionalStreamReader__cctor_m8030C6E3F2620159376D6BB9B035D9F4E99B3A0A_MetadataUsageId;
extern const uint32_t UnexceptionalStreamReader__ctor_m66258235565573CF051C6F053EADEEF9A67A084D_MetadataUsageId;
extern const uint32_t UnexceptionalStreamWriter_Flush_mA8E33985ABE27D7AB777CD9216F928A093F13618_MetadataUsageId;
extern const uint32_t UnexceptionalStreamWriter_Write_m38254FD2768CB49A68C9503918CE6FEA65F9A197_MetadataUsageId;
extern const uint32_t UnexceptionalStreamWriter_Write_m662E03F82B13865872B3ADC048BEFE8E6C94B30F_MetadataUsageId;
extern const uint32_t UnexceptionalStreamWriter_Write_m7C22DC062E894CC609C07612CE9AF17631CF5769_MetadataUsageId;
extern const uint32_t UnexceptionalStreamWriter_Write_mAC310C8D24F673608DC7F130666E572ADD388E07_MetadataUsageId;
extern const uint32_t UnexceptionalStreamWriter__ctor_m4504DBFFC2C8A76C6BA8BB0EE18630E32D03C772_MetadataUsageId;
extern const uint32_t UnmanagedMemoryStream_Initialize_m8DAC8A1A09A4FA06187944DE2DA5D718FDFB6196_MetadataUsageId;
extern const uint32_t UnmanagedMemoryStream_ReadAsync_m9365011A8EA2266D91FAE823DBFD31C15FB7E9D3_MetadataUsageId;
extern const uint32_t UnmanagedMemoryStream_Read_mA93FD9DA48DAC9A7E5E11E51E507C4B4A4945754_MetadataUsageId;
extern const uint32_t UnmanagedMemoryStream_Seek_mF247A85CB3170986E397A5EF632C3C8E06CB4713_MetadataUsageId;
extern const uint32_t UnmanagedMemoryStream_WriteAsync_m35A3170A45ABFBA4A884747F52D86E78C804DB2C_MetadataUsageId;
extern const uint32_t UnmanagedMemoryStream_WriteByte_mEF8DEF7777C9ABCB846D9234073A451717F908B6_MetadataUsageId;
extern const uint32_t UnmanagedMemoryStream_Write_m9256DCD481FB6F93D3761684B74CD1639E3AEC6C_MetadataUsageId;
extern const uint32_t UnmanagedMemoryStream__ctor_mC321B43F918DC8453F1DDA5DE21D88CB9B259167_MetadataUsageId;
extern const uint32_t UnmanagedMemoryStream__ctor_mDAB26A2823AF7D8CD45A0119BAE6B5549A9581C5_MetadataUsageId;
extern const uint32_t UnmanagedMemoryStream_get_PositionPointer_m679CDF3178C1512CA36CAB5FD1A39F5A398A2ADB_MetadataUsageId;
extern const uint32_t UnmanagedMemoryStream_set_Position_m9E69460D1AB811E973FA8A85CF8E3AC4A1B6D73C_MetadataUsageId;
extern const uint32_t __Error_EndOfFile_m48F4E14C7AD452BCA036E0F7537CC2B196A5A7F5_MetadataUsageId;
extern const uint32_t __Error_EndReadCalledTwice_mC80DEEBE51D036D4CCC24671947ED863E470A7FA_MetadataUsageId;
extern const uint32_t __Error_EndWriteCalledTwice_m991D9485115C8EE93569537674B4206DC8EADB2C_MetadataUsageId;
extern const uint32_t __Error_FileNotOpen_m72E3844C53F9BBA3DA2AB9A113480804F1954633_MetadataUsageId;
extern const uint32_t __Error_GetDisplayablePath_m5DC1E0FB5AAE0E7562C60B548E38AD45249D0105_MetadataUsageId;
extern const uint32_t __Error_MemoryStreamNotExpandable_mF68838F1E20B6FD1A292017A734F89534C002F7F_MetadataUsageId;
extern const uint32_t __Error_ReadNotSupported_mE20D002F31774F786CAC01DE88CF2FD9F46C0696_MetadataUsageId;
extern const uint32_t __Error_ReaderClosed_mDEB32103741D23496C28421032CA44B7DB2E0717_MetadataUsageId;
extern const uint32_t __Error_StreamIsClosed_mAD2694451AA25C7099F2FD1C2357D5C3F1969F37_MetadataUsageId;
extern const uint32_t __Error_WinIOError_mDA34FD0DC2ED957492B470B48E69838BB4E68A4B_MetadataUsageId;
extern const uint32_t __Error_WriteNotSupported_mDC018F02757EB3116B45F9CEE41F83910ED5FC1B_MetadataUsageId;
extern const uint32_t __Error_WriterClosed_m0CC83C102ABE14A259F83C3943DC72B372D1CC2F_MetadataUsageId;
extern const uint32_t __Error_WrongAsyncResult_m612D2B72EAE5B009FFB4DFD0831140EE6819B909_MetadataUsageId;
struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_com;
struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_pinvoke;
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com;
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke;
struct Delegate_t;;
struct Delegate_t_marshaled_com;
struct Delegate_t_marshaled_com;;
struct Delegate_t_marshaled_pinvoke;
struct Delegate_t_marshaled_pinvoke;;
struct Exception_t_marshaled_com;
struct Exception_t_marshaled_pinvoke;
struct AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17;
struct BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040;
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821;
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86;
struct DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D;
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83;
struct LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0;
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A;
struct CustomAttributeDataU5BU5D_tE5B7BD0F5BF214F2158089D8B3FDA19FE1834BEB;
struct ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694;
struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F;
#ifndef RUNTIMEOBJECT_H
#define RUNTIMEOBJECT_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Object
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RUNTIMEOBJECT_H
#ifndef WIN32_FIND_DATA_T8A943FFC86D2F011824E8A9402E1DD1C54E27B56_H
#define WIN32_FIND_DATA_T8A943FFC86D2F011824E8A9402E1DD1C54E27B56_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.Win32.Win32Native_WIN32_FIND_DATA
struct WIN32_FIND_DATA_t8A943FFC86D2F011824E8A9402E1DD1C54E27B56 : public RuntimeObject
{
public:
// System.Int32 Microsoft.Win32.Win32Native_WIN32_FIND_DATA::dwFileAttributes
int32_t ___dwFileAttributes_0;
// System.String Microsoft.Win32.Win32Native_WIN32_FIND_DATA::cFileName
String_t* ___cFileName_1;
public:
inline static int32_t get_offset_of_dwFileAttributes_0() { return static_cast<int32_t>(offsetof(WIN32_FIND_DATA_t8A943FFC86D2F011824E8A9402E1DD1C54E27B56, ___dwFileAttributes_0)); }
inline int32_t get_dwFileAttributes_0() const { return ___dwFileAttributes_0; }
inline int32_t* get_address_of_dwFileAttributes_0() { return &___dwFileAttributes_0; }
inline void set_dwFileAttributes_0(int32_t value)
{
___dwFileAttributes_0 = value;
}
inline static int32_t get_offset_of_cFileName_1() { return static_cast<int32_t>(offsetof(WIN32_FIND_DATA_t8A943FFC86D2F011824E8A9402E1DD1C54E27B56, ___cFileName_1)); }
inline String_t* get_cFileName_1() const { return ___cFileName_1; }
inline String_t** get_address_of_cFileName_1() { return &___cFileName_1; }
inline void set_cFileName_1(String_t* value)
{
___cFileName_1 = value;
Il2CppCodeGenWriteBarrier((&___cFileName_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // WIN32_FIND_DATA_T8A943FFC86D2F011824E8A9402E1DD1C54E27B56_H
struct Il2CppArrayBounds;
#ifndef RUNTIMEARRAY_H
#define RUNTIMEARRAY_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Array
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RUNTIMEARRAY_H
#ifndef ATTRIBUTE_TF048C13FB3C8CFCC53F82290E4A3F621089F9A74_H
#define ATTRIBUTE_TF048C13FB3C8CFCC53F82290E4A3F621089F9A74_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Attribute
struct Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ATTRIBUTE_TF048C13FB3C8CFCC53F82290E4A3F621089F9A74_H
#ifndef DICTIONARY_2_TB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08_H
#define DICTIONARY_2_TB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2<System.String,System.LocalDataStoreSlot>
struct Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08 : 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_tF47AA275DDFB02146AFA62DA32AA55794E13F046* ___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_t3050E2E250DD1DB73E5D8EA2C7D592250D47E70A * ___keys_7;
// System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_t4A2F7D81D3EC61BE67642C0B0FA962D896A3E1E7 * ___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_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08, ___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((&___buckets_0), value);
}
inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08, ___entries_1)); }
inline EntryU5BU5D_tF47AA275DDFB02146AFA62DA32AA55794E13F046* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_tF47AA275DDFB02146AFA62DA32AA55794E13F046** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_tF47AA275DDFB02146AFA62DA32AA55794E13F046* value)
{
___entries_1 = value;
Il2CppCodeGenWriteBarrier((&___entries_1), value);
}
inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08, ___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_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08, ___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_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08, ___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_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08, ___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_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08, ___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((&___comparer_6), value);
}
inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08, ___keys_7)); }
inline KeyCollection_t3050E2E250DD1DB73E5D8EA2C7D592250D47E70A * get_keys_7() const { return ___keys_7; }
inline KeyCollection_t3050E2E250DD1DB73E5D8EA2C7D592250D47E70A ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_t3050E2E250DD1DB73E5D8EA2C7D592250D47E70A * value)
{
___keys_7 = value;
Il2CppCodeGenWriteBarrier((&___keys_7), value);
}
inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08, ___values_8)); }
inline ValueCollection_t4A2F7D81D3EC61BE67642C0B0FA962D896A3E1E7 * get_values_8() const { return ___values_8; }
inline ValueCollection_t4A2F7D81D3EC61BE67642C0B0FA962D896A3E1E7 ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_t4A2F7D81D3EC61BE67642C0B0FA962D896A3E1E7 * value)
{
___values_8 = value;
Il2CppCodeGenWriteBarrier((&___values_8), value);
}
inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08, ____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((&____syncRoot_9), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DICTIONARY_2_TB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08_H
#ifndef DICTIONARY_2_T10ABF562FF47B327563169FBB750047BF1341236_H
#define DICTIONARY_2_T10ABF562FF47B327563169FBB750047BF1341236_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2<System.Type,System.AttributeUsageAttribute>
struct Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236 : 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_tAB32E48E1EF03718E6E17D1056D26DD6C7EB7E12* ___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_tAA50784758BF3D5C7D911FB978233D04C2EE7CEA * ___keys_7;
// System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_t154EDF3CAEA5134C6141C82CDC837C8E4446DBA4 * ___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_t10ABF562FF47B327563169FBB750047BF1341236, ___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((&___buckets_0), value);
}
inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236, ___entries_1)); }
inline EntryU5BU5D_tAB32E48E1EF03718E6E17D1056D26DD6C7EB7E12* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_tAB32E48E1EF03718E6E17D1056D26DD6C7EB7E12** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_tAB32E48E1EF03718E6E17D1056D26DD6C7EB7E12* value)
{
___entries_1 = value;
Il2CppCodeGenWriteBarrier((&___entries_1), value);
}
inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236, ___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_t10ABF562FF47B327563169FBB750047BF1341236, ___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_t10ABF562FF47B327563169FBB750047BF1341236, ___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_t10ABF562FF47B327563169FBB750047BF1341236, ___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_t10ABF562FF47B327563169FBB750047BF1341236, ___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((&___comparer_6), value);
}
inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236, ___keys_7)); }
inline KeyCollection_tAA50784758BF3D5C7D911FB978233D04C2EE7CEA * get_keys_7() const { return ___keys_7; }
inline KeyCollection_tAA50784758BF3D5C7D911FB978233D04C2EE7CEA ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_tAA50784758BF3D5C7D911FB978233D04C2EE7CEA * value)
{
___keys_7 = value;
Il2CppCodeGenWriteBarrier((&___keys_7), value);
}
inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236, ___values_8)); }
inline ValueCollection_t154EDF3CAEA5134C6141C82CDC837C8E4446DBA4 * get_values_8() const { return ___values_8; }
inline ValueCollection_t154EDF3CAEA5134C6141C82CDC837C8E4446DBA4 ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_t154EDF3CAEA5134C6141C82CDC837C8E4446DBA4 * value)
{
___values_8 = value;
Il2CppCodeGenWriteBarrier((&___values_8), value);
}
inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236, ____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((&____syncRoot_9), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DICTIONARY_2_T10ABF562FF47B327563169FBB750047BF1341236_H
#ifndef DICTIONARY_2_T772861296417691DD84C8A9E8D84AAC7F39FD992_H
#define DICTIONARY_2_T772861296417691DD84C8A9E8D84AAC7F39FD992_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2<System.Type,System.MonoCustomAttrs_AttributeInfo>
struct Dictionary_2_t772861296417691DD84C8A9E8D84AAC7F39FD992 : 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_t3579035BE570C7E05C388F86010EECDCE65B7E8F* ___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_tDE0FF85FBA4F0A8F2A2F9FB41087B790F709C515 * ___keys_7;
// System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_tD47DAB180B5AF6301D65DD513C7061AC268026A2 * ___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_t772861296417691DD84C8A9E8D84AAC7F39FD992, ___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((&___buckets_0), value);
}
inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t772861296417691DD84C8A9E8D84AAC7F39FD992, ___entries_1)); }
inline EntryU5BU5D_t3579035BE570C7E05C388F86010EECDCE65B7E8F* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_t3579035BE570C7E05C388F86010EECDCE65B7E8F** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_t3579035BE570C7E05C388F86010EECDCE65B7E8F* value)
{
___entries_1 = value;
Il2CppCodeGenWriteBarrier((&___entries_1), value);
}
inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t772861296417691DD84C8A9E8D84AAC7F39FD992, ___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_t772861296417691DD84C8A9E8D84AAC7F39FD992, ___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_t772861296417691DD84C8A9E8D84AAC7F39FD992, ___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_t772861296417691DD84C8A9E8D84AAC7F39FD992, ___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_t772861296417691DD84C8A9E8D84AAC7F39FD992, ___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((&___comparer_6), value);
}
inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t772861296417691DD84C8A9E8D84AAC7F39FD992, ___keys_7)); }
inline KeyCollection_tDE0FF85FBA4F0A8F2A2F9FB41087B790F709C515 * get_keys_7() const { return ___keys_7; }
inline KeyCollection_tDE0FF85FBA4F0A8F2A2F9FB41087B790F709C515 ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_tDE0FF85FBA4F0A8F2A2F9FB41087B790F709C515 * value)
{
___keys_7 = value;
Il2CppCodeGenWriteBarrier((&___keys_7), value);
}
inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t772861296417691DD84C8A9E8D84AAC7F39FD992, ___values_8)); }
inline ValueCollection_tD47DAB180B5AF6301D65DD513C7061AC268026A2 * get_values_8() const { return ___values_8; }
inline ValueCollection_tD47DAB180B5AF6301D65DD513C7061AC268026A2 ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_tD47DAB180B5AF6301D65DD513C7061AC268026A2 * value)
{
___values_8 = value;
Il2CppCodeGenWriteBarrier((&___values_8), value);
}
inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t772861296417691DD84C8A9E8D84AAC7F39FD992, ____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((&____syncRoot_9), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DICTIONARY_2_T772861296417691DD84C8A9E8D84AAC7F39FD992_H
#ifndef LIST_1_TA81E98B62587323D3D4019332A93BDF9F9E1163D_H
#define LIST_1_TA81E98B62587323D3D4019332A93BDF9F9E1163D_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.List`1<System.LocalDataStore>
struct List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
LocalDataStoreU5BU5D_tC9F54954E109455B4DE4A059EE52379BEB3BFDCD* ____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_tA81E98B62587323D3D4019332A93BDF9F9E1163D, ____items_1)); }
inline LocalDataStoreU5BU5D_tC9F54954E109455B4DE4A059EE52379BEB3BFDCD* get__items_1() const { return ____items_1; }
inline LocalDataStoreU5BU5D_tC9F54954E109455B4DE4A059EE52379BEB3BFDCD** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(LocalDataStoreU5BU5D_tC9F54954E109455B4DE4A059EE52379BEB3BFDCD* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((&____items_1), value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D, ____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_tA81E98B62587323D3D4019332A93BDF9F9E1163D, ____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_tA81E98B62587323D3D4019332A93BDF9F9E1163D, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((&____syncRoot_4), value);
}
};
struct List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
LocalDataStoreU5BU5D_tC9F54954E109455B4DE4A059EE52379BEB3BFDCD* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D_StaticFields, ____emptyArray_5)); }
inline LocalDataStoreU5BU5D_tC9F54954E109455B4DE4A059EE52379BEB3BFDCD* get__emptyArray_5() const { return ____emptyArray_5; }
inline LocalDataStoreU5BU5D_tC9F54954E109455B4DE4A059EE52379BEB3BFDCD** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(LocalDataStoreU5BU5D_tC9F54954E109455B4DE4A059EE52379BEB3BFDCD* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((&____emptyArray_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LIST_1_TA81E98B62587323D3D4019332A93BDF9F9E1163D_H
#ifndef LIST_1_T05CC3C859AB5E6024394EF9A42E3E696628CA02D_H
#define LIST_1_T05CC3C859AB5E6024394EF9A42E3E696628CA02D_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.List`1<System.Object>
struct List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____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_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____items_1)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__items_1() const { return ____items_1; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((&____items_1), value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____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_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____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_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((&____syncRoot_4), value);
}
};
struct List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D_StaticFields, ____emptyArray_5)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__emptyArray_5() const { return ____emptyArray_5; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((&____emptyArray_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LIST_1_T05CC3C859AB5E6024394EF9A42E3E696628CA02D_H
#ifndef READONLYCOLLECTION_1_TDD4D93FFE40A14E74D1B366764AABCE0121ED99F_H
#define READONLYCOLLECTION_1_TDD4D93FFE40A14E74D1B366764AABCE0121ED99F_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeData>
struct ReadOnlyCollection_1_tDD4D93FFE40A14E74D1B366764AABCE0121ED99F : public RuntimeObject
{
public:
// System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1::list
RuntimeObject* ___list_0;
// System.Object System.Collections.ObjectModel.ReadOnlyCollection`1::_syncRoot
RuntimeObject * ____syncRoot_1;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_tDD4D93FFE40A14E74D1B366764AABCE0121ED99F, ___list_0)); }
inline RuntimeObject* get_list_0() const { return ___list_0; }
inline RuntimeObject** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(RuntimeObject* value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((&___list_0), value);
}
inline static int32_t get_offset_of__syncRoot_1() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_tDD4D93FFE40A14E74D1B366764AABCE0121ED99F, ____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((&____syncRoot_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // READONLYCOLLECTION_1_TDD4D93FFE40A14E74D1B366764AABCE0121ED99F_H
#ifndef COMPATIBILITYSWITCHES_TC541F9F5404925C97741A0628E9B6D26C40CFA91_H
#define COMPATIBILITYSWITCHES_TC541F9F5404925C97741A0628E9B6D26C40CFA91_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.CompatibilitySwitches
struct CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91 : public RuntimeObject
{
public:
public:
};
struct CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_StaticFields
{
public:
// System.Boolean System.CompatibilitySwitches::IsAppEarlierThanSilverlight4
bool ___IsAppEarlierThanSilverlight4_0;
// System.Boolean System.CompatibilitySwitches::IsAppEarlierThanWindowsPhone8
bool ___IsAppEarlierThanWindowsPhone8_1;
public:
inline static int32_t get_offset_of_IsAppEarlierThanSilverlight4_0() { return static_cast<int32_t>(offsetof(CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_StaticFields, ___IsAppEarlierThanSilverlight4_0)); }
inline bool get_IsAppEarlierThanSilverlight4_0() const { return ___IsAppEarlierThanSilverlight4_0; }
inline bool* get_address_of_IsAppEarlierThanSilverlight4_0() { return &___IsAppEarlierThanSilverlight4_0; }
inline void set_IsAppEarlierThanSilverlight4_0(bool value)
{
___IsAppEarlierThanSilverlight4_0 = value;
}
inline static int32_t get_offset_of_IsAppEarlierThanWindowsPhone8_1() { return static_cast<int32_t>(offsetof(CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_StaticFields, ___IsAppEarlierThanWindowsPhone8_1)); }
inline bool get_IsAppEarlierThanWindowsPhone8_1() const { return ___IsAppEarlierThanWindowsPhone8_1; }
inline bool* get_address_of_IsAppEarlierThanWindowsPhone8_1() { return &___IsAppEarlierThanWindowsPhone8_1; }
inline void set_IsAppEarlierThanWindowsPhone8_1(bool value)
{
___IsAppEarlierThanWindowsPhone8_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // COMPATIBILITYSWITCHES_TC541F9F5404925C97741A0628E9B6D26C40CFA91_H
#ifndef DELEGATEDATA_T1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE_H
#define DELEGATEDATA_T1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.DelegateData
struct DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE : public RuntimeObject
{
public:
// System.Type System.DelegateData::target_type
Type_t * ___target_type_0;
// System.String System.DelegateData::method_name
String_t* ___method_name_1;
// System.Boolean System.DelegateData::curried_first_arg
bool ___curried_first_arg_2;
public:
inline static int32_t get_offset_of_target_type_0() { return static_cast<int32_t>(offsetof(DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE, ___target_type_0)); }
inline Type_t * get_target_type_0() const { return ___target_type_0; }
inline Type_t ** get_address_of_target_type_0() { return &___target_type_0; }
inline void set_target_type_0(Type_t * value)
{
___target_type_0 = value;
Il2CppCodeGenWriteBarrier((&___target_type_0), value);
}
inline static int32_t get_offset_of_method_name_1() { return static_cast<int32_t>(offsetof(DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE, ___method_name_1)); }
inline String_t* get_method_name_1() const { return ___method_name_1; }
inline String_t** get_address_of_method_name_1() { return &___method_name_1; }
inline void set_method_name_1(String_t* value)
{
___method_name_1 = value;
Il2CppCodeGenWriteBarrier((&___method_name_1), value);
}
inline static int32_t get_offset_of_curried_first_arg_2() { return static_cast<int32_t>(offsetof(DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE, ___curried_first_arg_2)); }
inline bool get_curried_first_arg_2() const { return ___curried_first_arg_2; }
inline bool* get_address_of_curried_first_arg_2() { return &___curried_first_arg_2; }
inline void set_curried_first_arg_2(bool value)
{
___curried_first_arg_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DELEGATEDATA_T1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE_H
#ifndef EMPTYARRAY_1_T40AF87279AA6E3AEEABB0CBA1425F6720C40961A_H
#define EMPTYARRAY_1_T40AF87279AA6E3AEEABB0CBA1425F6720C40961A_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.EmptyArray`1<System.Char>
struct EmptyArray_1_t40AF87279AA6E3AEEABB0CBA1425F6720C40961A : public RuntimeObject
{
public:
public:
};
struct EmptyArray_1_t40AF87279AA6E3AEEABB0CBA1425F6720C40961A_StaticFields
{
public:
// T[] System.EmptyArray`1::Value
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyArray_1_t40AF87279AA6E3AEEABB0CBA1425F6720C40961A_StaticFields, ___Value_0)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_Value_0() const { return ___Value_0; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((&___Value_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EMPTYARRAY_1_T40AF87279AA6E3AEEABB0CBA1425F6720C40961A_H
#ifndef EMPTYARRAY_1_TCF137C88A5824F413EFB5A2F31664D8207E61D26_H
#define EMPTYARRAY_1_TCF137C88A5824F413EFB5A2F31664D8207E61D26_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.EmptyArray`1<System.Object>
struct EmptyArray_1_tCF137C88A5824F413EFB5A2F31664D8207E61D26 : public RuntimeObject
{
public:
public:
};
struct EmptyArray_1_tCF137C88A5824F413EFB5A2F31664D8207E61D26_StaticFields
{
public:
// T[] System.EmptyArray`1::Value
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyArray_1_tCF137C88A5824F413EFB5A2F31664D8207E61D26_StaticFields, ___Value_0)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_Value_0() const { return ___Value_0; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((&___Value_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EMPTYARRAY_1_TCF137C88A5824F413EFB5A2F31664D8207E61D26_H
#ifndef EXCEPTION_T_H
#define EXCEPTION_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Exception
struct Exception_t : public RuntimeObject
{
public:
// System.String System.Exception::_className
String_t* ____className_1;
// System.String System.Exception::_message
String_t* ____message_2;
// System.Collections.IDictionary System.Exception::_data
RuntimeObject* ____data_3;
// System.Exception System.Exception::_innerException
Exception_t * ____innerException_4;
// System.String System.Exception::_helpURL
String_t* ____helpURL_5;
// System.Object System.Exception::_stackTrace
RuntimeObject * ____stackTrace_6;
// System.String System.Exception::_stackTraceString
String_t* ____stackTraceString_7;
// System.String System.Exception::_remoteStackTraceString
String_t* ____remoteStackTraceString_8;
// System.Int32 System.Exception::_remoteStackIndex
int32_t ____remoteStackIndex_9;
// System.Object System.Exception::_dynamicMethods
RuntimeObject * ____dynamicMethods_10;
// System.Int32 System.Exception::_HResult
int32_t ____HResult_11;
// System.String System.Exception::_source
String_t* ____source_12;
// System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager
SafeSerializationManager_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((&____className_1), value);
}
inline static int32_t get_offset_of__message_2() { return static_cast<int32_t>(offsetof(Exception_t, ____message_2)); }
inline String_t* get__message_2() const { return ____message_2; }
inline String_t** get_address_of__message_2() { return &____message_2; }
inline void set__message_2(String_t* value)
{
____message_2 = value;
Il2CppCodeGenWriteBarrier((&____message_2), value);
}
inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(Exception_t, ____data_3)); }
inline RuntimeObject* get__data_3() const { return ____data_3; }
inline RuntimeObject** get_address_of__data_3() { return &____data_3; }
inline void set__data_3(RuntimeObject* value)
{
____data_3 = value;
Il2CppCodeGenWriteBarrier((&____data_3), value);
}
inline static int32_t get_offset_of__innerException_4() { return static_cast<int32_t>(offsetof(Exception_t, ____innerException_4)); }
inline Exception_t * get__innerException_4() const { return ____innerException_4; }
inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; }
inline void set__innerException_4(Exception_t * value)
{
____innerException_4 = value;
Il2CppCodeGenWriteBarrier((&____innerException_4), value);
}
inline static int32_t get_offset_of__helpURL_5() { return static_cast<int32_t>(offsetof(Exception_t, ____helpURL_5)); }
inline String_t* get__helpURL_5() const { return ____helpURL_5; }
inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; }
inline void set__helpURL_5(String_t* value)
{
____helpURL_5 = value;
Il2CppCodeGenWriteBarrier((&____helpURL_5), value);
}
inline static int32_t get_offset_of__stackTrace_6() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTrace_6)); }
inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; }
inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; }
inline void set__stackTrace_6(RuntimeObject * value)
{
____stackTrace_6 = value;
Il2CppCodeGenWriteBarrier((&____stackTrace_6), value);
}
inline static int32_t get_offset_of__stackTraceString_7() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTraceString_7)); }
inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; }
inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; }
inline void set__stackTraceString_7(String_t* value)
{
____stackTraceString_7 = value;
Il2CppCodeGenWriteBarrier((&____stackTraceString_7), value);
}
inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_8)); }
inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; }
inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; }
inline void set__remoteStackTraceString_8(String_t* value)
{
____remoteStackTraceString_8 = value;
Il2CppCodeGenWriteBarrier((&____remoteStackTraceString_8), value);
}
inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackIndex_9)); }
inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; }
inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; }
inline void set__remoteStackIndex_9(int32_t value)
{
____remoteStackIndex_9 = value;
}
inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast<int32_t>(offsetof(Exception_t, ____dynamicMethods_10)); }
inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; }
inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; }
inline void set__dynamicMethods_10(RuntimeObject * value)
{
____dynamicMethods_10 = value;
Il2CppCodeGenWriteBarrier((&____dynamicMethods_10), value);
}
inline static int32_t get_offset_of__HResult_11() { return static_cast<int32_t>(offsetof(Exception_t, ____HResult_11)); }
inline int32_t get__HResult_11() const { return ____HResult_11; }
inline int32_t* get_address_of__HResult_11() { return &____HResult_11; }
inline void set__HResult_11(int32_t value)
{
____HResult_11 = value;
}
inline static int32_t get_offset_of__source_12() { return static_cast<int32_t>(offsetof(Exception_t, ____source_12)); }
inline String_t* get__source_12() const { return ____source_12; }
inline String_t** get_address_of__source_12() { return &____source_12; }
inline void set__source_12(String_t* value)
{
____source_12 = value;
Il2CppCodeGenWriteBarrier((&____source_12), value);
}
inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); }
inline SafeSerializationManager_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((&____safeSerializationManager_13), value);
}
inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); }
inline StackTraceU5BU5D_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((&___captured_traces_14), value);
}
inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast<int32_t>(offsetof(Exception_t, ___native_trace_ips_15)); }
inline IntPtrU5BU5D_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((&___native_trace_ips_15), value);
}
};
struct Exception_t_StaticFields
{
public:
// System.Object System.Exception::s_EDILock
RuntimeObject * ___s_EDILock_0;
public:
inline static int32_t get_offset_of_s_EDILock_0() { return static_cast<int32_t>(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); }
inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; }
inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; }
inline void set_s_EDILock_0(RuntimeObject * value)
{
___s_EDILock_0 = value;
Il2CppCodeGenWriteBarrier((&___s_EDILock_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Exception
struct Exception_t_marshaled_pinvoke
{
char* ____className_1;
char* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_pinvoke* ____innerException_4;
char* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
char* ____stackTraceString_7;
char* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
char* ____source_12;
SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
intptr_t* ___native_trace_ips_15;
};
// Native definition for COM marshalling of System.Exception
struct Exception_t_marshaled_com
{
Il2CppChar* ____className_1;
Il2CppChar* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_com* ____innerException_4;
Il2CppChar* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
Il2CppChar* ____stackTraceString_7;
Il2CppChar* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
Il2CppChar* ____source_12;
SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
intptr_t* ___native_trace_ips_15;
};
#endif // EXCEPTION_T_H
#ifndef CULTUREINFO_T345AC6924134F039ED9A11F3E03F8E91B6A3225F_H
#define CULTUREINFO_T345AC6924134F039ED9A11F3E03F8E91B6A3225F_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___numInfo_10), 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((&___dateTimeInfo_11), 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((&___textInfo_12), 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((&___m_name_13), 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((&___englishname_14), 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((&___nativename_15), 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((&___iso3lang_16), 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((&___iso2lang_17), 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((&___win3lang_18), 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((&___territory_19), 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((&___native_calendar_names_20), 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((&___compareInfo_21), 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((&___calendar_24), 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((&___parent_culture_25), 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((&___cached_serialized_form_27), 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((&___m_cultureData_28), 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((&___invariant_culture_info_0), 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((&___shared_table_lock_1), 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((&___default_current_culture_2), 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((&___s_DefaultThreadCurrentUICulture_33), 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((&___s_DefaultThreadCurrentCulture_34), 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((&___shared_by_number_35), 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((&___shared_by_name_36), 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// 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;
uint8_t* ___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;
uint8_t* ___cached_serialized_form_27;
CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_com* ___m_cultureData_28;
int32_t ___m_isInherited_29;
};
#endif // CULTUREINFO_T345AC6924134F039ED9A11F3E03F8E91B6A3225F_H
#ifndef SEARCHRESULT_TB01A1197ED99DD064C9BB9ED2990ABCD8FD6BCAE_H
#define SEARCHRESULT_TB01A1197ED99DD064C9BB9ED2990ABCD8FD6BCAE_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.SearchResult
struct SearchResult_tB01A1197ED99DD064C9BB9ED2990ABCD8FD6BCAE : public RuntimeObject
{
public:
// System.String System.IO.SearchResult::fullPath
String_t* ___fullPath_0;
// System.String System.IO.SearchResult::userPath
String_t* ___userPath_1;
// Microsoft.Win32.Win32Native_WIN32_FIND_DATA System.IO.SearchResult::findData
WIN32_FIND_DATA_t8A943FFC86D2F011824E8A9402E1DD1C54E27B56 * ___findData_2;
public:
inline static int32_t get_offset_of_fullPath_0() { return static_cast<int32_t>(offsetof(SearchResult_tB01A1197ED99DD064C9BB9ED2990ABCD8FD6BCAE, ___fullPath_0)); }
inline String_t* get_fullPath_0() const { return ___fullPath_0; }
inline String_t** get_address_of_fullPath_0() { return &___fullPath_0; }
inline void set_fullPath_0(String_t* value)
{
___fullPath_0 = value;
Il2CppCodeGenWriteBarrier((&___fullPath_0), value);
}
inline static int32_t get_offset_of_userPath_1() { return static_cast<int32_t>(offsetof(SearchResult_tB01A1197ED99DD064C9BB9ED2990ABCD8FD6BCAE, ___userPath_1)); }
inline String_t* get_userPath_1() const { return ___userPath_1; }
inline String_t** get_address_of_userPath_1() { return &___userPath_1; }
inline void set_userPath_1(String_t* value)
{
___userPath_1 = value;
Il2CppCodeGenWriteBarrier((&___userPath_1), value);
}
inline static int32_t get_offset_of_findData_2() { return static_cast<int32_t>(offsetof(SearchResult_tB01A1197ED99DD064C9BB9ED2990ABCD8FD6BCAE, ___findData_2)); }
inline WIN32_FIND_DATA_t8A943FFC86D2F011824E8A9402E1DD1C54E27B56 * get_findData_2() const { return ___findData_2; }
inline WIN32_FIND_DATA_t8A943FFC86D2F011824E8A9402E1DD1C54E27B56 ** get_address_of_findData_2() { return &___findData_2; }
inline void set_findData_2(WIN32_FIND_DATA_t8A943FFC86D2F011824E8A9402E1DD1C54E27B56 * value)
{
___findData_2 = value;
Il2CppCodeGenWriteBarrier((&___findData_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SEARCHRESULT_TB01A1197ED99DD064C9BB9ED2990ABCD8FD6BCAE_H
#ifndef SEARCHRESULTHANDLER_1_T512E43241A0A98FD5802FD1BDA5ABD335315853C_H
#define SEARCHRESULTHANDLER_1_T512E43241A0A98FD5802FD1BDA5ABD335315853C_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.SearchResultHandler`1<System.String>
struct SearchResultHandler_1_t512E43241A0A98FD5802FD1BDA5ABD335315853C : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SEARCHRESULTHANDLER_1_T512E43241A0A98FD5802FD1BDA5ABD335315853C_H
#ifndef U3CU3EC_TD3B2771D28CFCA225BA7B58C729C5FD766E56590_H
#define U3CU3EC_TD3B2771D28CFCA225BA7B58C729C5FD766E56590_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.TextReader_<>c
struct U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590 : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590_StaticFields
{
public:
// System.IO.TextReader_<>c System.IO.TextReader_<>c::<>9
U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590 * ___U3CU3E9_0;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590 * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590 * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E9_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CU3EC_TD3B2771D28CFCA225BA7B58C729C5FD766E56590_H
#ifndef U3CU3EC_TD60344454053DCF4B3CBDE46ACE0FEA519855BA7_H
#define U3CU3EC_TD60344454053DCF4B3CBDE46ACE0FEA519855BA7_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.TextWriter_<>c
struct U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7_StaticFields
{
public:
// System.IO.TextWriter_<>c System.IO.TextWriter_<>c::<>9
U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 * ___U3CU3E9_0;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E9_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CU3EC_TD60344454053DCF4B3CBDE46ACE0FEA519855BA7_H
#ifndef __ERROR_TE109C573A1DDD32586B89840930AD5609EC8D89C_H
#define __ERROR_TE109C573A1DDD32586B89840930AD5609EC8D89C_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.__Error
struct __Error_tE109C573A1DDD32586B89840930AD5609EC8D89C : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __ERROR_TE109C573A1DDD32586B89840930AD5609EC8D89C_H
#ifndef KNOWNTERMINALS_TC33732356694467E5C41300FDB5A86143590F1AE_H
#define KNOWNTERMINALS_TC33732356694467E5C41300FDB5A86143590F1AE_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.KnownTerminals
struct KnownTerminals_tC33732356694467E5C41300FDB5A86143590F1AE : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KNOWNTERMINALS_TC33732356694467E5C41300FDB5A86143590F1AE_H
#ifndef LOCALDATASTORE_T6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE_H
#define LOCALDATASTORE_T6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.LocalDataStore
struct LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE : public RuntimeObject
{
public:
// System.LocalDataStoreElement[] System.LocalDataStore::m_DataTable
LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* ___m_DataTable_0;
// System.LocalDataStoreMgr System.LocalDataStore::m_Manager
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * ___m_Manager_1;
public:
inline static int32_t get_offset_of_m_DataTable_0() { return static_cast<int32_t>(offsetof(LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE, ___m_DataTable_0)); }
inline LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* get_m_DataTable_0() const { return ___m_DataTable_0; }
inline LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0** get_address_of_m_DataTable_0() { return &___m_DataTable_0; }
inline void set_m_DataTable_0(LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* value)
{
___m_DataTable_0 = value;
Il2CppCodeGenWriteBarrier((&___m_DataTable_0), value);
}
inline static int32_t get_offset_of_m_Manager_1() { return static_cast<int32_t>(offsetof(LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE, ___m_Manager_1)); }
inline LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * get_m_Manager_1() const { return ___m_Manager_1; }
inline LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 ** get_address_of_m_Manager_1() { return &___m_Manager_1; }
inline void set_m_Manager_1(LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * value)
{
___m_Manager_1 = value;
Il2CppCodeGenWriteBarrier((&___m_Manager_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LOCALDATASTORE_T6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE_H
#ifndef LOCALDATASTOREELEMENT_T66BF9A6D3911DE623371332D6F7EC100EC070BFA_H
#define LOCALDATASTOREELEMENT_T66BF9A6D3911DE623371332D6F7EC100EC070BFA_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.LocalDataStoreElement
struct LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA : public RuntimeObject
{
public:
// System.Object System.LocalDataStoreElement::m_value
RuntimeObject * ___m_value_0;
// System.Int64 System.LocalDataStoreElement::m_cookie
int64_t ___m_cookie_1;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA, ___m_value_0)); }
inline RuntimeObject * get_m_value_0() const { return ___m_value_0; }
inline RuntimeObject ** get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(RuntimeObject * value)
{
___m_value_0 = value;
Il2CppCodeGenWriteBarrier((&___m_value_0), value);
}
inline static int32_t get_offset_of_m_cookie_1() { return static_cast<int32_t>(offsetof(LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA, ___m_cookie_1)); }
inline int64_t get_m_cookie_1() const { return ___m_cookie_1; }
inline int64_t* get_address_of_m_cookie_1() { return &___m_cookie_1; }
inline void set_m_cookie_1(int64_t value)
{
___m_cookie_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LOCALDATASTOREELEMENT_T66BF9A6D3911DE623371332D6F7EC100EC070BFA_H
#ifndef LOCALDATASTOREHOLDER_TE0636E08496405406FD63190AC51EEB2EE51E304_H
#define LOCALDATASTOREHOLDER_TE0636E08496405406FD63190AC51EEB2EE51E304_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.LocalDataStoreHolder
struct LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 : public RuntimeObject
{
public:
// System.LocalDataStore System.LocalDataStoreHolder::m_Store
LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * ___m_Store_0;
public:
inline static int32_t get_offset_of_m_Store_0() { return static_cast<int32_t>(offsetof(LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304, ___m_Store_0)); }
inline LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * get_m_Store_0() const { return ___m_Store_0; }
inline LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE ** get_address_of_m_Store_0() { return &___m_Store_0; }
inline void set_m_Store_0(LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * value)
{
___m_Store_0 = value;
Il2CppCodeGenWriteBarrier((&___m_Store_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LOCALDATASTOREHOLDER_TE0636E08496405406FD63190AC51EEB2EE51E304_H
#ifndef LOCALDATASTOREMGR_T1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9_H
#define LOCALDATASTOREMGR_T1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.LocalDataStoreMgr
struct LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 : public RuntimeObject
{
public:
// System.Boolean[] System.LocalDataStoreMgr::m_SlotInfoTable
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* ___m_SlotInfoTable_0;
// System.Int32 System.LocalDataStoreMgr::m_FirstAvailableSlot
int32_t ___m_FirstAvailableSlot_1;
// System.Collections.Generic.List`1<System.LocalDataStore> System.LocalDataStoreMgr::m_ManagedLocalDataStores
List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D * ___m_ManagedLocalDataStores_2;
// System.Collections.Generic.Dictionary`2<System.String,System.LocalDataStoreSlot> System.LocalDataStoreMgr::m_KeyToSlotMap
Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08 * ___m_KeyToSlotMap_3;
// System.Int64 System.LocalDataStoreMgr::m_CookieGenerator
int64_t ___m_CookieGenerator_4;
public:
inline static int32_t get_offset_of_m_SlotInfoTable_0() { return static_cast<int32_t>(offsetof(LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9, ___m_SlotInfoTable_0)); }
inline BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* get_m_SlotInfoTable_0() const { return ___m_SlotInfoTable_0; }
inline BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040** get_address_of_m_SlotInfoTable_0() { return &___m_SlotInfoTable_0; }
inline void set_m_SlotInfoTable_0(BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* value)
{
___m_SlotInfoTable_0 = value;
Il2CppCodeGenWriteBarrier((&___m_SlotInfoTable_0), value);
}
inline static int32_t get_offset_of_m_FirstAvailableSlot_1() { return static_cast<int32_t>(offsetof(LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9, ___m_FirstAvailableSlot_1)); }
inline int32_t get_m_FirstAvailableSlot_1() const { return ___m_FirstAvailableSlot_1; }
inline int32_t* get_address_of_m_FirstAvailableSlot_1() { return &___m_FirstAvailableSlot_1; }
inline void set_m_FirstAvailableSlot_1(int32_t value)
{
___m_FirstAvailableSlot_1 = value;
}
inline static int32_t get_offset_of_m_ManagedLocalDataStores_2() { return static_cast<int32_t>(offsetof(LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9, ___m_ManagedLocalDataStores_2)); }
inline List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D * get_m_ManagedLocalDataStores_2() const { return ___m_ManagedLocalDataStores_2; }
inline List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D ** get_address_of_m_ManagedLocalDataStores_2() { return &___m_ManagedLocalDataStores_2; }
inline void set_m_ManagedLocalDataStores_2(List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D * value)
{
___m_ManagedLocalDataStores_2 = value;
Il2CppCodeGenWriteBarrier((&___m_ManagedLocalDataStores_2), value);
}
inline static int32_t get_offset_of_m_KeyToSlotMap_3() { return static_cast<int32_t>(offsetof(LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9, ___m_KeyToSlotMap_3)); }
inline Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08 * get_m_KeyToSlotMap_3() const { return ___m_KeyToSlotMap_3; }
inline Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08 ** get_address_of_m_KeyToSlotMap_3() { return &___m_KeyToSlotMap_3; }
inline void set_m_KeyToSlotMap_3(Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08 * value)
{
___m_KeyToSlotMap_3 = value;
Il2CppCodeGenWriteBarrier((&___m_KeyToSlotMap_3), value);
}
inline static int32_t get_offset_of_m_CookieGenerator_4() { return static_cast<int32_t>(offsetof(LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9, ___m_CookieGenerator_4)); }
inline int64_t get_m_CookieGenerator_4() const { return ___m_CookieGenerator_4; }
inline int64_t* get_address_of_m_CookieGenerator_4() { return &___m_CookieGenerator_4; }
inline void set_m_CookieGenerator_4(int64_t value)
{
___m_CookieGenerator_4 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LOCALDATASTOREMGR_T1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9_H
#ifndef LOCALDATASTORESLOT_TFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E_H
#define LOCALDATASTORESLOT_TFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.LocalDataStoreSlot
struct LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E : public RuntimeObject
{
public:
// System.LocalDataStoreMgr System.LocalDataStoreSlot::m_mgr
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * ___m_mgr_0;
// System.Int32 System.LocalDataStoreSlot::m_slot
int32_t ___m_slot_1;
// System.Int64 System.LocalDataStoreSlot::m_cookie
int64_t ___m_cookie_2;
public:
inline static int32_t get_offset_of_m_mgr_0() { return static_cast<int32_t>(offsetof(LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E, ___m_mgr_0)); }
inline LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * get_m_mgr_0() const { return ___m_mgr_0; }
inline LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 ** get_address_of_m_mgr_0() { return &___m_mgr_0; }
inline void set_m_mgr_0(LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * value)
{
___m_mgr_0 = value;
Il2CppCodeGenWriteBarrier((&___m_mgr_0), value);
}
inline static int32_t get_offset_of_m_slot_1() { return static_cast<int32_t>(offsetof(LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E, ___m_slot_1)); }
inline int32_t get_m_slot_1() const { return ___m_slot_1; }
inline int32_t* get_address_of_m_slot_1() { return &___m_slot_1; }
inline void set_m_slot_1(int32_t value)
{
___m_slot_1 = value;
}
inline static int32_t get_offset_of_m_cookie_2() { return static_cast<int32_t>(offsetof(LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E, ___m_cookie_2)); }
inline int64_t get_m_cookie_2() const { return ___m_cookie_2; }
inline int64_t* get_address_of_m_cookie_2() { return &___m_cookie_2; }
inline void set_m_cookie_2(int64_t value)
{
___m_cookie_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LOCALDATASTORESLOT_TFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E_H
#ifndef MARSHALBYREFOBJECT_TC4577953D0A44D0AB8597CFA868E01C858B1C9AF_H
#define MARSHALBYREFOBJECT_TC4577953D0A44D0AB8597CFA868E01C858B1C9AF_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&____identity_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// 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;
};
#endif // MARSHALBYREFOBJECT_TC4577953D0A44D0AB8597CFA868E01C858B1C9AF_H
#ifndef MATH_TFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_H
#define MATH_TFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Math
struct Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19 : public RuntimeObject
{
public:
public:
};
struct Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_StaticFields
{
public:
// System.Double System.Math::doubleRoundLimit
double ___doubleRoundLimit_0;
// System.Double[] System.Math::roundPower10Double
DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* ___roundPower10Double_2;
public:
inline static int32_t get_offset_of_doubleRoundLimit_0() { return static_cast<int32_t>(offsetof(Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_StaticFields, ___doubleRoundLimit_0)); }
inline double get_doubleRoundLimit_0() const { return ___doubleRoundLimit_0; }
inline double* get_address_of_doubleRoundLimit_0() { return &___doubleRoundLimit_0; }
inline void set_doubleRoundLimit_0(double value)
{
___doubleRoundLimit_0 = value;
}
inline static int32_t get_offset_of_roundPower10Double_2() { return static_cast<int32_t>(offsetof(Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_StaticFields, ___roundPower10Double_2)); }
inline DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* get_roundPower10Double_2() const { return ___roundPower10Double_2; }
inline DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D** get_address_of_roundPower10Double_2() { return &___roundPower10Double_2; }
inline void set_roundPower10Double_2(DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* value)
{
___roundPower10Double_2 = value;
Il2CppCodeGenWriteBarrier((&___roundPower10Double_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MATH_TFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_H
#ifndef MONOCUSTOMATTRS_T9E88BD614E6A34BF71106F71D0524DBA27E7FA98_H
#define MONOCUSTOMATTRS_T9E88BD614E6A34BF71106F71D0524DBA27E7FA98_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.MonoCustomAttrs
struct MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98 : public RuntimeObject
{
public:
public:
};
struct MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_StaticFields
{
public:
// System.Reflection.Assembly System.MonoCustomAttrs::corlib
Assembly_t * ___corlib_0;
// System.AttributeUsageAttribute System.MonoCustomAttrs::DefaultAttributeUsage
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * ___DefaultAttributeUsage_2;
public:
inline static int32_t get_offset_of_corlib_0() { return static_cast<int32_t>(offsetof(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_StaticFields, ___corlib_0)); }
inline Assembly_t * get_corlib_0() const { return ___corlib_0; }
inline Assembly_t ** get_address_of_corlib_0() { return &___corlib_0; }
inline void set_corlib_0(Assembly_t * value)
{
___corlib_0 = value;
Il2CppCodeGenWriteBarrier((&___corlib_0), value);
}
inline static int32_t get_offset_of_DefaultAttributeUsage_2() { return static_cast<int32_t>(offsetof(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_StaticFields, ___DefaultAttributeUsage_2)); }
inline AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * get_DefaultAttributeUsage_2() const { return ___DefaultAttributeUsage_2; }
inline AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 ** get_address_of_DefaultAttributeUsage_2() { return &___DefaultAttributeUsage_2; }
inline void set_DefaultAttributeUsage_2(AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * value)
{
___DefaultAttributeUsage_2 = value;
Il2CppCodeGenWriteBarrier((&___DefaultAttributeUsage_2), value);
}
};
struct MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_ThreadStaticFields
{
public:
// System.Collections.Generic.Dictionary`2<System.Type,System.AttributeUsageAttribute> System.MonoCustomAttrs::usage_cache
Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236 * ___usage_cache_1;
public:
inline static int32_t get_offset_of_usage_cache_1() { return static_cast<int32_t>(offsetof(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_ThreadStaticFields, ___usage_cache_1)); }
inline Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236 * get_usage_cache_1() const { return ___usage_cache_1; }
inline Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236 ** get_address_of_usage_cache_1() { return &___usage_cache_1; }
inline void set_usage_cache_1(Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236 * value)
{
___usage_cache_1 = value;
Il2CppCodeGenWriteBarrier((&___usage_cache_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MONOCUSTOMATTRS_T9E88BD614E6A34BF71106F71D0524DBA27E7FA98_H
#ifndef ATTRIBUTEINFO_T03612660D52EF536A548174E3C1CC246B848E91A_H
#define ATTRIBUTEINFO_T03612660D52EF536A548174E3C1CC246B848E91A_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.MonoCustomAttrs_AttributeInfo
struct AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A : public RuntimeObject
{
public:
// System.AttributeUsageAttribute System.MonoCustomAttrs_AttributeInfo::_usage
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * ____usage_0;
// System.Int32 System.MonoCustomAttrs_AttributeInfo::_inheritanceLevel
int32_t ____inheritanceLevel_1;
public:
inline static int32_t get_offset_of__usage_0() { return static_cast<int32_t>(offsetof(AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A, ____usage_0)); }
inline AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * get__usage_0() const { return ____usage_0; }
inline AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 ** get_address_of__usage_0() { return &____usage_0; }
inline void set__usage_0(AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * value)
{
____usage_0 = value;
Il2CppCodeGenWriteBarrier((&____usage_0), value);
}
inline static int32_t get_offset_of__inheritanceLevel_1() { return static_cast<int32_t>(offsetof(AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A, ____inheritanceLevel_1)); }
inline int32_t get__inheritanceLevel_1() const { return ____inheritanceLevel_1; }
inline int32_t* get_address_of__inheritanceLevel_1() { return &____inheritanceLevel_1; }
inline void set__inheritanceLevel_1(int32_t value)
{
____inheritanceLevel_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ATTRIBUTEINFO_T03612660D52EF536A548174E3C1CC246B848E91A_H
#ifndef MONOLISTITEM_TF9FE02BB3D5D8507333C93F1AF79B60901947A64_H
#define MONOLISTITEM_TF9FE02BB3D5D8507333C93F1AF79B60901947A64_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.MonoListItem
struct MonoListItem_tF9FE02BB3D5D8507333C93F1AF79B60901947A64 : public RuntimeObject
{
public:
// System.MonoListItem System.MonoListItem::next
MonoListItem_tF9FE02BB3D5D8507333C93F1AF79B60901947A64 * ___next_0;
// System.Object System.MonoListItem::data
RuntimeObject * ___data_1;
public:
inline static int32_t get_offset_of_next_0() { return static_cast<int32_t>(offsetof(MonoListItem_tF9FE02BB3D5D8507333C93F1AF79B60901947A64, ___next_0)); }
inline MonoListItem_tF9FE02BB3D5D8507333C93F1AF79B60901947A64 * get_next_0() const { return ___next_0; }
inline MonoListItem_tF9FE02BB3D5D8507333C93F1AF79B60901947A64 ** get_address_of_next_0() { return &___next_0; }
inline void set_next_0(MonoListItem_tF9FE02BB3D5D8507333C93F1AF79B60901947A64 * value)
{
___next_0 = value;
Il2CppCodeGenWriteBarrier((&___next_0), value);
}
inline static int32_t get_offset_of_data_1() { return static_cast<int32_t>(offsetof(MonoListItem_tF9FE02BB3D5D8507333C93F1AF79B60901947A64, ___data_1)); }
inline RuntimeObject * get_data_1() const { return ___data_1; }
inline RuntimeObject ** get_address_of_data_1() { return &___data_1; }
inline void set_data_1(RuntimeObject * value)
{
___data_1 = value;
Il2CppCodeGenWriteBarrier((&___data_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MONOLISTITEM_TF9FE02BB3D5D8507333C93F1AF79B60901947A64_H
#ifndef MONOTYPEINFO_T9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D_H
#define MONOTYPEINFO_T9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.MonoTypeInfo
struct MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D : public RuntimeObject
{
public:
// System.String System.MonoTypeInfo::full_name
String_t* ___full_name_0;
// System.Reflection.MonoCMethod System.MonoTypeInfo::default_ctor
MonoCMethod_tFB85687BEF8202F8B3E77FE24BCC2E400EA4FC61 * ___default_ctor_1;
public:
inline static int32_t get_offset_of_full_name_0() { return static_cast<int32_t>(offsetof(MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D, ___full_name_0)); }
inline String_t* get_full_name_0() const { return ___full_name_0; }
inline String_t** get_address_of_full_name_0() { return &___full_name_0; }
inline void set_full_name_0(String_t* value)
{
___full_name_0 = value;
Il2CppCodeGenWriteBarrier((&___full_name_0), value);
}
inline static int32_t get_offset_of_default_ctor_1() { return static_cast<int32_t>(offsetof(MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D, ___default_ctor_1)); }
inline MonoCMethod_tFB85687BEF8202F8B3E77FE24BCC2E400EA4FC61 * get_default_ctor_1() const { return ___default_ctor_1; }
inline MonoCMethod_tFB85687BEF8202F8B3E77FE24BCC2E400EA4FC61 ** get_address_of_default_ctor_1() { return &___default_ctor_1; }
inline void set_default_ctor_1(MonoCMethod_tFB85687BEF8202F8B3E77FE24BCC2E400EA4FC61 * value)
{
___default_ctor_1 = value;
Il2CppCodeGenWriteBarrier((&___default_ctor_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.MonoTypeInfo
struct MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D_marshaled_pinvoke
{
char* ___full_name_0;
MonoCMethod_tFB85687BEF8202F8B3E77FE24BCC2E400EA4FC61 * ___default_ctor_1;
};
// Native definition for COM marshalling of System.MonoTypeInfo
struct MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D_marshaled_com
{
Il2CppChar* ___full_name_0;
MonoCMethod_tFB85687BEF8202F8B3E77FE24BCC2E400EA4FC61 * ___default_ctor_1;
};
#endif // MONOTYPEINFO_T9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D_H
#ifndef NULLABLE_T07CA5C3F88F56004BCB589DD7580798C66874C44_H
#define NULLABLE_T07CA5C3F88F56004BCB589DD7580798C66874C44_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Nullable
struct Nullable_t07CA5C3F88F56004BCB589DD7580798C66874C44 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NULLABLE_T07CA5C3F88F56004BCB589DD7580798C66874C44_H
#ifndef NUMBER_T0578BBE654AC0F135B04497270FDDFA4CFF84C51_H
#define NUMBER_T0578BBE654AC0F135B04497270FDDFA4CFF84C51_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Number
struct Number_t0578BBE654AC0F135B04497270FDDFA4CFF84C51 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NUMBER_T0578BBE654AC0F135B04497270FDDFA4CFF84C51_H
#ifndef NUMBERFORMATTER_T73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_H
#define NUMBERFORMATTER_T73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.NumberFormatter
struct NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC : public RuntimeObject
{
public:
// System.Globalization.NumberFormatInfo System.NumberFormatter::_nfi
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ____nfi_6;
// System.Char[] System.NumberFormatter::_cbuf
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ____cbuf_7;
// System.Boolean System.NumberFormatter::_NaN
bool ____NaN_8;
// System.Boolean System.NumberFormatter::_infinity
bool ____infinity_9;
// System.Boolean System.NumberFormatter::_isCustomFormat
bool ____isCustomFormat_10;
// System.Boolean System.NumberFormatter::_specifierIsUpper
bool ____specifierIsUpper_11;
// System.Boolean System.NumberFormatter::_positive
bool ____positive_12;
// System.Char System.NumberFormatter::_specifier
Il2CppChar ____specifier_13;
// System.Int32 System.NumberFormatter::_precision
int32_t ____precision_14;
// System.Int32 System.NumberFormatter::_defPrecision
int32_t ____defPrecision_15;
// System.Int32 System.NumberFormatter::_digitsLen
int32_t ____digitsLen_16;
// System.Int32 System.NumberFormatter::_offset
int32_t ____offset_17;
// System.Int32 System.NumberFormatter::_decPointPos
int32_t ____decPointPos_18;
// System.UInt32 System.NumberFormatter::_val1
uint32_t ____val1_19;
// System.UInt32 System.NumberFormatter::_val2
uint32_t ____val2_20;
// System.UInt32 System.NumberFormatter::_val3
uint32_t ____val3_21;
// System.UInt32 System.NumberFormatter::_val4
uint32_t ____val4_22;
// System.Int32 System.NumberFormatter::_ind
int32_t ____ind_23;
public:
inline static int32_t get_offset_of__nfi_6() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC, ____nfi_6)); }
inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * get__nfi_6() const { return ____nfi_6; }
inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 ** get_address_of__nfi_6() { return &____nfi_6; }
inline void set__nfi_6(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * value)
{
____nfi_6 = value;
Il2CppCodeGenWriteBarrier((&____nfi_6), value);
}
inline static int32_t get_offset_of__cbuf_7() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC, ____cbuf_7)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get__cbuf_7() const { return ____cbuf_7; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of__cbuf_7() { return &____cbuf_7; }
inline void set__cbuf_7(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
____cbuf_7 = value;
Il2CppCodeGenWriteBarrier((&____cbuf_7), value);
}
inline static int32_t get_offset_of__NaN_8() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC, ____NaN_8)); }
inline bool get__NaN_8() const { return ____NaN_8; }
inline bool* get_address_of__NaN_8() { return &____NaN_8; }
inline void set__NaN_8(bool value)
{
____NaN_8 = value;
}
inline static int32_t get_offset_of__infinity_9() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC, ____infinity_9)); }
inline bool get__infinity_9() const { return ____infinity_9; }
inline bool* get_address_of__infinity_9() { return &____infinity_9; }
inline void set__infinity_9(bool value)
{
____infinity_9 = value;
}
inline static int32_t get_offset_of__isCustomFormat_10() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC, ____isCustomFormat_10)); }
inline bool get__isCustomFormat_10() const { return ____isCustomFormat_10; }
inline bool* get_address_of__isCustomFormat_10() { return &____isCustomFormat_10; }
inline void set__isCustomFormat_10(bool value)
{
____isCustomFormat_10 = value;
}
inline static int32_t get_offset_of__specifierIsUpper_11() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC, ____specifierIsUpper_11)); }
inline bool get__specifierIsUpper_11() const { return ____specifierIsUpper_11; }
inline bool* get_address_of__specifierIsUpper_11() { return &____specifierIsUpper_11; }
inline void set__specifierIsUpper_11(bool value)
{
____specifierIsUpper_11 = value;
}
inline static int32_t get_offset_of__positive_12() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC, ____positive_12)); }
inline bool get__positive_12() const { return ____positive_12; }
inline bool* get_address_of__positive_12() { return &____positive_12; }
inline void set__positive_12(bool value)
{
____positive_12 = value;
}
inline static int32_t get_offset_of__specifier_13() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC, ____specifier_13)); }
inline Il2CppChar get__specifier_13() const { return ____specifier_13; }
inline Il2CppChar* get_address_of__specifier_13() { return &____specifier_13; }
inline void set__specifier_13(Il2CppChar value)
{
____specifier_13 = value;
}
inline static int32_t get_offset_of__precision_14() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC, ____precision_14)); }
inline int32_t get__precision_14() const { return ____precision_14; }
inline int32_t* get_address_of__precision_14() { return &____precision_14; }
inline void set__precision_14(int32_t value)
{
____precision_14 = value;
}
inline static int32_t get_offset_of__defPrecision_15() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC, ____defPrecision_15)); }
inline int32_t get__defPrecision_15() const { return ____defPrecision_15; }
inline int32_t* get_address_of__defPrecision_15() { return &____defPrecision_15; }
inline void set__defPrecision_15(int32_t value)
{
____defPrecision_15 = value;
}
inline static int32_t get_offset_of__digitsLen_16() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC, ____digitsLen_16)); }
inline int32_t get__digitsLen_16() const { return ____digitsLen_16; }
inline int32_t* get_address_of__digitsLen_16() { return &____digitsLen_16; }
inline void set__digitsLen_16(int32_t value)
{
____digitsLen_16 = value;
}
inline static int32_t get_offset_of__offset_17() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC, ____offset_17)); }
inline int32_t get__offset_17() const { return ____offset_17; }
inline int32_t* get_address_of__offset_17() { return &____offset_17; }
inline void set__offset_17(int32_t value)
{
____offset_17 = value;
}
inline static int32_t get_offset_of__decPointPos_18() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC, ____decPointPos_18)); }
inline int32_t get__decPointPos_18() const { return ____decPointPos_18; }
inline int32_t* get_address_of__decPointPos_18() { return &____decPointPos_18; }
inline void set__decPointPos_18(int32_t value)
{
____decPointPos_18 = value;
}
inline static int32_t get_offset_of__val1_19() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC, ____val1_19)); }
inline uint32_t get__val1_19() const { return ____val1_19; }
inline uint32_t* get_address_of__val1_19() { return &____val1_19; }
inline void set__val1_19(uint32_t value)
{
____val1_19 = value;
}
inline static int32_t get_offset_of__val2_20() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC, ____val2_20)); }
inline uint32_t get__val2_20() const { return ____val2_20; }
inline uint32_t* get_address_of__val2_20() { return &____val2_20; }
inline void set__val2_20(uint32_t value)
{
____val2_20 = value;
}
inline static int32_t get_offset_of__val3_21() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC, ____val3_21)); }
inline uint32_t get__val3_21() const { return ____val3_21; }
inline uint32_t* get_address_of__val3_21() { return &____val3_21; }
inline void set__val3_21(uint32_t value)
{
____val3_21 = value;
}
inline static int32_t get_offset_of__val4_22() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC, ____val4_22)); }
inline uint32_t get__val4_22() const { return ____val4_22; }
inline uint32_t* get_address_of__val4_22() { return &____val4_22; }
inline void set__val4_22(uint32_t value)
{
____val4_22 = value;
}
inline static int32_t get_offset_of__ind_23() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC, ____ind_23)); }
inline int32_t get__ind_23() const { return ____ind_23; }
inline int32_t* get_address_of__ind_23() { return &____ind_23; }
inline void set__ind_23(int32_t value)
{
____ind_23 = value;
}
};
struct NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_StaticFields
{
public:
// System.UInt64* System.NumberFormatter::MantissaBitsTable
uint64_t* ___MantissaBitsTable_0;
// System.Int32* System.NumberFormatter::TensExponentTable
int32_t* ___TensExponentTable_1;
// System.Char* System.NumberFormatter::DigitLowerTable
Il2CppChar* ___DigitLowerTable_2;
// System.Char* System.NumberFormatter::DigitUpperTable
Il2CppChar* ___DigitUpperTable_3;
// System.Int64* System.NumberFormatter::TenPowersList
int64_t* ___TenPowersList_4;
// System.Int32* System.NumberFormatter::DecHexDigits
int32_t* ___DecHexDigits_5;
public:
inline static int32_t get_offset_of_MantissaBitsTable_0() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_StaticFields, ___MantissaBitsTable_0)); }
inline uint64_t* get_MantissaBitsTable_0() const { return ___MantissaBitsTable_0; }
inline uint64_t** get_address_of_MantissaBitsTable_0() { return &___MantissaBitsTable_0; }
inline void set_MantissaBitsTable_0(uint64_t* value)
{
___MantissaBitsTable_0 = value;
}
inline static int32_t get_offset_of_TensExponentTable_1() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_StaticFields, ___TensExponentTable_1)); }
inline int32_t* get_TensExponentTable_1() const { return ___TensExponentTable_1; }
inline int32_t** get_address_of_TensExponentTable_1() { return &___TensExponentTable_1; }
inline void set_TensExponentTable_1(int32_t* value)
{
___TensExponentTable_1 = value;
}
inline static int32_t get_offset_of_DigitLowerTable_2() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_StaticFields, ___DigitLowerTable_2)); }
inline Il2CppChar* get_DigitLowerTable_2() const { return ___DigitLowerTable_2; }
inline Il2CppChar** get_address_of_DigitLowerTable_2() { return &___DigitLowerTable_2; }
inline void set_DigitLowerTable_2(Il2CppChar* value)
{
___DigitLowerTable_2 = value;
}
inline static int32_t get_offset_of_DigitUpperTable_3() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_StaticFields, ___DigitUpperTable_3)); }
inline Il2CppChar* get_DigitUpperTable_3() const { return ___DigitUpperTable_3; }
inline Il2CppChar** get_address_of_DigitUpperTable_3() { return &___DigitUpperTable_3; }
inline void set_DigitUpperTable_3(Il2CppChar* value)
{
___DigitUpperTable_3 = value;
}
inline static int32_t get_offset_of_TenPowersList_4() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_StaticFields, ___TenPowersList_4)); }
inline int64_t* get_TenPowersList_4() const { return ___TenPowersList_4; }
inline int64_t** get_address_of_TenPowersList_4() { return &___TenPowersList_4; }
inline void set_TenPowersList_4(int64_t* value)
{
___TenPowersList_4 = value;
}
inline static int32_t get_offset_of_DecHexDigits_5() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_StaticFields, ___DecHexDigits_5)); }
inline int32_t* get_DecHexDigits_5() const { return ___DecHexDigits_5; }
inline int32_t** get_address_of_DecHexDigits_5() { return &___DecHexDigits_5; }
inline void set_DecHexDigits_5(int32_t* value)
{
___DecHexDigits_5 = value;
}
};
struct NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_ThreadStaticFields
{
public:
// System.NumberFormatter System.NumberFormatter::threadNumberFormatter
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * ___threadNumberFormatter_24;
// System.NumberFormatter System.NumberFormatter::userFormatProvider
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * ___userFormatProvider_25;
public:
inline static int32_t get_offset_of_threadNumberFormatter_24() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_ThreadStaticFields, ___threadNumberFormatter_24)); }
inline NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * get_threadNumberFormatter_24() const { return ___threadNumberFormatter_24; }
inline NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC ** get_address_of_threadNumberFormatter_24() { return &___threadNumberFormatter_24; }
inline void set_threadNumberFormatter_24(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * value)
{
___threadNumberFormatter_24 = value;
Il2CppCodeGenWriteBarrier((&___threadNumberFormatter_24), value);
}
inline static int32_t get_offset_of_userFormatProvider_25() { return static_cast<int32_t>(offsetof(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_ThreadStaticFields, ___userFormatProvider_25)); }
inline NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * get_userFormatProvider_25() const { return ___userFormatProvider_25; }
inline NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC ** get_address_of_userFormatProvider_25() { return &___userFormatProvider_25; }
inline void set_userFormatProvider_25(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * value)
{
___userFormatProvider_25 = value;
Il2CppCodeGenWriteBarrier((&___userFormatProvider_25), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NUMBERFORMATTER_T73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_H
#ifndef CUSTOMINFO_T3C5397567D3BBF326ED9C3D9680AE658DE4612E1_H
#define CUSTOMINFO_T3C5397567D3BBF326ED9C3D9680AE658DE4612E1_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.NumberFormatter_CustomInfo
struct CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 : public RuntimeObject
{
public:
// System.Boolean System.NumberFormatter_CustomInfo::UseGroup
bool ___UseGroup_0;
// System.Int32 System.NumberFormatter_CustomInfo::DecimalDigits
int32_t ___DecimalDigits_1;
// System.Int32 System.NumberFormatter_CustomInfo::DecimalPointPos
int32_t ___DecimalPointPos_2;
// System.Int32 System.NumberFormatter_CustomInfo::DecimalTailSharpDigits
int32_t ___DecimalTailSharpDigits_3;
// System.Int32 System.NumberFormatter_CustomInfo::IntegerDigits
int32_t ___IntegerDigits_4;
// System.Int32 System.NumberFormatter_CustomInfo::IntegerHeadSharpDigits
int32_t ___IntegerHeadSharpDigits_5;
// System.Int32 System.NumberFormatter_CustomInfo::IntegerHeadPos
int32_t ___IntegerHeadPos_6;
// System.Boolean System.NumberFormatter_CustomInfo::UseExponent
bool ___UseExponent_7;
// System.Int32 System.NumberFormatter_CustomInfo::ExponentDigits
int32_t ___ExponentDigits_8;
// System.Int32 System.NumberFormatter_CustomInfo::ExponentTailSharpDigits
int32_t ___ExponentTailSharpDigits_9;
// System.Boolean System.NumberFormatter_CustomInfo::ExponentNegativeSignOnly
bool ___ExponentNegativeSignOnly_10;
// System.Int32 System.NumberFormatter_CustomInfo::DividePlaces
int32_t ___DividePlaces_11;
// System.Int32 System.NumberFormatter_CustomInfo::Percents
int32_t ___Percents_12;
// System.Int32 System.NumberFormatter_CustomInfo::Permilles
int32_t ___Permilles_13;
public:
inline static int32_t get_offset_of_UseGroup_0() { return static_cast<int32_t>(offsetof(CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1, ___UseGroup_0)); }
inline bool get_UseGroup_0() const { return ___UseGroup_0; }
inline bool* get_address_of_UseGroup_0() { return &___UseGroup_0; }
inline void set_UseGroup_0(bool value)
{
___UseGroup_0 = value;
}
inline static int32_t get_offset_of_DecimalDigits_1() { return static_cast<int32_t>(offsetof(CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1, ___DecimalDigits_1)); }
inline int32_t get_DecimalDigits_1() const { return ___DecimalDigits_1; }
inline int32_t* get_address_of_DecimalDigits_1() { return &___DecimalDigits_1; }
inline void set_DecimalDigits_1(int32_t value)
{
___DecimalDigits_1 = value;
}
inline static int32_t get_offset_of_DecimalPointPos_2() { return static_cast<int32_t>(offsetof(CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1, ___DecimalPointPos_2)); }
inline int32_t get_DecimalPointPos_2() const { return ___DecimalPointPos_2; }
inline int32_t* get_address_of_DecimalPointPos_2() { return &___DecimalPointPos_2; }
inline void set_DecimalPointPos_2(int32_t value)
{
___DecimalPointPos_2 = value;
}
inline static int32_t get_offset_of_DecimalTailSharpDigits_3() { return static_cast<int32_t>(offsetof(CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1, ___DecimalTailSharpDigits_3)); }
inline int32_t get_DecimalTailSharpDigits_3() const { return ___DecimalTailSharpDigits_3; }
inline int32_t* get_address_of_DecimalTailSharpDigits_3() { return &___DecimalTailSharpDigits_3; }
inline void set_DecimalTailSharpDigits_3(int32_t value)
{
___DecimalTailSharpDigits_3 = value;
}
inline static int32_t get_offset_of_IntegerDigits_4() { return static_cast<int32_t>(offsetof(CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1, ___IntegerDigits_4)); }
inline int32_t get_IntegerDigits_4() const { return ___IntegerDigits_4; }
inline int32_t* get_address_of_IntegerDigits_4() { return &___IntegerDigits_4; }
inline void set_IntegerDigits_4(int32_t value)
{
___IntegerDigits_4 = value;
}
inline static int32_t get_offset_of_IntegerHeadSharpDigits_5() { return static_cast<int32_t>(offsetof(CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1, ___IntegerHeadSharpDigits_5)); }
inline int32_t get_IntegerHeadSharpDigits_5() const { return ___IntegerHeadSharpDigits_5; }
inline int32_t* get_address_of_IntegerHeadSharpDigits_5() { return &___IntegerHeadSharpDigits_5; }
inline void set_IntegerHeadSharpDigits_5(int32_t value)
{
___IntegerHeadSharpDigits_5 = value;
}
inline static int32_t get_offset_of_IntegerHeadPos_6() { return static_cast<int32_t>(offsetof(CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1, ___IntegerHeadPos_6)); }
inline int32_t get_IntegerHeadPos_6() const { return ___IntegerHeadPos_6; }
inline int32_t* get_address_of_IntegerHeadPos_6() { return &___IntegerHeadPos_6; }
inline void set_IntegerHeadPos_6(int32_t value)
{
___IntegerHeadPos_6 = value;
}
inline static int32_t get_offset_of_UseExponent_7() { return static_cast<int32_t>(offsetof(CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1, ___UseExponent_7)); }
inline bool get_UseExponent_7() const { return ___UseExponent_7; }
inline bool* get_address_of_UseExponent_7() { return &___UseExponent_7; }
inline void set_UseExponent_7(bool value)
{
___UseExponent_7 = value;
}
inline static int32_t get_offset_of_ExponentDigits_8() { return static_cast<int32_t>(offsetof(CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1, ___ExponentDigits_8)); }
inline int32_t get_ExponentDigits_8() const { return ___ExponentDigits_8; }
inline int32_t* get_address_of_ExponentDigits_8() { return &___ExponentDigits_8; }
inline void set_ExponentDigits_8(int32_t value)
{
___ExponentDigits_8 = value;
}
inline static int32_t get_offset_of_ExponentTailSharpDigits_9() { return static_cast<int32_t>(offsetof(CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1, ___ExponentTailSharpDigits_9)); }
inline int32_t get_ExponentTailSharpDigits_9() const { return ___ExponentTailSharpDigits_9; }
inline int32_t* get_address_of_ExponentTailSharpDigits_9() { return &___ExponentTailSharpDigits_9; }
inline void set_ExponentTailSharpDigits_9(int32_t value)
{
___ExponentTailSharpDigits_9 = value;
}
inline static int32_t get_offset_of_ExponentNegativeSignOnly_10() { return static_cast<int32_t>(offsetof(CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1, ___ExponentNegativeSignOnly_10)); }
inline bool get_ExponentNegativeSignOnly_10() const { return ___ExponentNegativeSignOnly_10; }
inline bool* get_address_of_ExponentNegativeSignOnly_10() { return &___ExponentNegativeSignOnly_10; }
inline void set_ExponentNegativeSignOnly_10(bool value)
{
___ExponentNegativeSignOnly_10 = value;
}
inline static int32_t get_offset_of_DividePlaces_11() { return static_cast<int32_t>(offsetof(CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1, ___DividePlaces_11)); }
inline int32_t get_DividePlaces_11() const { return ___DividePlaces_11; }
inline int32_t* get_address_of_DividePlaces_11() { return &___DividePlaces_11; }
inline void set_DividePlaces_11(int32_t value)
{
___DividePlaces_11 = value;
}
inline static int32_t get_offset_of_Percents_12() { return static_cast<int32_t>(offsetof(CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1, ___Percents_12)); }
inline int32_t get_Percents_12() const { return ___Percents_12; }
inline int32_t* get_address_of_Percents_12() { return &___Percents_12; }
inline void set_Percents_12(int32_t value)
{
___Percents_12 = value;
}
inline static int32_t get_offset_of_Permilles_13() { return static_cast<int32_t>(offsetof(CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1, ___Permilles_13)); }
inline int32_t get_Permilles_13() const { return ___Permilles_13; }
inline int32_t* get_address_of_Permilles_13() { return &___Permilles_13; }
inline void set_Permilles_13(int32_t value)
{
___Permilles_13 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CUSTOMINFO_T3C5397567D3BBF326ED9C3D9680AE658DE4612E1_H
#ifndef CUSTOMATTRIBUTEDATA_T2CD9D78F97B6517D5DEE35DEE97159B02C078F88_H
#define CUSTOMATTRIBUTEDATA_T2CD9D78F97B6517D5DEE35DEE97159B02C078F88_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.CustomAttributeData
struct CustomAttributeData_t2CD9D78F97B6517D5DEE35DEE97159B02C078F88 : public RuntimeObject
{
public:
// System.Reflection.ConstructorInfo System.Reflection.CustomAttributeData::ctorInfo
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * ___ctorInfo_0;
// System.Collections.Generic.IList`1<System.Reflection.CustomAttributeTypedArgument> System.Reflection.CustomAttributeData::ctorArgs
RuntimeObject* ___ctorArgs_1;
// System.Collections.Generic.IList`1<System.Reflection.CustomAttributeNamedArgument> System.Reflection.CustomAttributeData::namedArgs
RuntimeObject* ___namedArgs_2;
// System.Reflection.CustomAttributeData_LazyCAttrData System.Reflection.CustomAttributeData::lazyData
LazyCAttrData_t4C5DC81EA7740306D01218D48006034D024FBA38 * ___lazyData_3;
public:
inline static int32_t get_offset_of_ctorInfo_0() { return static_cast<int32_t>(offsetof(CustomAttributeData_t2CD9D78F97B6517D5DEE35DEE97159B02C078F88, ___ctorInfo_0)); }
inline ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * get_ctorInfo_0() const { return ___ctorInfo_0; }
inline ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF ** get_address_of_ctorInfo_0() { return &___ctorInfo_0; }
inline void set_ctorInfo_0(ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * value)
{
___ctorInfo_0 = value;
Il2CppCodeGenWriteBarrier((&___ctorInfo_0), value);
}
inline static int32_t get_offset_of_ctorArgs_1() { return static_cast<int32_t>(offsetof(CustomAttributeData_t2CD9D78F97B6517D5DEE35DEE97159B02C078F88, ___ctorArgs_1)); }
inline RuntimeObject* get_ctorArgs_1() const { return ___ctorArgs_1; }
inline RuntimeObject** get_address_of_ctorArgs_1() { return &___ctorArgs_1; }
inline void set_ctorArgs_1(RuntimeObject* value)
{
___ctorArgs_1 = value;
Il2CppCodeGenWriteBarrier((&___ctorArgs_1), value);
}
inline static int32_t get_offset_of_namedArgs_2() { return static_cast<int32_t>(offsetof(CustomAttributeData_t2CD9D78F97B6517D5DEE35DEE97159B02C078F88, ___namedArgs_2)); }
inline RuntimeObject* get_namedArgs_2() const { return ___namedArgs_2; }
inline RuntimeObject** get_address_of_namedArgs_2() { return &___namedArgs_2; }
inline void set_namedArgs_2(RuntimeObject* value)
{
___namedArgs_2 = value;
Il2CppCodeGenWriteBarrier((&___namedArgs_2), value);
}
inline static int32_t get_offset_of_lazyData_3() { return static_cast<int32_t>(offsetof(CustomAttributeData_t2CD9D78F97B6517D5DEE35DEE97159B02C078F88, ___lazyData_3)); }
inline LazyCAttrData_t4C5DC81EA7740306D01218D48006034D024FBA38 * get_lazyData_3() const { return ___lazyData_3; }
inline LazyCAttrData_t4C5DC81EA7740306D01218D48006034D024FBA38 ** get_address_of_lazyData_3() { return &___lazyData_3; }
inline void set_lazyData_3(LazyCAttrData_t4C5DC81EA7740306D01218D48006034D024FBA38 * value)
{
___lazyData_3 = value;
Il2CppCodeGenWriteBarrier((&___lazyData_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CUSTOMATTRIBUTEDATA_T2CD9D78F97B6517D5DEE35DEE97159B02C078F88_H
#ifndef MEMBERINFO_T_H
#define MEMBERINFO_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.MemberInfo
struct MemberInfo_t : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MEMBERINFO_T_H
#ifndef CRITICALFINALIZEROBJECT_T8B006E1DEE084E781F5C0F3283E9226E28894DD9_H
#define CRITICALFINALIZEROBJECT_T8B006E1DEE084E781F5C0F3283E9226E28894DD9_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.ConstrainedExecution.CriticalFinalizerObject
struct CriticalFinalizerObject_t8B006E1DEE084E781F5C0F3283E9226E28894DD9 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CRITICALFINALIZEROBJECT_T8B006E1DEE084E781F5C0F3283E9226E28894DD9_H
#ifndef IDENTITY_TB4E8BEFF42D505C9B24C9284934E6538F29606B6_H
#define IDENTITY_TB4E8BEFF42D505C9B24C9284934E6538F29606B6_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.Remoting.Identity
struct Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 : public RuntimeObject
{
public:
// System.String System.Runtime.Remoting.Identity::_objectUri
String_t* ____objectUri_0;
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Identity::_channelSink
RuntimeObject* ____channelSink_1;
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Identity::_envoySink
RuntimeObject* ____envoySink_2;
// System.Runtime.Remoting.Contexts.DynamicPropertyCollection System.Runtime.Remoting.Identity::_clientDynamicProperties
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * ____clientDynamicProperties_3;
// System.Runtime.Remoting.Contexts.DynamicPropertyCollection System.Runtime.Remoting.Identity::_serverDynamicProperties
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * ____serverDynamicProperties_4;
// System.Runtime.Remoting.ObjRef System.Runtime.Remoting.Identity::_objRef
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * ____objRef_5;
// System.Boolean System.Runtime.Remoting.Identity::_disposed
bool ____disposed_6;
public:
inline static int32_t get_offset_of__objectUri_0() { return static_cast<int32_t>(offsetof(Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6, ____objectUri_0)); }
inline String_t* get__objectUri_0() const { return ____objectUri_0; }
inline String_t** get_address_of__objectUri_0() { return &____objectUri_0; }
inline void set__objectUri_0(String_t* value)
{
____objectUri_0 = value;
Il2CppCodeGenWriteBarrier((&____objectUri_0), value);
}
inline static int32_t get_offset_of__channelSink_1() { return static_cast<int32_t>(offsetof(Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6, ____channelSink_1)); }
inline RuntimeObject* get__channelSink_1() const { return ____channelSink_1; }
inline RuntimeObject** get_address_of__channelSink_1() { return &____channelSink_1; }
inline void set__channelSink_1(RuntimeObject* value)
{
____channelSink_1 = value;
Il2CppCodeGenWriteBarrier((&____channelSink_1), value);
}
inline static int32_t get_offset_of__envoySink_2() { return static_cast<int32_t>(offsetof(Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6, ____envoySink_2)); }
inline RuntimeObject* get__envoySink_2() const { return ____envoySink_2; }
inline RuntimeObject** get_address_of__envoySink_2() { return &____envoySink_2; }
inline void set__envoySink_2(RuntimeObject* value)
{
____envoySink_2 = value;
Il2CppCodeGenWriteBarrier((&____envoySink_2), value);
}
inline static int32_t get_offset_of__clientDynamicProperties_3() { return static_cast<int32_t>(offsetof(Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6, ____clientDynamicProperties_3)); }
inline DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * get__clientDynamicProperties_3() const { return ____clientDynamicProperties_3; }
inline DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C ** get_address_of__clientDynamicProperties_3() { return &____clientDynamicProperties_3; }
inline void set__clientDynamicProperties_3(DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * value)
{
____clientDynamicProperties_3 = value;
Il2CppCodeGenWriteBarrier((&____clientDynamicProperties_3), value);
}
inline static int32_t get_offset_of__serverDynamicProperties_4() { return static_cast<int32_t>(offsetof(Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6, ____serverDynamicProperties_4)); }
inline DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * get__serverDynamicProperties_4() const { return ____serverDynamicProperties_4; }
inline DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C ** get_address_of__serverDynamicProperties_4() { return &____serverDynamicProperties_4; }
inline void set__serverDynamicProperties_4(DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * value)
{
____serverDynamicProperties_4 = value;
Il2CppCodeGenWriteBarrier((&____serverDynamicProperties_4), value);
}
inline static int32_t get_offset_of__objRef_5() { return static_cast<int32_t>(offsetof(Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6, ____objRef_5)); }
inline ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * get__objRef_5() const { return ____objRef_5; }
inline ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 ** get_address_of__objRef_5() { return &____objRef_5; }
inline void set__objRef_5(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * value)
{
____objRef_5 = value;
Il2CppCodeGenWriteBarrier((&____objRef_5), value);
}
inline static int32_t get_offset_of__disposed_6() { return static_cast<int32_t>(offsetof(Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6, ____disposed_6)); }
inline bool get__disposed_6() const { return ____disposed_6; }
inline bool* get_address_of__disposed_6() { return &____disposed_6; }
inline void set__disposed_6(bool value)
{
____disposed_6 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // IDENTITY_TB4E8BEFF42D505C9B24C9284934E6538F29606B6_H
#ifndef OBJREF_TA220448511DCA671EFC23F87F1C7FCA6ACC749D2_H
#define OBJREF_TA220448511DCA671EFC23F87F1C7FCA6ACC749D2_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.Remoting.ObjRef
struct ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 : public RuntimeObject
{
public:
// System.Runtime.Remoting.IChannelInfo System.Runtime.Remoting.ObjRef::channel_info
RuntimeObject* ___channel_info_0;
// System.String System.Runtime.Remoting.ObjRef::uri
String_t* ___uri_1;
// System.Runtime.Remoting.IRemotingTypeInfo System.Runtime.Remoting.ObjRef::typeInfo
RuntimeObject* ___typeInfo_2;
// System.Runtime.Remoting.IEnvoyInfo System.Runtime.Remoting.ObjRef::envoyInfo
RuntimeObject* ___envoyInfo_3;
// System.Int32 System.Runtime.Remoting.ObjRef::flags
int32_t ___flags_4;
// System.Type System.Runtime.Remoting.ObjRef::_serverType
Type_t * ____serverType_5;
public:
inline static int32_t get_offset_of_channel_info_0() { return static_cast<int32_t>(offsetof(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2, ___channel_info_0)); }
inline RuntimeObject* get_channel_info_0() const { return ___channel_info_0; }
inline RuntimeObject** get_address_of_channel_info_0() { return &___channel_info_0; }
inline void set_channel_info_0(RuntimeObject* value)
{
___channel_info_0 = value;
Il2CppCodeGenWriteBarrier((&___channel_info_0), value);
}
inline static int32_t get_offset_of_uri_1() { return static_cast<int32_t>(offsetof(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2, ___uri_1)); }
inline String_t* get_uri_1() const { return ___uri_1; }
inline String_t** get_address_of_uri_1() { return &___uri_1; }
inline void set_uri_1(String_t* value)
{
___uri_1 = value;
Il2CppCodeGenWriteBarrier((&___uri_1), value);
}
inline static int32_t get_offset_of_typeInfo_2() { return static_cast<int32_t>(offsetof(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2, ___typeInfo_2)); }
inline RuntimeObject* get_typeInfo_2() const { return ___typeInfo_2; }
inline RuntimeObject** get_address_of_typeInfo_2() { return &___typeInfo_2; }
inline void set_typeInfo_2(RuntimeObject* value)
{
___typeInfo_2 = value;
Il2CppCodeGenWriteBarrier((&___typeInfo_2), value);
}
inline static int32_t get_offset_of_envoyInfo_3() { return static_cast<int32_t>(offsetof(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2, ___envoyInfo_3)); }
inline RuntimeObject* get_envoyInfo_3() const { return ___envoyInfo_3; }
inline RuntimeObject** get_address_of_envoyInfo_3() { return &___envoyInfo_3; }
inline void set_envoyInfo_3(RuntimeObject* value)
{
___envoyInfo_3 = value;
Il2CppCodeGenWriteBarrier((&___envoyInfo_3), value);
}
inline static int32_t get_offset_of_flags_4() { return static_cast<int32_t>(offsetof(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2, ___flags_4)); }
inline int32_t get_flags_4() const { return ___flags_4; }
inline int32_t* get_address_of_flags_4() { return &___flags_4; }
inline void set_flags_4(int32_t value)
{
___flags_4 = value;
}
inline static int32_t get_offset_of__serverType_5() { return static_cast<int32_t>(offsetof(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2, ____serverType_5)); }
inline Type_t * get__serverType_5() const { return ____serverType_5; }
inline Type_t ** get_address_of__serverType_5() { return &____serverType_5; }
inline void set__serverType_5(Type_t * value)
{
____serverType_5 = value;
Il2CppCodeGenWriteBarrier((&____serverType_5), value);
}
};
struct ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2_StaticFields
{
public:
// System.Int32 System.Runtime.Remoting.ObjRef::MarshalledObjectRef
int32_t ___MarshalledObjectRef_6;
// System.Int32 System.Runtime.Remoting.ObjRef::WellKnowObjectRef
int32_t ___WellKnowObjectRef_7;
public:
inline static int32_t get_offset_of_MarshalledObjectRef_6() { return static_cast<int32_t>(offsetof(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2_StaticFields, ___MarshalledObjectRef_6)); }
inline int32_t get_MarshalledObjectRef_6() const { return ___MarshalledObjectRef_6; }
inline int32_t* get_address_of_MarshalledObjectRef_6() { return &___MarshalledObjectRef_6; }
inline void set_MarshalledObjectRef_6(int32_t value)
{
___MarshalledObjectRef_6 = value;
}
inline static int32_t get_offset_of_WellKnowObjectRef_7() { return static_cast<int32_t>(offsetof(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2_StaticFields, ___WellKnowObjectRef_7)); }
inline int32_t get_WellKnowObjectRef_7() const { return ___WellKnowObjectRef_7; }
inline int32_t* get_address_of_WellKnowObjectRef_7() { return &___WellKnowObjectRef_7; }
inline void set_WellKnowObjectRef_7(int32_t value)
{
___WellKnowObjectRef_7 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // OBJREF_TA220448511DCA671EFC23F87F1C7FCA6ACC749D2_H
#ifndef SERIALIZATIONINFO_T1BB80E9C9DEA52DBF464487234B045E2930ADA26_H
#define SERIALIZATIONINFO_T1BB80E9C9DEA52DBF464487234B045E2930ADA26_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.Serialization.SerializationInfo
struct SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 : public RuntimeObject
{
public:
// System.String[] System.Runtime.Serialization.SerializationInfo::m_members
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___m_members_3;
// System.Object[] System.Runtime.Serialization.SerializationInfo::m_data
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___m_data_4;
// System.Type[] System.Runtime.Serialization.SerializationInfo::m_types
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___m_types_5;
// System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Runtime.Serialization.SerializationInfo::m_nameToIndex
Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB * ___m_nameToIndex_6;
// System.Int32 System.Runtime.Serialization.SerializationInfo::m_currMember
int32_t ___m_currMember_7;
// System.Runtime.Serialization.IFormatterConverter System.Runtime.Serialization.SerializationInfo::m_converter
RuntimeObject* ___m_converter_8;
// System.String System.Runtime.Serialization.SerializationInfo::m_fullTypeName
String_t* ___m_fullTypeName_9;
// System.String System.Runtime.Serialization.SerializationInfo::m_assemName
String_t* ___m_assemName_10;
// System.Type System.Runtime.Serialization.SerializationInfo::objectType
Type_t * ___objectType_11;
// System.Boolean System.Runtime.Serialization.SerializationInfo::isFullTypeNameSetExplicit
bool ___isFullTypeNameSetExplicit_12;
// System.Boolean System.Runtime.Serialization.SerializationInfo::isAssemblyNameSetExplicit
bool ___isAssemblyNameSetExplicit_13;
// System.Boolean System.Runtime.Serialization.SerializationInfo::requireSameTokenInPartialTrust
bool ___requireSameTokenInPartialTrust_14;
public:
inline static int32_t get_offset_of_m_members_3() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_members_3)); }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_m_members_3() const { return ___m_members_3; }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_m_members_3() { return &___m_members_3; }
inline void set_m_members_3(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
{
___m_members_3 = value;
Il2CppCodeGenWriteBarrier((&___m_members_3), value);
}
inline static int32_t get_offset_of_m_data_4() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_data_4)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_m_data_4() const { return ___m_data_4; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_m_data_4() { return &___m_data_4; }
inline void set_m_data_4(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
___m_data_4 = value;
Il2CppCodeGenWriteBarrier((&___m_data_4), value);
}
inline static int32_t get_offset_of_m_types_5() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_types_5)); }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_m_types_5() const { return ___m_types_5; }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_m_types_5() { return &___m_types_5; }
inline void set_m_types_5(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
{
___m_types_5 = value;
Il2CppCodeGenWriteBarrier((&___m_types_5), value);
}
inline static int32_t get_offset_of_m_nameToIndex_6() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_nameToIndex_6)); }
inline Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB * get_m_nameToIndex_6() const { return ___m_nameToIndex_6; }
inline Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB ** get_address_of_m_nameToIndex_6() { return &___m_nameToIndex_6; }
inline void set_m_nameToIndex_6(Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB * value)
{
___m_nameToIndex_6 = value;
Il2CppCodeGenWriteBarrier((&___m_nameToIndex_6), value);
}
inline static int32_t get_offset_of_m_currMember_7() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_currMember_7)); }
inline int32_t get_m_currMember_7() const { return ___m_currMember_7; }
inline int32_t* get_address_of_m_currMember_7() { return &___m_currMember_7; }
inline void set_m_currMember_7(int32_t value)
{
___m_currMember_7 = value;
}
inline static int32_t get_offset_of_m_converter_8() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_converter_8)); }
inline RuntimeObject* get_m_converter_8() const { return ___m_converter_8; }
inline RuntimeObject** get_address_of_m_converter_8() { return &___m_converter_8; }
inline void set_m_converter_8(RuntimeObject* value)
{
___m_converter_8 = value;
Il2CppCodeGenWriteBarrier((&___m_converter_8), value);
}
inline static int32_t get_offset_of_m_fullTypeName_9() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_fullTypeName_9)); }
inline String_t* get_m_fullTypeName_9() const { return ___m_fullTypeName_9; }
inline String_t** get_address_of_m_fullTypeName_9() { return &___m_fullTypeName_9; }
inline void set_m_fullTypeName_9(String_t* value)
{
___m_fullTypeName_9 = value;
Il2CppCodeGenWriteBarrier((&___m_fullTypeName_9), value);
}
inline static int32_t get_offset_of_m_assemName_10() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_assemName_10)); }
inline String_t* get_m_assemName_10() const { return ___m_assemName_10; }
inline String_t** get_address_of_m_assemName_10() { return &___m_assemName_10; }
inline void set_m_assemName_10(String_t* value)
{
___m_assemName_10 = value;
Il2CppCodeGenWriteBarrier((&___m_assemName_10), value);
}
inline static int32_t get_offset_of_objectType_11() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___objectType_11)); }
inline Type_t * get_objectType_11() const { return ___objectType_11; }
inline Type_t ** get_address_of_objectType_11() { return &___objectType_11; }
inline void set_objectType_11(Type_t * value)
{
___objectType_11 = value;
Il2CppCodeGenWriteBarrier((&___objectType_11), value);
}
inline static int32_t get_offset_of_isFullTypeNameSetExplicit_12() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___isFullTypeNameSetExplicit_12)); }
inline bool get_isFullTypeNameSetExplicit_12() const { return ___isFullTypeNameSetExplicit_12; }
inline bool* get_address_of_isFullTypeNameSetExplicit_12() { return &___isFullTypeNameSetExplicit_12; }
inline void set_isFullTypeNameSetExplicit_12(bool value)
{
___isFullTypeNameSetExplicit_12 = value;
}
inline static int32_t get_offset_of_isAssemblyNameSetExplicit_13() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___isAssemblyNameSetExplicit_13)); }
inline bool get_isAssemblyNameSetExplicit_13() const { return ___isAssemblyNameSetExplicit_13; }
inline bool* get_address_of_isAssemblyNameSetExplicit_13() { return &___isAssemblyNameSetExplicit_13; }
inline void set_isAssemblyNameSetExplicit_13(bool value)
{
___isAssemblyNameSetExplicit_13 = value;
}
inline static int32_t get_offset_of_requireSameTokenInPartialTrust_14() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___requireSameTokenInPartialTrust_14)); }
inline bool get_requireSameTokenInPartialTrust_14() const { return ___requireSameTokenInPartialTrust_14; }
inline bool* get_address_of_requireSameTokenInPartialTrust_14() { return &___requireSameTokenInPartialTrust_14; }
inline void set_requireSameTokenInPartialTrust_14(bool value)
{
___requireSameTokenInPartialTrust_14 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SERIALIZATIONINFO_T1BB80E9C9DEA52DBF464487234B045E2930ADA26_H
#ifndef STRING_T_H
#define STRING_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String
struct String_t : public RuntimeObject
{
public:
// System.Int32 System.String::m_stringLength
int32_t ___m_stringLength_0;
// System.Char System.String::m_firstChar
Il2CppChar ___m_firstChar_1;
public:
inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); }
inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; }
inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; }
inline void set_m_stringLength_0(int32_t value)
{
___m_stringLength_0 = value;
}
inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); }
inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; }
inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; }
inline void set_m_firstChar_1(Il2CppChar value)
{
___m_firstChar_1 = value;
}
};
struct String_t_StaticFields
{
public:
// System.String System.String::Empty
String_t* ___Empty_5;
public:
inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); }
inline String_t* get_Empty_5() const { return ___Empty_5; }
inline String_t** get_address_of_Empty_5() { return &___Empty_5; }
inline void set_Empty_5(String_t* value)
{
___Empty_5 = value;
Il2CppCodeGenWriteBarrier((&___Empty_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STRING_T_H
#ifndef ENCODER_T29B2697B0B775EABC52EBFB914F327BE9B1A3464_H
#define ENCODER_T29B2697B0B775EABC52EBFB914F327BE9B1A3464_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Text.Encoder
struct Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 : public RuntimeObject
{
public:
// System.Text.EncoderFallback System.Text.Encoder::m_fallback
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * ___m_fallback_0;
// System.Text.EncoderFallbackBuffer System.Text.Encoder::m_fallbackBuffer
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * ___m_fallbackBuffer_1;
public:
inline static int32_t get_offset_of_m_fallback_0() { return static_cast<int32_t>(offsetof(Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464, ___m_fallback_0)); }
inline EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * get_m_fallback_0() const { return ___m_fallback_0; }
inline EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 ** get_address_of_m_fallback_0() { return &___m_fallback_0; }
inline void set_m_fallback_0(EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * value)
{
___m_fallback_0 = value;
Il2CppCodeGenWriteBarrier((&___m_fallback_0), value);
}
inline static int32_t get_offset_of_m_fallbackBuffer_1() { return static_cast<int32_t>(offsetof(Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464, ___m_fallbackBuffer_1)); }
inline EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * get_m_fallbackBuffer_1() const { return ___m_fallbackBuffer_1; }
inline EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C ** get_address_of_m_fallbackBuffer_1() { return &___m_fallbackBuffer_1; }
inline void set_m_fallbackBuffer_1(EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * value)
{
___m_fallbackBuffer_1 = value;
Il2CppCodeGenWriteBarrier((&___m_fallbackBuffer_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENCODER_T29B2697B0B775EABC52EBFB914F327BE9B1A3464_H
#ifndef ENCODING_T7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_H
#define ENCODING_T7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Text.Encoding
struct Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 : public RuntimeObject
{
public:
// System.Int32 System.Text.Encoding::m_codePage
int32_t ___m_codePage_9;
// System.Globalization.CodePageDataItem System.Text.Encoding::dataItem
CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * ___dataItem_10;
// System.Boolean System.Text.Encoding::m_deserializedFromEverett
bool ___m_deserializedFromEverett_11;
// System.Boolean System.Text.Encoding::m_isReadOnly
bool ___m_isReadOnly_12;
// System.Text.EncoderFallback System.Text.Encoding::encoderFallback
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * ___encoderFallback_13;
// System.Text.DecoderFallback System.Text.Encoding::decoderFallback
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * ___decoderFallback_14;
public:
inline static int32_t get_offset_of_m_codePage_9() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___m_codePage_9)); }
inline int32_t get_m_codePage_9() const { return ___m_codePage_9; }
inline int32_t* get_address_of_m_codePage_9() { return &___m_codePage_9; }
inline void set_m_codePage_9(int32_t value)
{
___m_codePage_9 = value;
}
inline static int32_t get_offset_of_dataItem_10() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___dataItem_10)); }
inline CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * get_dataItem_10() const { return ___dataItem_10; }
inline CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB ** get_address_of_dataItem_10() { return &___dataItem_10; }
inline void set_dataItem_10(CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * value)
{
___dataItem_10 = value;
Il2CppCodeGenWriteBarrier((&___dataItem_10), value);
}
inline static int32_t get_offset_of_m_deserializedFromEverett_11() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___m_deserializedFromEverett_11)); }
inline bool get_m_deserializedFromEverett_11() const { return ___m_deserializedFromEverett_11; }
inline bool* get_address_of_m_deserializedFromEverett_11() { return &___m_deserializedFromEverett_11; }
inline void set_m_deserializedFromEverett_11(bool value)
{
___m_deserializedFromEverett_11 = value;
}
inline static int32_t get_offset_of_m_isReadOnly_12() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___m_isReadOnly_12)); }
inline bool get_m_isReadOnly_12() const { return ___m_isReadOnly_12; }
inline bool* get_address_of_m_isReadOnly_12() { return &___m_isReadOnly_12; }
inline void set_m_isReadOnly_12(bool value)
{
___m_isReadOnly_12 = value;
}
inline static int32_t get_offset_of_encoderFallback_13() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___encoderFallback_13)); }
inline EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * get_encoderFallback_13() const { return ___encoderFallback_13; }
inline EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 ** get_address_of_encoderFallback_13() { return &___encoderFallback_13; }
inline void set_encoderFallback_13(EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * value)
{
___encoderFallback_13 = value;
Il2CppCodeGenWriteBarrier((&___encoderFallback_13), value);
}
inline static int32_t get_offset_of_decoderFallback_14() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___decoderFallback_14)); }
inline DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * get_decoderFallback_14() const { return ___decoderFallback_14; }
inline DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 ** get_address_of_decoderFallback_14() { return &___decoderFallback_14; }
inline void set_decoderFallback_14(DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * value)
{
___decoderFallback_14 = value;
Il2CppCodeGenWriteBarrier((&___decoderFallback_14), value);
}
};
struct Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields
{
public:
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::defaultEncoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___defaultEncoding_0;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::unicodeEncoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___unicodeEncoding_1;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::bigEndianUnicode
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___bigEndianUnicode_2;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf7Encoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___utf7Encoding_3;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf8Encoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___utf8Encoding_4;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf32Encoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___utf32Encoding_5;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::asciiEncoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___asciiEncoding_6;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::latin1Encoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___latin1Encoding_7;
// System.Collections.Hashtable modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::encodings
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___encodings_8;
// System.Object System.Text.Encoding::s_InternalSyncObject
RuntimeObject * ___s_InternalSyncObject_15;
public:
inline static int32_t get_offset_of_defaultEncoding_0() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___defaultEncoding_0)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_defaultEncoding_0() const { return ___defaultEncoding_0; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_defaultEncoding_0() { return &___defaultEncoding_0; }
inline void set_defaultEncoding_0(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___defaultEncoding_0 = value;
Il2CppCodeGenWriteBarrier((&___defaultEncoding_0), value);
}
inline static int32_t get_offset_of_unicodeEncoding_1() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___unicodeEncoding_1)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_unicodeEncoding_1() const { return ___unicodeEncoding_1; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_unicodeEncoding_1() { return &___unicodeEncoding_1; }
inline void set_unicodeEncoding_1(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___unicodeEncoding_1 = value;
Il2CppCodeGenWriteBarrier((&___unicodeEncoding_1), value);
}
inline static int32_t get_offset_of_bigEndianUnicode_2() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___bigEndianUnicode_2)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_bigEndianUnicode_2() const { return ___bigEndianUnicode_2; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_bigEndianUnicode_2() { return &___bigEndianUnicode_2; }
inline void set_bigEndianUnicode_2(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___bigEndianUnicode_2 = value;
Il2CppCodeGenWriteBarrier((&___bigEndianUnicode_2), value);
}
inline static int32_t get_offset_of_utf7Encoding_3() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___utf7Encoding_3)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_utf7Encoding_3() const { return ___utf7Encoding_3; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_utf7Encoding_3() { return &___utf7Encoding_3; }
inline void set_utf7Encoding_3(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___utf7Encoding_3 = value;
Il2CppCodeGenWriteBarrier((&___utf7Encoding_3), value);
}
inline static int32_t get_offset_of_utf8Encoding_4() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___utf8Encoding_4)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_utf8Encoding_4() const { return ___utf8Encoding_4; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_utf8Encoding_4() { return &___utf8Encoding_4; }
inline void set_utf8Encoding_4(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___utf8Encoding_4 = value;
Il2CppCodeGenWriteBarrier((&___utf8Encoding_4), value);
}
inline static int32_t get_offset_of_utf32Encoding_5() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___utf32Encoding_5)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_utf32Encoding_5() const { return ___utf32Encoding_5; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_utf32Encoding_5() { return &___utf32Encoding_5; }
inline void set_utf32Encoding_5(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___utf32Encoding_5 = value;
Il2CppCodeGenWriteBarrier((&___utf32Encoding_5), value);
}
inline static int32_t get_offset_of_asciiEncoding_6() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___asciiEncoding_6)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_asciiEncoding_6() const { return ___asciiEncoding_6; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_asciiEncoding_6() { return &___asciiEncoding_6; }
inline void set_asciiEncoding_6(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___asciiEncoding_6 = value;
Il2CppCodeGenWriteBarrier((&___asciiEncoding_6), value);
}
inline static int32_t get_offset_of_latin1Encoding_7() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___latin1Encoding_7)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_latin1Encoding_7() const { return ___latin1Encoding_7; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_latin1Encoding_7() { return &___latin1Encoding_7; }
inline void set_latin1Encoding_7(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___latin1Encoding_7 = value;
Il2CppCodeGenWriteBarrier((&___latin1Encoding_7), value);
}
inline static int32_t get_offset_of_encodings_8() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___encodings_8)); }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_encodings_8() const { return ___encodings_8; }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_encodings_8() { return &___encodings_8; }
inline void set_encodings_8(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
{
___encodings_8 = value;
Il2CppCodeGenWriteBarrier((&___encodings_8), value);
}
inline static int32_t get_offset_of_s_InternalSyncObject_15() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___s_InternalSyncObject_15)); }
inline RuntimeObject * get_s_InternalSyncObject_15() const { return ___s_InternalSyncObject_15; }
inline RuntimeObject ** get_address_of_s_InternalSyncObject_15() { return &___s_InternalSyncObject_15; }
inline void set_s_InternalSyncObject_15(RuntimeObject * value)
{
___s_InternalSyncObject_15 = value;
Il2CppCodeGenWriteBarrier((&___s_InternalSyncObject_15), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENCODING_T7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_H
#ifndef STRINGBUILDER_T_H
#define STRINGBUILDER_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Text.StringBuilder
struct StringBuilder_t : public RuntimeObject
{
public:
// System.Char[] System.Text.StringBuilder::m_ChunkChars
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___m_ChunkChars_0;
// System.Text.StringBuilder System.Text.StringBuilder::m_ChunkPrevious
StringBuilder_t * ___m_ChunkPrevious_1;
// System.Int32 System.Text.StringBuilder::m_ChunkLength
int32_t ___m_ChunkLength_2;
// System.Int32 System.Text.StringBuilder::m_ChunkOffset
int32_t ___m_ChunkOffset_3;
// System.Int32 System.Text.StringBuilder::m_MaxCapacity
int32_t ___m_MaxCapacity_4;
public:
inline static int32_t get_offset_of_m_ChunkChars_0() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkChars_0)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_m_ChunkChars_0() const { return ___m_ChunkChars_0; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_m_ChunkChars_0() { return &___m_ChunkChars_0; }
inline void set_m_ChunkChars_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___m_ChunkChars_0 = value;
Il2CppCodeGenWriteBarrier((&___m_ChunkChars_0), value);
}
inline static int32_t get_offset_of_m_ChunkPrevious_1() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkPrevious_1)); }
inline StringBuilder_t * get_m_ChunkPrevious_1() const { return ___m_ChunkPrevious_1; }
inline StringBuilder_t ** get_address_of_m_ChunkPrevious_1() { return &___m_ChunkPrevious_1; }
inline void set_m_ChunkPrevious_1(StringBuilder_t * value)
{
___m_ChunkPrevious_1 = value;
Il2CppCodeGenWriteBarrier((&___m_ChunkPrevious_1), value);
}
inline static int32_t get_offset_of_m_ChunkLength_2() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkLength_2)); }
inline int32_t get_m_ChunkLength_2() const { return ___m_ChunkLength_2; }
inline int32_t* get_address_of_m_ChunkLength_2() { return &___m_ChunkLength_2; }
inline void set_m_ChunkLength_2(int32_t value)
{
___m_ChunkLength_2 = value;
}
inline static int32_t get_offset_of_m_ChunkOffset_3() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkOffset_3)); }
inline int32_t get_m_ChunkOffset_3() const { return ___m_ChunkOffset_3; }
inline int32_t* get_address_of_m_ChunkOffset_3() { return &___m_ChunkOffset_3; }
inline void set_m_ChunkOffset_3(int32_t value)
{
___m_ChunkOffset_3 = value;
}
inline static int32_t get_offset_of_m_MaxCapacity_4() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_MaxCapacity_4)); }
inline int32_t get_m_MaxCapacity_4() const { return ___m_MaxCapacity_4; }
inline int32_t* get_address_of_m_MaxCapacity_4() { return &___m_MaxCapacity_4; }
inline void set_m_MaxCapacity_4(int32_t value)
{
___m_MaxCapacity_4 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STRINGBUILDER_T_H
#ifndef TUPLE_2_T090B35D3DF6A166894F43442BEFD1A1F08D0EEC8_H
#define TUPLE_2_T090B35D3DF6A166894F43442BEFD1A1F08D0EEC8_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Tuple`2<System.IO.TextWriter,System.Char>
struct Tuple_2_t090B35D3DF6A166894F43442BEFD1A1F08D0EEC8 : public RuntimeObject
{
public:
// T1 System.Tuple`2::m_Item1
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * ___m_Item1_0;
// T2 System.Tuple`2::m_Item2
Il2CppChar ___m_Item2_1;
public:
inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_2_t090B35D3DF6A166894F43442BEFD1A1F08D0EEC8, ___m_Item1_0)); }
inline TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * get_m_Item1_0() const { return ___m_Item1_0; }
inline TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 ** get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * value)
{
___m_Item1_0 = value;
Il2CppCodeGenWriteBarrier((&___m_Item1_0), value);
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_2_t090B35D3DF6A166894F43442BEFD1A1F08D0EEC8, ___m_Item2_1)); }
inline Il2CppChar get_m_Item2_1() const { return ___m_Item2_1; }
inline Il2CppChar* get_address_of_m_Item2_1() { return &___m_Item2_1; }
inline void set_m_Item2_1(Il2CppChar value)
{
___m_Item2_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TUPLE_2_T090B35D3DF6A166894F43442BEFD1A1F08D0EEC8_H
#ifndef TUPLE_2_TD1FC5C7507045B6D28C0A35144BF8C31F5FAC962_H
#define TUPLE_2_TD1FC5C7507045B6D28C0A35144BF8C31F5FAC962_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Tuple`2<System.IO.TextWriter,System.String>
struct Tuple_2_tD1FC5C7507045B6D28C0A35144BF8C31F5FAC962 : public RuntimeObject
{
public:
// T1 System.Tuple`2::m_Item1
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * ___m_Item1_0;
// T2 System.Tuple`2::m_Item2
String_t* ___m_Item2_1;
public:
inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_2_tD1FC5C7507045B6D28C0A35144BF8C31F5FAC962, ___m_Item1_0)); }
inline TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * get_m_Item1_0() const { return ___m_Item1_0; }
inline TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 ** get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * value)
{
___m_Item1_0 = value;
Il2CppCodeGenWriteBarrier((&___m_Item1_0), value);
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_2_tD1FC5C7507045B6D28C0A35144BF8C31F5FAC962, ___m_Item2_1)); }
inline String_t* get_m_Item2_1() const { return ___m_Item2_1; }
inline String_t** get_address_of_m_Item2_1() { return &___m_Item2_1; }
inline void set_m_Item2_1(String_t* value)
{
___m_Item2_1 = value;
Il2CppCodeGenWriteBarrier((&___m_Item2_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TUPLE_2_TD1FC5C7507045B6D28C0A35144BF8C31F5FAC962_H
#ifndef TUPLE_4_TBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE_H
#define TUPLE_4_TBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Tuple`4<System.IO.TextReader,System.Char[],System.Int32,System.Int32>
struct Tuple_4_tBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE : public RuntimeObject
{
public:
// T1 System.Tuple`4::m_Item1
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * ___m_Item1_0;
// T2 System.Tuple`4::m_Item2
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___m_Item2_1;
// T3 System.Tuple`4::m_Item3
int32_t ___m_Item3_2;
// T4 System.Tuple`4::m_Item4
int32_t ___m_Item4_3;
public:
inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_4_tBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE, ___m_Item1_0)); }
inline TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * get_m_Item1_0() const { return ___m_Item1_0; }
inline TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A ** get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * value)
{
___m_Item1_0 = value;
Il2CppCodeGenWriteBarrier((&___m_Item1_0), value);
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_4_tBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE, ___m_Item2_1)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_m_Item2_1() const { return ___m_Item2_1; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_m_Item2_1() { return &___m_Item2_1; }
inline void set_m_Item2_1(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___m_Item2_1 = value;
Il2CppCodeGenWriteBarrier((&___m_Item2_1), value);
}
inline static int32_t get_offset_of_m_Item3_2() { return static_cast<int32_t>(offsetof(Tuple_4_tBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE, ___m_Item3_2)); }
inline int32_t get_m_Item3_2() const { return ___m_Item3_2; }
inline int32_t* get_address_of_m_Item3_2() { return &___m_Item3_2; }
inline void set_m_Item3_2(int32_t value)
{
___m_Item3_2 = value;
}
inline static int32_t get_offset_of_m_Item4_3() { return static_cast<int32_t>(offsetof(Tuple_4_tBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE, ___m_Item4_3)); }
inline int32_t get_m_Item4_3() const { return ___m_Item4_3; }
inline int32_t* get_address_of_m_Item4_3() { return &___m_Item4_3; }
inline void set_m_Item4_3(int32_t value)
{
___m_Item4_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TUPLE_4_TBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE_H
#ifndef TUPLE_4_TC75BD1E53ABE4CA2D4365A765E9818A74C349094_H
#define TUPLE_4_TC75BD1E53ABE4CA2D4365A765E9818A74C349094_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Tuple`4<System.IO.TextWriter,System.Char[],System.Int32,System.Int32>
struct Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094 : public RuntimeObject
{
public:
// T1 System.Tuple`4::m_Item1
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * ___m_Item1_0;
// T2 System.Tuple`4::m_Item2
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___m_Item2_1;
// T3 System.Tuple`4::m_Item3
int32_t ___m_Item3_2;
// T4 System.Tuple`4::m_Item4
int32_t ___m_Item4_3;
public:
inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094, ___m_Item1_0)); }
inline TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * get_m_Item1_0() const { return ___m_Item1_0; }
inline TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 ** get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * value)
{
___m_Item1_0 = value;
Il2CppCodeGenWriteBarrier((&___m_Item1_0), value);
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094, ___m_Item2_1)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_m_Item2_1() const { return ___m_Item2_1; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_m_Item2_1() { return &___m_Item2_1; }
inline void set_m_Item2_1(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___m_Item2_1 = value;
Il2CppCodeGenWriteBarrier((&___m_Item2_1), value);
}
inline static int32_t get_offset_of_m_Item3_2() { return static_cast<int32_t>(offsetof(Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094, ___m_Item3_2)); }
inline int32_t get_m_Item3_2() const { return ___m_Item3_2; }
inline int32_t* get_address_of_m_Item3_2() { return &___m_Item3_2; }
inline void set_m_Item3_2(int32_t value)
{
___m_Item3_2 = value;
}
inline static int32_t get_offset_of_m_Item4_3() { return static_cast<int32_t>(offsetof(Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094, ___m_Item4_3)); }
inline int32_t get_m_Item4_3() const { return ___m_Item4_3; }
inline int32_t* get_address_of_m_Item4_3() { return &___m_Item4_3; }
inline void set_m_Item4_3(int32_t value)
{
___m_Item4_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TUPLE_4_TC75BD1E53ABE4CA2D4365A765E9818A74C349094_H
#ifndef VALUETYPE_T4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_H
#define VALUETYPE_T4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ValueType
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// 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
{
};
#endif // VALUETYPE_T4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_H
#ifndef __STATICARRAYINITTYPESIZEU3D10_T39E3D966A21885323F15EB866ABDE668EA1ED52C_H
#define __STATICARRAYINITTYPESIZEU3D10_T39E3D966A21885323F15EB866ABDE668EA1ED52C_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D10
struct __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C__padding[10];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D10_T39E3D966A21885323F15EB866ABDE668EA1ED52C_H
#ifndef __STATICARRAYINITTYPESIZEU3D1018_T7825BE1556EFF874DAFDC230EB69C85A48DBCBC4_H
#define __STATICARRAYINITTYPESIZEU3D1018_T7825BE1556EFF874DAFDC230EB69C85A48DBCBC4_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1018
struct __StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4__padding[1018];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D1018_T7825BE1556EFF874DAFDC230EB69C85A48DBCBC4_H
#ifndef __STATICARRAYINITTYPESIZEU3D1080_TCE36DA14009C45CFDEA7F63618BE90F8DF89AC84_H
#define __STATICARRAYINITTYPESIZEU3D1080_TCE36DA14009C45CFDEA7F63618BE90F8DF89AC84_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1080
struct __StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84__padding[1080];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D1080_TCE36DA14009C45CFDEA7F63618BE90F8DF89AC84_H
#ifndef __STATICARRAYINITTYPESIZEU3D11614_TDF34959BE752359A89A4A577B8798D2D66A5E7F5_H
#define __STATICARRAYINITTYPESIZEU3D11614_TDF34959BE752359A89A4A577B8798D2D66A5E7F5_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D11614
struct __StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5__padding[11614];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D11614_TDF34959BE752359A89A4A577B8798D2D66A5E7F5_H
#ifndef __STATICARRAYINITTYPESIZEU3D12_TB4B4C95019D88097B57DE7B50445942256BF2879_H
#define __STATICARRAYINITTYPESIZEU3D12_TB4B4C95019D88097B57DE7B50445942256BF2879_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12
struct __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879__padding[12];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D12_TB4B4C95019D88097B57DE7B50445942256BF2879_H
#ifndef __STATICARRAYINITTYPESIZEU3D120_TBA46FD2E9DA153FD8457EE7F425E8ECC517EA252_H
#define __STATICARRAYINITTYPESIZEU3D120_TBA46FD2E9DA153FD8457EE7F425E8ECC517EA252_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D120
struct __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252__padding[120];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D120_TBA46FD2E9DA153FD8457EE7F425E8ECC517EA252_H
#ifndef __STATICARRAYINITTYPESIZEU3D1208_TC58894ECFE2C4FFD2B8FCDF958800099A737C1DD_H
#define __STATICARRAYINITTYPESIZEU3D1208_TC58894ECFE2C4FFD2B8FCDF958800099A737C1DD_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1208
struct __StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD__padding[1208];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D1208_TC58894ECFE2C4FFD2B8FCDF958800099A737C1DD_H
#ifndef __STATICARRAYINITTYPESIZEU3D128_T1B13688BD6EA82B964734FF8C3181161EF5624B1_H
#define __STATICARRAYINITTYPESIZEU3D128_T1B13688BD6EA82B964734FF8C3181161EF5624B1_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D128
struct __StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1__padding[128];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D128_T1B13688BD6EA82B964734FF8C3181161EF5624B1_H
#ifndef __STATICARRAYINITTYPESIZEU3D130_T732A6F42953325ADC5746FF1A652A2974473AF4F_H
#define __STATICARRAYINITTYPESIZEU3D130_T732A6F42953325ADC5746FF1A652A2974473AF4F_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D130
struct __StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F__padding[130];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D130_T732A6F42953325ADC5746FF1A652A2974473AF4F_H
#ifndef __STATICARRAYINITTYPESIZEU3D14_TAC1FF6EBB83457B9752372565F242D9A7C69FD05_H
#define __STATICARRAYINITTYPESIZEU3D14_TAC1FF6EBB83457B9752372565F242D9A7C69FD05_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D14
struct __StaticArrayInitTypeSizeU3D14_tAC1FF6EBB83457B9752372565F242D9A7C69FD05
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D14_tAC1FF6EBB83457B9752372565F242D9A7C69FD05__padding[14];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D14_TAC1FF6EBB83457B9752372565F242D9A7C69FD05_H
#ifndef __STATICARRAYINITTYPESIZEU3D1450_T58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4_H
#define __STATICARRAYINITTYPESIZEU3D1450_T58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1450
struct __StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4__padding[1450];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D1450_T58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4_H
#ifndef __STATICARRAYINITTYPESIZEU3D16_T35B2E1DB11C9D3150BF800DC30A2808C4F1A1341_H
#define __STATICARRAYINITTYPESIZEU3D16_T35B2E1DB11C9D3150BF800DC30A2808C4F1A1341_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16
struct __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341__padding[16];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D16_T35B2E1DB11C9D3150BF800DC30A2808C4F1A1341_H
#ifndef __STATICARRAYINITTYPESIZEU3D162_TFFF125F871C6A7DE42BE37AC907E2E2149A861AA_H
#define __STATICARRAYINITTYPESIZEU3D162_TFFF125F871C6A7DE42BE37AC907E2E2149A861AA_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D162
struct __StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA__padding[162];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D162_TFFF125F871C6A7DE42BE37AC907E2E2149A861AA_H
#ifndef __STATICARRAYINITTYPESIZEU3D1665_TCD7752863825B82B07752CCE72A581C169E19C20_H
#define __STATICARRAYINITTYPESIZEU3D1665_TCD7752863825B82B07752CCE72A581C169E19C20_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1665
struct __StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20__padding[1665];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D1665_TCD7752863825B82B07752CCE72A581C169E19C20_H
#ifndef __STATICARRAYINITTYPESIZEU3D174_T58EBFEBC3E6F34CF7C54ED51E8113E34B876351F_H
#define __STATICARRAYINITTYPESIZEU3D174_T58EBFEBC3E6F34CF7C54ED51E8113E34B876351F_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D174
struct __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F__padding[174];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D174_T58EBFEBC3E6F34CF7C54ED51E8113E34B876351F_H
#ifndef __STATICARRAYINITTYPESIZEU3D20_T4B48985ED9F1499360D72CB311F3EB54FB7C4B63_H
#define __STATICARRAYINITTYPESIZEU3D20_T4B48985ED9F1499360D72CB311F3EB54FB7C4B63_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D20
struct __StaticArrayInitTypeSizeU3D20_t4B48985ED9F1499360D72CB311F3EB54FB7C4B63
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D20_t4B48985ED9F1499360D72CB311F3EB54FB7C4B63__padding[20];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D20_T4B48985ED9F1499360D72CB311F3EB54FB7C4B63_H
#ifndef __STATICARRAYINITTYPESIZEU3D2048_T95CEED630052F2BBE3122C058EEAD48DB4C2AD02_H
#define __STATICARRAYINITTYPESIZEU3D2048_T95CEED630052F2BBE3122C058EEAD48DB4C2AD02_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2048
struct __StaticArrayInitTypeSizeU3D2048_t95CEED630052F2BBE3122C058EEAD48DB4C2AD02
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D2048_t95CEED630052F2BBE3122C058EEAD48DB4C2AD02__padding[2048];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D2048_T95CEED630052F2BBE3122C058EEAD48DB4C2AD02_H
#ifndef __STATICARRAYINITTYPESIZEU3D2100_T75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA_H
#define __STATICARRAYINITTYPESIZEU3D2100_T75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2100
struct __StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA__padding[2100];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D2100_T75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA_H
#ifndef __STATICARRAYINITTYPESIZEU3D212_TDFB9BEA11D871D109F9E6502B2F50F7115451AAF_H
#define __STATICARRAYINITTYPESIZEU3D212_TDFB9BEA11D871D109F9E6502B2F50F7115451AAF_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D212
struct __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF__padding[212];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D212_TDFB9BEA11D871D109F9E6502B2F50F7115451AAF_H
#ifndef __STATICARRAYINITTYPESIZEU3D21252_TCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462_H
#define __STATICARRAYINITTYPESIZEU3D21252_TCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D21252
struct __StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462__padding[21252];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D21252_TCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462_H
#ifndef __STATICARRAYINITTYPESIZEU3D2350_T96984AEF232104302694B7EFDA3F92BC42BF207D_H
#define __STATICARRAYINITTYPESIZEU3D2350_T96984AEF232104302694B7EFDA3F92BC42BF207D_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2350
struct __StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D__padding[2350];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D2350_T96984AEF232104302694B7EFDA3F92BC42BF207D_H
#ifndef __STATICARRAYINITTYPESIZEU3D2382_TB4AF2C49C5120B6EB285BA4D247340D8E243A1BA_H
#define __STATICARRAYINITTYPESIZEU3D2382_TB4AF2C49C5120B6EB285BA4D247340D8E243A1BA_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2382
struct __StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA__padding[2382];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D2382_TB4AF2C49C5120B6EB285BA4D247340D8E243A1BA_H
#ifndef __STATICARRAYINITTYPESIZEU3D24_TAB08761D1BC4313A0535E193F4E1A1AFA8B3F123_H
#define __STATICARRAYINITTYPESIZEU3D24_TAB08761D1BC4313A0535E193F4E1A1AFA8B3F123_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D24
struct __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123__padding[24];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D24_TAB08761D1BC4313A0535E193F4E1A1AFA8B3F123_H
#ifndef __STATICARRAYINITTYPESIZEU3D240_T5643A77865294845ACC505FE42EA1067CAC04FD8_H
#define __STATICARRAYINITTYPESIZEU3D240_T5643A77865294845ACC505FE42EA1067CAC04FD8_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D240
struct __StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8__padding[240];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D240_T5643A77865294845ACC505FE42EA1067CAC04FD8_H
#ifndef __STATICARRAYINITTYPESIZEU3D256_T9003B1E1E8C82BC25ADE7407C58A314C292B326F_H
#define __STATICARRAYINITTYPESIZEU3D256_T9003B1E1E8C82BC25ADE7407C58A314C292B326F_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D256
struct __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F__padding[256];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D256_T9003B1E1E8C82BC25ADE7407C58A314C292B326F_H
#ifndef __STATICARRAYINITTYPESIZEU3D262_T93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7_H
#define __STATICARRAYINITTYPESIZEU3D262_T93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D262
struct __StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7__padding[262];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D262_T93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7_H
#ifndef __STATICARRAYINITTYPESIZEU3D288_T7B40D7F3A8D262F90A76460FF94E92CE08AFCF55_H
#define __STATICARRAYINITTYPESIZEU3D288_T7B40D7F3A8D262F90A76460FF94E92CE08AFCF55_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D288
struct __StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55__padding[288];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D288_T7B40D7F3A8D262F90A76460FF94E92CE08AFCF55_H
#ifndef __STATICARRAYINITTYPESIZEU3D3_T651350E6AC00D0836A5D0539D0D68852BE81E08E_H
#define __STATICARRAYINITTYPESIZEU3D3_T651350E6AC00D0836A5D0539D0D68852BE81E08E_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3
struct __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E__padding[3];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D3_T651350E6AC00D0836A5D0539D0D68852BE81E08E_H
#ifndef __STATICARRAYINITTYPESIZEU3D3132_T7837B5DAEC2B2BEBD61C333545DB9AE2F35BF333_H
#define __STATICARRAYINITTYPESIZEU3D3132_T7837B5DAEC2B2BEBD61C333545DB9AE2F35BF333_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3132
struct __StaticArrayInitTypeSizeU3D3132_t7837B5DAEC2B2BEBD61C333545DB9AE2F35BF333
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D3132_t7837B5DAEC2B2BEBD61C333545DB9AE2F35BF333__padding[3132];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D3132_T7837B5DAEC2B2BEBD61C333545DB9AE2F35BF333_H
#ifndef __STATICARRAYINITTYPESIZEU3D32_T06FF35439BDF1A6AAB50820787FA5D7A4FA09472_H
#define __STATICARRAYINITTYPESIZEU3D32_T06FF35439BDF1A6AAB50820787FA5D7A4FA09472_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D32
struct __StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472__padding[32];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D32_T06FF35439BDF1A6AAB50820787FA5D7A4FA09472_H
#ifndef __STATICARRAYINITTYPESIZEU3D320_T48B9242FB90DB2A21A723BBAB141500A9641EB49_H
#define __STATICARRAYINITTYPESIZEU3D320_T48B9242FB90DB2A21A723BBAB141500A9641EB49_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D320
struct __StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49__padding[320];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D320_T48B9242FB90DB2A21A723BBAB141500A9641EB49_H
#ifndef __STATICARRAYINITTYPESIZEU3D36_T553C250FA8609975E44273C4AD8F28E487272E17_H
#define __STATICARRAYINITTYPESIZEU3D36_T553C250FA8609975E44273C4AD8F28E487272E17_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D36
struct __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17__padding[36];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D36_T553C250FA8609975E44273C4AD8F28E487272E17_H
#ifndef __STATICARRAYINITTYPESIZEU3D360_TFF8371303424DEBAE608051BAA970E5AFB409DF7_H
#define __STATICARRAYINITTYPESIZEU3D360_TFF8371303424DEBAE608051BAA970E5AFB409DF7_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D360
struct __StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7__padding[360];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D360_TFF8371303424DEBAE608051BAA970E5AFB409DF7_H
#ifndef __STATICARRAYINITTYPESIZEU3D38_TA52D24A5F9970582D6B55437967C9BD32E03F05D_H
#define __STATICARRAYINITTYPESIZEU3D38_TA52D24A5F9970582D6B55437967C9BD32E03F05D_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D38
struct __StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D__padding[38];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D38_TA52D24A5F9970582D6B55437967C9BD32E03F05D_H
#ifndef __STATICARRAYINITTYPESIZEU3D40_T0453B23B081EF301CB1E3167001650AD0C490F04_H
#define __STATICARRAYINITTYPESIZEU3D40_T0453B23B081EF301CB1E3167001650AD0C490F04_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40
struct __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04__padding[40];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D40_T0453B23B081EF301CB1E3167001650AD0C490F04_H
#ifndef __STATICARRAYINITTYPESIZEU3D42_T3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4_H
#define __STATICARRAYINITTYPESIZEU3D42_T3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D42
struct __StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4__padding[42];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D42_T3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4_H
#ifndef __STATICARRAYINITTYPESIZEU3D44_T1383A9A990CD22E4246B656157D17C8051BFAD7F_H
#define __STATICARRAYINITTYPESIZEU3D44_T1383A9A990CD22E4246B656157D17C8051BFAD7F_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D44
struct __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F__padding[44];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D44_T1383A9A990CD22E4246B656157D17C8051BFAD7F_H
#ifndef __STATICARRAYINITTYPESIZEU3D48_TE49166878222E9194FE3FD621830EDB6E705F79A_H
#define __STATICARRAYINITTYPESIZEU3D48_TE49166878222E9194FE3FD621830EDB6E705F79A_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D48
struct __StaticArrayInitTypeSizeU3D48_tE49166878222E9194FE3FD621830EDB6E705F79A
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D48_tE49166878222E9194FE3FD621830EDB6E705F79A__padding[48];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D48_TE49166878222E9194FE3FD621830EDB6E705F79A_H
#ifndef __STATICARRAYINITTYPESIZEU3D52_TF7B918A088A367994FBAEB73123296D8929B543A_H
#define __STATICARRAYINITTYPESIZEU3D52_TF7B918A088A367994FBAEB73123296D8929B543A_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D52
struct __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A__padding[52];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D52_TF7B918A088A367994FBAEB73123296D8929B543A_H
#ifndef __STATICARRAYINITTYPESIZEU3D56_TE92B90DB812A206A3F9FED2827695B30D2F06D10_H
#define __STATICARRAYINITTYPESIZEU3D56_TE92B90DB812A206A3F9FED2827695B30D2F06D10_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D56
struct __StaticArrayInitTypeSizeU3D56_tE92B90DB812A206A3F9FED2827695B30D2F06D10
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D56_tE92B90DB812A206A3F9FED2827695B30D2F06D10__padding[56];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D56_TE92B90DB812A206A3F9FED2827695B30D2F06D10_H
#ifndef __STATICARRAYINITTYPESIZEU3D6_TC937DCE458F6AE4186120B4DDF95463176C75C78_H
#define __STATICARRAYINITTYPESIZEU3D6_TC937DCE458F6AE4186120B4DDF95463176C75C78_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D6
struct __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78__padding[6];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D6_TC937DCE458F6AE4186120B4DDF95463176C75C78_H
#ifndef __STATICARRAYINITTYPESIZEU3D64_TC44517F575DC9AEC7589A864FEA072030961DAF6_H
#define __STATICARRAYINITTYPESIZEU3D64_TC44517F575DC9AEC7589A864FEA072030961DAF6_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D64
struct __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6__padding[64];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D64_TC44517F575DC9AEC7589A864FEA072030961DAF6_H
#ifndef __STATICARRAYINITTYPESIZEU3D640_T9C691C15FA1A34F93F102000D5F515E32241C910_H
#define __STATICARRAYINITTYPESIZEU3D640_T9C691C15FA1A34F93F102000D5F515E32241C910_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D640
struct __StaticArrayInitTypeSizeU3D640_t9C691C15FA1A34F93F102000D5F515E32241C910
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D640_t9C691C15FA1A34F93F102000D5F515E32241C910__padding[640];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D640_T9C691C15FA1A34F93F102000D5F515E32241C910_H
#ifndef __STATICARRAYINITTYPESIZEU3D72_TF9B2DE61B68289FA0233B6E305B08B2FCD612FA1_H
#define __STATICARRAYINITTYPESIZEU3D72_TF9B2DE61B68289FA0233B6E305B08B2FCD612FA1_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72
struct __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1__padding[72];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D72_TF9B2DE61B68289FA0233B6E305B08B2FCD612FA1_H
#ifndef __STATICARRAYINITTYPESIZEU3D76_T83BE44A74AC13CD15474DA7726C9C92BD317CFFB_H
#define __STATICARRAYINITTYPESIZEU3D76_T83BE44A74AC13CD15474DA7726C9C92BD317CFFB_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D76
struct __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB__padding[76];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D76_T83BE44A74AC13CD15474DA7726C9C92BD317CFFB_H
#ifndef __STATICARRAYINITTYPESIZEU3D84_TF52293EFB26AA1D2C169389BB83253C5BAE8076A_H
#define __STATICARRAYINITTYPESIZEU3D84_TF52293EFB26AA1D2C169389BB83253C5BAE8076A_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D84
struct __StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A__padding[84];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D84_TF52293EFB26AA1D2C169389BB83253C5BAE8076A_H
#ifndef __STATICARRAYINITTYPESIZEU3D9_TF0D137C898E06A3CD9FFB079C91D796B9EC8B928_H
#define __STATICARRAYINITTYPESIZEU3D9_TF0D137C898E06A3CD9FFB079C91D796B9EC8B928_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D9
struct __StaticArrayInitTypeSizeU3D9_tF0D137C898E06A3CD9FFB079C91D796B9EC8B928
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D9_tF0D137C898E06A3CD9FFB079C91D796B9EC8B928__padding[9];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D9_TF0D137C898E06A3CD9FFB079C91D796B9EC8B928_H
#ifndef __STATICARRAYINITTYPESIZEU3D94_T23554D8B96399688002A3BE81C7C15EFB011DEC6_H
#define __STATICARRAYINITTYPESIZEU3D94_T23554D8B96399688002A3BE81C7C15EFB011DEC6_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D94
struct __StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6__padding[94];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D94_T23554D8B96399688002A3BE81C7C15EFB011DEC6_H
#ifndef __STATICARRAYINITTYPESIZEU3D998_T8A5C9782706B510180A1B9C9F7E96F8F48421B8C_H
#define __STATICARRAYINITTYPESIZEU3D998_T8A5C9782706B510180A1B9C9F7E96F8F48421B8C_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D998
struct __StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C__padding[998];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D998_T8A5C9782706B510180A1B9C9F7E96F8F48421B8C_H
#ifndef BOOLEAN_TB53F6830F670160873277339AA58F15CAED4399C_H
#define BOOLEAN_TB53F6830F670160873277339AA58F15CAED4399C_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___TrueString_5), 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((&___FalseString_6), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BOOLEAN_TB53F6830F670160873277339AA58F15CAED4399C_H
#ifndef BYTE_TF87C579059BD4633E6840EBBBEEF899C6E33EF07_H
#define BYTE_TF87C579059BD4633E6840EBBBEEF899C6E33EF07_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BYTE_TF87C579059BD4633E6840EBBBEEF899C6E33EF07_H
#ifndef CHAR_TBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_H
#define CHAR_TBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___categoryForLatin1_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CHAR_TBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_H
#ifndef DATETIME_T349B7449FBAAFF4192636E2B7A07694DA9236132_H
#define DATETIME_T349B7449FBAAFF4192636E2B7A07694DA9236132_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___DaysToMonth365_29), 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((&___DaysToMonth366_30), 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DATETIME_T349B7449FBAAFF4192636E2B7A07694DA9236132_H
#ifndef DECIMAL_T44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_H
#define DECIMAL_T44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___Powers10_6), 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DECIMAL_T44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_H
#ifndef DOUBLE_T358B8F23BDC52A5DD700E727E204F9F7CDE12409_H
#define DOUBLE_T358B8F23BDC52A5DD700E727E204F9F7CDE12409_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DOUBLE_T358B8F23BDC52A5DD700E727E204F9F7CDE12409_H
#ifndef ENUM_T2AF27C02B8653AE29442467390005ABC74D8F521_H
#define ENUM_T2AF27C02B8653AE29442467390005ABC74D8F521_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___enumSeperatorCharArray_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// 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
{
};
#endif // ENUM_T2AF27C02B8653AE29442467390005ABC74D8F521_H
#ifndef STREAM_TFC50657DD5AAB87770987F9179D934A51D99D5E7_H
#define STREAM_TFC50657DD5AAB87770987F9179D934A51D99D5E7_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.Stream
struct Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF
{
public:
// System.IO.Stream_ReadWriteTask System.IO.Stream::_activeReadWriteTask
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * ____activeReadWriteTask_2;
// System.Threading.SemaphoreSlim System.IO.Stream::_asyncActiveSemaphore
SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * ____asyncActiveSemaphore_3;
public:
inline static int32_t get_offset_of__activeReadWriteTask_2() { return static_cast<int32_t>(offsetof(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7, ____activeReadWriteTask_2)); }
inline ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * get__activeReadWriteTask_2() const { return ____activeReadWriteTask_2; }
inline ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 ** get_address_of__activeReadWriteTask_2() { return &____activeReadWriteTask_2; }
inline void set__activeReadWriteTask_2(ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * value)
{
____activeReadWriteTask_2 = value;
Il2CppCodeGenWriteBarrier((&____activeReadWriteTask_2), value);
}
inline static int32_t get_offset_of__asyncActiveSemaphore_3() { return static_cast<int32_t>(offsetof(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7, ____asyncActiveSemaphore_3)); }
inline SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * get__asyncActiveSemaphore_3() const { return ____asyncActiveSemaphore_3; }
inline SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 ** get_address_of__asyncActiveSemaphore_3() { return &____asyncActiveSemaphore_3; }
inline void set__asyncActiveSemaphore_3(SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * value)
{
____asyncActiveSemaphore_3 = value;
Il2CppCodeGenWriteBarrier((&____asyncActiveSemaphore_3), value);
}
};
struct Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_StaticFields
{
public:
// System.IO.Stream System.IO.Stream::Null
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___Null_1;
public:
inline static int32_t get_offset_of_Null_1() { return static_cast<int32_t>(offsetof(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_StaticFields, ___Null_1)); }
inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * get_Null_1() const { return ___Null_1; }
inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 ** get_address_of_Null_1() { return &___Null_1; }
inline void set_Null_1(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * value)
{
___Null_1 = value;
Il2CppCodeGenWriteBarrier((&___Null_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STREAM_TFC50657DD5AAB87770987F9179D934A51D99D5E7_H
#ifndef STRINGRESULTHANDLER_TA57B2E939732C5126B9780732364D603FF7D44A6_H
#define STRINGRESULTHANDLER_TA57B2E939732C5126B9780732364D603FF7D44A6_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.StringResultHandler
struct StringResultHandler_tA57B2E939732C5126B9780732364D603FF7D44A6 : public SearchResultHandler_1_t512E43241A0A98FD5802FD1BDA5ABD335315853C
{
public:
// System.Boolean System.IO.StringResultHandler::_includeFiles
bool ____includeFiles_0;
// System.Boolean System.IO.StringResultHandler::_includeDirs
bool ____includeDirs_1;
public:
inline static int32_t get_offset_of__includeFiles_0() { return static_cast<int32_t>(offsetof(StringResultHandler_tA57B2E939732C5126B9780732364D603FF7D44A6, ____includeFiles_0)); }
inline bool get__includeFiles_0() const { return ____includeFiles_0; }
inline bool* get_address_of__includeFiles_0() { return &____includeFiles_0; }
inline void set__includeFiles_0(bool value)
{
____includeFiles_0 = value;
}
inline static int32_t get_offset_of__includeDirs_1() { return static_cast<int32_t>(offsetof(StringResultHandler_tA57B2E939732C5126B9780732364D603FF7D44A6, ____includeDirs_1)); }
inline bool get__includeDirs_1() const { return ____includeDirs_1; }
inline bool* get_address_of__includeDirs_1() { return &____includeDirs_1; }
inline void set__includeDirs_1(bool value)
{
____includeDirs_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STRINGRESULTHANDLER_TA57B2E939732C5126B9780732364D603FF7D44A6_H
#ifndef TEXTREADER_T7DF8314B601D202ECFEDF623093A87BFDAB58D0A_H
#define TEXTREADER_T7DF8314B601D202ECFEDF623093A87BFDAB58D0A_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.TextReader
struct TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF
{
public:
public:
};
struct TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_StaticFields
{
public:
// System.Func`2<System.Object,System.String> System.IO.TextReader::_ReadLineDelegate
Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF * ____ReadLineDelegate_1;
// System.Func`2<System.Object,System.Int32> System.IO.TextReader::_ReadDelegate
Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * ____ReadDelegate_2;
// System.IO.TextReader System.IO.TextReader::Null
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * ___Null_3;
public:
inline static int32_t get_offset_of__ReadLineDelegate_1() { return static_cast<int32_t>(offsetof(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_StaticFields, ____ReadLineDelegate_1)); }
inline Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF * get__ReadLineDelegate_1() const { return ____ReadLineDelegate_1; }
inline Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF ** get_address_of__ReadLineDelegate_1() { return &____ReadLineDelegate_1; }
inline void set__ReadLineDelegate_1(Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF * value)
{
____ReadLineDelegate_1 = value;
Il2CppCodeGenWriteBarrier((&____ReadLineDelegate_1), value);
}
inline static int32_t get_offset_of__ReadDelegate_2() { return static_cast<int32_t>(offsetof(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_StaticFields, ____ReadDelegate_2)); }
inline Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * get__ReadDelegate_2() const { return ____ReadDelegate_2; }
inline Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 ** get_address_of__ReadDelegate_2() { return &____ReadDelegate_2; }
inline void set__ReadDelegate_2(Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * value)
{
____ReadDelegate_2 = value;
Il2CppCodeGenWriteBarrier((&____ReadDelegate_2), value);
}
inline static int32_t get_offset_of_Null_3() { return static_cast<int32_t>(offsetof(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_StaticFields, ___Null_3)); }
inline TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * get_Null_3() const { return ___Null_3; }
inline TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A ** get_address_of_Null_3() { return &___Null_3; }
inline void set_Null_3(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * value)
{
___Null_3 = value;
Il2CppCodeGenWriteBarrier((&___Null_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TEXTREADER_T7DF8314B601D202ECFEDF623093A87BFDAB58D0A_H
#ifndef TEXTWRITER_T92451D929322093838C41489883D5B2D7ABAF3F0_H
#define TEXTWRITER_T92451D929322093838C41489883D5B2D7ABAF3F0_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___CoreNewLine_9), 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((&___InternalFormatProvider_10), 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((&___Null_1), 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((&____WriteCharDelegate_2), 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((&____WriteStringDelegate_3), 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((&____WriteCharArrayRangeDelegate_4), 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((&____WriteLineCharDelegate_5), 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((&____WriteLineStringDelegate_6), 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((&____WriteLineCharArrayRangeDelegate_7), 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((&____FlushDelegate_8), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TEXTWRITER_T92451D929322093838C41489883D5B2D7ABAF3F0_H
#ifndef INPUTRECORD_TAB007C739F339BE208F3C4796B53E9044ADF0A78_H
#define INPUTRECORD_TAB007C739F339BE208F3C4796B53E9044ADF0A78_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.InputRecord
struct InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78
{
public:
// System.Int16 System.InputRecord::EventType
int16_t ___EventType_0;
// System.Boolean System.InputRecord::KeyDown
bool ___KeyDown_1;
// System.Int16 System.InputRecord::RepeatCount
int16_t ___RepeatCount_2;
// System.Int16 System.InputRecord::VirtualKeyCode
int16_t ___VirtualKeyCode_3;
// System.Int16 System.InputRecord::VirtualScanCode
int16_t ___VirtualScanCode_4;
// System.Char System.InputRecord::Character
Il2CppChar ___Character_5;
// System.Int32 System.InputRecord::ControlKeyState
int32_t ___ControlKeyState_6;
// System.Int32 System.InputRecord::pad1
int32_t ___pad1_7;
// System.Boolean System.InputRecord::pad2
bool ___pad2_8;
public:
inline static int32_t get_offset_of_EventType_0() { return static_cast<int32_t>(offsetof(InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78, ___EventType_0)); }
inline int16_t get_EventType_0() const { return ___EventType_0; }
inline int16_t* get_address_of_EventType_0() { return &___EventType_0; }
inline void set_EventType_0(int16_t value)
{
___EventType_0 = value;
}
inline static int32_t get_offset_of_KeyDown_1() { return static_cast<int32_t>(offsetof(InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78, ___KeyDown_1)); }
inline bool get_KeyDown_1() const { return ___KeyDown_1; }
inline bool* get_address_of_KeyDown_1() { return &___KeyDown_1; }
inline void set_KeyDown_1(bool value)
{
___KeyDown_1 = value;
}
inline static int32_t get_offset_of_RepeatCount_2() { return static_cast<int32_t>(offsetof(InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78, ___RepeatCount_2)); }
inline int16_t get_RepeatCount_2() const { return ___RepeatCount_2; }
inline int16_t* get_address_of_RepeatCount_2() { return &___RepeatCount_2; }
inline void set_RepeatCount_2(int16_t value)
{
___RepeatCount_2 = value;
}
inline static int32_t get_offset_of_VirtualKeyCode_3() { return static_cast<int32_t>(offsetof(InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78, ___VirtualKeyCode_3)); }
inline int16_t get_VirtualKeyCode_3() const { return ___VirtualKeyCode_3; }
inline int16_t* get_address_of_VirtualKeyCode_3() { return &___VirtualKeyCode_3; }
inline void set_VirtualKeyCode_3(int16_t value)
{
___VirtualKeyCode_3 = value;
}
inline static int32_t get_offset_of_VirtualScanCode_4() { return static_cast<int32_t>(offsetof(InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78, ___VirtualScanCode_4)); }
inline int16_t get_VirtualScanCode_4() const { return ___VirtualScanCode_4; }
inline int16_t* get_address_of_VirtualScanCode_4() { return &___VirtualScanCode_4; }
inline void set_VirtualScanCode_4(int16_t value)
{
___VirtualScanCode_4 = value;
}
inline static int32_t get_offset_of_Character_5() { return static_cast<int32_t>(offsetof(InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78, ___Character_5)); }
inline Il2CppChar get_Character_5() const { return ___Character_5; }
inline Il2CppChar* get_address_of_Character_5() { return &___Character_5; }
inline void set_Character_5(Il2CppChar value)
{
___Character_5 = value;
}
inline static int32_t get_offset_of_ControlKeyState_6() { return static_cast<int32_t>(offsetof(InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78, ___ControlKeyState_6)); }
inline int32_t get_ControlKeyState_6() const { return ___ControlKeyState_6; }
inline int32_t* get_address_of_ControlKeyState_6() { return &___ControlKeyState_6; }
inline void set_ControlKeyState_6(int32_t value)
{
___ControlKeyState_6 = value;
}
inline static int32_t get_offset_of_pad1_7() { return static_cast<int32_t>(offsetof(InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78, ___pad1_7)); }
inline int32_t get_pad1_7() const { return ___pad1_7; }
inline int32_t* get_address_of_pad1_7() { return &___pad1_7; }
inline void set_pad1_7(int32_t value)
{
___pad1_7 = value;
}
inline static int32_t get_offset_of_pad2_8() { return static_cast<int32_t>(offsetof(InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78, ___pad2_8)); }
inline bool get_pad2_8() const { return ___pad2_8; }
inline bool* get_address_of_pad2_8() { return &___pad2_8; }
inline void set_pad2_8(bool value)
{
___pad2_8 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.InputRecord
struct InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78_marshaled_pinvoke
{
int16_t ___EventType_0;
int32_t ___KeyDown_1;
int16_t ___RepeatCount_2;
int16_t ___VirtualKeyCode_3;
int16_t ___VirtualScanCode_4;
uint8_t ___Character_5;
int32_t ___ControlKeyState_6;
int32_t ___pad1_7;
int32_t ___pad2_8;
};
// Native definition for COM marshalling of System.InputRecord
struct InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78_marshaled_com
{
int16_t ___EventType_0;
int32_t ___KeyDown_1;
int16_t ___RepeatCount_2;
int16_t ___VirtualKeyCode_3;
int16_t ___VirtualScanCode_4;
uint8_t ___Character_5;
int32_t ___ControlKeyState_6;
int32_t ___pad1_7;
int32_t ___pad2_8;
};
#endif // INPUTRECORD_TAB007C739F339BE208F3C4796B53E9044ADF0A78_H
#ifndef INT16_T823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_H
#define INT16_T823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INT16_T823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_H
#ifndef INT32_T585191389E07734F19F3156FF88FB3EF4800D102_H
#define INT32_T585191389E07734F19F3156FF88FB3EF4800D102_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INT32_T585191389E07734F19F3156FF88FB3EF4800D102_H
#ifndef INT64_T7A386C2FF7B0280A0F516992401DDFCF0FF7B436_H
#define INT64_T7A386C2FF7B0280A0F516992401DDFCF0FF7B436_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INT64_T7A386C2FF7B0280A0F516992401DDFCF0FF7B436_H
#ifndef INTPTR_T_H
#define INTPTR_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IntPtr
struct IntPtr_t
{
public:
// System.Void* System.IntPtr::m_value
void* ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
inline void* get_m_value_0() const { return ___m_value_0; }
inline void** get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(void* value)
{
___m_value_0 = value;
}
};
struct IntPtr_t_StaticFields
{
public:
// System.IntPtr System.IntPtr::Zero
intptr_t ___Zero_1;
public:
inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
inline intptr_t get_Zero_1() const { return ___Zero_1; }
inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
inline void set_Zero_1(intptr_t value)
{
___Zero_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INTPTR_T_H
#ifndef INVALIDTIMEZONEEXCEPTION_TA035F4C48B9BE56165F6FD6526A3F7384CC78C25_H
#define INVALIDTIMEZONEEXCEPTION_TA035F4C48B9BE56165F6FD6526A3F7384CC78C25_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.InvalidTimeZoneException
struct InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 : public Exception_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INVALIDTIMEZONEEXCEPTION_TA035F4C48B9BE56165F6FD6526A3F7384CC78C25_H
#ifndef MONOTODOATTRIBUTE_T0D37CE020492CC4F1A620F173C52E5780E2A9666_H
#define MONOTODOATTRIBUTE_T0D37CE020492CC4F1A620F173C52E5780E2A9666_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.MonoTODOAttribute
struct MonoTODOAttribute_t0D37CE020492CC4F1A620F173C52E5780E2A9666 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
// System.String System.MonoTODOAttribute::comment
String_t* ___comment_0;
public:
inline static int32_t get_offset_of_comment_0() { return static_cast<int32_t>(offsetof(MonoTODOAttribute_t0D37CE020492CC4F1A620F173C52E5780E2A9666, ___comment_0)); }
inline String_t* get_comment_0() const { return ___comment_0; }
inline String_t** get_address_of_comment_0() { return &___comment_0; }
inline void set_comment_0(String_t* value)
{
___comment_0 = value;
Il2CppCodeGenWriteBarrier((&___comment_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MONOTODOATTRIBUTE_T0D37CE020492CC4F1A620F173C52E5780E2A9666_H
#ifndef NONSERIALIZEDATTRIBUTE_T1D1C4A9662B6C2FAC28237FCDFA49FA4747BC3BA_H
#define NONSERIALIZEDATTRIBUTE_T1D1C4A9662B6C2FAC28237FCDFA49FA4747BC3BA_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.NonSerializedAttribute
struct NonSerializedAttribute_t1D1C4A9662B6C2FAC28237FCDFA49FA4747BC3BA : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NONSERIALIZEDATTRIBUTE_T1D1C4A9662B6C2FAC28237FCDFA49FA4747BC3BA_H
#ifndef NUMBERBUFFER_TBD2266C521F098915F124D7A62AFF8DB05918075_H
#define NUMBERBUFFER_TBD2266C521F098915F124D7A62AFF8DB05918075_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Number_NumberBuffer
struct NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075
{
public:
// System.Byte* System.Number_NumberBuffer::baseAddress
uint8_t* ___baseAddress_1;
// System.Char* System.Number_NumberBuffer::digits
Il2CppChar* ___digits_2;
// System.Int32 System.Number_NumberBuffer::precision
int32_t ___precision_3;
// System.Int32 System.Number_NumberBuffer::scale
int32_t ___scale_4;
// System.Boolean System.Number_NumberBuffer::sign
bool ___sign_5;
public:
inline static int32_t get_offset_of_baseAddress_1() { return static_cast<int32_t>(offsetof(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075, ___baseAddress_1)); }
inline uint8_t* get_baseAddress_1() const { return ___baseAddress_1; }
inline uint8_t** get_address_of_baseAddress_1() { return &___baseAddress_1; }
inline void set_baseAddress_1(uint8_t* value)
{
___baseAddress_1 = value;
}
inline static int32_t get_offset_of_digits_2() { return static_cast<int32_t>(offsetof(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075, ___digits_2)); }
inline Il2CppChar* get_digits_2() const { return ___digits_2; }
inline Il2CppChar** get_address_of_digits_2() { return &___digits_2; }
inline void set_digits_2(Il2CppChar* value)
{
___digits_2 = value;
}
inline static int32_t get_offset_of_precision_3() { return static_cast<int32_t>(offsetof(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075, ___precision_3)); }
inline int32_t get_precision_3() const { return ___precision_3; }
inline int32_t* get_address_of_precision_3() { return &___precision_3; }
inline void set_precision_3(int32_t value)
{
___precision_3 = value;
}
inline static int32_t get_offset_of_scale_4() { return static_cast<int32_t>(offsetof(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075, ___scale_4)); }
inline int32_t get_scale_4() const { return ___scale_4; }
inline int32_t* get_address_of_scale_4() { return &___scale_4; }
inline void set_scale_4(int32_t value)
{
___scale_4 = value;
}
inline static int32_t get_offset_of_sign_5() { return static_cast<int32_t>(offsetof(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075, ___sign_5)); }
inline bool get_sign_5() const { return ___sign_5; }
inline bool* get_address_of_sign_5() { return &___sign_5; }
inline void set_sign_5(bool value)
{
___sign_5 = value;
}
};
struct NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_StaticFields
{
public:
// System.Int32 System.Number_NumberBuffer::NumberBufferBytes
int32_t ___NumberBufferBytes_0;
public:
inline static int32_t get_offset_of_NumberBufferBytes_0() { return static_cast<int32_t>(offsetof(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_StaticFields, ___NumberBufferBytes_0)); }
inline int32_t get_NumberBufferBytes_0() const { return ___NumberBufferBytes_0; }
inline int32_t* get_address_of_NumberBufferBytes_0() { return &___NumberBufferBytes_0; }
inline void set_NumberBufferBytes_0(int32_t value)
{
___NumberBufferBytes_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Number/NumberBuffer
struct NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_marshaled_pinvoke
{
uint8_t* ___baseAddress_1;
Il2CppChar* ___digits_2;
int32_t ___precision_3;
int32_t ___scale_4;
int32_t ___sign_5;
};
// Native definition for COM marshalling of System.Number/NumberBuffer
struct NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_marshaled_com
{
uint8_t* ___baseAddress_1;
Il2CppChar* ___digits_2;
int32_t ___precision_3;
int32_t ___scale_4;
int32_t ___sign_5;
};
#endif // NUMBERBUFFER_TBD2266C521F098915F124D7A62AFF8DB05918075_H
#ifndef EVENTINFO_T_H
#define EVENTINFO_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.EventInfo
struct EventInfo_t : public MemberInfo_t
{
public:
// System.Reflection.EventInfo_AddEventAdapter System.Reflection.EventInfo::cached_add_event
AddEventAdapter_t90B3498E1AA0B739F6390C7E52B51A36945E036B * ___cached_add_event_0;
public:
inline static int32_t get_offset_of_cached_add_event_0() { return static_cast<int32_t>(offsetof(EventInfo_t, ___cached_add_event_0)); }
inline AddEventAdapter_t90B3498E1AA0B739F6390C7E52B51A36945E036B * get_cached_add_event_0() const { return ___cached_add_event_0; }
inline AddEventAdapter_t90B3498E1AA0B739F6390C7E52B51A36945E036B ** get_address_of_cached_add_event_0() { return &___cached_add_event_0; }
inline void set_cached_add_event_0(AddEventAdapter_t90B3498E1AA0B739F6390C7E52B51A36945E036B * value)
{
___cached_add_event_0 = value;
Il2CppCodeGenWriteBarrier((&___cached_add_event_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EVENTINFO_T_H
#ifndef FIELDINFO_T_H
#define FIELDINFO_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.FieldInfo
struct FieldInfo_t : public MemberInfo_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FIELDINFO_T_H
#ifndef METHODBASE_T_H
#define METHODBASE_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.MethodBase
struct MethodBase_t : public MemberInfo_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // METHODBASE_T_H
#ifndef PROPERTYINFO_T_H
#define PROPERTYINFO_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.PropertyInfo
struct PropertyInfo_t : public MemberInfo_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PROPERTYINFO_T_H
#ifndef COMIMPORTATTRIBUTE_T274D44BA1076F587D6AC97C2AFBA0A7B25EFDF40_H
#define COMIMPORTATTRIBUTE_T274D44BA1076F587D6AC97C2AFBA0A7B25EFDF40_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.InteropServices.ComImportAttribute
struct ComImportAttribute_t274D44BA1076F587D6AC97C2AFBA0A7B25EFDF40 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // COMIMPORTATTRIBUTE_T274D44BA1076F587D6AC97C2AFBA0A7B25EFDF40_H
#ifndef SERVERIDENTITY_T93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2_H
#define SERVERIDENTITY_T93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.Remoting.ServerIdentity
struct ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 : public Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6
{
public:
// System.Type System.Runtime.Remoting.ServerIdentity::_objectType
Type_t * ____objectType_7;
// System.MarshalByRefObject System.Runtime.Remoting.ServerIdentity::_serverObject
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * ____serverObject_8;
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.ServerIdentity::_serverSink
RuntimeObject* ____serverSink_9;
// System.Runtime.Remoting.Contexts.Context System.Runtime.Remoting.ServerIdentity::_context
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * ____context_10;
// System.Runtime.Remoting.Lifetime.Lease System.Runtime.Remoting.ServerIdentity::_lease
Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3 * ____lease_11;
public:
inline static int32_t get_offset_of__objectType_7() { return static_cast<int32_t>(offsetof(ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2, ____objectType_7)); }
inline Type_t * get__objectType_7() const { return ____objectType_7; }
inline Type_t ** get_address_of__objectType_7() { return &____objectType_7; }
inline void set__objectType_7(Type_t * value)
{
____objectType_7 = value;
Il2CppCodeGenWriteBarrier((&____objectType_7), value);
}
inline static int32_t get_offset_of__serverObject_8() { return static_cast<int32_t>(offsetof(ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2, ____serverObject_8)); }
inline MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * get__serverObject_8() const { return ____serverObject_8; }
inline MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF ** get_address_of__serverObject_8() { return &____serverObject_8; }
inline void set__serverObject_8(MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * value)
{
____serverObject_8 = value;
Il2CppCodeGenWriteBarrier((&____serverObject_8), value);
}
inline static int32_t get_offset_of__serverSink_9() { return static_cast<int32_t>(offsetof(ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2, ____serverSink_9)); }
inline RuntimeObject* get__serverSink_9() const { return ____serverSink_9; }
inline RuntimeObject** get_address_of__serverSink_9() { return &____serverSink_9; }
inline void set__serverSink_9(RuntimeObject* value)
{
____serverSink_9 = value;
Il2CppCodeGenWriteBarrier((&____serverSink_9), value);
}
inline static int32_t get_offset_of__context_10() { return static_cast<int32_t>(offsetof(ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2, ____context_10)); }
inline Context_tE86AB6B3D9759C8E715184808579EFE761683724 * get__context_10() const { return ____context_10; }
inline Context_tE86AB6B3D9759C8E715184808579EFE761683724 ** get_address_of__context_10() { return &____context_10; }
inline void set__context_10(Context_tE86AB6B3D9759C8E715184808579EFE761683724 * value)
{
____context_10 = value;
Il2CppCodeGenWriteBarrier((&____context_10), value);
}
inline static int32_t get_offset_of__lease_11() { return static_cast<int32_t>(offsetof(ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2, ____lease_11)); }
inline Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3 * get__lease_11() const { return ____lease_11; }
inline Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3 ** get_address_of__lease_11() { return &____lease_11; }
inline void set__lease_11(Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3 * value)
{
____lease_11 = value;
Il2CppCodeGenWriteBarrier((&____lease_11), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SERVERIDENTITY_T93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2_H
#ifndef SBYTE_T9070AEA2966184235653CB9B4D33B149CDA831DF_H
#define SBYTE_T9070AEA2966184235653CB9B4D33B149CDA831DF_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SBYTE_T9070AEA2966184235653CB9B4D33B149CDA831DF_H
#ifndef SERIALIZABLEATTRIBUTE_T2522EA746802F84F4805F489ECE9CFAC1A817F0F_H
#define SERIALIZABLEATTRIBUTE_T2522EA746802F84F4805F489ECE9CFAC1A817F0F_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.SerializableAttribute
struct SerializableAttribute_t2522EA746802F84F4805F489ECE9CFAC1A817F0F : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SERIALIZABLEATTRIBUTE_T2522EA746802F84F4805F489ECE9CFAC1A817F0F_H
#ifndef SINGLE_TDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_H
#define SINGLE_TDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SINGLE_TDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_H
#ifndef SYSTEMEXCEPTION_T5380468142AA850BE4A341D7AF3EAB9C78746782_H
#define SYSTEMEXCEPTION_T5380468142AA850BE4A341D7AF3EAB9C78746782_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.SystemException
struct SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 : public Exception_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SYSTEMEXCEPTION_T5380468142AA850BE4A341D7AF3EAB9C78746782_H
#ifndef UTF8ENCODING_T77ED103B749A387EF072C3429F48C91D12CA08DE_H
#define UTF8ENCODING_T77ED103B749A387EF072C3429F48C91D12CA08DE_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Text.UTF8Encoding
struct UTF8Encoding_t77ED103B749A387EF072C3429F48C91D12CA08DE : public Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4
{
public:
// System.Boolean System.Text.UTF8Encoding::emitUTF8Identifier
bool ___emitUTF8Identifier_16;
// System.Boolean System.Text.UTF8Encoding::isThrowException
bool ___isThrowException_17;
public:
inline static int32_t get_offset_of_emitUTF8Identifier_16() { return static_cast<int32_t>(offsetof(UTF8Encoding_t77ED103B749A387EF072C3429F48C91D12CA08DE, ___emitUTF8Identifier_16)); }
inline bool get_emitUTF8Identifier_16() const { return ___emitUTF8Identifier_16; }
inline bool* get_address_of_emitUTF8Identifier_16() { return &___emitUTF8Identifier_16; }
inline void set_emitUTF8Identifier_16(bool value)
{
___emitUTF8Identifier_16 = value;
}
inline static int32_t get_offset_of_isThrowException_17() { return static_cast<int32_t>(offsetof(UTF8Encoding_t77ED103B749A387EF072C3429F48C91D12CA08DE, ___isThrowException_17)); }
inline bool get_isThrowException_17() const { return ___isThrowException_17; }
inline bool* get_address_of_isThrowException_17() { return &___isThrowException_17; }
inline void set_isThrowException_17(bool value)
{
___isThrowException_17 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UTF8ENCODING_T77ED103B749A387EF072C3429F48C91D12CA08DE_H
#ifndef CANCELLATIONTOKEN_T9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_H
#define CANCELLATIONTOKEN_T9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.CancellationToken
struct CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB
{
public:
// System.Threading.CancellationTokenSource System.Threading.CancellationToken::m_source
CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * ___m_source_0;
public:
inline static int32_t get_offset_of_m_source_0() { return static_cast<int32_t>(offsetof(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB, ___m_source_0)); }
inline CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * get_m_source_0() const { return ___m_source_0; }
inline CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE ** get_address_of_m_source_0() { return &___m_source_0; }
inline void set_m_source_0(CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * value)
{
___m_source_0 = value;
Il2CppCodeGenWriteBarrier((&___m_source_0), value);
}
};
struct CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_StaticFields
{
public:
// System.Action`1<System.Object> System.Threading.CancellationToken::s_ActionToActionObjShunt
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ___s_ActionToActionObjShunt_1;
public:
inline static int32_t get_offset_of_s_ActionToActionObjShunt_1() { return static_cast<int32_t>(offsetof(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_StaticFields, ___s_ActionToActionObjShunt_1)); }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get_s_ActionToActionObjShunt_1() const { return ___s_ActionToActionObjShunt_1; }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of_s_ActionToActionObjShunt_1() { return &___s_ActionToActionObjShunt_1; }
inline void set_s_ActionToActionObjShunt_1(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value)
{
___s_ActionToActionObjShunt_1 = value;
Il2CppCodeGenWriteBarrier((&___s_ActionToActionObjShunt_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Threading.CancellationToken
struct CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_marshaled_pinvoke
{
CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * ___m_source_0;
};
// Native definition for COM marshalling of System.Threading.CancellationToken
struct CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_marshaled_com
{
CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * ___m_source_0;
};
#endif // CANCELLATIONTOKEN_T9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_H
#ifndef THREAD_TF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_H
#define THREAD_TF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Thread
struct Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 : public CriticalFinalizerObject_t8B006E1DEE084E781F5C0F3283E9226E28894DD9
{
public:
// System.Threading.InternalThread System.Threading.Thread::internal_thread
InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 * ___internal_thread_6;
// System.Object System.Threading.Thread::m_ThreadStartArg
RuntimeObject * ___m_ThreadStartArg_7;
// System.Object System.Threading.Thread::pending_exception
RuntimeObject * ___pending_exception_8;
// System.Security.Principal.IPrincipal System.Threading.Thread::principal
RuntimeObject* ___principal_9;
// System.Int32 System.Threading.Thread::principal_version
int32_t ___principal_version_10;
// System.MulticastDelegate System.Threading.Thread::m_Delegate
MulticastDelegate_t * ___m_Delegate_12;
// System.Threading.ExecutionContext System.Threading.Thread::m_ExecutionContext
ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * ___m_ExecutionContext_13;
// System.Boolean System.Threading.Thread::m_ExecutionContextBelongsToOuterScope
bool ___m_ExecutionContextBelongsToOuterScope_14;
public:
inline static int32_t get_offset_of_internal_thread_6() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7, ___internal_thread_6)); }
inline InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 * get_internal_thread_6() const { return ___internal_thread_6; }
inline InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 ** get_address_of_internal_thread_6() { return &___internal_thread_6; }
inline void set_internal_thread_6(InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 * value)
{
___internal_thread_6 = value;
Il2CppCodeGenWriteBarrier((&___internal_thread_6), value);
}
inline static int32_t get_offset_of_m_ThreadStartArg_7() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7, ___m_ThreadStartArg_7)); }
inline RuntimeObject * get_m_ThreadStartArg_7() const { return ___m_ThreadStartArg_7; }
inline RuntimeObject ** get_address_of_m_ThreadStartArg_7() { return &___m_ThreadStartArg_7; }
inline void set_m_ThreadStartArg_7(RuntimeObject * value)
{
___m_ThreadStartArg_7 = value;
Il2CppCodeGenWriteBarrier((&___m_ThreadStartArg_7), value);
}
inline static int32_t get_offset_of_pending_exception_8() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7, ___pending_exception_8)); }
inline RuntimeObject * get_pending_exception_8() const { return ___pending_exception_8; }
inline RuntimeObject ** get_address_of_pending_exception_8() { return &___pending_exception_8; }
inline void set_pending_exception_8(RuntimeObject * value)
{
___pending_exception_8 = value;
Il2CppCodeGenWriteBarrier((&___pending_exception_8), value);
}
inline static int32_t get_offset_of_principal_9() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7, ___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((&___principal_9), value);
}
inline static int32_t get_offset_of_principal_version_10() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7, ___principal_version_10)); }
inline int32_t get_principal_version_10() const { return ___principal_version_10; }
inline int32_t* get_address_of_principal_version_10() { return &___principal_version_10; }
inline void set_principal_version_10(int32_t value)
{
___principal_version_10 = value;
}
inline static int32_t get_offset_of_m_Delegate_12() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7, ___m_Delegate_12)); }
inline MulticastDelegate_t * get_m_Delegate_12() const { return ___m_Delegate_12; }
inline MulticastDelegate_t ** get_address_of_m_Delegate_12() { return &___m_Delegate_12; }
inline void set_m_Delegate_12(MulticastDelegate_t * value)
{
___m_Delegate_12 = value;
Il2CppCodeGenWriteBarrier((&___m_Delegate_12), value);
}
inline static int32_t get_offset_of_m_ExecutionContext_13() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7, ___m_ExecutionContext_13)); }
inline ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * get_m_ExecutionContext_13() const { return ___m_ExecutionContext_13; }
inline ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 ** get_address_of_m_ExecutionContext_13() { return &___m_ExecutionContext_13; }
inline void set_m_ExecutionContext_13(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * value)
{
___m_ExecutionContext_13 = value;
Il2CppCodeGenWriteBarrier((&___m_ExecutionContext_13), value);
}
inline static int32_t get_offset_of_m_ExecutionContextBelongsToOuterScope_14() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7, ___m_ExecutionContextBelongsToOuterScope_14)); }
inline bool get_m_ExecutionContextBelongsToOuterScope_14() const { return ___m_ExecutionContextBelongsToOuterScope_14; }
inline bool* get_address_of_m_ExecutionContextBelongsToOuterScope_14() { return &___m_ExecutionContextBelongsToOuterScope_14; }
inline void set_m_ExecutionContextBelongsToOuterScope_14(bool value)
{
___m_ExecutionContextBelongsToOuterScope_14 = value;
}
};
struct Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_StaticFields
{
public:
// System.LocalDataStoreMgr System.Threading.Thread::s_LocalDataStoreMgr
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * ___s_LocalDataStoreMgr_0;
// System.Threading.AsyncLocal`1<System.Globalization.CultureInfo> System.Threading.Thread::s_asyncLocalCurrentCulture
AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A * ___s_asyncLocalCurrentCulture_4;
// System.Threading.AsyncLocal`1<System.Globalization.CultureInfo> System.Threading.Thread::s_asyncLocalCurrentUICulture
AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A * ___s_asyncLocalCurrentUICulture_5;
public:
inline static int32_t get_offset_of_s_LocalDataStoreMgr_0() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_StaticFields, ___s_LocalDataStoreMgr_0)); }
inline LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * get_s_LocalDataStoreMgr_0() const { return ___s_LocalDataStoreMgr_0; }
inline LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 ** get_address_of_s_LocalDataStoreMgr_0() { return &___s_LocalDataStoreMgr_0; }
inline void set_s_LocalDataStoreMgr_0(LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * value)
{
___s_LocalDataStoreMgr_0 = value;
Il2CppCodeGenWriteBarrier((&___s_LocalDataStoreMgr_0), value);
}
inline static int32_t get_offset_of_s_asyncLocalCurrentCulture_4() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_StaticFields, ___s_asyncLocalCurrentCulture_4)); }
inline AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A * get_s_asyncLocalCurrentCulture_4() const { return ___s_asyncLocalCurrentCulture_4; }
inline AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A ** get_address_of_s_asyncLocalCurrentCulture_4() { return &___s_asyncLocalCurrentCulture_4; }
inline void set_s_asyncLocalCurrentCulture_4(AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A * value)
{
___s_asyncLocalCurrentCulture_4 = value;
Il2CppCodeGenWriteBarrier((&___s_asyncLocalCurrentCulture_4), value);
}
inline static int32_t get_offset_of_s_asyncLocalCurrentUICulture_5() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_StaticFields, ___s_asyncLocalCurrentUICulture_5)); }
inline AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A * get_s_asyncLocalCurrentUICulture_5() const { return ___s_asyncLocalCurrentUICulture_5; }
inline AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A ** get_address_of_s_asyncLocalCurrentUICulture_5() { return &___s_asyncLocalCurrentUICulture_5; }
inline void set_s_asyncLocalCurrentUICulture_5(AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A * value)
{
___s_asyncLocalCurrentUICulture_5 = value;
Il2CppCodeGenWriteBarrier((&___s_asyncLocalCurrentUICulture_5), value);
}
};
struct Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_ThreadStaticFields
{
public:
// System.LocalDataStoreHolder System.Threading.Thread::s_LocalDataStore
LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * ___s_LocalDataStore_1;
// System.Globalization.CultureInfo System.Threading.Thread::m_CurrentCulture
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___m_CurrentCulture_2;
// System.Globalization.CultureInfo System.Threading.Thread::m_CurrentUICulture
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___m_CurrentUICulture_3;
// System.Threading.Thread System.Threading.Thread::current_thread
Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * ___current_thread_11;
public:
inline static int32_t get_offset_of_s_LocalDataStore_1() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_ThreadStaticFields, ___s_LocalDataStore_1)); }
inline LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * get_s_LocalDataStore_1() const { return ___s_LocalDataStore_1; }
inline LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 ** get_address_of_s_LocalDataStore_1() { return &___s_LocalDataStore_1; }
inline void set_s_LocalDataStore_1(LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * value)
{
___s_LocalDataStore_1 = value;
Il2CppCodeGenWriteBarrier((&___s_LocalDataStore_1), value);
}
inline static int32_t get_offset_of_m_CurrentCulture_2() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_ThreadStaticFields, ___m_CurrentCulture_2)); }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_m_CurrentCulture_2() const { return ___m_CurrentCulture_2; }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_m_CurrentCulture_2() { return &___m_CurrentCulture_2; }
inline void set_m_CurrentCulture_2(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value)
{
___m_CurrentCulture_2 = value;
Il2CppCodeGenWriteBarrier((&___m_CurrentCulture_2), value);
}
inline static int32_t get_offset_of_m_CurrentUICulture_3() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_ThreadStaticFields, ___m_CurrentUICulture_3)); }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_m_CurrentUICulture_3() const { return ___m_CurrentUICulture_3; }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_m_CurrentUICulture_3() { return &___m_CurrentUICulture_3; }
inline void set_m_CurrentUICulture_3(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value)
{
___m_CurrentUICulture_3 = value;
Il2CppCodeGenWriteBarrier((&___m_CurrentUICulture_3), value);
}
inline static int32_t get_offset_of_current_thread_11() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_ThreadStaticFields, ___current_thread_11)); }
inline Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * get_current_thread_11() const { return ___current_thread_11; }
inline Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 ** get_address_of_current_thread_11() { return &___current_thread_11; }
inline void set_current_thread_11(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * value)
{
___current_thread_11 = value;
Il2CppCodeGenWriteBarrier((&___current_thread_11), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // THREAD_TF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_H
#ifndef UINT16_TAE45CEF73BF720100519F6867F32145D075F928E_H
#define UINT16_TAE45CEF73BF720100519F6867F32145D075F928E_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UINT16_TAE45CEF73BF720100519F6867F32145D075F928E_H
#ifndef UINT32_T4980FA09003AFAAB5A6E361BA2748EA9A005709B_H
#define UINT32_T4980FA09003AFAAB5A6E361BA2748EA9A005709B_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UINT32_T4980FA09003AFAAB5A6E361BA2748EA9A005709B_H
#ifndef UINT64_TA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_H
#define UINT64_TA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UINT64_TA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_H
#ifndef VOID_T22962CB4C05B1D89B55A6E1139F0E87A90987017_H
#define VOID_T22962CB4C05B1D89B55A6E1139F0E87A90987017_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017
{
public:
union
{
struct
{
};
uint8_t Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017__padding[1];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // VOID_T22962CB4C05B1D89B55A6E1139F0E87A90987017_H
#ifndef U3CPRIVATEIMPLEMENTATIONDETAILSU3E_T5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_H
#define U3CPRIVATEIMPLEMENTATIONDETAILSU3E_T5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>
struct U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A : public RuntimeObject
{
public:
public:
};
struct U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields
{
public:
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D256 <PrivateImplementationDetails>::0392525BCB01691D1F319D89F2C12BF93A478467
__StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F ___0392525BCB01691D1F319D89F2C12BF93A478467_0;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::0588059ACBD52F7EA2835882F977A9CF72EB9775
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___0588059ACBD52F7EA2835882F977A9CF72EB9775_1;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D84 <PrivateImplementationDetails>::0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C
__StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A ___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_2;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D240 <PrivateImplementationDetails>::121EC59E23F7559B28D338D562528F6299C2DE22
__StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8 ___121EC59E23F7559B28D338D562528F6299C2DE22_3;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::12D04472A8285260EA12FD3813CDFA9F2D2B548C
__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___12D04472A8285260EA12FD3813CDFA9F2D2B548C_4;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::13A35EF1A549297C70E2AD46045BBD2ECA17852D
__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___13A35EF1A549297C70E2AD46045BBD2ECA17852D_5;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D24 <PrivateImplementationDetails>::1730F09044E91DB8371B849EFF5E6D17BDE4AED0
__StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 ___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_6;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::1A84029C80CB5518379F199F53FF08A7B764F8FD
__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___1A84029C80CB5518379F199F53FF08A7B764F8FD_7;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2048 <PrivateImplementationDetails>::1E41C4CD0767AEA21C00DEABA2EA9407F1E6CEA5
__StaticArrayInitTypeSizeU3D2048_t95CEED630052F2BBE3122C058EEAD48DB4C2AD02 ___1E41C4CD0767AEA21C00DEABA2EA9407F1E6CEA5_8;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16 <PrivateImplementationDetails>::1FE6CE411858B3D864679DE2139FB081F08BFACD
__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 ___1FE6CE411858B3D864679DE2139FB081F08BFACD_9;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::235D99572263B22ADFEE10FDA0C25E12F4D94FFC
__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___235D99572263B22ADFEE10FDA0C25E12F4D94FFC_10;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::25420D0055076FA8D3E4DD96BC53AE24DE6E619F
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_11;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1208 <PrivateImplementationDetails>::25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E
__StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD ___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_12;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D42 <PrivateImplementationDetails>::29C1A61550F0E3260E1953D4FAD71C256218EF40
__StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4 ___29C1A61550F0E3260E1953D4FAD71C256218EF40_13;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::2B33BEC8C30DFDC49DAFE20D3BDE19487850D717
__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_14;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D36 <PrivateImplementationDetails>::2BA840FF6020B8FF623DBCB7188248CF853FAF4F
__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 ___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_15;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::2C840AFA48C27B9C05593E468C1232CA1CC74AFD
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_16;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16 <PrivateImplementationDetails>::2D1DA5BB407F0C11C3B5116196C0C6374D932B20
__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 ___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_17;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D14 <PrivateImplementationDetails>::2D3CF0F15AC2DDEC2956EA1B7BBE43FB8B923130
__StaticArrayInitTypeSizeU3D14_tAC1FF6EBB83457B9752372565F242D9A7C69FD05 ___2D3CF0F15AC2DDEC2956EA1B7BBE43FB8B923130_18;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_19;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D64 <PrivateImplementationDetails>::320B018758ECE3752FFEDBAEB1A6DB67C80B9359
__StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 ___320B018758ECE3752FFEDBAEB1A6DB67C80B9359_20;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::34476C29F6F81C989CFCA42F7C06E84C66236834
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___34476C29F6F81C989CFCA42F7C06E84C66236834_21;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2382 <PrivateImplementationDetails>::35EED060772F2748D13B745DAEC8CD7BD3B87604
__StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA ___35EED060772F2748D13B745DAEC8CD7BD3B87604_22;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D38 <PrivateImplementationDetails>::375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3
__StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D ___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_23;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1450 <PrivateImplementationDetails>::379C06C9E702D31469C29033F0DD63931EB349F5
__StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4 ___379C06C9E702D31469C29033F0DD63931EB349F5_24;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D10 <PrivateImplementationDetails>::399BD13E240F33F808CA7940293D6EC4E6FD5A00
__StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C ___399BD13E240F33F808CA7940293D6EC4E6FD5A00_25;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::39C9CE73C7B0619D409EF28344F687C1B5C130FE
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___39C9CE73C7B0619D409EF28344F687C1B5C130FE_26;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D320 <PrivateImplementationDetails>::3C53AFB51FEC23491684C7BEDBC6D4E0F409F851
__StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49 ___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_27;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::3E3442C7396F3F2BB4C7348F4A2074C7DC677D68
__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___3E3442C7396F3F2BB4C7348F4A2074C7DC677D68_28;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::3E823444D2DFECF0F90B436B88F02A533CB376F1
__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___3E823444D2DFECF0F90B436B88F02A533CB376F1_29;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::3FE6C283BCF384FD2C8789880DFF59664E2AB4A1
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_30;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1665 <PrivateImplementationDetails>::40981BAA39513E58B28DCF0103CC04DE2A0A0444
__StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20 ___40981BAA39513E58B28DCF0103CC04DE2A0A0444_31;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::40E7C49413D261F3F38AD3A870C0AC69C8BDA048
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_32;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::421EC7E82F2967DF6CA8C3605514DC6F29EE5845
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_33;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D256 <PrivateImplementationDetails>::433175D38B13FFE177FDD661A309F1B528B3F6E2
__StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F ___433175D38B13FFE177FDD661A309F1B528B3F6E2_34;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::4858DB4AA76D3933F1CA9E6712D4FDB16903F628
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_35;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D48 <PrivateImplementationDetails>::4E3B533C39447AAEB59A8E48FABD7E15B5B5D195
__StaticArrayInitTypeSizeU3D48_tE49166878222E9194FE3FD621830EDB6E705F79A ___4E3B533C39447AAEB59A8E48FABD7E15B5B5D195_36;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::4F7A8890F332B22B8DE0BD29D36FA7364748D76A
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_37;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::536422B321459B242ADED7240B7447E904E083E3
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___536422B321459B242ADED7240B7447E904E083E3_38;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1080 <PrivateImplementationDetails>::5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3
__StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84 ___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_39;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D10 <PrivateImplementationDetails>::56DFA5053B3131883637F53219E7D88CCEF35949
__StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C ___56DFA5053B3131883637F53219E7D88CCEF35949_40;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::57218C316B6921E2CD61027A2387EDC31A2D9471
__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___57218C316B6921E2CD61027A2387EDC31A2D9471_41;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::57F320D62696EC99727E0FE2045A05F1289CC0C6
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___57F320D62696EC99727E0FE2045A05F1289CC0C6_42;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D212 <PrivateImplementationDetails>::594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3
__StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF ___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_43;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D36 <PrivateImplementationDetails>::5BBDF8058D4235C33F2E8DCF76004031B6187A2F
__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 ___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_44;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D288 <PrivateImplementationDetails>::5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF
__StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55 ___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_45;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::5BFE2819B4778217C56416C7585FF0E56EBACD89
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___5BFE2819B4778217C56416C7585FF0E56EBACD89_46;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D128 <PrivateImplementationDetails>::609C0E8D8DA86A09D6013D301C86BA8782C16B8C
__StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1 ___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_47;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D48 <PrivateImplementationDetails>::62BAB0F245E66C3EB982CF5A7015F0A7C3382283
__StaticArrayInitTypeSizeU3D48_tE49166878222E9194FE3FD621830EDB6E705F79A ___62BAB0F245E66C3EB982CF5A7015F0A7C3382283_48;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2048 <PrivateImplementationDetails>::646036A65DECCD6835C914A46E6E44B729433B60
__StaticArrayInitTypeSizeU3D2048_t95CEED630052F2BBE3122C058EEAD48DB4C2AD02 ___646036A65DECCD6835C914A46E6E44B729433B60_49;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::65E32B4E150FD8D24B93B0D42A17F1DAD146162B
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_50;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D52 <PrivateImplementationDetails>::6770974FEF1E98B9C1864370E2B5B786EB0EA39E
__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A ___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_51;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::67EEAD805D708D9AA4E14BF747E44CED801744F3
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___67EEAD805D708D9AA4E14BF747E44CED801744F3_52;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D120 <PrivateImplementationDetails>::6C71197D228427B2864C69B357FEF73D8C9D59DF
__StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 ___6C71197D228427B2864C69B357FEF73D8C9D59DF_53;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D9 <PrivateImplementationDetails>::6D49C9D487D7AD3491ECE08732D68A593CC2038D
__StaticArrayInitTypeSizeU3D9_tF0D137C898E06A3CD9FFB079C91D796B9EC8B928 ___6D49C9D487D7AD3491ECE08732D68A593CC2038D_54;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2048 <PrivateImplementationDetails>::6D797C11E1D4FB68B6570CF2A92B792433527065
__StaticArrayInitTypeSizeU3D2048_t95CEED630052F2BBE3122C058EEAD48DB4C2AD02 ___6D797C11E1D4FB68B6570CF2A92B792433527065_55;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3132 <PrivateImplementationDetails>::6E5DC824F803F8565AF31B42199DAE39FE7F4EA9
__StaticArrayInitTypeSizeU3D3132_t7837B5DAEC2B2BEBD61C333545DB9AE2F35BF333 ___6E5DC824F803F8565AF31B42199DAE39FE7F4EA9_56;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D76 <PrivateImplementationDetails>::6FC754859E4EC74E447048364B216D825C6F8FE7
__StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB ___6FC754859E4EC74E447048364B216D825C6F8FE7_57;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::704939CD172085D1295FCE3F1D92431D685D7AA2
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___704939CD172085D1295FCE3F1D92431D685D7AA2_58;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D24 <PrivateImplementationDetails>::7088AAE49F0627B72729078DE6E3182DDCF8ED99
__StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 ___7088AAE49F0627B72729078DE6E3182DDCF8ED99_59;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::7341C933A70EAE383CC50C4B945ADB8E08F06737
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___7341C933A70EAE383CC50C4B945ADB8E08F06737_60;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::736D39815215889F11249D9958F6ED12D37B9F57
__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___736D39815215889F11249D9958F6ED12D37B9F57_61;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_62;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D21252 <PrivateImplementationDetails>::811A927B7DADD378BE60BBDE794B9277AA9B50EC
__StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462 ___811A927B7DADD378BE60BBDE794B9277AA9B50EC_63;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D36 <PrivateImplementationDetails>::81917F1E21F3C22B9F916994547A614FB03E968E
__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 ___81917F1E21F3C22B9F916994547A614FB03E968E_64;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::823566DA642D6EA356E15585921F2A4CA23D6760
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___823566DA642D6EA356E15585921F2A4CA23D6760_65;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::82C2A59850B2E85BCE1A45A479537A384DF6098D
__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___82C2A59850B2E85BCE1A45A479537A384DF6098D_66;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D44 <PrivateImplementationDetails>::82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4
__StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F ___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_67;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::86F4F563FA2C61798AE6238D789139739428463A
__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___86F4F563FA2C61798AE6238D789139739428463A_68;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::871B9CF85DB352BAADF12BAE8F19857683E385AC
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___871B9CF85DB352BAADF12BAE8F19857683E385AC_69;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16 <PrivateImplementationDetails>::89A040451C8CC5C8FB268BE44BDD74964C104155
__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 ___89A040451C8CC5C8FB268BE44BDD74964C104155_70;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::8CAA092E783257106251246FF5C97F88D28517A6
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___8CAA092E783257106251246FF5C97F88D28517A6_71;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2100 <PrivateImplementationDetails>::8D231DD55FE1AD7631BBD0905A17D5EB616C2154
__StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA ___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_72;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::8E10AC2F34545DFBBF3FCBC06055D797A8C99991
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_73;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D640 <PrivateImplementationDetails>::90A0542282A011472F94E97CEAE59F8B3B1A3291
__StaticArrayInitTypeSizeU3D640_t9C691C15FA1A34F93F102000D5F515E32241C910 ___90A0542282A011472F94E97CEAE59F8B3B1A3291_74;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::93A63E90605400F34B49F0EB3361D23C89164BDA
__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___93A63E90605400F34B49F0EB3361D23C89164BDA_75;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::94841DD2F330CCB1089BF413E4FA9B04505152E2
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___94841DD2F330CCB1089BF413E4FA9B04505152E2_76;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::95264589E48F94B7857CFF398FB72A537E13EEE2
__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___95264589E48F94B7857CFF398FB72A537E13EEE2_77;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::95C48758CAE1715783472FB073AB158AB8A0AB2A
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___95C48758CAE1715783472FB073AB158AB8A0AB2A_78;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::973417296623D8DC6961B09664E54039E44CA5D8
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___973417296623D8DC6961B09664E54039E44CA5D8_79;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::97FB30C84FF4A41CD4625B44B2940BFC8DB43003
__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___97FB30C84FF4A41CD4625B44B2940BFC8DB43003_80;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D64 <PrivateImplementationDetails>::9A9C3962CD4753376E3507C8CB5FD8FCC4B4EDB5
__StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 ___9A9C3962CD4753376E3507C8CB5FD8FCC4B4EDB5_81;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::9BB00D1FCCBAF03165447FC8028E7CA07CA9FE88
__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___9BB00D1FCCBAF03165447FC8028E7CA07CA9FE88_82;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::A0074C15377C0C870B055927403EA9FA7A349D12
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___A0074C15377C0C870B055927403EA9FA7A349D12_83;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D130 <PrivateImplementationDetails>::A1319B706116AB2C6D44483F60A7D0ACEA543396
__StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F ___A1319B706116AB2C6D44483F60A7D0ACEA543396_84;
// System.Int64 <PrivateImplementationDetails>::A13AA52274D951A18029131A8DDECF76B569A15D
int64_t ___A13AA52274D951A18029131A8DDECF76B569A15D_85;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::A323DB0813C4D072957BA6FDA79D9776674CD06B
__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___A323DB0813C4D072957BA6FDA79D9776674CD06B_86;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D212 <PrivateImplementationDetails>::A5444763673307F6828C748D4B9708CFC02B0959
__StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF ___A5444763673307F6828C748D4B9708CFC02B0959_87;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::A6732F8E7FC23766AB329B492D6BF82E3B33233F
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___A6732F8E7FC23766AB329B492D6BF82E3B33233F_88;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D174 <PrivateImplementationDetails>::A705A106D95282BD15E13EEA6B0AF583FF786D83
__StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F ___A705A106D95282BD15E13EEA6B0AF583FF786D83_89;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1018 <PrivateImplementationDetails>::A8A491E4CED49AE0027560476C10D933CE70C8DF
__StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4 ___A8A491E4CED49AE0027560476C10D933CE70C8DF_90;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::AC791C4F39504D1184B73478943D0636258DA7B1
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___AC791C4F39504D1184B73478943D0636258DA7B1_91;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D52 <PrivateImplementationDetails>::AFCD4E1211233E99373A3367B23105A3D624B1F2
__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A ___AFCD4E1211233E99373A3367B23105A3D624B1F2_92;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::B472ED77CB3B2A66D49D179F1EE2081B70A6AB61
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_93;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16 <PrivateImplementationDetails>::B4FBD02AAB5B16E0F4BD858DA5D9E348F3CE501D
__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 ___B4FBD02AAB5B16E0F4BD858DA5D9E348F3CE501D_94;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D256 <PrivateImplementationDetails>::B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF
__StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F ___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_95;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D998 <PrivateImplementationDetails>::B881DA88BE0B68D8A6B6B6893822586B8B2CFC45
__StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C ___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_96;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D162 <PrivateImplementationDetails>::B8864ACB9DD69E3D42151513C840AAE270BF21C8
__StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA ___B8864ACB9DD69E3D42151513C840AAE270BF21C8_97;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D360 <PrivateImplementationDetails>::B8F87834C3597B2EEF22BA6D3A392CC925636401
__StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7 ___B8F87834C3597B2EEF22BA6D3A392CC925636401_98;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::B9B670F134A59FB1107AF01A9FE8F8E3980B3093
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_99;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D20 <PrivateImplementationDetails>::BE1BDEC0AA74B4DCB079943E70528096CCA985F8
__StaticArrayInitTypeSizeU3D20_t4B48985ED9F1499360D72CB311F3EB54FB7C4B63 ___BE1BDEC0AA74B4DCB079943E70528096CCA985F8_100;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::BEBC9ECC660A13EFC359BA3383411F698CFF25DB
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_101;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_102;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::BF477463CE2F5EF38FC4C644BBBF4DF109E7670A
__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___BF477463CE2F5EF38FC4C644BBBF4DF109E7670A_103;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D6 <PrivateImplementationDetails>::BF5EB60806ECB74EE484105DD9D6F463BF994867
__StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 ___BF5EB60806ECB74EE484105DD9D6F463BF994867_104;
// System.Int64 <PrivateImplementationDetails>::C1A1100642BA9685B30A84D97348484E14AA1865
int64_t ___C1A1100642BA9685B30A84D97348484E14AA1865_105;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16 <PrivateImplementationDetails>::C6F364A0AD934EFED8909446C215752E565D77C1
__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 ___C6F364A0AD934EFED8909446C215752E565D77C1_106;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D174 <PrivateImplementationDetails>::CE5835130F5277F63D716FC9115526B0AC68FFAD
__StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F ___CE5835130F5277F63D716FC9115526B0AC68FFAD_107;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D6 <PrivateImplementationDetails>::CE93C35B755802BC4B3D180716B048FC61701EF7
__StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 ___CE93C35B755802BC4B3D180716B048FC61701EF7_108;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D64 <PrivateImplementationDetails>::CF0B42666EF5E37EDEA0AB8E173E42C196D03814
__StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 ___CF0B42666EF5E37EDEA0AB8E173E42C196D03814_109;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D256 <PrivateImplementationDetails>::D002CBBE1FF33721AF7C4D1D3ECAD1B7DB5258B7
__StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F ___D002CBBE1FF33721AF7C4D1D3ECAD1B7DB5258B7_110;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D32 <PrivateImplementationDetails>::D117188BE8D4609C0D531C51B0BB911A4219DEBE
__StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 ___D117188BE8D4609C0D531C51B0BB911A4219DEBE_111;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D32 <PrivateImplementationDetails>::D28E8ABDBD777A482CE0EE5C24814ACAE52AABFE
__StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 ___D28E8ABDBD777A482CE0EE5C24814ACAE52AABFE_112;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D256 <PrivateImplementationDetails>::D2C5BAE967587C6F3D9F2C4551911E0575A1101F
__StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F ___D2C5BAE967587C6F3D9F2C4551911E0575A1101F_113;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D44 <PrivateImplementationDetails>::D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636
__StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F ___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_114;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D76 <PrivateImplementationDetails>::DA19DB47B583EFCF7825D2E39D661D2354F28219
__StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB ___DA19DB47B583EFCF7825D2E39D661D2354F28219_115;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D56 <PrivateImplementationDetails>::DC2B830D8CD59AD6A4E4332D21CA0DCA2821AD82
__StaticArrayInitTypeSizeU3D56_tE92B90DB812A206A3F9FED2827695B30D2F06D10 ___DC2B830D8CD59AD6A4E4332D21CA0DCA2821AD82_116;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D52 <PrivateImplementationDetails>::DD3AEFEADB1CD615F3017763F1568179FEE640B0
__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A ___DD3AEFEADB1CD615F3017763F1568179FEE640B0_117;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D36 <PrivateImplementationDetails>::E1827270A5FE1C85F5352A66FD87BA747213D006
__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 ___E1827270A5FE1C85F5352A66FD87BA747213D006_118;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::E45BAB43F7D5D038672B3E3431F92E34A7AF2571
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_119;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D64 <PrivateImplementationDetails>::E75835D001C843F156FBA01B001DFE1B8029AC17
__StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 ___E75835D001C843F156FBA01B001DFE1B8029AC17_120;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D52 <PrivateImplementationDetails>::E92B39D8233061927D9ACDE54665E68E7535635A
__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A ___E92B39D8233061927D9ACDE54665E68E7535635A_121;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::EA9506959484C55CFE0C139C624DF6060E285866
__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___EA9506959484C55CFE0C139C624DF6060E285866_122;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D262 <PrivateImplementationDetails>::EB5E9A80A40096AB74D2E226650C7258D7BC5E9D
__StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7 ___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_123;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D64 <PrivateImplementationDetails>::EBF68F411848D603D059DFDEA2321C5A5EA78044
__StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 ___EBF68F411848D603D059DFDEA2321C5A5EA78044_124;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D10 <PrivateImplementationDetails>::EC5BB4F59D4B9B2E9ECD3904D44A8275F23AFB11
__StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C ___EC5BB4F59D4B9B2E9ECD3904D44A8275F23AFB11_125;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::EC83FB16C20052BEE2B4025159BC2ED45C9C70C3
__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___EC83FB16C20052BEE2B4025159BC2ED45C9C70C3_126;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::EC89C317EA2BF49A70EFF5E89C691E34733D7C37
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_127;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::F06E829E62F3AFBC045D064E10A4F5DF7C969612
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___F06E829E62F3AFBC045D064E10A4F5DF7C969612_128;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D11614 <PrivateImplementationDetails>::F073AA332018FDA0D572E99448FFF1D6422BD520
__StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5 ___F073AA332018FDA0D572E99448FFF1D6422BD520_129;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D120 <PrivateImplementationDetails>::F34B0E10653402E8F788F8BC3F7CD7090928A429
__StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 ___F34B0E10653402E8F788F8BC3F7CD7090928A429_130;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::F37E34BEADB04F34FCC31078A59F49856CA83D5B
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___F37E34BEADB04F34FCC31078A59F49856CA83D5B_131;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D94 <PrivateImplementationDetails>::F512A9ABF88066AAEB92684F95CC05D8101B462B
__StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6 ___F512A9ABF88066AAEB92684F95CC05D8101B462B_132;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::F8FAABB821300AA500C2CEC6091B3782A7FB44A4
__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_133;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2350 <PrivateImplementationDetails>::FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B
__StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D ___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_134;
public:
inline static int32_t get_offset_of_U30392525BCB01691D1F319D89F2C12BF93A478467_0() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___0392525BCB01691D1F319D89F2C12BF93A478467_0)); }
inline __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F get_U30392525BCB01691D1F319D89F2C12BF93A478467_0() const { return ___0392525BCB01691D1F319D89F2C12BF93A478467_0; }
inline __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F * get_address_of_U30392525BCB01691D1F319D89F2C12BF93A478467_0() { return &___0392525BCB01691D1F319D89F2C12BF93A478467_0; }
inline void set_U30392525BCB01691D1F319D89F2C12BF93A478467_0(__StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F value)
{
___0392525BCB01691D1F319D89F2C12BF93A478467_0 = value;
}
inline static int32_t get_offset_of_U30588059ACBD52F7EA2835882F977A9CF72EB9775_1() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___0588059ACBD52F7EA2835882F977A9CF72EB9775_1)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U30588059ACBD52F7EA2835882F977A9CF72EB9775_1() const { return ___0588059ACBD52F7EA2835882F977A9CF72EB9775_1; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U30588059ACBD52F7EA2835882F977A9CF72EB9775_1() { return &___0588059ACBD52F7EA2835882F977A9CF72EB9775_1; }
inline void set_U30588059ACBD52F7EA2835882F977A9CF72EB9775_1(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___0588059ACBD52F7EA2835882F977A9CF72EB9775_1 = value;
}
inline static int32_t get_offset_of_U30A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_2() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_2)); }
inline __StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A get_U30A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_2() const { return ___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_2; }
inline __StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A * get_address_of_U30A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_2() { return &___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_2; }
inline void set_U30A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_2(__StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A value)
{
___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_2 = value;
}
inline static int32_t get_offset_of_U3121EC59E23F7559B28D338D562528F6299C2DE22_3() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___121EC59E23F7559B28D338D562528F6299C2DE22_3)); }
inline __StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8 get_U3121EC59E23F7559B28D338D562528F6299C2DE22_3() const { return ___121EC59E23F7559B28D338D562528F6299C2DE22_3; }
inline __StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8 * get_address_of_U3121EC59E23F7559B28D338D562528F6299C2DE22_3() { return &___121EC59E23F7559B28D338D562528F6299C2DE22_3; }
inline void set_U3121EC59E23F7559B28D338D562528F6299C2DE22_3(__StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8 value)
{
___121EC59E23F7559B28D338D562528F6299C2DE22_3 = value;
}
inline static int32_t get_offset_of_U312D04472A8285260EA12FD3813CDFA9F2D2B548C_4() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___12D04472A8285260EA12FD3813CDFA9F2D2B548C_4)); }
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_U312D04472A8285260EA12FD3813CDFA9F2D2B548C_4() const { return ___12D04472A8285260EA12FD3813CDFA9F2D2B548C_4; }
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_U312D04472A8285260EA12FD3813CDFA9F2D2B548C_4() { return &___12D04472A8285260EA12FD3813CDFA9F2D2B548C_4; }
inline void set_U312D04472A8285260EA12FD3813CDFA9F2D2B548C_4(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value)
{
___12D04472A8285260EA12FD3813CDFA9F2D2B548C_4 = value;
}
inline static int32_t get_offset_of_U313A35EF1A549297C70E2AD46045BBD2ECA17852D_5() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___13A35EF1A549297C70E2AD46045BBD2ECA17852D_5)); }
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_U313A35EF1A549297C70E2AD46045BBD2ECA17852D_5() const { return ___13A35EF1A549297C70E2AD46045BBD2ECA17852D_5; }
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_U313A35EF1A549297C70E2AD46045BBD2ECA17852D_5() { return &___13A35EF1A549297C70E2AD46045BBD2ECA17852D_5; }
inline void set_U313A35EF1A549297C70E2AD46045BBD2ECA17852D_5(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value)
{
___13A35EF1A549297C70E2AD46045BBD2ECA17852D_5 = value;
}
inline static int32_t get_offset_of_U31730F09044E91DB8371B849EFF5E6D17BDE4AED0_6() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_6)); }
inline __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 get_U31730F09044E91DB8371B849EFF5E6D17BDE4AED0_6() const { return ___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_6; }
inline __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 * get_address_of_U31730F09044E91DB8371B849EFF5E6D17BDE4AED0_6() { return &___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_6; }
inline void set_U31730F09044E91DB8371B849EFF5E6D17BDE4AED0_6(__StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 value)
{
___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_6 = value;
}
inline static int32_t get_offset_of_U31A84029C80CB5518379F199F53FF08A7B764F8FD_7() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___1A84029C80CB5518379F199F53FF08A7B764F8FD_7)); }
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_U31A84029C80CB5518379F199F53FF08A7B764F8FD_7() const { return ___1A84029C80CB5518379F199F53FF08A7B764F8FD_7; }
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_U31A84029C80CB5518379F199F53FF08A7B764F8FD_7() { return &___1A84029C80CB5518379F199F53FF08A7B764F8FD_7; }
inline void set_U31A84029C80CB5518379F199F53FF08A7B764F8FD_7(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value)
{
___1A84029C80CB5518379F199F53FF08A7B764F8FD_7 = value;
}
inline static int32_t get_offset_of_U31E41C4CD0767AEA21C00DEABA2EA9407F1E6CEA5_8() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___1E41C4CD0767AEA21C00DEABA2EA9407F1E6CEA5_8)); }
inline __StaticArrayInitTypeSizeU3D2048_t95CEED630052F2BBE3122C058EEAD48DB4C2AD02 get_U31E41C4CD0767AEA21C00DEABA2EA9407F1E6CEA5_8() const { return ___1E41C4CD0767AEA21C00DEABA2EA9407F1E6CEA5_8; }
inline __StaticArrayInitTypeSizeU3D2048_t95CEED630052F2BBE3122C058EEAD48DB4C2AD02 * get_address_of_U31E41C4CD0767AEA21C00DEABA2EA9407F1E6CEA5_8() { return &___1E41C4CD0767AEA21C00DEABA2EA9407F1E6CEA5_8; }
inline void set_U31E41C4CD0767AEA21C00DEABA2EA9407F1E6CEA5_8(__StaticArrayInitTypeSizeU3D2048_t95CEED630052F2BBE3122C058EEAD48DB4C2AD02 value)
{
___1E41C4CD0767AEA21C00DEABA2EA9407F1E6CEA5_8 = value;
}
inline static int32_t get_offset_of_U31FE6CE411858B3D864679DE2139FB081F08BFACD_9() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___1FE6CE411858B3D864679DE2139FB081F08BFACD_9)); }
inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 get_U31FE6CE411858B3D864679DE2139FB081F08BFACD_9() const { return ___1FE6CE411858B3D864679DE2139FB081F08BFACD_9; }
inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 * get_address_of_U31FE6CE411858B3D864679DE2139FB081F08BFACD_9() { return &___1FE6CE411858B3D864679DE2139FB081F08BFACD_9; }
inline void set_U31FE6CE411858B3D864679DE2139FB081F08BFACD_9(__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 value)
{
___1FE6CE411858B3D864679DE2139FB081F08BFACD_9 = value;
}
inline static int32_t get_offset_of_U3235D99572263B22ADFEE10FDA0C25E12F4D94FFC_10() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___235D99572263B22ADFEE10FDA0C25E12F4D94FFC_10)); }
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_U3235D99572263B22ADFEE10FDA0C25E12F4D94FFC_10() const { return ___235D99572263B22ADFEE10FDA0C25E12F4D94FFC_10; }
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_U3235D99572263B22ADFEE10FDA0C25E12F4D94FFC_10() { return &___235D99572263B22ADFEE10FDA0C25E12F4D94FFC_10; }
inline void set_U3235D99572263B22ADFEE10FDA0C25E12F4D94FFC_10(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value)
{
___235D99572263B22ADFEE10FDA0C25E12F4D94FFC_10 = value;
}
inline static int32_t get_offset_of_U325420D0055076FA8D3E4DD96BC53AE24DE6E619F_11() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_11)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U325420D0055076FA8D3E4DD96BC53AE24DE6E619F_11() const { return ___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_11; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U325420D0055076FA8D3E4DD96BC53AE24DE6E619F_11() { return &___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_11; }
inline void set_U325420D0055076FA8D3E4DD96BC53AE24DE6E619F_11(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_11 = value;
}
inline static int32_t get_offset_of_U325CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_12() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_12)); }
inline __StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD get_U325CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_12() const { return ___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_12; }
inline __StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD * get_address_of_U325CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_12() { return &___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_12; }
inline void set_U325CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_12(__StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD value)
{
___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_12 = value;
}
inline static int32_t get_offset_of_U329C1A61550F0E3260E1953D4FAD71C256218EF40_13() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___29C1A61550F0E3260E1953D4FAD71C256218EF40_13)); }
inline __StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4 get_U329C1A61550F0E3260E1953D4FAD71C256218EF40_13() const { return ___29C1A61550F0E3260E1953D4FAD71C256218EF40_13; }
inline __StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4 * get_address_of_U329C1A61550F0E3260E1953D4FAD71C256218EF40_13() { return &___29C1A61550F0E3260E1953D4FAD71C256218EF40_13; }
inline void set_U329C1A61550F0E3260E1953D4FAD71C256218EF40_13(__StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4 value)
{
___29C1A61550F0E3260E1953D4FAD71C256218EF40_13 = value;
}
inline static int32_t get_offset_of_U32B33BEC8C30DFDC49DAFE20D3BDE19487850D717_14() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_14)); }
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_U32B33BEC8C30DFDC49DAFE20D3BDE19487850D717_14() const { return ___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_14; }
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_U32B33BEC8C30DFDC49DAFE20D3BDE19487850D717_14() { return &___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_14; }
inline void set_U32B33BEC8C30DFDC49DAFE20D3BDE19487850D717_14(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value)
{
___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_14 = value;
}
inline static int32_t get_offset_of_U32BA840FF6020B8FF623DBCB7188248CF853FAF4F_15() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_15)); }
inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 get_U32BA840FF6020B8FF623DBCB7188248CF853FAF4F_15() const { return ___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_15; }
inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 * get_address_of_U32BA840FF6020B8FF623DBCB7188248CF853FAF4F_15() { return &___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_15; }
inline void set_U32BA840FF6020B8FF623DBCB7188248CF853FAF4F_15(__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 value)
{
___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_15 = value;
}
inline static int32_t get_offset_of_U32C840AFA48C27B9C05593E468C1232CA1CC74AFD_16() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_16)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U32C840AFA48C27B9C05593E468C1232CA1CC74AFD_16() const { return ___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_16; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U32C840AFA48C27B9C05593E468C1232CA1CC74AFD_16() { return &___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_16; }
inline void set_U32C840AFA48C27B9C05593E468C1232CA1CC74AFD_16(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_16 = value;
}
inline static int32_t get_offset_of_U32D1DA5BB407F0C11C3B5116196C0C6374D932B20_17() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_17)); }
inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 get_U32D1DA5BB407F0C11C3B5116196C0C6374D932B20_17() const { return ___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_17; }
inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 * get_address_of_U32D1DA5BB407F0C11C3B5116196C0C6374D932B20_17() { return &___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_17; }
inline void set_U32D1DA5BB407F0C11C3B5116196C0C6374D932B20_17(__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 value)
{
___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_17 = value;
}
inline static int32_t get_offset_of_U32D3CF0F15AC2DDEC2956EA1B7BBE43FB8B923130_18() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___2D3CF0F15AC2DDEC2956EA1B7BBE43FB8B923130_18)); }
inline __StaticArrayInitTypeSizeU3D14_tAC1FF6EBB83457B9752372565F242D9A7C69FD05 get_U32D3CF0F15AC2DDEC2956EA1B7BBE43FB8B923130_18() const { return ___2D3CF0F15AC2DDEC2956EA1B7BBE43FB8B923130_18; }
inline __StaticArrayInitTypeSizeU3D14_tAC1FF6EBB83457B9752372565F242D9A7C69FD05 * get_address_of_U32D3CF0F15AC2DDEC2956EA1B7BBE43FB8B923130_18() { return &___2D3CF0F15AC2DDEC2956EA1B7BBE43FB8B923130_18; }
inline void set_U32D3CF0F15AC2DDEC2956EA1B7BBE43FB8B923130_18(__StaticArrayInitTypeSizeU3D14_tAC1FF6EBB83457B9752372565F242D9A7C69FD05 value)
{
___2D3CF0F15AC2DDEC2956EA1B7BBE43FB8B923130_18 = value;
}
inline static int32_t get_offset_of_U32F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_19() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_19)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U32F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_19() const { return ___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_19; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U32F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_19() { return &___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_19; }
inline void set_U32F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_19(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_19 = value;
}
inline static int32_t get_offset_of_U3320B018758ECE3752FFEDBAEB1A6DB67C80B9359_20() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___320B018758ECE3752FFEDBAEB1A6DB67C80B9359_20)); }
inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 get_U3320B018758ECE3752FFEDBAEB1A6DB67C80B9359_20() const { return ___320B018758ECE3752FFEDBAEB1A6DB67C80B9359_20; }
inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 * get_address_of_U3320B018758ECE3752FFEDBAEB1A6DB67C80B9359_20() { return &___320B018758ECE3752FFEDBAEB1A6DB67C80B9359_20; }
inline void set_U3320B018758ECE3752FFEDBAEB1A6DB67C80B9359_20(__StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 value)
{
___320B018758ECE3752FFEDBAEB1A6DB67C80B9359_20 = value;
}
inline static int32_t get_offset_of_U334476C29F6F81C989CFCA42F7C06E84C66236834_21() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___34476C29F6F81C989CFCA42F7C06E84C66236834_21)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U334476C29F6F81C989CFCA42F7C06E84C66236834_21() const { return ___34476C29F6F81C989CFCA42F7C06E84C66236834_21; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U334476C29F6F81C989CFCA42F7C06E84C66236834_21() { return &___34476C29F6F81C989CFCA42F7C06E84C66236834_21; }
inline void set_U334476C29F6F81C989CFCA42F7C06E84C66236834_21(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___34476C29F6F81C989CFCA42F7C06E84C66236834_21 = value;
}
inline static int32_t get_offset_of_U335EED060772F2748D13B745DAEC8CD7BD3B87604_22() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___35EED060772F2748D13B745DAEC8CD7BD3B87604_22)); }
inline __StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA get_U335EED060772F2748D13B745DAEC8CD7BD3B87604_22() const { return ___35EED060772F2748D13B745DAEC8CD7BD3B87604_22; }
inline __StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA * get_address_of_U335EED060772F2748D13B745DAEC8CD7BD3B87604_22() { return &___35EED060772F2748D13B745DAEC8CD7BD3B87604_22; }
inline void set_U335EED060772F2748D13B745DAEC8CD7BD3B87604_22(__StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA value)
{
___35EED060772F2748D13B745DAEC8CD7BD3B87604_22 = value;
}
inline static int32_t get_offset_of_U3375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_23() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_23)); }
inline __StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D get_U3375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_23() const { return ___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_23; }
inline __StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D * get_address_of_U3375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_23() { return &___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_23; }
inline void set_U3375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_23(__StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D value)
{
___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_23 = value;
}
inline static int32_t get_offset_of_U3379C06C9E702D31469C29033F0DD63931EB349F5_24() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___379C06C9E702D31469C29033F0DD63931EB349F5_24)); }
inline __StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4 get_U3379C06C9E702D31469C29033F0DD63931EB349F5_24() const { return ___379C06C9E702D31469C29033F0DD63931EB349F5_24; }
inline __StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4 * get_address_of_U3379C06C9E702D31469C29033F0DD63931EB349F5_24() { return &___379C06C9E702D31469C29033F0DD63931EB349F5_24; }
inline void set_U3379C06C9E702D31469C29033F0DD63931EB349F5_24(__StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4 value)
{
___379C06C9E702D31469C29033F0DD63931EB349F5_24 = value;
}
inline static int32_t get_offset_of_U3399BD13E240F33F808CA7940293D6EC4E6FD5A00_25() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___399BD13E240F33F808CA7940293D6EC4E6FD5A00_25)); }
inline __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C get_U3399BD13E240F33F808CA7940293D6EC4E6FD5A00_25() const { return ___399BD13E240F33F808CA7940293D6EC4E6FD5A00_25; }
inline __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C * get_address_of_U3399BD13E240F33F808CA7940293D6EC4E6FD5A00_25() { return &___399BD13E240F33F808CA7940293D6EC4E6FD5A00_25; }
inline void set_U3399BD13E240F33F808CA7940293D6EC4E6FD5A00_25(__StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C value)
{
___399BD13E240F33F808CA7940293D6EC4E6FD5A00_25 = value;
}
inline static int32_t get_offset_of_U339C9CE73C7B0619D409EF28344F687C1B5C130FE_26() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___39C9CE73C7B0619D409EF28344F687C1B5C130FE_26)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U339C9CE73C7B0619D409EF28344F687C1B5C130FE_26() const { return ___39C9CE73C7B0619D409EF28344F687C1B5C130FE_26; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U339C9CE73C7B0619D409EF28344F687C1B5C130FE_26() { return &___39C9CE73C7B0619D409EF28344F687C1B5C130FE_26; }
inline void set_U339C9CE73C7B0619D409EF28344F687C1B5C130FE_26(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___39C9CE73C7B0619D409EF28344F687C1B5C130FE_26 = value;
}
inline static int32_t get_offset_of_U33C53AFB51FEC23491684C7BEDBC6D4E0F409F851_27() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_27)); }
inline __StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49 get_U33C53AFB51FEC23491684C7BEDBC6D4E0F409F851_27() const { return ___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_27; }
inline __StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49 * get_address_of_U33C53AFB51FEC23491684C7BEDBC6D4E0F409F851_27() { return &___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_27; }
inline void set_U33C53AFB51FEC23491684C7BEDBC6D4E0F409F851_27(__StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49 value)
{
___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_27 = value;
}
inline static int32_t get_offset_of_U33E3442C7396F3F2BB4C7348F4A2074C7DC677D68_28() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___3E3442C7396F3F2BB4C7348F4A2074C7DC677D68_28)); }
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_U33E3442C7396F3F2BB4C7348F4A2074C7DC677D68_28() const { return ___3E3442C7396F3F2BB4C7348F4A2074C7DC677D68_28; }
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_U33E3442C7396F3F2BB4C7348F4A2074C7DC677D68_28() { return &___3E3442C7396F3F2BB4C7348F4A2074C7DC677D68_28; }
inline void set_U33E3442C7396F3F2BB4C7348F4A2074C7DC677D68_28(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value)
{
___3E3442C7396F3F2BB4C7348F4A2074C7DC677D68_28 = value;
}
inline static int32_t get_offset_of_U33E823444D2DFECF0F90B436B88F02A533CB376F1_29() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___3E823444D2DFECF0F90B436B88F02A533CB376F1_29)); }
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_U33E823444D2DFECF0F90B436B88F02A533CB376F1_29() const { return ___3E823444D2DFECF0F90B436B88F02A533CB376F1_29; }
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_U33E823444D2DFECF0F90B436B88F02A533CB376F1_29() { return &___3E823444D2DFECF0F90B436B88F02A533CB376F1_29; }
inline void set_U33E823444D2DFECF0F90B436B88F02A533CB376F1_29(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value)
{
___3E823444D2DFECF0F90B436B88F02A533CB376F1_29 = value;
}
inline static int32_t get_offset_of_U33FE6C283BCF384FD2C8789880DFF59664E2AB4A1_30() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_30)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U33FE6C283BCF384FD2C8789880DFF59664E2AB4A1_30() const { return ___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_30; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U33FE6C283BCF384FD2C8789880DFF59664E2AB4A1_30() { return &___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_30; }
inline void set_U33FE6C283BCF384FD2C8789880DFF59664E2AB4A1_30(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_30 = value;
}
inline static int32_t get_offset_of_U340981BAA39513E58B28DCF0103CC04DE2A0A0444_31() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___40981BAA39513E58B28DCF0103CC04DE2A0A0444_31)); }
inline __StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20 get_U340981BAA39513E58B28DCF0103CC04DE2A0A0444_31() const { return ___40981BAA39513E58B28DCF0103CC04DE2A0A0444_31; }
inline __StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20 * get_address_of_U340981BAA39513E58B28DCF0103CC04DE2A0A0444_31() { return &___40981BAA39513E58B28DCF0103CC04DE2A0A0444_31; }
inline void set_U340981BAA39513E58B28DCF0103CC04DE2A0A0444_31(__StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20 value)
{
___40981BAA39513E58B28DCF0103CC04DE2A0A0444_31 = value;
}
inline static int32_t get_offset_of_U340E7C49413D261F3F38AD3A870C0AC69C8BDA048_32() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_32)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U340E7C49413D261F3F38AD3A870C0AC69C8BDA048_32() const { return ___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_32; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U340E7C49413D261F3F38AD3A870C0AC69C8BDA048_32() { return &___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_32; }
inline void set_U340E7C49413D261F3F38AD3A870C0AC69C8BDA048_32(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_32 = value;
}
inline static int32_t get_offset_of_U3421EC7E82F2967DF6CA8C3605514DC6F29EE5845_33() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_33)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U3421EC7E82F2967DF6CA8C3605514DC6F29EE5845_33() const { return ___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_33; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U3421EC7E82F2967DF6CA8C3605514DC6F29EE5845_33() { return &___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_33; }
inline void set_U3421EC7E82F2967DF6CA8C3605514DC6F29EE5845_33(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_33 = value;
}
inline static int32_t get_offset_of_U3433175D38B13FFE177FDD661A309F1B528B3F6E2_34() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___433175D38B13FFE177FDD661A309F1B528B3F6E2_34)); }
inline __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F get_U3433175D38B13FFE177FDD661A309F1B528B3F6E2_34() const { return ___433175D38B13FFE177FDD661A309F1B528B3F6E2_34; }
inline __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F * get_address_of_U3433175D38B13FFE177FDD661A309F1B528B3F6E2_34() { return &___433175D38B13FFE177FDD661A309F1B528B3F6E2_34; }
inline void set_U3433175D38B13FFE177FDD661A309F1B528B3F6E2_34(__StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F value)
{
___433175D38B13FFE177FDD661A309F1B528B3F6E2_34 = value;
}
inline static int32_t get_offset_of_U34858DB4AA76D3933F1CA9E6712D4FDB16903F628_35() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_35)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U34858DB4AA76D3933F1CA9E6712D4FDB16903F628_35() const { return ___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_35; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U34858DB4AA76D3933F1CA9E6712D4FDB16903F628_35() { return &___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_35; }
inline void set_U34858DB4AA76D3933F1CA9E6712D4FDB16903F628_35(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_35 = value;
}
inline static int32_t get_offset_of_U34E3B533C39447AAEB59A8E48FABD7E15B5B5D195_36() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___4E3B533C39447AAEB59A8E48FABD7E15B5B5D195_36)); }
inline __StaticArrayInitTypeSizeU3D48_tE49166878222E9194FE3FD621830EDB6E705F79A get_U34E3B533C39447AAEB59A8E48FABD7E15B5B5D195_36() const { return ___4E3B533C39447AAEB59A8E48FABD7E15B5B5D195_36; }
inline __StaticArrayInitTypeSizeU3D48_tE49166878222E9194FE3FD621830EDB6E705F79A * get_address_of_U34E3B533C39447AAEB59A8E48FABD7E15B5B5D195_36() { return &___4E3B533C39447AAEB59A8E48FABD7E15B5B5D195_36; }
inline void set_U34E3B533C39447AAEB59A8E48FABD7E15B5B5D195_36(__StaticArrayInitTypeSizeU3D48_tE49166878222E9194FE3FD621830EDB6E705F79A value)
{
___4E3B533C39447AAEB59A8E48FABD7E15B5B5D195_36 = value;
}
inline static int32_t get_offset_of_U34F7A8890F332B22B8DE0BD29D36FA7364748D76A_37() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_37)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U34F7A8890F332B22B8DE0BD29D36FA7364748D76A_37() const { return ___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_37; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U34F7A8890F332B22B8DE0BD29D36FA7364748D76A_37() { return &___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_37; }
inline void set_U34F7A8890F332B22B8DE0BD29D36FA7364748D76A_37(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_37 = value;
}
inline static int32_t get_offset_of_U3536422B321459B242ADED7240B7447E904E083E3_38() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___536422B321459B242ADED7240B7447E904E083E3_38)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U3536422B321459B242ADED7240B7447E904E083E3_38() const { return ___536422B321459B242ADED7240B7447E904E083E3_38; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U3536422B321459B242ADED7240B7447E904E083E3_38() { return &___536422B321459B242ADED7240B7447E904E083E3_38; }
inline void set_U3536422B321459B242ADED7240B7447E904E083E3_38(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___536422B321459B242ADED7240B7447E904E083E3_38 = value;
}
inline static int32_t get_offset_of_U35382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_39() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_39)); }
inline __StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84 get_U35382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_39() const { return ___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_39; }
inline __StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84 * get_address_of_U35382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_39() { return &___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_39; }
inline void set_U35382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_39(__StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84 value)
{
___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_39 = value;
}
inline static int32_t get_offset_of_U356DFA5053B3131883637F53219E7D88CCEF35949_40() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___56DFA5053B3131883637F53219E7D88CCEF35949_40)); }
inline __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C get_U356DFA5053B3131883637F53219E7D88CCEF35949_40() const { return ___56DFA5053B3131883637F53219E7D88CCEF35949_40; }
inline __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C * get_address_of_U356DFA5053B3131883637F53219E7D88CCEF35949_40() { return &___56DFA5053B3131883637F53219E7D88CCEF35949_40; }
inline void set_U356DFA5053B3131883637F53219E7D88CCEF35949_40(__StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C value)
{
___56DFA5053B3131883637F53219E7D88CCEF35949_40 = value;
}
inline static int32_t get_offset_of_U357218C316B6921E2CD61027A2387EDC31A2D9471_41() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___57218C316B6921E2CD61027A2387EDC31A2D9471_41)); }
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_U357218C316B6921E2CD61027A2387EDC31A2D9471_41() const { return ___57218C316B6921E2CD61027A2387EDC31A2D9471_41; }
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_U357218C316B6921E2CD61027A2387EDC31A2D9471_41() { return &___57218C316B6921E2CD61027A2387EDC31A2D9471_41; }
inline void set_U357218C316B6921E2CD61027A2387EDC31A2D9471_41(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value)
{
___57218C316B6921E2CD61027A2387EDC31A2D9471_41 = value;
}
inline static int32_t get_offset_of_U357F320D62696EC99727E0FE2045A05F1289CC0C6_42() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___57F320D62696EC99727E0FE2045A05F1289CC0C6_42)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U357F320D62696EC99727E0FE2045A05F1289CC0C6_42() const { return ___57F320D62696EC99727E0FE2045A05F1289CC0C6_42; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U357F320D62696EC99727E0FE2045A05F1289CC0C6_42() { return &___57F320D62696EC99727E0FE2045A05F1289CC0C6_42; }
inline void set_U357F320D62696EC99727E0FE2045A05F1289CC0C6_42(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___57F320D62696EC99727E0FE2045A05F1289CC0C6_42 = value;
}
inline static int32_t get_offset_of_U3594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_43() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_43)); }
inline __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF get_U3594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_43() const { return ___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_43; }
inline __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF * get_address_of_U3594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_43() { return &___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_43; }
inline void set_U3594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_43(__StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF value)
{
___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_43 = value;
}
inline static int32_t get_offset_of_U35BBDF8058D4235C33F2E8DCF76004031B6187A2F_44() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_44)); }
inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 get_U35BBDF8058D4235C33F2E8DCF76004031B6187A2F_44() const { return ___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_44; }
inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 * get_address_of_U35BBDF8058D4235C33F2E8DCF76004031B6187A2F_44() { return &___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_44; }
inline void set_U35BBDF8058D4235C33F2E8DCF76004031B6187A2F_44(__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 value)
{
___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_44 = value;
}
inline static int32_t get_offset_of_U35BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_45() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_45)); }
inline __StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55 get_U35BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_45() const { return ___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_45; }
inline __StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55 * get_address_of_U35BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_45() { return &___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_45; }
inline void set_U35BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_45(__StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55 value)
{
___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_45 = value;
}
inline static int32_t get_offset_of_U35BFE2819B4778217C56416C7585FF0E56EBACD89_46() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___5BFE2819B4778217C56416C7585FF0E56EBACD89_46)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U35BFE2819B4778217C56416C7585FF0E56EBACD89_46() const { return ___5BFE2819B4778217C56416C7585FF0E56EBACD89_46; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U35BFE2819B4778217C56416C7585FF0E56EBACD89_46() { return &___5BFE2819B4778217C56416C7585FF0E56EBACD89_46; }
inline void set_U35BFE2819B4778217C56416C7585FF0E56EBACD89_46(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___5BFE2819B4778217C56416C7585FF0E56EBACD89_46 = value;
}
inline static int32_t get_offset_of_U3609C0E8D8DA86A09D6013D301C86BA8782C16B8C_47() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_47)); }
inline __StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1 get_U3609C0E8D8DA86A09D6013D301C86BA8782C16B8C_47() const { return ___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_47; }
inline __StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1 * get_address_of_U3609C0E8D8DA86A09D6013D301C86BA8782C16B8C_47() { return &___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_47; }
inline void set_U3609C0E8D8DA86A09D6013D301C86BA8782C16B8C_47(__StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1 value)
{
___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_47 = value;
}
inline static int32_t get_offset_of_U362BAB0F245E66C3EB982CF5A7015F0A7C3382283_48() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___62BAB0F245E66C3EB982CF5A7015F0A7C3382283_48)); }
inline __StaticArrayInitTypeSizeU3D48_tE49166878222E9194FE3FD621830EDB6E705F79A get_U362BAB0F245E66C3EB982CF5A7015F0A7C3382283_48() const { return ___62BAB0F245E66C3EB982CF5A7015F0A7C3382283_48; }
inline __StaticArrayInitTypeSizeU3D48_tE49166878222E9194FE3FD621830EDB6E705F79A * get_address_of_U362BAB0F245E66C3EB982CF5A7015F0A7C3382283_48() { return &___62BAB0F245E66C3EB982CF5A7015F0A7C3382283_48; }
inline void set_U362BAB0F245E66C3EB982CF5A7015F0A7C3382283_48(__StaticArrayInitTypeSizeU3D48_tE49166878222E9194FE3FD621830EDB6E705F79A value)
{
___62BAB0F245E66C3EB982CF5A7015F0A7C3382283_48 = value;
}
inline static int32_t get_offset_of_U3646036A65DECCD6835C914A46E6E44B729433B60_49() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___646036A65DECCD6835C914A46E6E44B729433B60_49)); }
inline __StaticArrayInitTypeSizeU3D2048_t95CEED630052F2BBE3122C058EEAD48DB4C2AD02 get_U3646036A65DECCD6835C914A46E6E44B729433B60_49() const { return ___646036A65DECCD6835C914A46E6E44B729433B60_49; }
inline __StaticArrayInitTypeSizeU3D2048_t95CEED630052F2BBE3122C058EEAD48DB4C2AD02 * get_address_of_U3646036A65DECCD6835C914A46E6E44B729433B60_49() { return &___646036A65DECCD6835C914A46E6E44B729433B60_49; }
inline void set_U3646036A65DECCD6835C914A46E6E44B729433B60_49(__StaticArrayInitTypeSizeU3D2048_t95CEED630052F2BBE3122C058EEAD48DB4C2AD02 value)
{
___646036A65DECCD6835C914A46E6E44B729433B60_49 = value;
}
inline static int32_t get_offset_of_U365E32B4E150FD8D24B93B0D42A17F1DAD146162B_50() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_50)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U365E32B4E150FD8D24B93B0D42A17F1DAD146162B_50() const { return ___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_50; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U365E32B4E150FD8D24B93B0D42A17F1DAD146162B_50() { return &___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_50; }
inline void set_U365E32B4E150FD8D24B93B0D42A17F1DAD146162B_50(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_50 = value;
}
inline static int32_t get_offset_of_U36770974FEF1E98B9C1864370E2B5B786EB0EA39E_51() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_51)); }
inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A get_U36770974FEF1E98B9C1864370E2B5B786EB0EA39E_51() const { return ___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_51; }
inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A * get_address_of_U36770974FEF1E98B9C1864370E2B5B786EB0EA39E_51() { return &___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_51; }
inline void set_U36770974FEF1E98B9C1864370E2B5B786EB0EA39E_51(__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A value)
{
___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_51 = value;
}
inline static int32_t get_offset_of_U367EEAD805D708D9AA4E14BF747E44CED801744F3_52() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___67EEAD805D708D9AA4E14BF747E44CED801744F3_52)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U367EEAD805D708D9AA4E14BF747E44CED801744F3_52() const { return ___67EEAD805D708D9AA4E14BF747E44CED801744F3_52; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U367EEAD805D708D9AA4E14BF747E44CED801744F3_52() { return &___67EEAD805D708D9AA4E14BF747E44CED801744F3_52; }
inline void set_U367EEAD805D708D9AA4E14BF747E44CED801744F3_52(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___67EEAD805D708D9AA4E14BF747E44CED801744F3_52 = value;
}
inline static int32_t get_offset_of_U36C71197D228427B2864C69B357FEF73D8C9D59DF_53() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___6C71197D228427B2864C69B357FEF73D8C9D59DF_53)); }
inline __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 get_U36C71197D228427B2864C69B357FEF73D8C9D59DF_53() const { return ___6C71197D228427B2864C69B357FEF73D8C9D59DF_53; }
inline __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 * get_address_of_U36C71197D228427B2864C69B357FEF73D8C9D59DF_53() { return &___6C71197D228427B2864C69B357FEF73D8C9D59DF_53; }
inline void set_U36C71197D228427B2864C69B357FEF73D8C9D59DF_53(__StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 value)
{
___6C71197D228427B2864C69B357FEF73D8C9D59DF_53 = value;
}
inline static int32_t get_offset_of_U36D49C9D487D7AD3491ECE08732D68A593CC2038D_54() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___6D49C9D487D7AD3491ECE08732D68A593CC2038D_54)); }
inline __StaticArrayInitTypeSizeU3D9_tF0D137C898E06A3CD9FFB079C91D796B9EC8B928 get_U36D49C9D487D7AD3491ECE08732D68A593CC2038D_54() const { return ___6D49C9D487D7AD3491ECE08732D68A593CC2038D_54; }
inline __StaticArrayInitTypeSizeU3D9_tF0D137C898E06A3CD9FFB079C91D796B9EC8B928 * get_address_of_U36D49C9D487D7AD3491ECE08732D68A593CC2038D_54() { return &___6D49C9D487D7AD3491ECE08732D68A593CC2038D_54; }
inline void set_U36D49C9D487D7AD3491ECE08732D68A593CC2038D_54(__StaticArrayInitTypeSizeU3D9_tF0D137C898E06A3CD9FFB079C91D796B9EC8B928 value)
{
___6D49C9D487D7AD3491ECE08732D68A593CC2038D_54 = value;
}
inline static int32_t get_offset_of_U36D797C11E1D4FB68B6570CF2A92B792433527065_55() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___6D797C11E1D4FB68B6570CF2A92B792433527065_55)); }
inline __StaticArrayInitTypeSizeU3D2048_t95CEED630052F2BBE3122C058EEAD48DB4C2AD02 get_U36D797C11E1D4FB68B6570CF2A92B792433527065_55() const { return ___6D797C11E1D4FB68B6570CF2A92B792433527065_55; }
inline __StaticArrayInitTypeSizeU3D2048_t95CEED630052F2BBE3122C058EEAD48DB4C2AD02 * get_address_of_U36D797C11E1D4FB68B6570CF2A92B792433527065_55() { return &___6D797C11E1D4FB68B6570CF2A92B792433527065_55; }
inline void set_U36D797C11E1D4FB68B6570CF2A92B792433527065_55(__StaticArrayInitTypeSizeU3D2048_t95CEED630052F2BBE3122C058EEAD48DB4C2AD02 value)
{
___6D797C11E1D4FB68B6570CF2A92B792433527065_55 = value;
}
inline static int32_t get_offset_of_U36E5DC824F803F8565AF31B42199DAE39FE7F4EA9_56() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___6E5DC824F803F8565AF31B42199DAE39FE7F4EA9_56)); }
inline __StaticArrayInitTypeSizeU3D3132_t7837B5DAEC2B2BEBD61C333545DB9AE2F35BF333 get_U36E5DC824F803F8565AF31B42199DAE39FE7F4EA9_56() const { return ___6E5DC824F803F8565AF31B42199DAE39FE7F4EA9_56; }
inline __StaticArrayInitTypeSizeU3D3132_t7837B5DAEC2B2BEBD61C333545DB9AE2F35BF333 * get_address_of_U36E5DC824F803F8565AF31B42199DAE39FE7F4EA9_56() { return &___6E5DC824F803F8565AF31B42199DAE39FE7F4EA9_56; }
inline void set_U36E5DC824F803F8565AF31B42199DAE39FE7F4EA9_56(__StaticArrayInitTypeSizeU3D3132_t7837B5DAEC2B2BEBD61C333545DB9AE2F35BF333 value)
{
___6E5DC824F803F8565AF31B42199DAE39FE7F4EA9_56 = value;
}
inline static int32_t get_offset_of_U36FC754859E4EC74E447048364B216D825C6F8FE7_57() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___6FC754859E4EC74E447048364B216D825C6F8FE7_57)); }
inline __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB get_U36FC754859E4EC74E447048364B216D825C6F8FE7_57() const { return ___6FC754859E4EC74E447048364B216D825C6F8FE7_57; }
inline __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB * get_address_of_U36FC754859E4EC74E447048364B216D825C6F8FE7_57() { return &___6FC754859E4EC74E447048364B216D825C6F8FE7_57; }
inline void set_U36FC754859E4EC74E447048364B216D825C6F8FE7_57(__StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB value)
{
___6FC754859E4EC74E447048364B216D825C6F8FE7_57 = value;
}
inline static int32_t get_offset_of_U3704939CD172085D1295FCE3F1D92431D685D7AA2_58() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___704939CD172085D1295FCE3F1D92431D685D7AA2_58)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U3704939CD172085D1295FCE3F1D92431D685D7AA2_58() const { return ___704939CD172085D1295FCE3F1D92431D685D7AA2_58; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U3704939CD172085D1295FCE3F1D92431D685D7AA2_58() { return &___704939CD172085D1295FCE3F1D92431D685D7AA2_58; }
inline void set_U3704939CD172085D1295FCE3F1D92431D685D7AA2_58(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___704939CD172085D1295FCE3F1D92431D685D7AA2_58 = value;
}
inline static int32_t get_offset_of_U37088AAE49F0627B72729078DE6E3182DDCF8ED99_59() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___7088AAE49F0627B72729078DE6E3182DDCF8ED99_59)); }
inline __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 get_U37088AAE49F0627B72729078DE6E3182DDCF8ED99_59() const { return ___7088AAE49F0627B72729078DE6E3182DDCF8ED99_59; }
inline __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 * get_address_of_U37088AAE49F0627B72729078DE6E3182DDCF8ED99_59() { return &___7088AAE49F0627B72729078DE6E3182DDCF8ED99_59; }
inline void set_U37088AAE49F0627B72729078DE6E3182DDCF8ED99_59(__StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 value)
{
___7088AAE49F0627B72729078DE6E3182DDCF8ED99_59 = value;
}
inline static int32_t get_offset_of_U37341C933A70EAE383CC50C4B945ADB8E08F06737_60() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___7341C933A70EAE383CC50C4B945ADB8E08F06737_60)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U37341C933A70EAE383CC50C4B945ADB8E08F06737_60() const { return ___7341C933A70EAE383CC50C4B945ADB8E08F06737_60; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U37341C933A70EAE383CC50C4B945ADB8E08F06737_60() { return &___7341C933A70EAE383CC50C4B945ADB8E08F06737_60; }
inline void set_U37341C933A70EAE383CC50C4B945ADB8E08F06737_60(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___7341C933A70EAE383CC50C4B945ADB8E08F06737_60 = value;
}
inline static int32_t get_offset_of_U3736D39815215889F11249D9958F6ED12D37B9F57_61() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___736D39815215889F11249D9958F6ED12D37B9F57_61)); }
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_U3736D39815215889F11249D9958F6ED12D37B9F57_61() const { return ___736D39815215889F11249D9958F6ED12D37B9F57_61; }
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_U3736D39815215889F11249D9958F6ED12D37B9F57_61() { return &___736D39815215889F11249D9958F6ED12D37B9F57_61; }
inline void set_U3736D39815215889F11249D9958F6ED12D37B9F57_61(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value)
{
___736D39815215889F11249D9958F6ED12D37B9F57_61 = value;
}
inline static int32_t get_offset_of_U37FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_62() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_62)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U37FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_62() const { return ___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_62; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U37FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_62() { return &___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_62; }
inline void set_U37FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_62(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_62 = value;
}
inline static int32_t get_offset_of_U3811A927B7DADD378BE60BBDE794B9277AA9B50EC_63() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___811A927B7DADD378BE60BBDE794B9277AA9B50EC_63)); }
inline __StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462 get_U3811A927B7DADD378BE60BBDE794B9277AA9B50EC_63() const { return ___811A927B7DADD378BE60BBDE794B9277AA9B50EC_63; }
inline __StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462 * get_address_of_U3811A927B7DADD378BE60BBDE794B9277AA9B50EC_63() { return &___811A927B7DADD378BE60BBDE794B9277AA9B50EC_63; }
inline void set_U3811A927B7DADD378BE60BBDE794B9277AA9B50EC_63(__StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462 value)
{
___811A927B7DADD378BE60BBDE794B9277AA9B50EC_63 = value;
}
inline static int32_t get_offset_of_U381917F1E21F3C22B9F916994547A614FB03E968E_64() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___81917F1E21F3C22B9F916994547A614FB03E968E_64)); }
inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 get_U381917F1E21F3C22B9F916994547A614FB03E968E_64() const { return ___81917F1E21F3C22B9F916994547A614FB03E968E_64; }
inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 * get_address_of_U381917F1E21F3C22B9F916994547A614FB03E968E_64() { return &___81917F1E21F3C22B9F916994547A614FB03E968E_64; }
inline void set_U381917F1E21F3C22B9F916994547A614FB03E968E_64(__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 value)
{
___81917F1E21F3C22B9F916994547A614FB03E968E_64 = value;
}
inline static int32_t get_offset_of_U3823566DA642D6EA356E15585921F2A4CA23D6760_65() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___823566DA642D6EA356E15585921F2A4CA23D6760_65)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U3823566DA642D6EA356E15585921F2A4CA23D6760_65() const { return ___823566DA642D6EA356E15585921F2A4CA23D6760_65; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U3823566DA642D6EA356E15585921F2A4CA23D6760_65() { return &___823566DA642D6EA356E15585921F2A4CA23D6760_65; }
inline void set_U3823566DA642D6EA356E15585921F2A4CA23D6760_65(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___823566DA642D6EA356E15585921F2A4CA23D6760_65 = value;
}
inline static int32_t get_offset_of_U382C2A59850B2E85BCE1A45A479537A384DF6098D_66() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___82C2A59850B2E85BCE1A45A479537A384DF6098D_66)); }
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_U382C2A59850B2E85BCE1A45A479537A384DF6098D_66() const { return ___82C2A59850B2E85BCE1A45A479537A384DF6098D_66; }
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_U382C2A59850B2E85BCE1A45A479537A384DF6098D_66() { return &___82C2A59850B2E85BCE1A45A479537A384DF6098D_66; }
inline void set_U382C2A59850B2E85BCE1A45A479537A384DF6098D_66(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value)
{
___82C2A59850B2E85BCE1A45A479537A384DF6098D_66 = value;
}
inline static int32_t get_offset_of_U382C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_67() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_67)); }
inline __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F get_U382C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_67() const { return ___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_67; }
inline __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F * get_address_of_U382C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_67() { return &___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_67; }
inline void set_U382C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_67(__StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F value)
{
___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_67 = value;
}
inline static int32_t get_offset_of_U386F4F563FA2C61798AE6238D789139739428463A_68() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___86F4F563FA2C61798AE6238D789139739428463A_68)); }
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_U386F4F563FA2C61798AE6238D789139739428463A_68() const { return ___86F4F563FA2C61798AE6238D789139739428463A_68; }
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_U386F4F563FA2C61798AE6238D789139739428463A_68() { return &___86F4F563FA2C61798AE6238D789139739428463A_68; }
inline void set_U386F4F563FA2C61798AE6238D789139739428463A_68(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value)
{
___86F4F563FA2C61798AE6238D789139739428463A_68 = value;
}
inline static int32_t get_offset_of_U3871B9CF85DB352BAADF12BAE8F19857683E385AC_69() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___871B9CF85DB352BAADF12BAE8F19857683E385AC_69)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U3871B9CF85DB352BAADF12BAE8F19857683E385AC_69() const { return ___871B9CF85DB352BAADF12BAE8F19857683E385AC_69; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U3871B9CF85DB352BAADF12BAE8F19857683E385AC_69() { return &___871B9CF85DB352BAADF12BAE8F19857683E385AC_69; }
inline void set_U3871B9CF85DB352BAADF12BAE8F19857683E385AC_69(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___871B9CF85DB352BAADF12BAE8F19857683E385AC_69 = value;
}
inline static int32_t get_offset_of_U389A040451C8CC5C8FB268BE44BDD74964C104155_70() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___89A040451C8CC5C8FB268BE44BDD74964C104155_70)); }
inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 get_U389A040451C8CC5C8FB268BE44BDD74964C104155_70() const { return ___89A040451C8CC5C8FB268BE44BDD74964C104155_70; }
inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 * get_address_of_U389A040451C8CC5C8FB268BE44BDD74964C104155_70() { return &___89A040451C8CC5C8FB268BE44BDD74964C104155_70; }
inline void set_U389A040451C8CC5C8FB268BE44BDD74964C104155_70(__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 value)
{
___89A040451C8CC5C8FB268BE44BDD74964C104155_70 = value;
}
inline static int32_t get_offset_of_U38CAA092E783257106251246FF5C97F88D28517A6_71() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___8CAA092E783257106251246FF5C97F88D28517A6_71)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U38CAA092E783257106251246FF5C97F88D28517A6_71() const { return ___8CAA092E783257106251246FF5C97F88D28517A6_71; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U38CAA092E783257106251246FF5C97F88D28517A6_71() { return &___8CAA092E783257106251246FF5C97F88D28517A6_71; }
inline void set_U38CAA092E783257106251246FF5C97F88D28517A6_71(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___8CAA092E783257106251246FF5C97F88D28517A6_71 = value;
}
inline static int32_t get_offset_of_U38D231DD55FE1AD7631BBD0905A17D5EB616C2154_72() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_72)); }
inline __StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA get_U38D231DD55FE1AD7631BBD0905A17D5EB616C2154_72() const { return ___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_72; }
inline __StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA * get_address_of_U38D231DD55FE1AD7631BBD0905A17D5EB616C2154_72() { return &___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_72; }
inline void set_U38D231DD55FE1AD7631BBD0905A17D5EB616C2154_72(__StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA value)
{
___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_72 = value;
}
inline static int32_t get_offset_of_U38E10AC2F34545DFBBF3FCBC06055D797A8C99991_73() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_73)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U38E10AC2F34545DFBBF3FCBC06055D797A8C99991_73() const { return ___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_73; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U38E10AC2F34545DFBBF3FCBC06055D797A8C99991_73() { return &___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_73; }
inline void set_U38E10AC2F34545DFBBF3FCBC06055D797A8C99991_73(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_73 = value;
}
inline static int32_t get_offset_of_U390A0542282A011472F94E97CEAE59F8B3B1A3291_74() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___90A0542282A011472F94E97CEAE59F8B3B1A3291_74)); }
inline __StaticArrayInitTypeSizeU3D640_t9C691C15FA1A34F93F102000D5F515E32241C910 get_U390A0542282A011472F94E97CEAE59F8B3B1A3291_74() const { return ___90A0542282A011472F94E97CEAE59F8B3B1A3291_74; }
inline __StaticArrayInitTypeSizeU3D640_t9C691C15FA1A34F93F102000D5F515E32241C910 * get_address_of_U390A0542282A011472F94E97CEAE59F8B3B1A3291_74() { return &___90A0542282A011472F94E97CEAE59F8B3B1A3291_74; }
inline void set_U390A0542282A011472F94E97CEAE59F8B3B1A3291_74(__StaticArrayInitTypeSizeU3D640_t9C691C15FA1A34F93F102000D5F515E32241C910 value)
{
___90A0542282A011472F94E97CEAE59F8B3B1A3291_74 = value;
}
inline static int32_t get_offset_of_U393A63E90605400F34B49F0EB3361D23C89164BDA_75() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___93A63E90605400F34B49F0EB3361D23C89164BDA_75)); }
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_U393A63E90605400F34B49F0EB3361D23C89164BDA_75() const { return ___93A63E90605400F34B49F0EB3361D23C89164BDA_75; }
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_U393A63E90605400F34B49F0EB3361D23C89164BDA_75() { return &___93A63E90605400F34B49F0EB3361D23C89164BDA_75; }
inline void set_U393A63E90605400F34B49F0EB3361D23C89164BDA_75(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value)
{
___93A63E90605400F34B49F0EB3361D23C89164BDA_75 = value;
}
inline static int32_t get_offset_of_U394841DD2F330CCB1089BF413E4FA9B04505152E2_76() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___94841DD2F330CCB1089BF413E4FA9B04505152E2_76)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U394841DD2F330CCB1089BF413E4FA9B04505152E2_76() const { return ___94841DD2F330CCB1089BF413E4FA9B04505152E2_76; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U394841DD2F330CCB1089BF413E4FA9B04505152E2_76() { return &___94841DD2F330CCB1089BF413E4FA9B04505152E2_76; }
inline void set_U394841DD2F330CCB1089BF413E4FA9B04505152E2_76(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___94841DD2F330CCB1089BF413E4FA9B04505152E2_76 = value;
}
inline static int32_t get_offset_of_U395264589E48F94B7857CFF398FB72A537E13EEE2_77() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___95264589E48F94B7857CFF398FB72A537E13EEE2_77)); }
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_U395264589E48F94B7857CFF398FB72A537E13EEE2_77() const { return ___95264589E48F94B7857CFF398FB72A537E13EEE2_77; }
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_U395264589E48F94B7857CFF398FB72A537E13EEE2_77() { return &___95264589E48F94B7857CFF398FB72A537E13EEE2_77; }
inline void set_U395264589E48F94B7857CFF398FB72A537E13EEE2_77(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value)
{
___95264589E48F94B7857CFF398FB72A537E13EEE2_77 = value;
}
inline static int32_t get_offset_of_U395C48758CAE1715783472FB073AB158AB8A0AB2A_78() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___95C48758CAE1715783472FB073AB158AB8A0AB2A_78)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U395C48758CAE1715783472FB073AB158AB8A0AB2A_78() const { return ___95C48758CAE1715783472FB073AB158AB8A0AB2A_78; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U395C48758CAE1715783472FB073AB158AB8A0AB2A_78() { return &___95C48758CAE1715783472FB073AB158AB8A0AB2A_78; }
inline void set_U395C48758CAE1715783472FB073AB158AB8A0AB2A_78(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___95C48758CAE1715783472FB073AB158AB8A0AB2A_78 = value;
}
inline static int32_t get_offset_of_U3973417296623D8DC6961B09664E54039E44CA5D8_79() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___973417296623D8DC6961B09664E54039E44CA5D8_79)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U3973417296623D8DC6961B09664E54039E44CA5D8_79() const { return ___973417296623D8DC6961B09664E54039E44CA5D8_79; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U3973417296623D8DC6961B09664E54039E44CA5D8_79() { return &___973417296623D8DC6961B09664E54039E44CA5D8_79; }
inline void set_U3973417296623D8DC6961B09664E54039E44CA5D8_79(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___973417296623D8DC6961B09664E54039E44CA5D8_79 = value;
}
inline static int32_t get_offset_of_U397FB30C84FF4A41CD4625B44B2940BFC8DB43003_80() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___97FB30C84FF4A41CD4625B44B2940BFC8DB43003_80)); }
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_U397FB30C84FF4A41CD4625B44B2940BFC8DB43003_80() const { return ___97FB30C84FF4A41CD4625B44B2940BFC8DB43003_80; }
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_U397FB30C84FF4A41CD4625B44B2940BFC8DB43003_80() { return &___97FB30C84FF4A41CD4625B44B2940BFC8DB43003_80; }
inline void set_U397FB30C84FF4A41CD4625B44B2940BFC8DB43003_80(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value)
{
___97FB30C84FF4A41CD4625B44B2940BFC8DB43003_80 = value;
}
inline static int32_t get_offset_of_U39A9C3962CD4753376E3507C8CB5FD8FCC4B4EDB5_81() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___9A9C3962CD4753376E3507C8CB5FD8FCC4B4EDB5_81)); }
inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 get_U39A9C3962CD4753376E3507C8CB5FD8FCC4B4EDB5_81() const { return ___9A9C3962CD4753376E3507C8CB5FD8FCC4B4EDB5_81; }
inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 * get_address_of_U39A9C3962CD4753376E3507C8CB5FD8FCC4B4EDB5_81() { return &___9A9C3962CD4753376E3507C8CB5FD8FCC4B4EDB5_81; }
inline void set_U39A9C3962CD4753376E3507C8CB5FD8FCC4B4EDB5_81(__StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 value)
{
___9A9C3962CD4753376E3507C8CB5FD8FCC4B4EDB5_81 = value;
}
inline static int32_t get_offset_of_U39BB00D1FCCBAF03165447FC8028E7CA07CA9FE88_82() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___9BB00D1FCCBAF03165447FC8028E7CA07CA9FE88_82)); }
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_U39BB00D1FCCBAF03165447FC8028E7CA07CA9FE88_82() const { return ___9BB00D1FCCBAF03165447FC8028E7CA07CA9FE88_82; }
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_U39BB00D1FCCBAF03165447FC8028E7CA07CA9FE88_82() { return &___9BB00D1FCCBAF03165447FC8028E7CA07CA9FE88_82; }
inline void set_U39BB00D1FCCBAF03165447FC8028E7CA07CA9FE88_82(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value)
{
___9BB00D1FCCBAF03165447FC8028E7CA07CA9FE88_82 = value;
}
inline static int32_t get_offset_of_A0074C15377C0C870B055927403EA9FA7A349D12_83() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A0074C15377C0C870B055927403EA9FA7A349D12_83)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_A0074C15377C0C870B055927403EA9FA7A349D12_83() const { return ___A0074C15377C0C870B055927403EA9FA7A349D12_83; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_A0074C15377C0C870B055927403EA9FA7A349D12_83() { return &___A0074C15377C0C870B055927403EA9FA7A349D12_83; }
inline void set_A0074C15377C0C870B055927403EA9FA7A349D12_83(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___A0074C15377C0C870B055927403EA9FA7A349D12_83 = value;
}
inline static int32_t get_offset_of_A1319B706116AB2C6D44483F60A7D0ACEA543396_84() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A1319B706116AB2C6D44483F60A7D0ACEA543396_84)); }
inline __StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F get_A1319B706116AB2C6D44483F60A7D0ACEA543396_84() const { return ___A1319B706116AB2C6D44483F60A7D0ACEA543396_84; }
inline __StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F * get_address_of_A1319B706116AB2C6D44483F60A7D0ACEA543396_84() { return &___A1319B706116AB2C6D44483F60A7D0ACEA543396_84; }
inline void set_A1319B706116AB2C6D44483F60A7D0ACEA543396_84(__StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F value)
{
___A1319B706116AB2C6D44483F60A7D0ACEA543396_84 = value;
}
inline static int32_t get_offset_of_A13AA52274D951A18029131A8DDECF76B569A15D_85() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A13AA52274D951A18029131A8DDECF76B569A15D_85)); }
inline int64_t get_A13AA52274D951A18029131A8DDECF76B569A15D_85() const { return ___A13AA52274D951A18029131A8DDECF76B569A15D_85; }
inline int64_t* get_address_of_A13AA52274D951A18029131A8DDECF76B569A15D_85() { return &___A13AA52274D951A18029131A8DDECF76B569A15D_85; }
inline void set_A13AA52274D951A18029131A8DDECF76B569A15D_85(int64_t value)
{
___A13AA52274D951A18029131A8DDECF76B569A15D_85 = value;
}
inline static int32_t get_offset_of_A323DB0813C4D072957BA6FDA79D9776674CD06B_86() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A323DB0813C4D072957BA6FDA79D9776674CD06B_86)); }
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_A323DB0813C4D072957BA6FDA79D9776674CD06B_86() const { return ___A323DB0813C4D072957BA6FDA79D9776674CD06B_86; }
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_A323DB0813C4D072957BA6FDA79D9776674CD06B_86() { return &___A323DB0813C4D072957BA6FDA79D9776674CD06B_86; }
inline void set_A323DB0813C4D072957BA6FDA79D9776674CD06B_86(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value)
{
___A323DB0813C4D072957BA6FDA79D9776674CD06B_86 = value;
}
inline static int32_t get_offset_of_A5444763673307F6828C748D4B9708CFC02B0959_87() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A5444763673307F6828C748D4B9708CFC02B0959_87)); }
inline __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF get_A5444763673307F6828C748D4B9708CFC02B0959_87() const { return ___A5444763673307F6828C748D4B9708CFC02B0959_87; }
inline __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF * get_address_of_A5444763673307F6828C748D4B9708CFC02B0959_87() { return &___A5444763673307F6828C748D4B9708CFC02B0959_87; }
inline void set_A5444763673307F6828C748D4B9708CFC02B0959_87(__StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF value)
{
___A5444763673307F6828C748D4B9708CFC02B0959_87 = value;
}
inline static int32_t get_offset_of_A6732F8E7FC23766AB329B492D6BF82E3B33233F_88() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A6732F8E7FC23766AB329B492D6BF82E3B33233F_88)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_A6732F8E7FC23766AB329B492D6BF82E3B33233F_88() const { return ___A6732F8E7FC23766AB329B492D6BF82E3B33233F_88; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_A6732F8E7FC23766AB329B492D6BF82E3B33233F_88() { return &___A6732F8E7FC23766AB329B492D6BF82E3B33233F_88; }
inline void set_A6732F8E7FC23766AB329B492D6BF82E3B33233F_88(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___A6732F8E7FC23766AB329B492D6BF82E3B33233F_88 = value;
}
inline static int32_t get_offset_of_A705A106D95282BD15E13EEA6B0AF583FF786D83_89() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A705A106D95282BD15E13EEA6B0AF583FF786D83_89)); }
inline __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F get_A705A106D95282BD15E13EEA6B0AF583FF786D83_89() const { return ___A705A106D95282BD15E13EEA6B0AF583FF786D83_89; }
inline __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F * get_address_of_A705A106D95282BD15E13EEA6B0AF583FF786D83_89() { return &___A705A106D95282BD15E13EEA6B0AF583FF786D83_89; }
inline void set_A705A106D95282BD15E13EEA6B0AF583FF786D83_89(__StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F value)
{
___A705A106D95282BD15E13EEA6B0AF583FF786D83_89 = value;
}
inline static int32_t get_offset_of_A8A491E4CED49AE0027560476C10D933CE70C8DF_90() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A8A491E4CED49AE0027560476C10D933CE70C8DF_90)); }
inline __StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4 get_A8A491E4CED49AE0027560476C10D933CE70C8DF_90() const { return ___A8A491E4CED49AE0027560476C10D933CE70C8DF_90; }
inline __StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4 * get_address_of_A8A491E4CED49AE0027560476C10D933CE70C8DF_90() { return &___A8A491E4CED49AE0027560476C10D933CE70C8DF_90; }
inline void set_A8A491E4CED49AE0027560476C10D933CE70C8DF_90(__StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4 value)
{
___A8A491E4CED49AE0027560476C10D933CE70C8DF_90 = value;
}
inline static int32_t get_offset_of_AC791C4F39504D1184B73478943D0636258DA7B1_91() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___AC791C4F39504D1184B73478943D0636258DA7B1_91)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_AC791C4F39504D1184B73478943D0636258DA7B1_91() const { return ___AC791C4F39504D1184B73478943D0636258DA7B1_91; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_AC791C4F39504D1184B73478943D0636258DA7B1_91() { return &___AC791C4F39504D1184B73478943D0636258DA7B1_91; }
inline void set_AC791C4F39504D1184B73478943D0636258DA7B1_91(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___AC791C4F39504D1184B73478943D0636258DA7B1_91 = value;
}
inline static int32_t get_offset_of_AFCD4E1211233E99373A3367B23105A3D624B1F2_92() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___AFCD4E1211233E99373A3367B23105A3D624B1F2_92)); }
inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A get_AFCD4E1211233E99373A3367B23105A3D624B1F2_92() const { return ___AFCD4E1211233E99373A3367B23105A3D624B1F2_92; }
inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A * get_address_of_AFCD4E1211233E99373A3367B23105A3D624B1F2_92() { return &___AFCD4E1211233E99373A3367B23105A3D624B1F2_92; }
inline void set_AFCD4E1211233E99373A3367B23105A3D624B1F2_92(__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A value)
{
___AFCD4E1211233E99373A3367B23105A3D624B1F2_92 = value;
}
inline static int32_t get_offset_of_B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_93() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_93)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_93() const { return ___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_93; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_93() { return &___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_93; }
inline void set_B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_93(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_93 = value;
}
inline static int32_t get_offset_of_B4FBD02AAB5B16E0F4BD858DA5D9E348F3CE501D_94() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B4FBD02AAB5B16E0F4BD858DA5D9E348F3CE501D_94)); }
inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 get_B4FBD02AAB5B16E0F4BD858DA5D9E348F3CE501D_94() const { return ___B4FBD02AAB5B16E0F4BD858DA5D9E348F3CE501D_94; }
inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 * get_address_of_B4FBD02AAB5B16E0F4BD858DA5D9E348F3CE501D_94() { return &___B4FBD02AAB5B16E0F4BD858DA5D9E348F3CE501D_94; }
inline void set_B4FBD02AAB5B16E0F4BD858DA5D9E348F3CE501D_94(__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 value)
{
___B4FBD02AAB5B16E0F4BD858DA5D9E348F3CE501D_94 = value;
}
inline static int32_t get_offset_of_B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_95() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_95)); }
inline __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F get_B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_95() const { return ___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_95; }
inline __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F * get_address_of_B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_95() { return &___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_95; }
inline void set_B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_95(__StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F value)
{
___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_95 = value;
}
inline static int32_t get_offset_of_B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_96() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_96)); }
inline __StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C get_B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_96() const { return ___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_96; }
inline __StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C * get_address_of_B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_96() { return &___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_96; }
inline void set_B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_96(__StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C value)
{
___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_96 = value;
}
inline static int32_t get_offset_of_B8864ACB9DD69E3D42151513C840AAE270BF21C8_97() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B8864ACB9DD69E3D42151513C840AAE270BF21C8_97)); }
inline __StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA get_B8864ACB9DD69E3D42151513C840AAE270BF21C8_97() const { return ___B8864ACB9DD69E3D42151513C840AAE270BF21C8_97; }
inline __StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA * get_address_of_B8864ACB9DD69E3D42151513C840AAE270BF21C8_97() { return &___B8864ACB9DD69E3D42151513C840AAE270BF21C8_97; }
inline void set_B8864ACB9DD69E3D42151513C840AAE270BF21C8_97(__StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA value)
{
___B8864ACB9DD69E3D42151513C840AAE270BF21C8_97 = value;
}
inline static int32_t get_offset_of_B8F87834C3597B2EEF22BA6D3A392CC925636401_98() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B8F87834C3597B2EEF22BA6D3A392CC925636401_98)); }
inline __StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7 get_B8F87834C3597B2EEF22BA6D3A392CC925636401_98() const { return ___B8F87834C3597B2EEF22BA6D3A392CC925636401_98; }
inline __StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7 * get_address_of_B8F87834C3597B2EEF22BA6D3A392CC925636401_98() { return &___B8F87834C3597B2EEF22BA6D3A392CC925636401_98; }
inline void set_B8F87834C3597B2EEF22BA6D3A392CC925636401_98(__StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7 value)
{
___B8F87834C3597B2EEF22BA6D3A392CC925636401_98 = value;
}
inline static int32_t get_offset_of_B9B670F134A59FB1107AF01A9FE8F8E3980B3093_99() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_99)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_B9B670F134A59FB1107AF01A9FE8F8E3980B3093_99() const { return ___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_99; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_B9B670F134A59FB1107AF01A9FE8F8E3980B3093_99() { return &___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_99; }
inline void set_B9B670F134A59FB1107AF01A9FE8F8E3980B3093_99(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_99 = value;
}
inline static int32_t get_offset_of_BE1BDEC0AA74B4DCB079943E70528096CCA985F8_100() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___BE1BDEC0AA74B4DCB079943E70528096CCA985F8_100)); }
inline __StaticArrayInitTypeSizeU3D20_t4B48985ED9F1499360D72CB311F3EB54FB7C4B63 get_BE1BDEC0AA74B4DCB079943E70528096CCA985F8_100() const { return ___BE1BDEC0AA74B4DCB079943E70528096CCA985F8_100; }
inline __StaticArrayInitTypeSizeU3D20_t4B48985ED9F1499360D72CB311F3EB54FB7C4B63 * get_address_of_BE1BDEC0AA74B4DCB079943E70528096CCA985F8_100() { return &___BE1BDEC0AA74B4DCB079943E70528096CCA985F8_100; }
inline void set_BE1BDEC0AA74B4DCB079943E70528096CCA985F8_100(__StaticArrayInitTypeSizeU3D20_t4B48985ED9F1499360D72CB311F3EB54FB7C4B63 value)
{
___BE1BDEC0AA74B4DCB079943E70528096CCA985F8_100 = value;
}
inline static int32_t get_offset_of_BEBC9ECC660A13EFC359BA3383411F698CFF25DB_101() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_101)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_BEBC9ECC660A13EFC359BA3383411F698CFF25DB_101() const { return ___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_101; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_BEBC9ECC660A13EFC359BA3383411F698CFF25DB_101() { return &___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_101; }
inline void set_BEBC9ECC660A13EFC359BA3383411F698CFF25DB_101(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_101 = value;
}
inline static int32_t get_offset_of_BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_102() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_102)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_102() const { return ___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_102; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_102() { return &___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_102; }
inline void set_BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_102(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_102 = value;
}
inline static int32_t get_offset_of_BF477463CE2F5EF38FC4C644BBBF4DF109E7670A_103() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___BF477463CE2F5EF38FC4C644BBBF4DF109E7670A_103)); }
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_BF477463CE2F5EF38FC4C644BBBF4DF109E7670A_103() const { return ___BF477463CE2F5EF38FC4C644BBBF4DF109E7670A_103; }
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_BF477463CE2F5EF38FC4C644BBBF4DF109E7670A_103() { return &___BF477463CE2F5EF38FC4C644BBBF4DF109E7670A_103; }
inline void set_BF477463CE2F5EF38FC4C644BBBF4DF109E7670A_103(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value)
{
___BF477463CE2F5EF38FC4C644BBBF4DF109E7670A_103 = value;
}
inline static int32_t get_offset_of_BF5EB60806ECB74EE484105DD9D6F463BF994867_104() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___BF5EB60806ECB74EE484105DD9D6F463BF994867_104)); }
inline __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 get_BF5EB60806ECB74EE484105DD9D6F463BF994867_104() const { return ___BF5EB60806ECB74EE484105DD9D6F463BF994867_104; }
inline __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 * get_address_of_BF5EB60806ECB74EE484105DD9D6F463BF994867_104() { return &___BF5EB60806ECB74EE484105DD9D6F463BF994867_104; }
inline void set_BF5EB60806ECB74EE484105DD9D6F463BF994867_104(__StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 value)
{
___BF5EB60806ECB74EE484105DD9D6F463BF994867_104 = value;
}
inline static int32_t get_offset_of_C1A1100642BA9685B30A84D97348484E14AA1865_105() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___C1A1100642BA9685B30A84D97348484E14AA1865_105)); }
inline int64_t get_C1A1100642BA9685B30A84D97348484E14AA1865_105() const { return ___C1A1100642BA9685B30A84D97348484E14AA1865_105; }
inline int64_t* get_address_of_C1A1100642BA9685B30A84D97348484E14AA1865_105() { return &___C1A1100642BA9685B30A84D97348484E14AA1865_105; }
inline void set_C1A1100642BA9685B30A84D97348484E14AA1865_105(int64_t value)
{
___C1A1100642BA9685B30A84D97348484E14AA1865_105 = value;
}
inline static int32_t get_offset_of_C6F364A0AD934EFED8909446C215752E565D77C1_106() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___C6F364A0AD934EFED8909446C215752E565D77C1_106)); }
inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 get_C6F364A0AD934EFED8909446C215752E565D77C1_106() const { return ___C6F364A0AD934EFED8909446C215752E565D77C1_106; }
inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 * get_address_of_C6F364A0AD934EFED8909446C215752E565D77C1_106() { return &___C6F364A0AD934EFED8909446C215752E565D77C1_106; }
inline void set_C6F364A0AD934EFED8909446C215752E565D77C1_106(__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 value)
{
___C6F364A0AD934EFED8909446C215752E565D77C1_106 = value;
}
inline static int32_t get_offset_of_CE5835130F5277F63D716FC9115526B0AC68FFAD_107() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___CE5835130F5277F63D716FC9115526B0AC68FFAD_107)); }
inline __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F get_CE5835130F5277F63D716FC9115526B0AC68FFAD_107() const { return ___CE5835130F5277F63D716FC9115526B0AC68FFAD_107; }
inline __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F * get_address_of_CE5835130F5277F63D716FC9115526B0AC68FFAD_107() { return &___CE5835130F5277F63D716FC9115526B0AC68FFAD_107; }
inline void set_CE5835130F5277F63D716FC9115526B0AC68FFAD_107(__StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F value)
{
___CE5835130F5277F63D716FC9115526B0AC68FFAD_107 = value;
}
inline static int32_t get_offset_of_CE93C35B755802BC4B3D180716B048FC61701EF7_108() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___CE93C35B755802BC4B3D180716B048FC61701EF7_108)); }
inline __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 get_CE93C35B755802BC4B3D180716B048FC61701EF7_108() const { return ___CE93C35B755802BC4B3D180716B048FC61701EF7_108; }
inline __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 * get_address_of_CE93C35B755802BC4B3D180716B048FC61701EF7_108() { return &___CE93C35B755802BC4B3D180716B048FC61701EF7_108; }
inline void set_CE93C35B755802BC4B3D180716B048FC61701EF7_108(__StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 value)
{
___CE93C35B755802BC4B3D180716B048FC61701EF7_108 = value;
}
inline static int32_t get_offset_of_CF0B42666EF5E37EDEA0AB8E173E42C196D03814_109() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___CF0B42666EF5E37EDEA0AB8E173E42C196D03814_109)); }
inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 get_CF0B42666EF5E37EDEA0AB8E173E42C196D03814_109() const { return ___CF0B42666EF5E37EDEA0AB8E173E42C196D03814_109; }
inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 * get_address_of_CF0B42666EF5E37EDEA0AB8E173E42C196D03814_109() { return &___CF0B42666EF5E37EDEA0AB8E173E42C196D03814_109; }
inline void set_CF0B42666EF5E37EDEA0AB8E173E42C196D03814_109(__StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 value)
{
___CF0B42666EF5E37EDEA0AB8E173E42C196D03814_109 = value;
}
inline static int32_t get_offset_of_D002CBBE1FF33721AF7C4D1D3ECAD1B7DB5258B7_110() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___D002CBBE1FF33721AF7C4D1D3ECAD1B7DB5258B7_110)); }
inline __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F get_D002CBBE1FF33721AF7C4D1D3ECAD1B7DB5258B7_110() const { return ___D002CBBE1FF33721AF7C4D1D3ECAD1B7DB5258B7_110; }
inline __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F * get_address_of_D002CBBE1FF33721AF7C4D1D3ECAD1B7DB5258B7_110() { return &___D002CBBE1FF33721AF7C4D1D3ECAD1B7DB5258B7_110; }
inline void set_D002CBBE1FF33721AF7C4D1D3ECAD1B7DB5258B7_110(__StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F value)
{
___D002CBBE1FF33721AF7C4D1D3ECAD1B7DB5258B7_110 = value;
}
inline static int32_t get_offset_of_D117188BE8D4609C0D531C51B0BB911A4219DEBE_111() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___D117188BE8D4609C0D531C51B0BB911A4219DEBE_111)); }
inline __StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 get_D117188BE8D4609C0D531C51B0BB911A4219DEBE_111() const { return ___D117188BE8D4609C0D531C51B0BB911A4219DEBE_111; }
inline __StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 * get_address_of_D117188BE8D4609C0D531C51B0BB911A4219DEBE_111() { return &___D117188BE8D4609C0D531C51B0BB911A4219DEBE_111; }
inline void set_D117188BE8D4609C0D531C51B0BB911A4219DEBE_111(__StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 value)
{
___D117188BE8D4609C0D531C51B0BB911A4219DEBE_111 = value;
}
inline static int32_t get_offset_of_D28E8ABDBD777A482CE0EE5C24814ACAE52AABFE_112() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___D28E8ABDBD777A482CE0EE5C24814ACAE52AABFE_112)); }
inline __StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 get_D28E8ABDBD777A482CE0EE5C24814ACAE52AABFE_112() const { return ___D28E8ABDBD777A482CE0EE5C24814ACAE52AABFE_112; }
inline __StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 * get_address_of_D28E8ABDBD777A482CE0EE5C24814ACAE52AABFE_112() { return &___D28E8ABDBD777A482CE0EE5C24814ACAE52AABFE_112; }
inline void set_D28E8ABDBD777A482CE0EE5C24814ACAE52AABFE_112(__StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 value)
{
___D28E8ABDBD777A482CE0EE5C24814ACAE52AABFE_112 = value;
}
inline static int32_t get_offset_of_D2C5BAE967587C6F3D9F2C4551911E0575A1101F_113() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___D2C5BAE967587C6F3D9F2C4551911E0575A1101F_113)); }
inline __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F get_D2C5BAE967587C6F3D9F2C4551911E0575A1101F_113() const { return ___D2C5BAE967587C6F3D9F2C4551911E0575A1101F_113; }
inline __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F * get_address_of_D2C5BAE967587C6F3D9F2C4551911E0575A1101F_113() { return &___D2C5BAE967587C6F3D9F2C4551911E0575A1101F_113; }
inline void set_D2C5BAE967587C6F3D9F2C4551911E0575A1101F_113(__StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F value)
{
___D2C5BAE967587C6F3D9F2C4551911E0575A1101F_113 = value;
}
inline static int32_t get_offset_of_D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_114() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_114)); }
inline __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F get_D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_114() const { return ___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_114; }
inline __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F * get_address_of_D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_114() { return &___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_114; }
inline void set_D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_114(__StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F value)
{
___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_114 = value;
}
inline static int32_t get_offset_of_DA19DB47B583EFCF7825D2E39D661D2354F28219_115() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___DA19DB47B583EFCF7825D2E39D661D2354F28219_115)); }
inline __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB get_DA19DB47B583EFCF7825D2E39D661D2354F28219_115() const { return ___DA19DB47B583EFCF7825D2E39D661D2354F28219_115; }
inline __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB * get_address_of_DA19DB47B583EFCF7825D2E39D661D2354F28219_115() { return &___DA19DB47B583EFCF7825D2E39D661D2354F28219_115; }
inline void set_DA19DB47B583EFCF7825D2E39D661D2354F28219_115(__StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB value)
{
___DA19DB47B583EFCF7825D2E39D661D2354F28219_115 = value;
}
inline static int32_t get_offset_of_DC2B830D8CD59AD6A4E4332D21CA0DCA2821AD82_116() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___DC2B830D8CD59AD6A4E4332D21CA0DCA2821AD82_116)); }
inline __StaticArrayInitTypeSizeU3D56_tE92B90DB812A206A3F9FED2827695B30D2F06D10 get_DC2B830D8CD59AD6A4E4332D21CA0DCA2821AD82_116() const { return ___DC2B830D8CD59AD6A4E4332D21CA0DCA2821AD82_116; }
inline __StaticArrayInitTypeSizeU3D56_tE92B90DB812A206A3F9FED2827695B30D2F06D10 * get_address_of_DC2B830D8CD59AD6A4E4332D21CA0DCA2821AD82_116() { return &___DC2B830D8CD59AD6A4E4332D21CA0DCA2821AD82_116; }
inline void set_DC2B830D8CD59AD6A4E4332D21CA0DCA2821AD82_116(__StaticArrayInitTypeSizeU3D56_tE92B90DB812A206A3F9FED2827695B30D2F06D10 value)
{
___DC2B830D8CD59AD6A4E4332D21CA0DCA2821AD82_116 = value;
}
inline static int32_t get_offset_of_DD3AEFEADB1CD615F3017763F1568179FEE640B0_117() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___DD3AEFEADB1CD615F3017763F1568179FEE640B0_117)); }
inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A get_DD3AEFEADB1CD615F3017763F1568179FEE640B0_117() const { return ___DD3AEFEADB1CD615F3017763F1568179FEE640B0_117; }
inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A * get_address_of_DD3AEFEADB1CD615F3017763F1568179FEE640B0_117() { return &___DD3AEFEADB1CD615F3017763F1568179FEE640B0_117; }
inline void set_DD3AEFEADB1CD615F3017763F1568179FEE640B0_117(__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A value)
{
___DD3AEFEADB1CD615F3017763F1568179FEE640B0_117 = value;
}
inline static int32_t get_offset_of_E1827270A5FE1C85F5352A66FD87BA747213D006_118() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___E1827270A5FE1C85F5352A66FD87BA747213D006_118)); }
inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 get_E1827270A5FE1C85F5352A66FD87BA747213D006_118() const { return ___E1827270A5FE1C85F5352A66FD87BA747213D006_118; }
inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 * get_address_of_E1827270A5FE1C85F5352A66FD87BA747213D006_118() { return &___E1827270A5FE1C85F5352A66FD87BA747213D006_118; }
inline void set_E1827270A5FE1C85F5352A66FD87BA747213D006_118(__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 value)
{
___E1827270A5FE1C85F5352A66FD87BA747213D006_118 = value;
}
inline static int32_t get_offset_of_E45BAB43F7D5D038672B3E3431F92E34A7AF2571_119() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_119)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_E45BAB43F7D5D038672B3E3431F92E34A7AF2571_119() const { return ___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_119; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_E45BAB43F7D5D038672B3E3431F92E34A7AF2571_119() { return &___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_119; }
inline void set_E45BAB43F7D5D038672B3E3431F92E34A7AF2571_119(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_119 = value;
}
inline static int32_t get_offset_of_E75835D001C843F156FBA01B001DFE1B8029AC17_120() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___E75835D001C843F156FBA01B001DFE1B8029AC17_120)); }
inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 get_E75835D001C843F156FBA01B001DFE1B8029AC17_120() const { return ___E75835D001C843F156FBA01B001DFE1B8029AC17_120; }
inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 * get_address_of_E75835D001C843F156FBA01B001DFE1B8029AC17_120() { return &___E75835D001C843F156FBA01B001DFE1B8029AC17_120; }
inline void set_E75835D001C843F156FBA01B001DFE1B8029AC17_120(__StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 value)
{
___E75835D001C843F156FBA01B001DFE1B8029AC17_120 = value;
}
inline static int32_t get_offset_of_E92B39D8233061927D9ACDE54665E68E7535635A_121() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___E92B39D8233061927D9ACDE54665E68E7535635A_121)); }
inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A get_E92B39D8233061927D9ACDE54665E68E7535635A_121() const { return ___E92B39D8233061927D9ACDE54665E68E7535635A_121; }
inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A * get_address_of_E92B39D8233061927D9ACDE54665E68E7535635A_121() { return &___E92B39D8233061927D9ACDE54665E68E7535635A_121; }
inline void set_E92B39D8233061927D9ACDE54665E68E7535635A_121(__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A value)
{
___E92B39D8233061927D9ACDE54665E68E7535635A_121 = value;
}
inline static int32_t get_offset_of_EA9506959484C55CFE0C139C624DF6060E285866_122() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___EA9506959484C55CFE0C139C624DF6060E285866_122)); }
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_EA9506959484C55CFE0C139C624DF6060E285866_122() const { return ___EA9506959484C55CFE0C139C624DF6060E285866_122; }
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_EA9506959484C55CFE0C139C624DF6060E285866_122() { return &___EA9506959484C55CFE0C139C624DF6060E285866_122; }
inline void set_EA9506959484C55CFE0C139C624DF6060E285866_122(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value)
{
___EA9506959484C55CFE0C139C624DF6060E285866_122 = value;
}
inline static int32_t get_offset_of_EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_123() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_123)); }
inline __StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7 get_EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_123() const { return ___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_123; }
inline __StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7 * get_address_of_EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_123() { return &___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_123; }
inline void set_EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_123(__StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7 value)
{
___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_123 = value;
}
inline static int32_t get_offset_of_EBF68F411848D603D059DFDEA2321C5A5EA78044_124() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___EBF68F411848D603D059DFDEA2321C5A5EA78044_124)); }
inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 get_EBF68F411848D603D059DFDEA2321C5A5EA78044_124() const { return ___EBF68F411848D603D059DFDEA2321C5A5EA78044_124; }
inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 * get_address_of_EBF68F411848D603D059DFDEA2321C5A5EA78044_124() { return &___EBF68F411848D603D059DFDEA2321C5A5EA78044_124; }
inline void set_EBF68F411848D603D059DFDEA2321C5A5EA78044_124(__StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 value)
{
___EBF68F411848D603D059DFDEA2321C5A5EA78044_124 = value;
}
inline static int32_t get_offset_of_EC5BB4F59D4B9B2E9ECD3904D44A8275F23AFB11_125() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___EC5BB4F59D4B9B2E9ECD3904D44A8275F23AFB11_125)); }
inline __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C get_EC5BB4F59D4B9B2E9ECD3904D44A8275F23AFB11_125() const { return ___EC5BB4F59D4B9B2E9ECD3904D44A8275F23AFB11_125; }
inline __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C * get_address_of_EC5BB4F59D4B9B2E9ECD3904D44A8275F23AFB11_125() { return &___EC5BB4F59D4B9B2E9ECD3904D44A8275F23AFB11_125; }
inline void set_EC5BB4F59D4B9B2E9ECD3904D44A8275F23AFB11_125(__StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C value)
{
___EC5BB4F59D4B9B2E9ECD3904D44A8275F23AFB11_125 = value;
}
inline static int32_t get_offset_of_EC83FB16C20052BEE2B4025159BC2ED45C9C70C3_126() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___EC83FB16C20052BEE2B4025159BC2ED45C9C70C3_126)); }
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_EC83FB16C20052BEE2B4025159BC2ED45C9C70C3_126() const { return ___EC83FB16C20052BEE2B4025159BC2ED45C9C70C3_126; }
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_EC83FB16C20052BEE2B4025159BC2ED45C9C70C3_126() { return &___EC83FB16C20052BEE2B4025159BC2ED45C9C70C3_126; }
inline void set_EC83FB16C20052BEE2B4025159BC2ED45C9C70C3_126(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value)
{
___EC83FB16C20052BEE2B4025159BC2ED45C9C70C3_126 = value;
}
inline static int32_t get_offset_of_EC89C317EA2BF49A70EFF5E89C691E34733D7C37_127() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_127)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_EC89C317EA2BF49A70EFF5E89C691E34733D7C37_127() const { return ___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_127; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_EC89C317EA2BF49A70EFF5E89C691E34733D7C37_127() { return &___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_127; }
inline void set_EC89C317EA2BF49A70EFF5E89C691E34733D7C37_127(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_127 = value;
}
inline static int32_t get_offset_of_F06E829E62F3AFBC045D064E10A4F5DF7C969612_128() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F06E829E62F3AFBC045D064E10A4F5DF7C969612_128)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_F06E829E62F3AFBC045D064E10A4F5DF7C969612_128() const { return ___F06E829E62F3AFBC045D064E10A4F5DF7C969612_128; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_F06E829E62F3AFBC045D064E10A4F5DF7C969612_128() { return &___F06E829E62F3AFBC045D064E10A4F5DF7C969612_128; }
inline void set_F06E829E62F3AFBC045D064E10A4F5DF7C969612_128(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___F06E829E62F3AFBC045D064E10A4F5DF7C969612_128 = value;
}
inline static int32_t get_offset_of_F073AA332018FDA0D572E99448FFF1D6422BD520_129() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F073AA332018FDA0D572E99448FFF1D6422BD520_129)); }
inline __StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5 get_F073AA332018FDA0D572E99448FFF1D6422BD520_129() const { return ___F073AA332018FDA0D572E99448FFF1D6422BD520_129; }
inline __StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5 * get_address_of_F073AA332018FDA0D572E99448FFF1D6422BD520_129() { return &___F073AA332018FDA0D572E99448FFF1D6422BD520_129; }
inline void set_F073AA332018FDA0D572E99448FFF1D6422BD520_129(__StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5 value)
{
___F073AA332018FDA0D572E99448FFF1D6422BD520_129 = value;
}
inline static int32_t get_offset_of_F34B0E10653402E8F788F8BC3F7CD7090928A429_130() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F34B0E10653402E8F788F8BC3F7CD7090928A429_130)); }
inline __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 get_F34B0E10653402E8F788F8BC3F7CD7090928A429_130() const { return ___F34B0E10653402E8F788F8BC3F7CD7090928A429_130; }
inline __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 * get_address_of_F34B0E10653402E8F788F8BC3F7CD7090928A429_130() { return &___F34B0E10653402E8F788F8BC3F7CD7090928A429_130; }
inline void set_F34B0E10653402E8F788F8BC3F7CD7090928A429_130(__StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 value)
{
___F34B0E10653402E8F788F8BC3F7CD7090928A429_130 = value;
}
inline static int32_t get_offset_of_F37E34BEADB04F34FCC31078A59F49856CA83D5B_131() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F37E34BEADB04F34FCC31078A59F49856CA83D5B_131)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_F37E34BEADB04F34FCC31078A59F49856CA83D5B_131() const { return ___F37E34BEADB04F34FCC31078A59F49856CA83D5B_131; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_F37E34BEADB04F34FCC31078A59F49856CA83D5B_131() { return &___F37E34BEADB04F34FCC31078A59F49856CA83D5B_131; }
inline void set_F37E34BEADB04F34FCC31078A59F49856CA83D5B_131(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___F37E34BEADB04F34FCC31078A59F49856CA83D5B_131 = value;
}
inline static int32_t get_offset_of_F512A9ABF88066AAEB92684F95CC05D8101B462B_132() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F512A9ABF88066AAEB92684F95CC05D8101B462B_132)); }
inline __StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6 get_F512A9ABF88066AAEB92684F95CC05D8101B462B_132() const { return ___F512A9ABF88066AAEB92684F95CC05D8101B462B_132; }
inline __StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6 * get_address_of_F512A9ABF88066AAEB92684F95CC05D8101B462B_132() { return &___F512A9ABF88066AAEB92684F95CC05D8101B462B_132; }
inline void set_F512A9ABF88066AAEB92684F95CC05D8101B462B_132(__StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6 value)
{
___F512A9ABF88066AAEB92684F95CC05D8101B462B_132 = value;
}
inline static int32_t get_offset_of_F8FAABB821300AA500C2CEC6091B3782A7FB44A4_133() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_133)); }
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_F8FAABB821300AA500C2CEC6091B3782A7FB44A4_133() const { return ___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_133; }
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_F8FAABB821300AA500C2CEC6091B3782A7FB44A4_133() { return &___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_133; }
inline void set_F8FAABB821300AA500C2CEC6091B3782A7FB44A4_133(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value)
{
___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_133 = value;
}
inline static int32_t get_offset_of_FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_134() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_134)); }
inline __StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D get_FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_134() const { return ___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_134; }
inline __StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D * get_address_of_FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_134() { return &___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_134; }
inline void set_FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_134(__StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D value)
{
___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_134 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CPRIVATEIMPLEMENTATIONDETAILSU3E_T5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_H
#ifndef ARGUMENTEXCEPTION_TEDCD16F20A09ECE461C3DA766C16EDA8864057D1_H
#define ARGUMENTEXCEPTION_TEDCD16F20A09ECE461C3DA766C16EDA8864057D1_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___m_paramName_17), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ARGUMENTEXCEPTION_TEDCD16F20A09ECE461C3DA766C16EDA8864057D1_H
#ifndef ARITHMETICEXCEPTION_TF9EF5FE94597830EF315C5934258F994B8648269_H
#define ARITHMETICEXCEPTION_TF9EF5FE94597830EF315C5934258F994B8648269_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ArithmeticException
struct ArithmeticException_tF9EF5FE94597830EF315C5934258F994B8648269 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ARITHMETICEXCEPTION_TF9EF5FE94597830EF315C5934258F994B8648269_H
#ifndef ATTRIBUTETARGETS_T7CC0DE6D2B11C951E525EE69AD02313792932741_H
#define ATTRIBUTETARGETS_T7CC0DE6D2B11C951E525EE69AD02313792932741_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.AttributeTargets
struct AttributeTargets_t7CC0DE6D2B11C951E525EE69AD02313792932741
{
public:
// System.Int32 System.AttributeTargets::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AttributeTargets_t7CC0DE6D2B11C951E525EE69AD02313792932741, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ATTRIBUTETARGETS_T7CC0DE6D2B11C951E525EE69AD02313792932741_H
#ifndef CONSOLEKEY_T0196714F06D59B40580F7B85EA2663D81394682C_H
#define CONSOLEKEY_T0196714F06D59B40580F7B85EA2663D81394682C_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ConsoleKey
struct ConsoleKey_t0196714F06D59B40580F7B85EA2663D81394682C
{
public:
// System.Int32 System.ConsoleKey::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ConsoleKey_t0196714F06D59B40580F7B85EA2663D81394682C, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONSOLEKEY_T0196714F06D59B40580F7B85EA2663D81394682C_H
#ifndef CONSOLEMODIFIERS_TCB55098B71E4DCCEE972B1056E64D1B8AB9EAB34_H
#define CONSOLEMODIFIERS_TCB55098B71E4DCCEE972B1056E64D1B8AB9EAB34_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ConsoleModifiers
struct ConsoleModifiers_tCB55098B71E4DCCEE972B1056E64D1B8AB9EAB34
{
public:
// System.Int32 System.ConsoleModifiers::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ConsoleModifiers_tCB55098B71E4DCCEE972B1056E64D1B8AB9EAB34, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONSOLEMODIFIERS_TCB55098B71E4DCCEE972B1056E64D1B8AB9EAB34_H
#ifndef DELEGATE_T_H
#define DELEGATE_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___m_target_2), 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((&___method_info_7), 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((&___original_method_info_8), 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((&___data_9), 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// 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;
};
#endif // DELEGATE_T_H
#ifndef FORMATEXCEPTION_T2808E076CDE4650AF89F55FD78F49290D0EC5BDC_H
#define FORMATEXCEPTION_T2808E076CDE4650AF89F55FD78F49290D0EC5BDC_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.FormatException
struct FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FORMATEXCEPTION_T2808E076CDE4650AF89F55FD78F49290D0EC5BDC_H
#ifndef NUMBERSTYLES_TB0ADA2D9CCAA236331AED14C42BE5832B2351592_H
#define NUMBERSTYLES_TB0ADA2D9CCAA236331AED14C42BE5832B2351592_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Globalization.NumberStyles
struct NumberStyles_tB0ADA2D9CCAA236331AED14C42BE5832B2351592
{
public:
// System.Int32 System.Globalization.NumberStyles::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(NumberStyles_tB0ADA2D9CCAA236331AED14C42BE5832B2351592, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NUMBERSTYLES_TB0ADA2D9CCAA236331AED14C42BE5832B2351592_H
#ifndef FILEACCESS_T31950F3A853EAE886AC8F13EA7FC03A3EB46E3F6_H
#define FILEACCESS_T31950F3A853EAE886AC8F13EA7FC03A3EB46E3F6_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.FileAccess
struct FileAccess_t31950F3A853EAE886AC8F13EA7FC03A3EB46E3F6
{
public:
// System.Int32 System.IO.FileAccess::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FileAccess_t31950F3A853EAE886AC8F13EA7FC03A3EB46E3F6, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FILEACCESS_T31950F3A853EAE886AC8F13EA7FC03A3EB46E3F6_H
#ifndef FILEMODE_TD19D05B1E6CAF201F88401B04FDB25227664C419_H
#define FILEMODE_TD19D05B1E6CAF201F88401B04FDB25227664C419_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.FileMode
struct FileMode_tD19D05B1E6CAF201F88401B04FDB25227664C419
{
public:
// System.Int32 System.IO.FileMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FileMode_tD19D05B1E6CAF201F88401B04FDB25227664C419, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FILEMODE_TD19D05B1E6CAF201F88401B04FDB25227664C419_H
#ifndef FILEOPTIONS_T12395DCB579B97DF4788AB79553F8815F9625FA7_H
#define FILEOPTIONS_T12395DCB579B97DF4788AB79553F8815F9625FA7_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.FileOptions
struct FileOptions_t12395DCB579B97DF4788AB79553F8815F9625FA7
{
public:
// System.Int32 System.IO.FileOptions::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FileOptions_t12395DCB579B97DF4788AB79553F8815F9625FA7, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FILEOPTIONS_T12395DCB579B97DF4788AB79553F8815F9625FA7_H
#ifndef FILESHARE_T9AA8473BBE5DD8532CEAF3F48F26DA5A25A93684_H
#define FILESHARE_T9AA8473BBE5DD8532CEAF3F48F26DA5A25A93684_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.FileShare
struct FileShare_t9AA8473BBE5DD8532CEAF3F48F26DA5A25A93684
{
public:
// System.Int32 System.IO.FileShare::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FileShare_t9AA8473BBE5DD8532CEAF3F48F26DA5A25A93684, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FILESHARE_T9AA8473BBE5DD8532CEAF3F48F26DA5A25A93684_H
#ifndef IOEXCEPTION_T60E052020EDE4D3075F57A1DCC224FF8864354BA_H
#define IOEXCEPTION_T60E052020EDE4D3075F57A1DCC224FF8864354BA_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.IOException
struct IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
// System.String System.IO.IOException::_maybeFullPath
String_t* ____maybeFullPath_17;
public:
inline static int32_t get_offset_of__maybeFullPath_17() { return static_cast<int32_t>(offsetof(IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA, ____maybeFullPath_17)); }
inline String_t* get__maybeFullPath_17() const { return ____maybeFullPath_17; }
inline String_t** get_address_of__maybeFullPath_17() { return &____maybeFullPath_17; }
inline void set__maybeFullPath_17(String_t* value)
{
____maybeFullPath_17 = value;
Il2CppCodeGenWriteBarrier((&____maybeFullPath_17), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // IOEXCEPTION_T60E052020EDE4D3075F57A1DCC224FF8864354BA_H
#ifndef SEEKORIGIN_TAC0AF155E3D8B36359FAD8A95FACA23169D55BB3_H
#define SEEKORIGIN_TAC0AF155E3D8B36359FAD8A95FACA23169D55BB3_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.SeekOrigin
struct SeekOrigin_tAC0AF155E3D8B36359FAD8A95FACA23169D55BB3
{
public:
// System.Int32 System.IO.SeekOrigin::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SeekOrigin_tAC0AF155E3D8B36359FAD8A95FACA23169D55BB3, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SEEKORIGIN_TAC0AF155E3D8B36359FAD8A95FACA23169D55BB3_H
#ifndef STREAMREADER_T62E68063760DCD2FC036AE132DE69C24B7ED001E_H
#define STREAMREADER_T62E68063760DCD2FC036AE132DE69C24B7ED001E_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.StreamReader
struct StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E : public TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A
{
public:
// System.IO.Stream System.IO.StreamReader::stream
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream_5;
// System.Text.Encoding System.IO.StreamReader::encoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding_6;
// System.Text.Decoder System.IO.StreamReader::decoder
Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * ___decoder_7;
// System.Byte[] System.IO.StreamReader::byteBuffer
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___byteBuffer_8;
// System.Char[] System.IO.StreamReader::charBuffer
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___charBuffer_9;
// System.Byte[] System.IO.StreamReader::_preamble
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ____preamble_10;
// System.Int32 System.IO.StreamReader::charPos
int32_t ___charPos_11;
// System.Int32 System.IO.StreamReader::charLen
int32_t ___charLen_12;
// System.Int32 System.IO.StreamReader::byteLen
int32_t ___byteLen_13;
// System.Int32 System.IO.StreamReader::bytePos
int32_t ___bytePos_14;
// System.Int32 System.IO.StreamReader::_maxCharsPerBuffer
int32_t ____maxCharsPerBuffer_15;
// System.Boolean System.IO.StreamReader::_detectEncoding
bool ____detectEncoding_16;
// System.Boolean System.IO.StreamReader::_checkPreamble
bool ____checkPreamble_17;
// System.Boolean System.IO.StreamReader::_isBlocked
bool ____isBlocked_18;
// System.Boolean System.IO.StreamReader::_closable
bool ____closable_19;
// System.Threading.Tasks.Task modreq(System.Runtime.CompilerServices.IsVolatile) System.IO.StreamReader::_asyncReadTask
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ____asyncReadTask_20;
public:
inline static int32_t get_offset_of_stream_5() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___stream_5)); }
inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * get_stream_5() const { return ___stream_5; }
inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 ** get_address_of_stream_5() { return &___stream_5; }
inline void set_stream_5(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * value)
{
___stream_5 = value;
Il2CppCodeGenWriteBarrier((&___stream_5), value);
}
inline static int32_t get_offset_of_encoding_6() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___encoding_6)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_encoding_6() const { return ___encoding_6; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_encoding_6() { return &___encoding_6; }
inline void set_encoding_6(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___encoding_6 = value;
Il2CppCodeGenWriteBarrier((&___encoding_6), value);
}
inline static int32_t get_offset_of_decoder_7() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___decoder_7)); }
inline Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * get_decoder_7() const { return ___decoder_7; }
inline Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 ** get_address_of_decoder_7() { return &___decoder_7; }
inline void set_decoder_7(Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * value)
{
___decoder_7 = value;
Il2CppCodeGenWriteBarrier((&___decoder_7), value);
}
inline static int32_t get_offset_of_byteBuffer_8() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___byteBuffer_8)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_byteBuffer_8() const { return ___byteBuffer_8; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_byteBuffer_8() { return &___byteBuffer_8; }
inline void set_byteBuffer_8(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___byteBuffer_8 = value;
Il2CppCodeGenWriteBarrier((&___byteBuffer_8), value);
}
inline static int32_t get_offset_of_charBuffer_9() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___charBuffer_9)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_charBuffer_9() const { return ___charBuffer_9; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_charBuffer_9() { return &___charBuffer_9; }
inline void set_charBuffer_9(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___charBuffer_9 = value;
Il2CppCodeGenWriteBarrier((&___charBuffer_9), value);
}
inline static int32_t get_offset_of__preamble_10() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____preamble_10)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get__preamble_10() const { return ____preamble_10; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of__preamble_10() { return &____preamble_10; }
inline void set__preamble_10(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
____preamble_10 = value;
Il2CppCodeGenWriteBarrier((&____preamble_10), value);
}
inline static int32_t get_offset_of_charPos_11() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___charPos_11)); }
inline int32_t get_charPos_11() const { return ___charPos_11; }
inline int32_t* get_address_of_charPos_11() { return &___charPos_11; }
inline void set_charPos_11(int32_t value)
{
___charPos_11 = value;
}
inline static int32_t get_offset_of_charLen_12() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___charLen_12)); }
inline int32_t get_charLen_12() const { return ___charLen_12; }
inline int32_t* get_address_of_charLen_12() { return &___charLen_12; }
inline void set_charLen_12(int32_t value)
{
___charLen_12 = value;
}
inline static int32_t get_offset_of_byteLen_13() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___byteLen_13)); }
inline int32_t get_byteLen_13() const { return ___byteLen_13; }
inline int32_t* get_address_of_byteLen_13() { return &___byteLen_13; }
inline void set_byteLen_13(int32_t value)
{
___byteLen_13 = value;
}
inline static int32_t get_offset_of_bytePos_14() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___bytePos_14)); }
inline int32_t get_bytePos_14() const { return ___bytePos_14; }
inline int32_t* get_address_of_bytePos_14() { return &___bytePos_14; }
inline void set_bytePos_14(int32_t value)
{
___bytePos_14 = value;
}
inline static int32_t get_offset_of__maxCharsPerBuffer_15() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____maxCharsPerBuffer_15)); }
inline int32_t get__maxCharsPerBuffer_15() const { return ____maxCharsPerBuffer_15; }
inline int32_t* get_address_of__maxCharsPerBuffer_15() { return &____maxCharsPerBuffer_15; }
inline void set__maxCharsPerBuffer_15(int32_t value)
{
____maxCharsPerBuffer_15 = value;
}
inline static int32_t get_offset_of__detectEncoding_16() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____detectEncoding_16)); }
inline bool get__detectEncoding_16() const { return ____detectEncoding_16; }
inline bool* get_address_of__detectEncoding_16() { return &____detectEncoding_16; }
inline void set__detectEncoding_16(bool value)
{
____detectEncoding_16 = value;
}
inline static int32_t get_offset_of__checkPreamble_17() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____checkPreamble_17)); }
inline bool get__checkPreamble_17() const { return ____checkPreamble_17; }
inline bool* get_address_of__checkPreamble_17() { return &____checkPreamble_17; }
inline void set__checkPreamble_17(bool value)
{
____checkPreamble_17 = value;
}
inline static int32_t get_offset_of__isBlocked_18() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____isBlocked_18)); }
inline bool get__isBlocked_18() const { return ____isBlocked_18; }
inline bool* get_address_of__isBlocked_18() { return &____isBlocked_18; }
inline void set__isBlocked_18(bool value)
{
____isBlocked_18 = value;
}
inline static int32_t get_offset_of__closable_19() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____closable_19)); }
inline bool get__closable_19() const { return ____closable_19; }
inline bool* get_address_of__closable_19() { return &____closable_19; }
inline void set__closable_19(bool value)
{
____closable_19 = value;
}
inline static int32_t get_offset_of__asyncReadTask_20() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____asyncReadTask_20)); }
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * get__asyncReadTask_20() const { return ____asyncReadTask_20; }
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 ** get_address_of__asyncReadTask_20() { return &____asyncReadTask_20; }
inline void set__asyncReadTask_20(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * value)
{
____asyncReadTask_20 = value;
Il2CppCodeGenWriteBarrier((&____asyncReadTask_20), value);
}
};
struct StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E_StaticFields
{
public:
// System.IO.StreamReader System.IO.StreamReader::Null
StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * ___Null_4;
public:
inline static int32_t get_offset_of_Null_4() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E_StaticFields, ___Null_4)); }
inline StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * get_Null_4() const { return ___Null_4; }
inline StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E ** get_address_of_Null_4() { return &___Null_4; }
inline void set_Null_4(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * value)
{
___Null_4 = value;
Il2CppCodeGenWriteBarrier((&___Null_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STREAMREADER_T62E68063760DCD2FC036AE132DE69C24B7ED001E_H
#ifndef STREAMWRITER_T989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_H
#define STREAMWRITER_T989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.StreamWriter
struct StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E : public TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0
{
public:
// System.IO.Stream System.IO.StreamWriter::stream
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream_12;
// System.Text.Encoding System.IO.StreamWriter::encoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding_13;
// System.Text.Encoder System.IO.StreamWriter::encoder
Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 * ___encoder_14;
// System.Byte[] System.IO.StreamWriter::byteBuffer
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___byteBuffer_15;
// System.Char[] System.IO.StreamWriter::charBuffer
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___charBuffer_16;
// System.Int32 System.IO.StreamWriter::charPos
int32_t ___charPos_17;
// System.Int32 System.IO.StreamWriter::charLen
int32_t ___charLen_18;
// System.Boolean System.IO.StreamWriter::autoFlush
bool ___autoFlush_19;
// System.Boolean System.IO.StreamWriter::haveWrittenPreamble
bool ___haveWrittenPreamble_20;
// System.Boolean System.IO.StreamWriter::closable
bool ___closable_21;
// System.Threading.Tasks.Task modreq(System.Runtime.CompilerServices.IsVolatile) System.IO.StreamWriter::_asyncWriteTask
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ____asyncWriteTask_22;
public:
inline static int32_t get_offset_of_stream_12() { return static_cast<int32_t>(offsetof(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E, ___stream_12)); }
inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * get_stream_12() const { return ___stream_12; }
inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 ** get_address_of_stream_12() { return &___stream_12; }
inline void set_stream_12(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * value)
{
___stream_12 = value;
Il2CppCodeGenWriteBarrier((&___stream_12), value);
}
inline static int32_t get_offset_of_encoding_13() { return static_cast<int32_t>(offsetof(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E, ___encoding_13)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_encoding_13() const { return ___encoding_13; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_encoding_13() { return &___encoding_13; }
inline void set_encoding_13(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___encoding_13 = value;
Il2CppCodeGenWriteBarrier((&___encoding_13), value);
}
inline static int32_t get_offset_of_encoder_14() { return static_cast<int32_t>(offsetof(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E, ___encoder_14)); }
inline Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 * get_encoder_14() const { return ___encoder_14; }
inline Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 ** get_address_of_encoder_14() { return &___encoder_14; }
inline void set_encoder_14(Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 * value)
{
___encoder_14 = value;
Il2CppCodeGenWriteBarrier((&___encoder_14), value);
}
inline static int32_t get_offset_of_byteBuffer_15() { return static_cast<int32_t>(offsetof(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E, ___byteBuffer_15)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_byteBuffer_15() const { return ___byteBuffer_15; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_byteBuffer_15() { return &___byteBuffer_15; }
inline void set_byteBuffer_15(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___byteBuffer_15 = value;
Il2CppCodeGenWriteBarrier((&___byteBuffer_15), value);
}
inline static int32_t get_offset_of_charBuffer_16() { return static_cast<int32_t>(offsetof(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E, ___charBuffer_16)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_charBuffer_16() const { return ___charBuffer_16; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_charBuffer_16() { return &___charBuffer_16; }
inline void set_charBuffer_16(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___charBuffer_16 = value;
Il2CppCodeGenWriteBarrier((&___charBuffer_16), value);
}
inline static int32_t get_offset_of_charPos_17() { return static_cast<int32_t>(offsetof(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E, ___charPos_17)); }
inline int32_t get_charPos_17() const { return ___charPos_17; }
inline int32_t* get_address_of_charPos_17() { return &___charPos_17; }
inline void set_charPos_17(int32_t value)
{
___charPos_17 = value;
}
inline static int32_t get_offset_of_charLen_18() { return static_cast<int32_t>(offsetof(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E, ___charLen_18)); }
inline int32_t get_charLen_18() const { return ___charLen_18; }
inline int32_t* get_address_of_charLen_18() { return &___charLen_18; }
inline void set_charLen_18(int32_t value)
{
___charLen_18 = value;
}
inline static int32_t get_offset_of_autoFlush_19() { return static_cast<int32_t>(offsetof(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E, ___autoFlush_19)); }
inline bool get_autoFlush_19() const { return ___autoFlush_19; }
inline bool* get_address_of_autoFlush_19() { return &___autoFlush_19; }
inline void set_autoFlush_19(bool value)
{
___autoFlush_19 = value;
}
inline static int32_t get_offset_of_haveWrittenPreamble_20() { return static_cast<int32_t>(offsetof(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E, ___haveWrittenPreamble_20)); }
inline bool get_haveWrittenPreamble_20() const { return ___haveWrittenPreamble_20; }
inline bool* get_address_of_haveWrittenPreamble_20() { return &___haveWrittenPreamble_20; }
inline void set_haveWrittenPreamble_20(bool value)
{
___haveWrittenPreamble_20 = value;
}
inline static int32_t get_offset_of_closable_21() { return static_cast<int32_t>(offsetof(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E, ___closable_21)); }
inline bool get_closable_21() const { return ___closable_21; }
inline bool* get_address_of_closable_21() { return &___closable_21; }
inline void set_closable_21(bool value)
{
___closable_21 = value;
}
inline static int32_t get_offset_of__asyncWriteTask_22() { return static_cast<int32_t>(offsetof(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E, ____asyncWriteTask_22)); }
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * get__asyncWriteTask_22() const { return ____asyncWriteTask_22; }
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 ** get_address_of__asyncWriteTask_22() { return &____asyncWriteTask_22; }
inline void set__asyncWriteTask_22(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * value)
{
____asyncWriteTask_22 = value;
Il2CppCodeGenWriteBarrier((&____asyncWriteTask_22), value);
}
};
struct StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_StaticFields
{
public:
// System.IO.StreamWriter System.IO.StreamWriter::Null
StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * ___Null_11;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.IO.StreamWriter::_UTF8NoBOM
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ____UTF8NoBOM_23;
public:
inline static int32_t get_offset_of_Null_11() { return static_cast<int32_t>(offsetof(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_StaticFields, ___Null_11)); }
inline StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * get_Null_11() const { return ___Null_11; }
inline StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E ** get_address_of_Null_11() { return &___Null_11; }
inline void set_Null_11(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * value)
{
___Null_11 = value;
Il2CppCodeGenWriteBarrier((&___Null_11), value);
}
inline static int32_t get_offset_of__UTF8NoBOM_23() { return static_cast<int32_t>(offsetof(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_StaticFields, ____UTF8NoBOM_23)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get__UTF8NoBOM_23() const { return ____UTF8NoBOM_23; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of__UTF8NoBOM_23() { return &____UTF8NoBOM_23; }
inline void set__UTF8NoBOM_23(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
____UTF8NoBOM_23 = value;
Il2CppCodeGenWriteBarrier((&____UTF8NoBOM_23), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STREAMWRITER_T989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_H
#ifndef STRINGREADER_T3095DEB3D26F40D1A7F9B76835D80AFE70E47E12_H
#define STRINGREADER_T3095DEB3D26F40D1A7F9B76835D80AFE70E47E12_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.StringReader
struct StringReader_t3095DEB3D26F40D1A7F9B76835D80AFE70E47E12 : public TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A
{
public:
// System.String System.IO.StringReader::_s
String_t* ____s_4;
// System.Int32 System.IO.StringReader::_pos
int32_t ____pos_5;
// System.Int32 System.IO.StringReader::_length
int32_t ____length_6;
public:
inline static int32_t get_offset_of__s_4() { return static_cast<int32_t>(offsetof(StringReader_t3095DEB3D26F40D1A7F9B76835D80AFE70E47E12, ____s_4)); }
inline String_t* get__s_4() const { return ____s_4; }
inline String_t** get_address_of__s_4() { return &____s_4; }
inline void set__s_4(String_t* value)
{
____s_4 = value;
Il2CppCodeGenWriteBarrier((&____s_4), value);
}
inline static int32_t get_offset_of__pos_5() { return static_cast<int32_t>(offsetof(StringReader_t3095DEB3D26F40D1A7F9B76835D80AFE70E47E12, ____pos_5)); }
inline int32_t get__pos_5() const { return ____pos_5; }
inline int32_t* get_address_of__pos_5() { return &____pos_5; }
inline void set__pos_5(int32_t value)
{
____pos_5 = value;
}
inline static int32_t get_offset_of__length_6() { return static_cast<int32_t>(offsetof(StringReader_t3095DEB3D26F40D1A7F9B76835D80AFE70E47E12, ____length_6)); }
inline int32_t get__length_6() const { return ____length_6; }
inline int32_t* get_address_of__length_6() { return &____length_6; }
inline void set__length_6(int32_t value)
{
____length_6 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STRINGREADER_T3095DEB3D26F40D1A7F9B76835D80AFE70E47E12_H
#ifndef NULLTEXTREADER_TCEFA26A066B5EE58FEC359F4D3791D42EB7A03C1_H
#define NULLTEXTREADER_TCEFA26A066B5EE58FEC359F4D3791D42EB7A03C1_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.TextReader_NullTextReader
struct NullTextReader_tCEFA26A066B5EE58FEC359F4D3791D42EB7A03C1 : public TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NULLTEXTREADER_TCEFA26A066B5EE58FEC359F4D3791D42EB7A03C1_H
#ifndef SYNCTEXTREADER_T7F10F41C83862CC5CE2C92DD5A7DF48D8A645EB8_H
#define SYNCTEXTREADER_T7F10F41C83862CC5CE2C92DD5A7DF48D8A645EB8_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.TextReader_SyncTextReader
struct SyncTextReader_t7F10F41C83862CC5CE2C92DD5A7DF48D8A645EB8 : public TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A
{
public:
// System.IO.TextReader System.IO.TextReader_SyncTextReader::_in
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * ____in_4;
public:
inline static int32_t get_offset_of__in_4() { return static_cast<int32_t>(offsetof(SyncTextReader_t7F10F41C83862CC5CE2C92DD5A7DF48D8A645EB8, ____in_4)); }
inline TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * get__in_4() const { return ____in_4; }
inline TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A ** get_address_of__in_4() { return &____in_4; }
inline void set__in_4(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * value)
{
____in_4 = value;
Il2CppCodeGenWriteBarrier((&____in_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SYNCTEXTREADER_T7F10F41C83862CC5CE2C92DD5A7DF48D8A645EB8_H
#ifndef NULLTEXTWRITER_T0831C630ABC3E000027E0BD4A8FC59B3D416E3C5_H
#define NULLTEXTWRITER_T0831C630ABC3E000027E0BD4A8FC59B3D416E3C5_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.TextWriter_NullTextWriter
struct NullTextWriter_t0831C630ABC3E000027E0BD4A8FC59B3D416E3C5 : public TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NULLTEXTWRITER_T0831C630ABC3E000027E0BD4A8FC59B3D416E3C5_H
#ifndef SYNCTEXTWRITER_T6F72D25BA0E09A41BB4AAAE9B02533644C78FC93_H
#define SYNCTEXTWRITER_T6F72D25BA0E09A41BB4AAAE9B02533644C78FC93_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.TextWriter_SyncTextWriter
struct SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93 : public TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0
{
public:
// System.IO.TextWriter System.IO.TextWriter_SyncTextWriter::_out
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * ____out_11;
public:
inline static int32_t get_offset_of__out_11() { return static_cast<int32_t>(offsetof(SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93, ____out_11)); }
inline TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * get__out_11() const { return ____out_11; }
inline TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 ** get_address_of__out_11() { return &____out_11; }
inline void set__out_11(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * value)
{
____out_11 = value;
Il2CppCodeGenWriteBarrier((&____out_11), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SYNCTEXTWRITER_T6F72D25BA0E09A41BB4AAAE9B02533644C78FC93_H
#ifndef INDEXOUTOFRANGEEXCEPTION_TEC7665FC66525AB6A6916A7EB505E5591683F0CF_H
#define INDEXOUTOFRANGEEXCEPTION_TEC7665FC66525AB6A6916A7EB505E5591683F0CF_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IndexOutOfRangeException
struct IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INDEXOUTOFRANGEEXCEPTION_TEC7665FC66525AB6A6916A7EB505E5591683F0CF_H
#ifndef INT16ENUM_TF03C0C5772A892EB552607A1C0DEF122A930BE80_H
#define INT16ENUM_TF03C0C5772A892EB552607A1C0DEF122A930BE80_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int16Enum
struct Int16Enum_tF03C0C5772A892EB552607A1C0DEF122A930BE80
{
public:
// System.Int16 System.Int16Enum::value__
int16_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Int16Enum_tF03C0C5772A892EB552607A1C0DEF122A930BE80, ___value___2)); }
inline int16_t get_value___2() const { return ___value___2; }
inline int16_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int16_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INT16ENUM_TF03C0C5772A892EB552607A1C0DEF122A930BE80_H
#ifndef INT32ENUM_T6312CE4586C17FE2E2E513D2E7655B574F10FDCD_H
#define INT32ENUM_T6312CE4586C17FE2E2E513D2E7655B574F10FDCD_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INT32ENUM_T6312CE4586C17FE2E2E513D2E7655B574F10FDCD_H
#ifndef INT64ENUM_T7DD4BDEADB660E726D94B249B352C2E2ABC1E580_H
#define INT64ENUM_T7DD4BDEADB660E726D94B249B352C2E2ABC1E580_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int64Enum
struct Int64Enum_t7DD4BDEADB660E726D94B249B352C2E2ABC1E580
{
public:
// System.Int64 System.Int64Enum::value__
int64_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Int64Enum_t7DD4BDEADB660E726D94B249B352C2E2ABC1E580, ___value___2)); }
inline int64_t get_value___2() const { return ___value___2; }
inline int64_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int64_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INT64ENUM_T7DD4BDEADB660E726D94B249B352C2E2ABC1E580_H
#ifndef INVALIDCASTEXCEPTION_T91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_H
#define INVALIDCASTEXCEPTION_T91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.InvalidCastException
struct InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INVALIDCASTEXCEPTION_T91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_H
#ifndef INVALIDOPERATIONEXCEPTION_T0530E734D823F78310CAFAFA424CA5164D93A1F1_H
#define INVALIDOPERATIONEXCEPTION_T0530E734D823F78310CAFAFA424CA5164D93A1F1_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.InvalidOperationException
struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INVALIDOPERATIONEXCEPTION_T0530E734D823F78310CAFAFA424CA5164D93A1F1_H
#ifndef INVALIDPROGRAMEXCEPTION_TF3B9678AC1136E8FA85EE6F0069D39578DECB358_H
#define INVALIDPROGRAMEXCEPTION_TF3B9678AC1136E8FA85EE6F0069D39578DECB358_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.InvalidProgramException
struct InvalidProgramException_tF3B9678AC1136E8FA85EE6F0069D39578DECB358 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INVALIDPROGRAMEXCEPTION_TF3B9678AC1136E8FA85EE6F0069D39578DECB358_H
#ifndef MEMBERACCESSEXCEPTION_TDA869AFFB4FC1EA0EEF3143D85999710AC4774F0_H
#define MEMBERACCESSEXCEPTION_TDA869AFFB4FC1EA0EEF3143D85999710AC4774F0_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.MemberAccessException
struct MemberAccessException_tDA869AFFB4FC1EA0EEF3143D85999710AC4774F0 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MEMBERACCESSEXCEPTION_TDA869AFFB4FC1EA0EEF3143D85999710AC4774F0_H
#ifndef MONOASYNCCALL_T5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD_H
#define MONOASYNCCALL_T5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.MonoAsyncCall
struct MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD : public RuntimeObject
{
public:
// System.Object System.MonoAsyncCall::msg
RuntimeObject * ___msg_0;
// System.IntPtr System.MonoAsyncCall::cb_method
intptr_t ___cb_method_1;
// System.Object System.MonoAsyncCall::cb_target
RuntimeObject * ___cb_target_2;
// System.Object System.MonoAsyncCall::state
RuntimeObject * ___state_3;
// System.Object System.MonoAsyncCall::res
RuntimeObject * ___res_4;
// System.Object System.MonoAsyncCall::out_args
RuntimeObject * ___out_args_5;
public:
inline static int32_t get_offset_of_msg_0() { return static_cast<int32_t>(offsetof(MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD, ___msg_0)); }
inline RuntimeObject * get_msg_0() const { return ___msg_0; }
inline RuntimeObject ** get_address_of_msg_0() { return &___msg_0; }
inline void set_msg_0(RuntimeObject * value)
{
___msg_0 = value;
Il2CppCodeGenWriteBarrier((&___msg_0), value);
}
inline static int32_t get_offset_of_cb_method_1() { return static_cast<int32_t>(offsetof(MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD, ___cb_method_1)); }
inline intptr_t get_cb_method_1() const { return ___cb_method_1; }
inline intptr_t* get_address_of_cb_method_1() { return &___cb_method_1; }
inline void set_cb_method_1(intptr_t value)
{
___cb_method_1 = value;
}
inline static int32_t get_offset_of_cb_target_2() { return static_cast<int32_t>(offsetof(MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD, ___cb_target_2)); }
inline RuntimeObject * get_cb_target_2() const { return ___cb_target_2; }
inline RuntimeObject ** get_address_of_cb_target_2() { return &___cb_target_2; }
inline void set_cb_target_2(RuntimeObject * value)
{
___cb_target_2 = value;
Il2CppCodeGenWriteBarrier((&___cb_target_2), value);
}
inline static int32_t get_offset_of_state_3() { return static_cast<int32_t>(offsetof(MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD, ___state_3)); }
inline RuntimeObject * get_state_3() const { return ___state_3; }
inline RuntimeObject ** get_address_of_state_3() { return &___state_3; }
inline void set_state_3(RuntimeObject * value)
{
___state_3 = value;
Il2CppCodeGenWriteBarrier((&___state_3), value);
}
inline static int32_t get_offset_of_res_4() { return static_cast<int32_t>(offsetof(MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD, ___res_4)); }
inline RuntimeObject * get_res_4() const { return ___res_4; }
inline RuntimeObject ** get_address_of_res_4() { return &___res_4; }
inline void set_res_4(RuntimeObject * value)
{
___res_4 = value;
Il2CppCodeGenWriteBarrier((&___res_4), value);
}
inline static int32_t get_offset_of_out_args_5() { return static_cast<int32_t>(offsetof(MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD, ___out_args_5)); }
inline RuntimeObject * get_out_args_5() const { return ___out_args_5; }
inline RuntimeObject ** get_address_of_out_args_5() { return &___out_args_5; }
inline void set_out_args_5(RuntimeObject * value)
{
___out_args_5 = value;
Il2CppCodeGenWriteBarrier((&___out_args_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.MonoAsyncCall
struct MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD_marshaled_pinvoke
{
Il2CppIUnknown* ___msg_0;
intptr_t ___cb_method_1;
Il2CppIUnknown* ___cb_target_2;
Il2CppIUnknown* ___state_3;
Il2CppIUnknown* ___res_4;
Il2CppIUnknown* ___out_args_5;
};
// Native definition for COM marshalling of System.MonoAsyncCall
struct MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD_marshaled_com
{
Il2CppIUnknown* ___msg_0;
intptr_t ___cb_method_1;
Il2CppIUnknown* ___cb_target_2;
Il2CppIUnknown* ___state_3;
Il2CppIUnknown* ___res_4;
Il2CppIUnknown* ___out_args_5;
};
#endif // MONOASYNCCALL_T5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD_H
#ifndef MONOLIMITATIONATTRIBUTE_T60914056F9C7FD1017B4187D3C41E5D199C362E4_H
#define MONOLIMITATIONATTRIBUTE_T60914056F9C7FD1017B4187D3C41E5D199C362E4_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.MonoLimitationAttribute
struct MonoLimitationAttribute_t60914056F9C7FD1017B4187D3C41E5D199C362E4 : public MonoTODOAttribute_t0D37CE020492CC4F1A620F173C52E5780E2A9666
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MONOLIMITATIONATTRIBUTE_T60914056F9C7FD1017B4187D3C41E5D199C362E4_H
#ifndef MULTICASTNOTSUPPORTEDEXCEPTION_TDAC3C31B20ACDAE95C396052199B385C00C41211_H
#define MULTICASTNOTSUPPORTEDEXCEPTION_TDAC3C31B20ACDAE95C396052199B385C00C41211_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.MulticastNotSupportedException
struct MulticastNotSupportedException_tDAC3C31B20ACDAE95C396052199B385C00C41211 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MULTICASTNOTSUPPORTEDEXCEPTION_TDAC3C31B20ACDAE95C396052199B385C00C41211_H
#ifndef NOTIMPLEMENTEDEXCEPTION_T8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4_H
#define NOTIMPLEMENTEDEXCEPTION_T8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.NotImplementedException
struct NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NOTIMPLEMENTEDEXCEPTION_T8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4_H
#ifndef NOTSUPPORTEDEXCEPTION_TE75B318D6590A02A5D9B29FD97409B1750FA0010_H
#define NOTSUPPORTEDEXCEPTION_TE75B318D6590A02A5D9B29FD97409B1750FA0010_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.NotSupportedException
struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NOTSUPPORTEDEXCEPTION_TE75B318D6590A02A5D9B29FD97409B1750FA0010_H
#ifndef NULLREFERENCEEXCEPTION_T204B194BC4DDA3259AF5A8633EA248AE5977ABDC_H
#define NULLREFERENCEEXCEPTION_T204B194BC4DDA3259AF5A8633EA248AE5977ABDC_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.NullReferenceException
struct NullReferenceException_t204B194BC4DDA3259AF5A8633EA248AE5977ABDC : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NULLREFERENCEEXCEPTION_T204B194BC4DDA3259AF5A8633EA248AE5977ABDC_H
#ifndef OPERATIONCANCELEDEXCEPTION_TD28B1AE59ACCE4D46333BFE398395B8D75D76A90_H
#define OPERATIONCANCELEDEXCEPTION_TD28B1AE59ACCE4D46333BFE398395B8D75D76A90_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.OperationCanceledException
struct OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
// System.Threading.CancellationToken System.OperationCanceledException::_cancellationToken
CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ____cancellationToken_17;
public:
inline static int32_t get_offset_of__cancellationToken_17() { return static_cast<int32_t>(offsetof(OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90, ____cancellationToken_17)); }
inline CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB get__cancellationToken_17() const { return ____cancellationToken_17; }
inline CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB * get_address_of__cancellationToken_17() { return &____cancellationToken_17; }
inline void set__cancellationToken_17(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB value)
{
____cancellationToken_17 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // OPERATIONCANCELEDEXCEPTION_TD28B1AE59ACCE4D46333BFE398395B8D75D76A90_H
#ifndef ASSEMBLY_T_H
#define ASSEMBLY_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Assembly
struct Assembly_t : public RuntimeObject
{
public:
// System.IntPtr System.Reflection.Assembly::_mono_assembly
intptr_t ____mono_assembly_0;
// System.Reflection.Assembly_ResolveEventHolder System.Reflection.Assembly::resolve_event_holder
ResolveEventHolder_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((&___resolve_event_holder_1), value);
}
inline static int32_t get_offset_of__evidence_2() { return static_cast<int32_t>(offsetof(Assembly_t, ____evidence_2)); }
inline 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((&____evidence_2), 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((&____minimum_3), 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((&____optional_4), 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((&____refuse_5), 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((&____granted_6), 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((&____denied_7), value);
}
inline static int32_t get_offset_of_fromByteArray_8() { return static_cast<int32_t>(offsetof(Assembly_t, ___fromByteArray_8)); }
inline bool get_fromByteArray_8() const { return ___fromByteArray_8; }
inline bool* get_address_of_fromByteArray_8() { return &___fromByteArray_8; }
inline void set_fromByteArray_8(bool value)
{
___fromByteArray_8 = value;
}
inline static int32_t get_offset_of_assemblyName_9() { return static_cast<int32_t>(offsetof(Assembly_t, ___assemblyName_9)); }
inline String_t* get_assemblyName_9() const { return ___assemblyName_9; }
inline String_t** get_address_of_assemblyName_9() { return &___assemblyName_9; }
inline void set_assemblyName_9(String_t* value)
{
___assemblyName_9 = value;
Il2CppCodeGenWriteBarrier((&___assemblyName_9), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Reflection.Assembly
struct Assembly_t_marshaled_pinvoke
{
intptr_t ____mono_assembly_0;
ResolveEventHolder_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;
};
#endif // ASSEMBLY_T_H
#ifndef BINDINGFLAGS_TE35C91D046E63A1B92BB9AB909FCF9DA84379ED0_H
#define BINDINGFLAGS_TE35C91D046E63A1B92BB9AB909FCF9DA84379ED0_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.BindingFlags
struct BindingFlags_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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BINDINGFLAGS_TE35C91D046E63A1B92BB9AB909FCF9DA84379ED0_H
#ifndef CONSTRUCTORINFO_T9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_H
#define CONSTRUCTORINFO_T9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___ConstructorName_0), 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((&___TypeConstructorName_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONSTRUCTORINFO_T9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_H
#ifndef METHODINFO_T_H
#define METHODINFO_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.MethodInfo
struct MethodInfo_t : public MethodBase_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // METHODINFO_T_H
#ifndef PINFO_TACD8A5FBDB18A8362483985E0F90A0D66781986B_H
#define PINFO_TACD8A5FBDB18A8362483985E0F90A0D66781986B_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.PInfo
struct PInfo_tACD8A5FBDB18A8362483985E0F90A0D66781986B
{
public:
// System.Int32 System.Reflection.PInfo::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PInfo_tACD8A5FBDB18A8362483985E0F90A0D66781986B, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PINFO_TACD8A5FBDB18A8362483985E0F90A0D66781986B_H
#ifndef PARAMETERATTRIBUTES_TF9962395513C2A48CF5AF2F371C66DD52789F110_H
#define PARAMETERATTRIBUTES_TF9962395513C2A48CF5AF2F371C66DD52789F110_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PARAMETERATTRIBUTES_TF9962395513C2A48CF5AF2F371C66DD52789F110_H
#ifndef PROPERTYATTRIBUTES_T4301E7E94CEE49B5C03DF6D72B38B7940040FE6C_H
#define PROPERTYATTRIBUTES_T4301E7E94CEE49B5C03DF6D72B38B7940040FE6C_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.PropertyAttributes
struct PropertyAttributes_t4301E7E94CEE49B5C03DF6D72B38B7940040FE6C
{
public:
// System.Int32 System.Reflection.PropertyAttributes::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PropertyAttributes_t4301E7E94CEE49B5C03DF6D72B38B7940040FE6C, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PROPERTYATTRIBUTES_T4301E7E94CEE49B5C03DF6D72B38B7940040FE6C_H
#ifndef RUNTIMEEVENTINFO_TFBC185ED030EEA019664838A8404821CB711BC09_H
#define RUNTIMEEVENTINFO_TFBC185ED030EEA019664838A8404821CB711BC09_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.RuntimeEventInfo
struct RuntimeEventInfo_tFBC185ED030EEA019664838A8404821CB711BC09 : public EventInfo_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RUNTIMEEVENTINFO_TFBC185ED030EEA019664838A8404821CB711BC09_H
#ifndef RUNTIMEPROPERTYINFO_T241956A29299F26A2F8B8829685E9D1F0345C5E4_H
#define RUNTIMEPROPERTYINFO_T241956A29299F26A2F8B8829685E9D1F0345C5E4_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.RuntimePropertyInfo
struct RuntimePropertyInfo_t241956A29299F26A2F8B8829685E9D1F0345C5E4 : public PropertyInfo_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RUNTIMEPROPERTYINFO_T241956A29299F26A2F8B8829685E9D1F0345C5E4_H
#ifndef TYPEATTRIBUTES_TE6ACB574918E5D234E547DB66EE27142AC379B30_H
#define TYPEATTRIBUTES_TE6ACB574918E5D234E547DB66EE27142AC379B30_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.TypeAttributes
struct TypeAttributes_tE6ACB574918E5D234E547DB66EE27142AC379B30
{
public:
// System.Int32 System.Reflection.TypeAttributes::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TypeAttributes_tE6ACB574918E5D234E547DB66EE27142AC379B30, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TYPEATTRIBUTES_TE6ACB574918E5D234E547DB66EE27142AC379B30_H
#ifndef SAFEHANDLE_T1E326D75E23FD5BB6D40BA322298FDC6526CC383_H
#define SAFEHANDLE_T1E326D75E23FD5BB6D40BA322298FDC6526CC383_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.InteropServices.SafeHandle
struct SafeHandle_t1E326D75E23FD5BB6D40BA322298FDC6526CC383 : public CriticalFinalizerObject_t8B006E1DEE084E781F5C0F3283E9226E28894DD9
{
public:
// System.IntPtr System.Runtime.InteropServices.SafeHandle::handle
intptr_t ___handle_0;
// System.Int32 System.Runtime.InteropServices.SafeHandle::_state
int32_t ____state_1;
// System.Boolean System.Runtime.InteropServices.SafeHandle::_ownsHandle
bool ____ownsHandle_2;
// System.Boolean System.Runtime.InteropServices.SafeHandle::_fullyInitialized
bool ____fullyInitialized_3;
public:
inline static int32_t get_offset_of_handle_0() { return static_cast<int32_t>(offsetof(SafeHandle_t1E326D75E23FD5BB6D40BA322298FDC6526CC383, ___handle_0)); }
inline intptr_t get_handle_0() const { return ___handle_0; }
inline intptr_t* get_address_of_handle_0() { return &___handle_0; }
inline void set_handle_0(intptr_t value)
{
___handle_0 = value;
}
inline static int32_t get_offset_of__state_1() { return static_cast<int32_t>(offsetof(SafeHandle_t1E326D75E23FD5BB6D40BA322298FDC6526CC383, ____state_1)); }
inline int32_t get__state_1() const { return ____state_1; }
inline int32_t* get_address_of__state_1() { return &____state_1; }
inline void set__state_1(int32_t value)
{
____state_1 = value;
}
inline static int32_t get_offset_of__ownsHandle_2() { return static_cast<int32_t>(offsetof(SafeHandle_t1E326D75E23FD5BB6D40BA322298FDC6526CC383, ____ownsHandle_2)); }
inline bool get__ownsHandle_2() const { return ____ownsHandle_2; }
inline bool* get_address_of__ownsHandle_2() { return &____ownsHandle_2; }
inline void set__ownsHandle_2(bool value)
{
____ownsHandle_2 = value;
}
inline static int32_t get_offset_of__fullyInitialized_3() { return static_cast<int32_t>(offsetof(SafeHandle_t1E326D75E23FD5BB6D40BA322298FDC6526CC383, ____fullyInitialized_3)); }
inline bool get__fullyInitialized_3() const { return ____fullyInitialized_3; }
inline bool* get_address_of__fullyInitialized_3() { return &____fullyInitialized_3; }
inline void set__fullyInitialized_3(bool value)
{
____fullyInitialized_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SAFEHANDLE_T1E326D75E23FD5BB6D40BA322298FDC6526CC383_H
#ifndef STREAMINGCONTEXTSTATES_T6D16CD7BC584A66A29B702F5FD59DF62BB1BDD3F_H
#define STREAMINGCONTEXTSTATES_T6D16CD7BC584A66A29B702F5FD59DF62BB1BDD3F_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STREAMINGCONTEXTSTATES_T6D16CD7BC584A66A29B702F5FD59DF62BB1BDD3F_H
#ifndef RUNTIMEFIELDHANDLE_T844BDF00E8E6FE69D9AEAA7657F09018B864F4EF_H
#define RUNTIMEFIELDHANDLE_T844BDF00E8E6FE69D9AEAA7657F09018B864F4EF_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.RuntimeFieldHandle
struct RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF
{
public:
// System.IntPtr System.RuntimeFieldHandle::value
intptr_t ___value_0;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF, ___value_0)); }
inline intptr_t get_value_0() const { return ___value_0; }
inline intptr_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(intptr_t value)
{
___value_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RUNTIMEFIELDHANDLE_T844BDF00E8E6FE69D9AEAA7657F09018B864F4EF_H
#ifndef RUNTIMETYPEHANDLE_T7B542280A22F0EC4EAC2061C29178845847A8B2D_H
#define RUNTIMETYPEHANDLE_T7B542280A22F0EC4EAC2061C29178845847A8B2D_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RUNTIMETYPEHANDLE_T7B542280A22F0EC4EAC2061C29178845847A8B2D_H
#ifndef SECURITYEXCEPTION_TBB116BA16A419AB19A4F7DEEF43A3FC2A638E8D5_H
#define SECURITYEXCEPTION_TBB116BA16A419AB19A4F7DEEF43A3FC2A638E8D5_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Security.SecurityException
struct SecurityException_tBB116BA16A419AB19A4F7DEEF43A3FC2A638E8D5 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
// System.String System.Security.SecurityException::permissionState
String_t* ___permissionState_17;
public:
inline static int32_t get_offset_of_permissionState_17() { return static_cast<int32_t>(offsetof(SecurityException_tBB116BA16A419AB19A4F7DEEF43A3FC2A638E8D5, ___permissionState_17)); }
inline String_t* get_permissionState_17() const { return ___permissionState_17; }
inline String_t** get_address_of_permissionState_17() { return &___permissionState_17; }
inline void set_permissionState_17(String_t* value)
{
___permissionState_17 = value;
Il2CppCodeGenWriteBarrier((&___permissionState_17), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SECURITYEXCEPTION_TBB116BA16A419AB19A4F7DEEF43A3FC2A638E8D5_H
#ifndef TASK_T1F48C203E163126EBC69ACCA679D1A462DEE9EB2_H
#define TASK_T1F48C203E163126EBC69ACCA679D1A462DEE9EB2_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.Task
struct Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 : public RuntimeObject
{
public:
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_taskId
int32_t ___m_taskId_4;
// System.Object System.Threading.Tasks.Task::m_action
RuntimeObject * ___m_action_5;
// System.Object System.Threading.Tasks.Task::m_stateObject
RuntimeObject * ___m_stateObject_6;
// System.Threading.Tasks.TaskScheduler System.Threading.Tasks.Task::m_taskScheduler
TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * ___m_taskScheduler_7;
// System.Threading.Tasks.Task System.Threading.Tasks.Task::m_parent
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___m_parent_8;
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_stateFlags
int32_t ___m_stateFlags_9;
// System.Object modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_continuationObject
RuntimeObject * ___m_continuationObject_10;
// System.Threading.Tasks.Task_ContingentProperties modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_contingentProperties
ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 * ___m_contingentProperties_15;
public:
inline static int32_t get_offset_of_m_taskId_4() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_taskId_4)); }
inline int32_t get_m_taskId_4() const { return ___m_taskId_4; }
inline int32_t* get_address_of_m_taskId_4() { return &___m_taskId_4; }
inline void set_m_taskId_4(int32_t value)
{
___m_taskId_4 = value;
}
inline static int32_t get_offset_of_m_action_5() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_action_5)); }
inline RuntimeObject * get_m_action_5() const { return ___m_action_5; }
inline RuntimeObject ** get_address_of_m_action_5() { return &___m_action_5; }
inline void set_m_action_5(RuntimeObject * value)
{
___m_action_5 = value;
Il2CppCodeGenWriteBarrier((&___m_action_5), value);
}
inline static int32_t get_offset_of_m_stateObject_6() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_stateObject_6)); }
inline RuntimeObject * get_m_stateObject_6() const { return ___m_stateObject_6; }
inline RuntimeObject ** get_address_of_m_stateObject_6() { return &___m_stateObject_6; }
inline void set_m_stateObject_6(RuntimeObject * value)
{
___m_stateObject_6 = value;
Il2CppCodeGenWriteBarrier((&___m_stateObject_6), value);
}
inline static int32_t get_offset_of_m_taskScheduler_7() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_taskScheduler_7)); }
inline TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * get_m_taskScheduler_7() const { return ___m_taskScheduler_7; }
inline TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 ** get_address_of_m_taskScheduler_7() { return &___m_taskScheduler_7; }
inline void set_m_taskScheduler_7(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * value)
{
___m_taskScheduler_7 = value;
Il2CppCodeGenWriteBarrier((&___m_taskScheduler_7), value);
}
inline static int32_t get_offset_of_m_parent_8() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_parent_8)); }
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * get_m_parent_8() const { return ___m_parent_8; }
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 ** get_address_of_m_parent_8() { return &___m_parent_8; }
inline void set_m_parent_8(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * value)
{
___m_parent_8 = value;
Il2CppCodeGenWriteBarrier((&___m_parent_8), value);
}
inline static int32_t get_offset_of_m_stateFlags_9() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_stateFlags_9)); }
inline int32_t get_m_stateFlags_9() const { return ___m_stateFlags_9; }
inline int32_t* get_address_of_m_stateFlags_9() { return &___m_stateFlags_9; }
inline void set_m_stateFlags_9(int32_t value)
{
___m_stateFlags_9 = value;
}
inline static int32_t get_offset_of_m_continuationObject_10() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_continuationObject_10)); }
inline RuntimeObject * get_m_continuationObject_10() const { return ___m_continuationObject_10; }
inline RuntimeObject ** get_address_of_m_continuationObject_10() { return &___m_continuationObject_10; }
inline void set_m_continuationObject_10(RuntimeObject * value)
{
___m_continuationObject_10 = value;
Il2CppCodeGenWriteBarrier((&___m_continuationObject_10), value);
}
inline static int32_t get_offset_of_m_contingentProperties_15() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_contingentProperties_15)); }
inline ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 * get_m_contingentProperties_15() const { return ___m_contingentProperties_15; }
inline ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 ** get_address_of_m_contingentProperties_15() { return &___m_contingentProperties_15; }
inline void set_m_contingentProperties_15(ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 * value)
{
___m_contingentProperties_15 = value;
Il2CppCodeGenWriteBarrier((&___m_contingentProperties_15), value);
}
};
struct Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields
{
public:
// System.Int32 System.Threading.Tasks.Task::s_taskIdCounter
int32_t ___s_taskIdCounter_2;
// System.Threading.Tasks.TaskFactory System.Threading.Tasks.Task::s_factory
TaskFactory_tF3C6D983390ACFB40B4979E225368F78006D6155 * ___s_factory_3;
// System.Object System.Threading.Tasks.Task::s_taskCompletionSentinel
RuntimeObject * ___s_taskCompletionSentinel_11;
// System.Boolean System.Threading.Tasks.Task::s_asyncDebuggingEnabled
bool ___s_asyncDebuggingEnabled_12;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Threading.Tasks.Task> System.Threading.Tasks.Task::s_currentActiveTasks
Dictionary_2_t70161CFEB8DA3C79E19E31D0ED948D3C2925095F * ___s_currentActiveTasks_13;
// System.Object System.Threading.Tasks.Task::s_activeTasksLock
RuntimeObject * ___s_activeTasksLock_14;
// System.Action`1<System.Object> System.Threading.Tasks.Task::s_taskCancelCallback
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ___s_taskCancelCallback_16;
// System.Func`1<System.Threading.Tasks.Task_ContingentProperties> System.Threading.Tasks.Task::s_createContingentProperties
Func_1_t48C2978A48CE3F2F6EB5B6DE269D00746483BB1F * ___s_createContingentProperties_17;
// System.Threading.Tasks.Task System.Threading.Tasks.Task::s_completedTask
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___s_completedTask_18;
// System.Predicate`1<System.Threading.Tasks.Task> System.Threading.Tasks.Task::s_IsExceptionObservedByParentPredicate
Predicate_1_tF4286C34BB184CE5690FDCEBA7F09FC68D229335 * ___s_IsExceptionObservedByParentPredicate_19;
// System.Threading.ContextCallback System.Threading.Tasks.Task::s_ecCallback
ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * ___s_ecCallback_20;
// System.Predicate`1<System.Object> System.Threading.Tasks.Task::s_IsTaskContinuationNullPredicate
Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * ___s_IsTaskContinuationNullPredicate_21;
public:
inline static int32_t get_offset_of_s_taskIdCounter_2() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_taskIdCounter_2)); }
inline int32_t get_s_taskIdCounter_2() const { return ___s_taskIdCounter_2; }
inline int32_t* get_address_of_s_taskIdCounter_2() { return &___s_taskIdCounter_2; }
inline void set_s_taskIdCounter_2(int32_t value)
{
___s_taskIdCounter_2 = value;
}
inline static int32_t get_offset_of_s_factory_3() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_factory_3)); }
inline TaskFactory_tF3C6D983390ACFB40B4979E225368F78006D6155 * get_s_factory_3() const { return ___s_factory_3; }
inline TaskFactory_tF3C6D983390ACFB40B4979E225368F78006D6155 ** get_address_of_s_factory_3() { return &___s_factory_3; }
inline void set_s_factory_3(TaskFactory_tF3C6D983390ACFB40B4979E225368F78006D6155 * value)
{
___s_factory_3 = value;
Il2CppCodeGenWriteBarrier((&___s_factory_3), value);
}
inline static int32_t get_offset_of_s_taskCompletionSentinel_11() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_taskCompletionSentinel_11)); }
inline RuntimeObject * get_s_taskCompletionSentinel_11() const { return ___s_taskCompletionSentinel_11; }
inline RuntimeObject ** get_address_of_s_taskCompletionSentinel_11() { return &___s_taskCompletionSentinel_11; }
inline void set_s_taskCompletionSentinel_11(RuntimeObject * value)
{
___s_taskCompletionSentinel_11 = value;
Il2CppCodeGenWriteBarrier((&___s_taskCompletionSentinel_11), value);
}
inline static int32_t get_offset_of_s_asyncDebuggingEnabled_12() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_asyncDebuggingEnabled_12)); }
inline bool get_s_asyncDebuggingEnabled_12() const { return ___s_asyncDebuggingEnabled_12; }
inline bool* get_address_of_s_asyncDebuggingEnabled_12() { return &___s_asyncDebuggingEnabled_12; }
inline void set_s_asyncDebuggingEnabled_12(bool value)
{
___s_asyncDebuggingEnabled_12 = value;
}
inline static int32_t get_offset_of_s_currentActiveTasks_13() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_currentActiveTasks_13)); }
inline Dictionary_2_t70161CFEB8DA3C79E19E31D0ED948D3C2925095F * get_s_currentActiveTasks_13() const { return ___s_currentActiveTasks_13; }
inline Dictionary_2_t70161CFEB8DA3C79E19E31D0ED948D3C2925095F ** get_address_of_s_currentActiveTasks_13() { return &___s_currentActiveTasks_13; }
inline void set_s_currentActiveTasks_13(Dictionary_2_t70161CFEB8DA3C79E19E31D0ED948D3C2925095F * value)
{
___s_currentActiveTasks_13 = value;
Il2CppCodeGenWriteBarrier((&___s_currentActiveTasks_13), value);
}
inline static int32_t get_offset_of_s_activeTasksLock_14() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_activeTasksLock_14)); }
inline RuntimeObject * get_s_activeTasksLock_14() const { return ___s_activeTasksLock_14; }
inline RuntimeObject ** get_address_of_s_activeTasksLock_14() { return &___s_activeTasksLock_14; }
inline void set_s_activeTasksLock_14(RuntimeObject * value)
{
___s_activeTasksLock_14 = value;
Il2CppCodeGenWriteBarrier((&___s_activeTasksLock_14), value);
}
inline static int32_t get_offset_of_s_taskCancelCallback_16() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_taskCancelCallback_16)); }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get_s_taskCancelCallback_16() const { return ___s_taskCancelCallback_16; }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of_s_taskCancelCallback_16() { return &___s_taskCancelCallback_16; }
inline void set_s_taskCancelCallback_16(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value)
{
___s_taskCancelCallback_16 = value;
Il2CppCodeGenWriteBarrier((&___s_taskCancelCallback_16), value);
}
inline static int32_t get_offset_of_s_createContingentProperties_17() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_createContingentProperties_17)); }
inline Func_1_t48C2978A48CE3F2F6EB5B6DE269D00746483BB1F * get_s_createContingentProperties_17() const { return ___s_createContingentProperties_17; }
inline Func_1_t48C2978A48CE3F2F6EB5B6DE269D00746483BB1F ** get_address_of_s_createContingentProperties_17() { return &___s_createContingentProperties_17; }
inline void set_s_createContingentProperties_17(Func_1_t48C2978A48CE3F2F6EB5B6DE269D00746483BB1F * value)
{
___s_createContingentProperties_17 = value;
Il2CppCodeGenWriteBarrier((&___s_createContingentProperties_17), value);
}
inline static int32_t get_offset_of_s_completedTask_18() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_completedTask_18)); }
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * get_s_completedTask_18() const { return ___s_completedTask_18; }
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 ** get_address_of_s_completedTask_18() { return &___s_completedTask_18; }
inline void set_s_completedTask_18(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * value)
{
___s_completedTask_18 = value;
Il2CppCodeGenWriteBarrier((&___s_completedTask_18), value);
}
inline static int32_t get_offset_of_s_IsExceptionObservedByParentPredicate_19() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_IsExceptionObservedByParentPredicate_19)); }
inline Predicate_1_tF4286C34BB184CE5690FDCEBA7F09FC68D229335 * get_s_IsExceptionObservedByParentPredicate_19() const { return ___s_IsExceptionObservedByParentPredicate_19; }
inline Predicate_1_tF4286C34BB184CE5690FDCEBA7F09FC68D229335 ** get_address_of_s_IsExceptionObservedByParentPredicate_19() { return &___s_IsExceptionObservedByParentPredicate_19; }
inline void set_s_IsExceptionObservedByParentPredicate_19(Predicate_1_tF4286C34BB184CE5690FDCEBA7F09FC68D229335 * value)
{
___s_IsExceptionObservedByParentPredicate_19 = value;
Il2CppCodeGenWriteBarrier((&___s_IsExceptionObservedByParentPredicate_19), value);
}
inline static int32_t get_offset_of_s_ecCallback_20() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_ecCallback_20)); }
inline ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * get_s_ecCallback_20() const { return ___s_ecCallback_20; }
inline ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 ** get_address_of_s_ecCallback_20() { return &___s_ecCallback_20; }
inline void set_s_ecCallback_20(ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * value)
{
___s_ecCallback_20 = value;
Il2CppCodeGenWriteBarrier((&___s_ecCallback_20), value);
}
inline static int32_t get_offset_of_s_IsTaskContinuationNullPredicate_21() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_IsTaskContinuationNullPredicate_21)); }
inline Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * get_s_IsTaskContinuationNullPredicate_21() const { return ___s_IsTaskContinuationNullPredicate_21; }
inline Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 ** get_address_of_s_IsTaskContinuationNullPredicate_21() { return &___s_IsTaskContinuationNullPredicate_21; }
inline void set_s_IsTaskContinuationNullPredicate_21(Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * value)
{
___s_IsTaskContinuationNullPredicate_21 = value;
Il2CppCodeGenWriteBarrier((&___s_IsTaskContinuationNullPredicate_21), value);
}
};
struct Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_ThreadStaticFields
{
public:
// System.Threading.Tasks.Task System.Threading.Tasks.Task::t_currentTask
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___t_currentTask_0;
// System.Threading.Tasks.StackGuard System.Threading.Tasks.Task::t_stackGuard
StackGuard_tE431ED3BBD1A18705FEE6F948EBF7FA2E99D64A9 * ___t_stackGuard_1;
public:
inline static int32_t get_offset_of_t_currentTask_0() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_ThreadStaticFields, ___t_currentTask_0)); }
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * get_t_currentTask_0() const { return ___t_currentTask_0; }
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 ** get_address_of_t_currentTask_0() { return &___t_currentTask_0; }
inline void set_t_currentTask_0(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * value)
{
___t_currentTask_0 = value;
Il2CppCodeGenWriteBarrier((&___t_currentTask_0), value);
}
inline static int32_t get_offset_of_t_stackGuard_1() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_ThreadStaticFields, ___t_stackGuard_1)); }
inline StackGuard_tE431ED3BBD1A18705FEE6F948EBF7FA2E99D64A9 * get_t_stackGuard_1() const { return ___t_stackGuard_1; }
inline StackGuard_tE431ED3BBD1A18705FEE6F948EBF7FA2E99D64A9 ** get_address_of_t_stackGuard_1() { return &___t_stackGuard_1; }
inline void set_t_stackGuard_1(StackGuard_tE431ED3BBD1A18705FEE6F948EBF7FA2E99D64A9 * value)
{
___t_stackGuard_1 = value;
Il2CppCodeGenWriteBarrier((&___t_stackGuard_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TASK_T1F48C203E163126EBC69ACCA679D1A462DEE9EB2_H
#ifndef TYPECODE_T03ED52F888000DAF40C550C434F29F39A23D61C6_H
#define TYPECODE_T03ED52F888000DAF40C550C434F29F39A23D61C6_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TYPECODE_T03ED52F888000DAF40C550C434F29F39A23D61C6_H
#ifndef UNAUTHORIZEDACCESSEXCEPTION_TC2210A745BFDD3AE3559A87A4219E2945EEC9F75_H
#define UNAUTHORIZEDACCESSEXCEPTION_TC2210A745BFDD3AE3559A87A4219E2945EEC9F75_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.UnauthorizedAccessException
struct UnauthorizedAccessException_tC2210A745BFDD3AE3559A87A4219E2945EEC9F75 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNAUTHORIZEDACCESSEXCEPTION_TC2210A745BFDD3AE3559A87A4219E2945EEC9F75_H
#ifndef SAFEHANDLEZEROORMINUSONEISINVALID_T779A965C82098677DF1ED10A134DBCDEC8AACB8E_H
#define SAFEHANDLEZEROORMINUSONEISINVALID_T779A965C82098677DF1ED10A134DBCDEC8AACB8E_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid
struct SafeHandleZeroOrMinusOneIsInvalid_t779A965C82098677DF1ED10A134DBCDEC8AACB8E : public SafeHandle_t1E326D75E23FD5BB6D40BA322298FDC6526CC383
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SAFEHANDLEZEROORMINUSONEISINVALID_T779A965C82098677DF1ED10A134DBCDEC8AACB8E_H
#ifndef ARGUMENTNULLEXCEPTION_T581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_H
#define ARGUMENTNULLEXCEPTION_T581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ArgumentNullException
struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ARGUMENTNULLEXCEPTION_T581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_H
#ifndef ARGUMENTOUTOFRANGEEXCEPTION_T94D19DF918A54511AEDF4784C9A08741BAD1DEDA_H
#define ARGUMENTOUTOFRANGEEXCEPTION_T94D19DF918A54511AEDF4784C9A08741BAD1DEDA_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___m_actualValue_19), 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((&____rangeMessage_18), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ARGUMENTOUTOFRANGEEXCEPTION_T94D19DF918A54511AEDF4784C9A08741BAD1DEDA_H
#ifndef ATTRIBUTEUSAGEATTRIBUTE_T1B765F643562D0CD97D0B6B34D121C6AD9CE2388_H
#define ATTRIBUTEUSAGEATTRIBUTE_T1B765F643562D0CD97D0B6B34D121C6AD9CE2388_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.AttributeUsageAttribute
struct AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
// System.AttributeTargets System.AttributeUsageAttribute::m_attributeTarget
int32_t ___m_attributeTarget_0;
// System.Boolean System.AttributeUsageAttribute::m_allowMultiple
bool ___m_allowMultiple_1;
// System.Boolean System.AttributeUsageAttribute::m_inherited
bool ___m_inherited_2;
public:
inline static int32_t get_offset_of_m_attributeTarget_0() { return static_cast<int32_t>(offsetof(AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388, ___m_attributeTarget_0)); }
inline int32_t get_m_attributeTarget_0() const { return ___m_attributeTarget_0; }
inline int32_t* get_address_of_m_attributeTarget_0() { return &___m_attributeTarget_0; }
inline void set_m_attributeTarget_0(int32_t value)
{
___m_attributeTarget_0 = value;
}
inline static int32_t get_offset_of_m_allowMultiple_1() { return static_cast<int32_t>(offsetof(AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388, ___m_allowMultiple_1)); }
inline bool get_m_allowMultiple_1() const { return ___m_allowMultiple_1; }
inline bool* get_address_of_m_allowMultiple_1() { return &___m_allowMultiple_1; }
inline void set_m_allowMultiple_1(bool value)
{
___m_allowMultiple_1 = value;
}
inline static int32_t get_offset_of_m_inherited_2() { return static_cast<int32_t>(offsetof(AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388, ___m_inherited_2)); }
inline bool get_m_inherited_2() const { return ___m_inherited_2; }
inline bool* get_address_of_m_inherited_2() { return &___m_inherited_2; }
inline void set_m_inherited_2(bool value)
{
___m_inherited_2 = value;
}
};
struct AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388_StaticFields
{
public:
// System.AttributeUsageAttribute System.AttributeUsageAttribute::Default
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * ___Default_3;
public:
inline static int32_t get_offset_of_Default_3() { return static_cast<int32_t>(offsetof(AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388_StaticFields, ___Default_3)); }
inline AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * get_Default_3() const { return ___Default_3; }
inline AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 ** get_address_of_Default_3() { return &___Default_3; }
inline void set_Default_3(AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * value)
{
___Default_3 = value;
Il2CppCodeGenWriteBarrier((&___Default_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ATTRIBUTEUSAGEATTRIBUTE_T1B765F643562D0CD97D0B6B34D121C6AD9CE2388_H
#ifndef CONSOLEKEYINFO_T5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_H
#define CONSOLEKEYINFO_T5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ConsoleKeyInfo
struct ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768
{
public:
// System.Char System.ConsoleKeyInfo::_keyChar
Il2CppChar ____keyChar_0;
// System.ConsoleKey System.ConsoleKeyInfo::_key
int32_t ____key_1;
// System.ConsoleModifiers System.ConsoleKeyInfo::_mods
int32_t ____mods_2;
public:
inline static int32_t get_offset_of__keyChar_0() { return static_cast<int32_t>(offsetof(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768, ____keyChar_0)); }
inline Il2CppChar get__keyChar_0() const { return ____keyChar_0; }
inline Il2CppChar* get_address_of__keyChar_0() { return &____keyChar_0; }
inline void set__keyChar_0(Il2CppChar value)
{
____keyChar_0 = value;
}
inline static int32_t get_offset_of__key_1() { return static_cast<int32_t>(offsetof(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768, ____key_1)); }
inline int32_t get__key_1() const { return ____key_1; }
inline int32_t* get_address_of__key_1() { return &____key_1; }
inline void set__key_1(int32_t value)
{
____key_1 = value;
}
inline static int32_t get_offset_of__mods_2() { return static_cast<int32_t>(offsetof(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768, ____mods_2)); }
inline int32_t get__mods_2() const { return ____mods_2; }
inline int32_t* get_address_of__mods_2() { return &____mods_2; }
inline void set__mods_2(int32_t value)
{
____mods_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.ConsoleKeyInfo
struct ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_marshaled_pinvoke
{
uint8_t ____keyChar_0;
int32_t ____key_1;
int32_t ____mods_2;
};
// Native definition for COM marshalling of System.ConsoleKeyInfo
struct ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_marshaled_com
{
uint8_t ____keyChar_0;
int32_t ____key_1;
int32_t ____mods_2;
};
#endif // CONSOLEKEYINFO_T5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_H
#ifndef NUMBERFORMATINFO_TFDF57037EBC5BC833D0A53EF0327B805994860A8_H
#define NUMBERFORMATINFO_TFDF57037EBC5BC833D0A53EF0327B805994860A8_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Globalization.NumberFormatInfo
struct NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 : public RuntimeObject
{
public:
// System.Int32[] System.Globalization.NumberFormatInfo::numberGroupSizes
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___numberGroupSizes_1;
// System.Int32[] System.Globalization.NumberFormatInfo::currencyGroupSizes
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___currencyGroupSizes_2;
// System.Int32[] System.Globalization.NumberFormatInfo::percentGroupSizes
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___percentGroupSizes_3;
// System.String System.Globalization.NumberFormatInfo::positiveSign
String_t* ___positiveSign_4;
// System.String System.Globalization.NumberFormatInfo::negativeSign
String_t* ___negativeSign_5;
// System.String System.Globalization.NumberFormatInfo::numberDecimalSeparator
String_t* ___numberDecimalSeparator_6;
// System.String System.Globalization.NumberFormatInfo::numberGroupSeparator
String_t* ___numberGroupSeparator_7;
// System.String System.Globalization.NumberFormatInfo::currencyGroupSeparator
String_t* ___currencyGroupSeparator_8;
// System.String System.Globalization.NumberFormatInfo::currencyDecimalSeparator
String_t* ___currencyDecimalSeparator_9;
// System.String System.Globalization.NumberFormatInfo::currencySymbol
String_t* ___currencySymbol_10;
// System.String System.Globalization.NumberFormatInfo::ansiCurrencySymbol
String_t* ___ansiCurrencySymbol_11;
// System.String System.Globalization.NumberFormatInfo::nanSymbol
String_t* ___nanSymbol_12;
// System.String System.Globalization.NumberFormatInfo::positiveInfinitySymbol
String_t* ___positiveInfinitySymbol_13;
// System.String System.Globalization.NumberFormatInfo::negativeInfinitySymbol
String_t* ___negativeInfinitySymbol_14;
// System.String System.Globalization.NumberFormatInfo::percentDecimalSeparator
String_t* ___percentDecimalSeparator_15;
// System.String System.Globalization.NumberFormatInfo::percentGroupSeparator
String_t* ___percentGroupSeparator_16;
// System.String System.Globalization.NumberFormatInfo::percentSymbol
String_t* ___percentSymbol_17;
// System.String System.Globalization.NumberFormatInfo::perMilleSymbol
String_t* ___perMilleSymbol_18;
// System.String[] System.Globalization.NumberFormatInfo::nativeDigits
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___nativeDigits_19;
// System.Int32 System.Globalization.NumberFormatInfo::m_dataItem
int32_t ___m_dataItem_20;
// System.Int32 System.Globalization.NumberFormatInfo::numberDecimalDigits
int32_t ___numberDecimalDigits_21;
// System.Int32 System.Globalization.NumberFormatInfo::currencyDecimalDigits
int32_t ___currencyDecimalDigits_22;
// System.Int32 System.Globalization.NumberFormatInfo::currencyPositivePattern
int32_t ___currencyPositivePattern_23;
// System.Int32 System.Globalization.NumberFormatInfo::currencyNegativePattern
int32_t ___currencyNegativePattern_24;
// System.Int32 System.Globalization.NumberFormatInfo::numberNegativePattern
int32_t ___numberNegativePattern_25;
// System.Int32 System.Globalization.NumberFormatInfo::percentPositivePattern
int32_t ___percentPositivePattern_26;
// System.Int32 System.Globalization.NumberFormatInfo::percentNegativePattern
int32_t ___percentNegativePattern_27;
// System.Int32 System.Globalization.NumberFormatInfo::percentDecimalDigits
int32_t ___percentDecimalDigits_28;
// System.Int32 System.Globalization.NumberFormatInfo::digitSubstitution
int32_t ___digitSubstitution_29;
// System.Boolean System.Globalization.NumberFormatInfo::isReadOnly
bool ___isReadOnly_30;
// System.Boolean System.Globalization.NumberFormatInfo::m_useUserOverride
bool ___m_useUserOverride_31;
// System.Boolean System.Globalization.NumberFormatInfo::m_isInvariant
bool ___m_isInvariant_32;
// System.Boolean System.Globalization.NumberFormatInfo::validForParseAsNumber
bool ___validForParseAsNumber_33;
// System.Boolean System.Globalization.NumberFormatInfo::validForParseAsCurrency
bool ___validForParseAsCurrency_34;
public:
inline static int32_t get_offset_of_numberGroupSizes_1() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___numberGroupSizes_1)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_numberGroupSizes_1() const { return ___numberGroupSizes_1; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_numberGroupSizes_1() { return &___numberGroupSizes_1; }
inline void set_numberGroupSizes_1(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___numberGroupSizes_1 = value;
Il2CppCodeGenWriteBarrier((&___numberGroupSizes_1), value);
}
inline static int32_t get_offset_of_currencyGroupSizes_2() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyGroupSizes_2)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_currencyGroupSizes_2() const { return ___currencyGroupSizes_2; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_currencyGroupSizes_2() { return &___currencyGroupSizes_2; }
inline void set_currencyGroupSizes_2(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___currencyGroupSizes_2 = value;
Il2CppCodeGenWriteBarrier((&___currencyGroupSizes_2), value);
}
inline static int32_t get_offset_of_percentGroupSizes_3() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentGroupSizes_3)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_percentGroupSizes_3() const { return ___percentGroupSizes_3; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_percentGroupSizes_3() { return &___percentGroupSizes_3; }
inline void set_percentGroupSizes_3(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___percentGroupSizes_3 = value;
Il2CppCodeGenWriteBarrier((&___percentGroupSizes_3), value);
}
inline static int32_t get_offset_of_positiveSign_4() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___positiveSign_4)); }
inline String_t* get_positiveSign_4() const { return ___positiveSign_4; }
inline String_t** get_address_of_positiveSign_4() { return &___positiveSign_4; }
inline void set_positiveSign_4(String_t* value)
{
___positiveSign_4 = value;
Il2CppCodeGenWriteBarrier((&___positiveSign_4), value);
}
inline static int32_t get_offset_of_negativeSign_5() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___negativeSign_5)); }
inline String_t* get_negativeSign_5() const { return ___negativeSign_5; }
inline String_t** get_address_of_negativeSign_5() { return &___negativeSign_5; }
inline void set_negativeSign_5(String_t* value)
{
___negativeSign_5 = value;
Il2CppCodeGenWriteBarrier((&___negativeSign_5), value);
}
inline static int32_t get_offset_of_numberDecimalSeparator_6() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___numberDecimalSeparator_6)); }
inline String_t* get_numberDecimalSeparator_6() const { return ___numberDecimalSeparator_6; }
inline String_t** get_address_of_numberDecimalSeparator_6() { return &___numberDecimalSeparator_6; }
inline void set_numberDecimalSeparator_6(String_t* value)
{
___numberDecimalSeparator_6 = value;
Il2CppCodeGenWriteBarrier((&___numberDecimalSeparator_6), value);
}
inline static int32_t get_offset_of_numberGroupSeparator_7() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___numberGroupSeparator_7)); }
inline String_t* get_numberGroupSeparator_7() const { return ___numberGroupSeparator_7; }
inline String_t** get_address_of_numberGroupSeparator_7() { return &___numberGroupSeparator_7; }
inline void set_numberGroupSeparator_7(String_t* value)
{
___numberGroupSeparator_7 = value;
Il2CppCodeGenWriteBarrier((&___numberGroupSeparator_7), value);
}
inline static int32_t get_offset_of_currencyGroupSeparator_8() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyGroupSeparator_8)); }
inline String_t* get_currencyGroupSeparator_8() const { return ___currencyGroupSeparator_8; }
inline String_t** get_address_of_currencyGroupSeparator_8() { return &___currencyGroupSeparator_8; }
inline void set_currencyGroupSeparator_8(String_t* value)
{
___currencyGroupSeparator_8 = value;
Il2CppCodeGenWriteBarrier((&___currencyGroupSeparator_8), value);
}
inline static int32_t get_offset_of_currencyDecimalSeparator_9() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyDecimalSeparator_9)); }
inline String_t* get_currencyDecimalSeparator_9() const { return ___currencyDecimalSeparator_9; }
inline String_t** get_address_of_currencyDecimalSeparator_9() { return &___currencyDecimalSeparator_9; }
inline void set_currencyDecimalSeparator_9(String_t* value)
{
___currencyDecimalSeparator_9 = value;
Il2CppCodeGenWriteBarrier((&___currencyDecimalSeparator_9), value);
}
inline static int32_t get_offset_of_currencySymbol_10() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencySymbol_10)); }
inline String_t* get_currencySymbol_10() const { return ___currencySymbol_10; }
inline String_t** get_address_of_currencySymbol_10() { return &___currencySymbol_10; }
inline void set_currencySymbol_10(String_t* value)
{
___currencySymbol_10 = value;
Il2CppCodeGenWriteBarrier((&___currencySymbol_10), value);
}
inline static int32_t get_offset_of_ansiCurrencySymbol_11() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___ansiCurrencySymbol_11)); }
inline String_t* get_ansiCurrencySymbol_11() const { return ___ansiCurrencySymbol_11; }
inline String_t** get_address_of_ansiCurrencySymbol_11() { return &___ansiCurrencySymbol_11; }
inline void set_ansiCurrencySymbol_11(String_t* value)
{
___ansiCurrencySymbol_11 = value;
Il2CppCodeGenWriteBarrier((&___ansiCurrencySymbol_11), value);
}
inline static int32_t get_offset_of_nanSymbol_12() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___nanSymbol_12)); }
inline String_t* get_nanSymbol_12() const { return ___nanSymbol_12; }
inline String_t** get_address_of_nanSymbol_12() { return &___nanSymbol_12; }
inline void set_nanSymbol_12(String_t* value)
{
___nanSymbol_12 = value;
Il2CppCodeGenWriteBarrier((&___nanSymbol_12), value);
}
inline static int32_t get_offset_of_positiveInfinitySymbol_13() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___positiveInfinitySymbol_13)); }
inline String_t* get_positiveInfinitySymbol_13() const { return ___positiveInfinitySymbol_13; }
inline String_t** get_address_of_positiveInfinitySymbol_13() { return &___positiveInfinitySymbol_13; }
inline void set_positiveInfinitySymbol_13(String_t* value)
{
___positiveInfinitySymbol_13 = value;
Il2CppCodeGenWriteBarrier((&___positiveInfinitySymbol_13), value);
}
inline static int32_t get_offset_of_negativeInfinitySymbol_14() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___negativeInfinitySymbol_14)); }
inline String_t* get_negativeInfinitySymbol_14() const { return ___negativeInfinitySymbol_14; }
inline String_t** get_address_of_negativeInfinitySymbol_14() { return &___negativeInfinitySymbol_14; }
inline void set_negativeInfinitySymbol_14(String_t* value)
{
___negativeInfinitySymbol_14 = value;
Il2CppCodeGenWriteBarrier((&___negativeInfinitySymbol_14), value);
}
inline static int32_t get_offset_of_percentDecimalSeparator_15() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentDecimalSeparator_15)); }
inline String_t* get_percentDecimalSeparator_15() const { return ___percentDecimalSeparator_15; }
inline String_t** get_address_of_percentDecimalSeparator_15() { return &___percentDecimalSeparator_15; }
inline void set_percentDecimalSeparator_15(String_t* value)
{
___percentDecimalSeparator_15 = value;
Il2CppCodeGenWriteBarrier((&___percentDecimalSeparator_15), value);
}
inline static int32_t get_offset_of_percentGroupSeparator_16() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentGroupSeparator_16)); }
inline String_t* get_percentGroupSeparator_16() const { return ___percentGroupSeparator_16; }
inline String_t** get_address_of_percentGroupSeparator_16() { return &___percentGroupSeparator_16; }
inline void set_percentGroupSeparator_16(String_t* value)
{
___percentGroupSeparator_16 = value;
Il2CppCodeGenWriteBarrier((&___percentGroupSeparator_16), value);
}
inline static int32_t get_offset_of_percentSymbol_17() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentSymbol_17)); }
inline String_t* get_percentSymbol_17() const { return ___percentSymbol_17; }
inline String_t** get_address_of_percentSymbol_17() { return &___percentSymbol_17; }
inline void set_percentSymbol_17(String_t* value)
{
___percentSymbol_17 = value;
Il2CppCodeGenWriteBarrier((&___percentSymbol_17), value);
}
inline static int32_t get_offset_of_perMilleSymbol_18() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___perMilleSymbol_18)); }
inline String_t* get_perMilleSymbol_18() const { return ___perMilleSymbol_18; }
inline String_t** get_address_of_perMilleSymbol_18() { return &___perMilleSymbol_18; }
inline void set_perMilleSymbol_18(String_t* value)
{
___perMilleSymbol_18 = value;
Il2CppCodeGenWriteBarrier((&___perMilleSymbol_18), value);
}
inline static int32_t get_offset_of_nativeDigits_19() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___nativeDigits_19)); }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_nativeDigits_19() const { return ___nativeDigits_19; }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_nativeDigits_19() { return &___nativeDigits_19; }
inline void set_nativeDigits_19(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
{
___nativeDigits_19 = value;
Il2CppCodeGenWriteBarrier((&___nativeDigits_19), value);
}
inline static int32_t get_offset_of_m_dataItem_20() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___m_dataItem_20)); }
inline int32_t get_m_dataItem_20() const { return ___m_dataItem_20; }
inline int32_t* get_address_of_m_dataItem_20() { return &___m_dataItem_20; }
inline void set_m_dataItem_20(int32_t value)
{
___m_dataItem_20 = value;
}
inline static int32_t get_offset_of_numberDecimalDigits_21() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___numberDecimalDigits_21)); }
inline int32_t get_numberDecimalDigits_21() const { return ___numberDecimalDigits_21; }
inline int32_t* get_address_of_numberDecimalDigits_21() { return &___numberDecimalDigits_21; }
inline void set_numberDecimalDigits_21(int32_t value)
{
___numberDecimalDigits_21 = value;
}
inline static int32_t get_offset_of_currencyDecimalDigits_22() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyDecimalDigits_22)); }
inline int32_t get_currencyDecimalDigits_22() const { return ___currencyDecimalDigits_22; }
inline int32_t* get_address_of_currencyDecimalDigits_22() { return &___currencyDecimalDigits_22; }
inline void set_currencyDecimalDigits_22(int32_t value)
{
___currencyDecimalDigits_22 = value;
}
inline static int32_t get_offset_of_currencyPositivePattern_23() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyPositivePattern_23)); }
inline int32_t get_currencyPositivePattern_23() const { return ___currencyPositivePattern_23; }
inline int32_t* get_address_of_currencyPositivePattern_23() { return &___currencyPositivePattern_23; }
inline void set_currencyPositivePattern_23(int32_t value)
{
___currencyPositivePattern_23 = value;
}
inline static int32_t get_offset_of_currencyNegativePattern_24() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyNegativePattern_24)); }
inline int32_t get_currencyNegativePattern_24() const { return ___currencyNegativePattern_24; }
inline int32_t* get_address_of_currencyNegativePattern_24() { return &___currencyNegativePattern_24; }
inline void set_currencyNegativePattern_24(int32_t value)
{
___currencyNegativePattern_24 = value;
}
inline static int32_t get_offset_of_numberNegativePattern_25() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___numberNegativePattern_25)); }
inline int32_t get_numberNegativePattern_25() const { return ___numberNegativePattern_25; }
inline int32_t* get_address_of_numberNegativePattern_25() { return &___numberNegativePattern_25; }
inline void set_numberNegativePattern_25(int32_t value)
{
___numberNegativePattern_25 = value;
}
inline static int32_t get_offset_of_percentPositivePattern_26() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentPositivePattern_26)); }
inline int32_t get_percentPositivePattern_26() const { return ___percentPositivePattern_26; }
inline int32_t* get_address_of_percentPositivePattern_26() { return &___percentPositivePattern_26; }
inline void set_percentPositivePattern_26(int32_t value)
{
___percentPositivePattern_26 = value;
}
inline static int32_t get_offset_of_percentNegativePattern_27() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentNegativePattern_27)); }
inline int32_t get_percentNegativePattern_27() const { return ___percentNegativePattern_27; }
inline int32_t* get_address_of_percentNegativePattern_27() { return &___percentNegativePattern_27; }
inline void set_percentNegativePattern_27(int32_t value)
{
___percentNegativePattern_27 = value;
}
inline static int32_t get_offset_of_percentDecimalDigits_28() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentDecimalDigits_28)); }
inline int32_t get_percentDecimalDigits_28() const { return ___percentDecimalDigits_28; }
inline int32_t* get_address_of_percentDecimalDigits_28() { return &___percentDecimalDigits_28; }
inline void set_percentDecimalDigits_28(int32_t value)
{
___percentDecimalDigits_28 = value;
}
inline static int32_t get_offset_of_digitSubstitution_29() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___digitSubstitution_29)); }
inline int32_t get_digitSubstitution_29() const { return ___digitSubstitution_29; }
inline int32_t* get_address_of_digitSubstitution_29() { return &___digitSubstitution_29; }
inline void set_digitSubstitution_29(int32_t value)
{
___digitSubstitution_29 = value;
}
inline static int32_t get_offset_of_isReadOnly_30() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___isReadOnly_30)); }
inline bool get_isReadOnly_30() const { return ___isReadOnly_30; }
inline bool* get_address_of_isReadOnly_30() { return &___isReadOnly_30; }
inline void set_isReadOnly_30(bool value)
{
___isReadOnly_30 = value;
}
inline static int32_t get_offset_of_m_useUserOverride_31() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___m_useUserOverride_31)); }
inline bool get_m_useUserOverride_31() const { return ___m_useUserOverride_31; }
inline bool* get_address_of_m_useUserOverride_31() { return &___m_useUserOverride_31; }
inline void set_m_useUserOverride_31(bool value)
{
___m_useUserOverride_31 = value;
}
inline static int32_t get_offset_of_m_isInvariant_32() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___m_isInvariant_32)); }
inline bool get_m_isInvariant_32() const { return ___m_isInvariant_32; }
inline bool* get_address_of_m_isInvariant_32() { return &___m_isInvariant_32; }
inline void set_m_isInvariant_32(bool value)
{
___m_isInvariant_32 = value;
}
inline static int32_t get_offset_of_validForParseAsNumber_33() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___validForParseAsNumber_33)); }
inline bool get_validForParseAsNumber_33() const { return ___validForParseAsNumber_33; }
inline bool* get_address_of_validForParseAsNumber_33() { return &___validForParseAsNumber_33; }
inline void set_validForParseAsNumber_33(bool value)
{
___validForParseAsNumber_33 = value;
}
inline static int32_t get_offset_of_validForParseAsCurrency_34() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___validForParseAsCurrency_34)); }
inline bool get_validForParseAsCurrency_34() const { return ___validForParseAsCurrency_34; }
inline bool* get_address_of_validForParseAsCurrency_34() { return &___validForParseAsCurrency_34; }
inline void set_validForParseAsCurrency_34(bool value)
{
___validForParseAsCurrency_34 = value;
}
};
struct NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8_StaticFields
{
public:
// System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.NumberFormatInfo::invariantInfo
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___invariantInfo_0;
public:
inline static int32_t get_offset_of_invariantInfo_0() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8_StaticFields, ___invariantInfo_0)); }
inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * get_invariantInfo_0() const { return ___invariantInfo_0; }
inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 ** get_address_of_invariantInfo_0() { return &___invariantInfo_0; }
inline void set_invariantInfo_0(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * value)
{
___invariantInfo_0 = value;
Il2CppCodeGenWriteBarrier((&___invariantInfo_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NUMBERFORMATINFO_TFDF57037EBC5BC833D0A53EF0327B805994860A8_H
#ifndef DIRECTORYNOTFOUNDEXCEPTION_TDD7866E46935FAD8898B4B35A82A354605DADF55_H
#define DIRECTORYNOTFOUNDEXCEPTION_TDD7866E46935FAD8898B4B35A82A354605DADF55_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.DirectoryNotFoundException
struct DirectoryNotFoundException_tDD7866E46935FAD8898B4B35A82A354605DADF55 : public IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DIRECTORYNOTFOUNDEXCEPTION_TDD7866E46935FAD8898B4B35A82A354605DADF55_H
#ifndef DRIVENOTFOUNDEXCEPTION_TE24C6582F3C8F9A24BF0BD5BE63BCB2B6983353C_H
#define DRIVENOTFOUNDEXCEPTION_TE24C6582F3C8F9A24BF0BD5BE63BCB2B6983353C_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.DriveNotFoundException
struct DriveNotFoundException_tE24C6582F3C8F9A24BF0BD5BE63BCB2B6983353C : public IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DRIVENOTFOUNDEXCEPTION_TE24C6582F3C8F9A24BF0BD5BE63BCB2B6983353C_H
#ifndef ENDOFSTREAMEXCEPTION_T1B47BA867EC337F83056C2833A59293754AAC01F_H
#define ENDOFSTREAMEXCEPTION_T1B47BA867EC337F83056C2833A59293754AAC01F_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.EndOfStreamException
struct EndOfStreamException_t1B47BA867EC337F83056C2833A59293754AAC01F : public IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENDOFSTREAMEXCEPTION_T1B47BA867EC337F83056C2833A59293754AAC01F_H
#ifndef FILENOTFOUNDEXCEPTION_T0B3F0AE5C94A781A7E2ABBD786F91C229B703431_H
#define FILENOTFOUNDEXCEPTION_T0B3F0AE5C94A781A7E2ABBD786F91C229B703431_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.FileNotFoundException
struct FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431 : public IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA
{
public:
// System.String System.IO.FileNotFoundException::_fileName
String_t* ____fileName_18;
// System.String System.IO.FileNotFoundException::_fusionLog
String_t* ____fusionLog_19;
public:
inline static int32_t get_offset_of__fileName_18() { return static_cast<int32_t>(offsetof(FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431, ____fileName_18)); }
inline String_t* get__fileName_18() const { return ____fileName_18; }
inline String_t** get_address_of__fileName_18() { return &____fileName_18; }
inline void set__fileName_18(String_t* value)
{
____fileName_18 = value;
Il2CppCodeGenWriteBarrier((&____fileName_18), value);
}
inline static int32_t get_offset_of__fusionLog_19() { return static_cast<int32_t>(offsetof(FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431, ____fusionLog_19)); }
inline String_t* get__fusionLog_19() const { return ____fusionLog_19; }
inline String_t** get_address_of__fusionLog_19() { return &____fusionLog_19; }
inline void set__fusionLog_19(String_t* value)
{
____fusionLog_19 = value;
Il2CppCodeGenWriteBarrier((&____fusionLog_19), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FILENOTFOUNDEXCEPTION_T0B3F0AE5C94A781A7E2ABBD786F91C229B703431_H
#ifndef FILESTREAM_TA770BF9AF0906644D43C81B962C7DBC3BC79A418_H
#define FILESTREAM_TA770BF9AF0906644D43C81B962C7DBC3BC79A418_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.FileStream
struct FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418 : public Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7
{
public:
// System.Byte[] System.IO.FileStream::buf
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buf_6;
// System.String System.IO.FileStream::name
String_t* ___name_7;
// Microsoft.Win32.SafeHandles.SafeFileHandle System.IO.FileStream::safeHandle
SafeFileHandle_tE1B31BE63CD11BBF2B9B6A205A72735F32EB1BCB * ___safeHandle_8;
// System.Boolean System.IO.FileStream::isExposed
bool ___isExposed_9;
// System.Int64 System.IO.FileStream::append_startpos
int64_t ___append_startpos_10;
// System.IO.FileAccess System.IO.FileStream::access
int32_t ___access_11;
// System.Boolean System.IO.FileStream::owner
bool ___owner_12;
// System.Boolean System.IO.FileStream::async
bool ___async_13;
// System.Boolean System.IO.FileStream::canseek
bool ___canseek_14;
// System.Boolean System.IO.FileStream::anonymous
bool ___anonymous_15;
// System.Boolean System.IO.FileStream::buf_dirty
bool ___buf_dirty_16;
// System.Int32 System.IO.FileStream::buf_size
int32_t ___buf_size_17;
// System.Int32 System.IO.FileStream::buf_length
int32_t ___buf_length_18;
// System.Int32 System.IO.FileStream::buf_offset
int32_t ___buf_offset_19;
// System.Int64 System.IO.FileStream::buf_start
int64_t ___buf_start_20;
public:
inline static int32_t get_offset_of_buf_6() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___buf_6)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_buf_6() const { return ___buf_6; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_buf_6() { return &___buf_6; }
inline void set_buf_6(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___buf_6 = value;
Il2CppCodeGenWriteBarrier((&___buf_6), value);
}
inline static int32_t get_offset_of_name_7() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___name_7)); }
inline String_t* get_name_7() const { return ___name_7; }
inline String_t** get_address_of_name_7() { return &___name_7; }
inline void set_name_7(String_t* value)
{
___name_7 = value;
Il2CppCodeGenWriteBarrier((&___name_7), value);
}
inline static int32_t get_offset_of_safeHandle_8() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___safeHandle_8)); }
inline SafeFileHandle_tE1B31BE63CD11BBF2B9B6A205A72735F32EB1BCB * get_safeHandle_8() const { return ___safeHandle_8; }
inline SafeFileHandle_tE1B31BE63CD11BBF2B9B6A205A72735F32EB1BCB ** get_address_of_safeHandle_8() { return &___safeHandle_8; }
inline void set_safeHandle_8(SafeFileHandle_tE1B31BE63CD11BBF2B9B6A205A72735F32EB1BCB * value)
{
___safeHandle_8 = value;
Il2CppCodeGenWriteBarrier((&___safeHandle_8), value);
}
inline static int32_t get_offset_of_isExposed_9() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___isExposed_9)); }
inline bool get_isExposed_9() const { return ___isExposed_9; }
inline bool* get_address_of_isExposed_9() { return &___isExposed_9; }
inline void set_isExposed_9(bool value)
{
___isExposed_9 = value;
}
inline static int32_t get_offset_of_append_startpos_10() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___append_startpos_10)); }
inline int64_t get_append_startpos_10() const { return ___append_startpos_10; }
inline int64_t* get_address_of_append_startpos_10() { return &___append_startpos_10; }
inline void set_append_startpos_10(int64_t value)
{
___append_startpos_10 = value;
}
inline static int32_t get_offset_of_access_11() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___access_11)); }
inline int32_t get_access_11() const { return ___access_11; }
inline int32_t* get_address_of_access_11() { return &___access_11; }
inline void set_access_11(int32_t value)
{
___access_11 = value;
}
inline static int32_t get_offset_of_owner_12() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___owner_12)); }
inline bool get_owner_12() const { return ___owner_12; }
inline bool* get_address_of_owner_12() { return &___owner_12; }
inline void set_owner_12(bool value)
{
___owner_12 = value;
}
inline static int32_t get_offset_of_async_13() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___async_13)); }
inline bool get_async_13() const { return ___async_13; }
inline bool* get_address_of_async_13() { return &___async_13; }
inline void set_async_13(bool value)
{
___async_13 = value;
}
inline static int32_t get_offset_of_canseek_14() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___canseek_14)); }
inline bool get_canseek_14() const { return ___canseek_14; }
inline bool* get_address_of_canseek_14() { return &___canseek_14; }
inline void set_canseek_14(bool value)
{
___canseek_14 = value;
}
inline static int32_t get_offset_of_anonymous_15() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___anonymous_15)); }
inline bool get_anonymous_15() const { return ___anonymous_15; }
inline bool* get_address_of_anonymous_15() { return &___anonymous_15; }
inline void set_anonymous_15(bool value)
{
___anonymous_15 = value;
}
inline static int32_t get_offset_of_buf_dirty_16() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___buf_dirty_16)); }
inline bool get_buf_dirty_16() const { return ___buf_dirty_16; }
inline bool* get_address_of_buf_dirty_16() { return &___buf_dirty_16; }
inline void set_buf_dirty_16(bool value)
{
___buf_dirty_16 = value;
}
inline static int32_t get_offset_of_buf_size_17() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___buf_size_17)); }
inline int32_t get_buf_size_17() const { return ___buf_size_17; }
inline int32_t* get_address_of_buf_size_17() { return &___buf_size_17; }
inline void set_buf_size_17(int32_t value)
{
___buf_size_17 = value;
}
inline static int32_t get_offset_of_buf_length_18() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___buf_length_18)); }
inline int32_t get_buf_length_18() const { return ___buf_length_18; }
inline int32_t* get_address_of_buf_length_18() { return &___buf_length_18; }
inline void set_buf_length_18(int32_t value)
{
___buf_length_18 = value;
}
inline static int32_t get_offset_of_buf_offset_19() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___buf_offset_19)); }
inline int32_t get_buf_offset_19() const { return ___buf_offset_19; }
inline int32_t* get_address_of_buf_offset_19() { return &___buf_offset_19; }
inline void set_buf_offset_19(int32_t value)
{
___buf_offset_19 = value;
}
inline static int32_t get_offset_of_buf_start_20() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___buf_start_20)); }
inline int64_t get_buf_start_20() const { return ___buf_start_20; }
inline int64_t* get_address_of_buf_start_20() { return &___buf_start_20; }
inline void set_buf_start_20(int64_t value)
{
___buf_start_20 = value;
}
};
struct FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418_StaticFields
{
public:
// System.Byte[] System.IO.FileStream::buf_recycle
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buf_recycle_4;
// System.Object System.IO.FileStream::buf_recycle_lock
RuntimeObject * ___buf_recycle_lock_5;
public:
inline static int32_t get_offset_of_buf_recycle_4() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418_StaticFields, ___buf_recycle_4)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_buf_recycle_4() const { return ___buf_recycle_4; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_buf_recycle_4() { return &___buf_recycle_4; }
inline void set_buf_recycle_4(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___buf_recycle_4 = value;
Il2CppCodeGenWriteBarrier((&___buf_recycle_4), value);
}
inline static int32_t get_offset_of_buf_recycle_lock_5() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418_StaticFields, ___buf_recycle_lock_5)); }
inline RuntimeObject * get_buf_recycle_lock_5() const { return ___buf_recycle_lock_5; }
inline RuntimeObject ** get_address_of_buf_recycle_lock_5() { return &___buf_recycle_lock_5; }
inline void set_buf_recycle_lock_5(RuntimeObject * value)
{
___buf_recycle_lock_5 = value;
Il2CppCodeGenWriteBarrier((&___buf_recycle_lock_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FILESTREAM_TA770BF9AF0906644D43C81B962C7DBC3BC79A418_H
#ifndef PATHTOOLONGEXCEPTION_T8DFBC40E5D45388A65B3327CF0D1F677C0F923AA_H
#define PATHTOOLONGEXCEPTION_T8DFBC40E5D45388A65B3327CF0D1F677C0F923AA_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.PathTooLongException
struct PathTooLongException_t8DFBC40E5D45388A65B3327CF0D1F677C0F923AA : public IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PATHTOOLONGEXCEPTION_T8DFBC40E5D45388A65B3327CF0D1F677C0F923AA_H
#ifndef NULLSTREAMREADER_T0417C5015CD6E626B701E9BE83FBD298CB22D5D0_H
#define NULLSTREAMREADER_T0417C5015CD6E626B701E9BE83FBD298CB22D5D0_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.StreamReader_NullStreamReader
struct NullStreamReader_t0417C5015CD6E626B701E9BE83FBD298CB22D5D0 : public StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NULLSTREAMREADER_T0417C5015CD6E626B701E9BE83FBD298CB22D5D0_H
#ifndef UNEXCEPTIONALSTREAMREADER_T30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_H
#define UNEXCEPTIONALSTREAMREADER_T30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.UnexceptionalStreamReader
struct UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA : public StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E
{
public:
public:
};
struct UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_StaticFields
{
public:
// System.Boolean[] System.IO.UnexceptionalStreamReader::newline
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* ___newline_21;
// System.Char System.IO.UnexceptionalStreamReader::newlineChar
Il2CppChar ___newlineChar_22;
public:
inline static int32_t get_offset_of_newline_21() { return static_cast<int32_t>(offsetof(UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_StaticFields, ___newline_21)); }
inline BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* get_newline_21() const { return ___newline_21; }
inline BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040** get_address_of_newline_21() { return &___newline_21; }
inline void set_newline_21(BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* value)
{
___newline_21 = value;
Il2CppCodeGenWriteBarrier((&___newline_21), value);
}
inline static int32_t get_offset_of_newlineChar_22() { return static_cast<int32_t>(offsetof(UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_StaticFields, ___newlineChar_22)); }
inline Il2CppChar get_newlineChar_22() const { return ___newlineChar_22; }
inline Il2CppChar* get_address_of_newlineChar_22() { return &___newlineChar_22; }
inline void set_newlineChar_22(Il2CppChar value)
{
___newlineChar_22 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNEXCEPTIONALSTREAMREADER_T30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_H
#ifndef UNEXCEPTIONALSTREAMWRITER_T15265DC169F829537681A0A5A1826F6713ABC1CB_H
#define UNEXCEPTIONALSTREAMWRITER_T15265DC169F829537681A0A5A1826F6713ABC1CB_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.UnexceptionalStreamWriter
struct UnexceptionalStreamWriter_t15265DC169F829537681A0A5A1826F6713ABC1CB : public StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNEXCEPTIONALSTREAMWRITER_T15265DC169F829537681A0A5A1826F6713ABC1CB_H
#ifndef UNMANAGEDMEMORYSTREAM_TB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E_H
#define UNMANAGEDMEMORYSTREAM_TB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.UnmanagedMemoryStream
struct UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E : public Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7
{
public:
// System.Runtime.InteropServices.SafeBuffer System.IO.UnmanagedMemoryStream::_buffer
SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208 * ____buffer_4;
// System.Byte* System.IO.UnmanagedMemoryStream::_mem
uint8_t* ____mem_5;
// System.Int64 System.IO.UnmanagedMemoryStream::_length
int64_t ____length_6;
// System.Int64 System.IO.UnmanagedMemoryStream::_capacity
int64_t ____capacity_7;
// System.Int64 System.IO.UnmanagedMemoryStream::_position
int64_t ____position_8;
// System.Int64 System.IO.UnmanagedMemoryStream::_offset
int64_t ____offset_9;
// System.IO.FileAccess System.IO.UnmanagedMemoryStream::_access
int32_t ____access_10;
// System.Boolean System.IO.UnmanagedMemoryStream::_isOpen
bool ____isOpen_11;
// System.Threading.Tasks.Task`1<System.Int32> System.IO.UnmanagedMemoryStream::_lastReadTask
Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * ____lastReadTask_12;
public:
inline static int32_t get_offset_of__buffer_4() { return static_cast<int32_t>(offsetof(UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E, ____buffer_4)); }
inline SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208 * get__buffer_4() const { return ____buffer_4; }
inline SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208 ** get_address_of__buffer_4() { return &____buffer_4; }
inline void set__buffer_4(SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208 * value)
{
____buffer_4 = value;
Il2CppCodeGenWriteBarrier((&____buffer_4), value);
}
inline static int32_t get_offset_of__mem_5() { return static_cast<int32_t>(offsetof(UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E, ____mem_5)); }
inline uint8_t* get__mem_5() const { return ____mem_5; }
inline uint8_t** get_address_of__mem_5() { return &____mem_5; }
inline void set__mem_5(uint8_t* value)
{
____mem_5 = value;
}
inline static int32_t get_offset_of__length_6() { return static_cast<int32_t>(offsetof(UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E, ____length_6)); }
inline int64_t get__length_6() const { return ____length_6; }
inline int64_t* get_address_of__length_6() { return &____length_6; }
inline void set__length_6(int64_t value)
{
____length_6 = value;
}
inline static int32_t get_offset_of__capacity_7() { return static_cast<int32_t>(offsetof(UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E, ____capacity_7)); }
inline int64_t get__capacity_7() const { return ____capacity_7; }
inline int64_t* get_address_of__capacity_7() { return &____capacity_7; }
inline void set__capacity_7(int64_t value)
{
____capacity_7 = value;
}
inline static int32_t get_offset_of__position_8() { return static_cast<int32_t>(offsetof(UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E, ____position_8)); }
inline int64_t get__position_8() const { return ____position_8; }
inline int64_t* get_address_of__position_8() { return &____position_8; }
inline void set__position_8(int64_t value)
{
____position_8 = value;
}
inline static int32_t get_offset_of__offset_9() { return static_cast<int32_t>(offsetof(UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E, ____offset_9)); }
inline int64_t get__offset_9() const { return ____offset_9; }
inline int64_t* get_address_of__offset_9() { return &____offset_9; }
inline void set__offset_9(int64_t value)
{
____offset_9 = value;
}
inline static int32_t get_offset_of__access_10() { return static_cast<int32_t>(offsetof(UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E, ____access_10)); }
inline int32_t get__access_10() const { return ____access_10; }
inline int32_t* get_address_of__access_10() { return &____access_10; }
inline void set__access_10(int32_t value)
{
____access_10 = value;
}
inline static int32_t get_offset_of__isOpen_11() { return static_cast<int32_t>(offsetof(UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E, ____isOpen_11)); }
inline bool get__isOpen_11() const { return ____isOpen_11; }
inline bool* get_address_of__isOpen_11() { return &____isOpen_11; }
inline void set__isOpen_11(bool value)
{
____isOpen_11 = value;
}
inline static int32_t get_offset_of__lastReadTask_12() { return static_cast<int32_t>(offsetof(UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E, ____lastReadTask_12)); }
inline Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * get__lastReadTask_12() const { return ____lastReadTask_12; }
inline Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 ** get_address_of__lastReadTask_12() { return &____lastReadTask_12; }
inline void set__lastReadTask_12(Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * value)
{
____lastReadTask_12 = value;
Il2CppCodeGenWriteBarrier((&____lastReadTask_12), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNMANAGEDMEMORYSTREAM_TB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E_H
#ifndef METHODACCESSEXCEPTION_TD507764699290F19BF6AF6DEE1E0068927E428EB_H
#define METHODACCESSEXCEPTION_TD507764699290F19BF6AF6DEE1E0068927E428EB_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.MethodAccessException
struct MethodAccessException_tD507764699290F19BF6AF6DEE1E0068927E428EB : public MemberAccessException_tDA869AFFB4FC1EA0EEF3143D85999710AC4774F0
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // METHODACCESSEXCEPTION_TD507764699290F19BF6AF6DEE1E0068927E428EB_H
#ifndef MISSINGMEMBEREXCEPTION_T165349A7E04FC51DAA5C2251C6DCDD2DD60255DD_H
#define MISSINGMEMBEREXCEPTION_T165349A7E04FC51DAA5C2251C6DCDD2DD60255DD_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.MissingMemberException
struct MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD : public MemberAccessException_tDA869AFFB4FC1EA0EEF3143D85999710AC4774F0
{
public:
// System.String System.MissingMemberException::ClassName
String_t* ___ClassName_17;
// System.String System.MissingMemberException::MemberName
String_t* ___MemberName_18;
// System.Byte[] System.MissingMemberException::Signature
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___Signature_19;
public:
inline static int32_t get_offset_of_ClassName_17() { return static_cast<int32_t>(offsetof(MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD, ___ClassName_17)); }
inline String_t* get_ClassName_17() const { return ___ClassName_17; }
inline String_t** get_address_of_ClassName_17() { return &___ClassName_17; }
inline void set_ClassName_17(String_t* value)
{
___ClassName_17 = value;
Il2CppCodeGenWriteBarrier((&___ClassName_17), value);
}
inline static int32_t get_offset_of_MemberName_18() { return static_cast<int32_t>(offsetof(MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD, ___MemberName_18)); }
inline String_t* get_MemberName_18() const { return ___MemberName_18; }
inline String_t** get_address_of_MemberName_18() { return &___MemberName_18; }
inline void set_MemberName_18(String_t* value)
{
___MemberName_18 = value;
Il2CppCodeGenWriteBarrier((&___MemberName_18), value);
}
inline static int32_t get_offset_of_Signature_19() { return static_cast<int32_t>(offsetof(MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD, ___Signature_19)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_Signature_19() const { return ___Signature_19; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_Signature_19() { return &___Signature_19; }
inline void set_Signature_19(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___Signature_19 = value;
Il2CppCodeGenWriteBarrier((&___Signature_19), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MISSINGMEMBEREXCEPTION_T165349A7E04FC51DAA5C2251C6DCDD2DD60255DD_H
#ifndef MULTICASTDELEGATE_T_H
#define MULTICASTDELEGATE_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.MulticastDelegate
struct MulticastDelegate_t : public Delegate_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((&___delegates_11), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_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;
};
#endif // MULTICASTDELEGATE_T_H
#ifndef OBJECTDISPOSEDEXCEPTION_TF68E471ECD1419AD7C51137B742837395F50B69A_H
#define OBJECTDISPOSEDEXCEPTION_TF68E471ECD1419AD7C51137B742837395F50B69A_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ObjectDisposedException
struct ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A : public InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1
{
public:
// System.String System.ObjectDisposedException::objectName
String_t* ___objectName_17;
public:
inline static int32_t get_offset_of_objectName_17() { return static_cast<int32_t>(offsetof(ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A, ___objectName_17)); }
inline String_t* get_objectName_17() const { return ___objectName_17; }
inline String_t** get_address_of_objectName_17() { return &___objectName_17; }
inline void set_objectName_17(String_t* value)
{
___objectName_17 = value;
Il2CppCodeGenWriteBarrier((&___objectName_17), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // OBJECTDISPOSEDEXCEPTION_TF68E471ECD1419AD7C51137B742837395F50B69A_H
#ifndef OVERFLOWEXCEPTION_TD89571E2350DE06D9DE4AB65ADCA77D607B5693D_H
#define OVERFLOWEXCEPTION_TD89571E2350DE06D9DE4AB65ADCA77D607B5693D_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.OverflowException
struct OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D : public ArithmeticException_tF9EF5FE94597830EF315C5934258F994B8648269
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // OVERFLOWEXCEPTION_TD89571E2350DE06D9DE4AB65ADCA77D607B5693D_H
#ifndef CUSTOMATTRIBUTEFORMATEXCEPTION_TE63CB0CF2AB9605E56F823E2F32B41C5E24E705D_H
#define CUSTOMATTRIBUTEFORMATEXCEPTION_TE63CB0CF2AB9605E56F823E2F32B41C5E24E705D_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.CustomAttributeFormatException
struct CustomAttributeFormatException_tE63CB0CF2AB9605E56F823E2F32B41C5E24E705D : public FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CUSTOMATTRIBUTEFORMATEXCEPTION_TE63CB0CF2AB9605E56F823E2F32B41C5E24E705D_H
#ifndef MONOEVENT_T_H
#define MONOEVENT_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.MonoEvent
struct MonoEvent_t : public RuntimeEventInfo_tFBC185ED030EEA019664838A8404821CB711BC09
{
public:
// System.IntPtr System.Reflection.MonoEvent::klass
intptr_t ___klass_1;
// System.IntPtr System.Reflection.MonoEvent::handle
intptr_t ___handle_2;
public:
inline static int32_t get_offset_of_klass_1() { return static_cast<int32_t>(offsetof(MonoEvent_t, ___klass_1)); }
inline intptr_t get_klass_1() const { return ___klass_1; }
inline intptr_t* get_address_of_klass_1() { return &___klass_1; }
inline void set_klass_1(intptr_t value)
{
___klass_1 = value;
}
inline static int32_t get_offset_of_handle_2() { return static_cast<int32_t>(offsetof(MonoEvent_t, ___handle_2)); }
inline intptr_t get_handle_2() const { return ___handle_2; }
inline intptr_t* get_address_of_handle_2() { return &___handle_2; }
inline void set_handle_2(intptr_t value)
{
___handle_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MONOEVENT_T_H
#ifndef MONOPROPERTYINFO_TC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F_H
#define MONOPROPERTYINFO_TC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.MonoPropertyInfo
struct MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F
{
public:
// System.Type System.Reflection.MonoPropertyInfo::parent
Type_t * ___parent_0;
// System.Type System.Reflection.MonoPropertyInfo::declaring_type
Type_t * ___declaring_type_1;
// System.String System.Reflection.MonoPropertyInfo::name
String_t* ___name_2;
// System.Reflection.MethodInfo System.Reflection.MonoPropertyInfo::get_method
MethodInfo_t * ___get_method_3;
// System.Reflection.MethodInfo System.Reflection.MonoPropertyInfo::set_method
MethodInfo_t * ___set_method_4;
// System.Reflection.PropertyAttributes System.Reflection.MonoPropertyInfo::attrs
int32_t ___attrs_5;
public:
inline static int32_t get_offset_of_parent_0() { return static_cast<int32_t>(offsetof(MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F, ___parent_0)); }
inline Type_t * get_parent_0() const { return ___parent_0; }
inline Type_t ** get_address_of_parent_0() { return &___parent_0; }
inline void set_parent_0(Type_t * value)
{
___parent_0 = value;
Il2CppCodeGenWriteBarrier((&___parent_0), value);
}
inline static int32_t get_offset_of_declaring_type_1() { return static_cast<int32_t>(offsetof(MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F, ___declaring_type_1)); }
inline Type_t * get_declaring_type_1() const { return ___declaring_type_1; }
inline Type_t ** get_address_of_declaring_type_1() { return &___declaring_type_1; }
inline void set_declaring_type_1(Type_t * value)
{
___declaring_type_1 = value;
Il2CppCodeGenWriteBarrier((&___declaring_type_1), value);
}
inline static int32_t get_offset_of_name_2() { return static_cast<int32_t>(offsetof(MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F, ___name_2)); }
inline String_t* get_name_2() const { return ___name_2; }
inline String_t** get_address_of_name_2() { return &___name_2; }
inline void set_name_2(String_t* value)
{
___name_2 = value;
Il2CppCodeGenWriteBarrier((&___name_2), value);
}
inline static int32_t get_offset_of_get_method_3() { return static_cast<int32_t>(offsetof(MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F, ___get_method_3)); }
inline MethodInfo_t * get_get_method_3() const { return ___get_method_3; }
inline MethodInfo_t ** get_address_of_get_method_3() { return &___get_method_3; }
inline void set_get_method_3(MethodInfo_t * value)
{
___get_method_3 = value;
Il2CppCodeGenWriteBarrier((&___get_method_3), value);
}
inline static int32_t get_offset_of_set_method_4() { return static_cast<int32_t>(offsetof(MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F, ___set_method_4)); }
inline MethodInfo_t * get_set_method_4() const { return ___set_method_4; }
inline MethodInfo_t ** get_address_of_set_method_4() { return &___set_method_4; }
inline void set_set_method_4(MethodInfo_t * value)
{
___set_method_4 = value;
Il2CppCodeGenWriteBarrier((&___set_method_4), value);
}
inline static int32_t get_offset_of_attrs_5() { return static_cast<int32_t>(offsetof(MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F, ___attrs_5)); }
inline int32_t get_attrs_5() const { return ___attrs_5; }
inline int32_t* get_address_of_attrs_5() { return &___attrs_5; }
inline void set_attrs_5(int32_t value)
{
___attrs_5 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Reflection.MonoPropertyInfo
struct MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F_marshaled_pinvoke
{
Type_t * ___parent_0;
Type_t * ___declaring_type_1;
char* ___name_2;
MethodInfo_t * ___get_method_3;
MethodInfo_t * ___set_method_4;
int32_t ___attrs_5;
};
// Native definition for COM marshalling of System.Reflection.MonoPropertyInfo
struct MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F_marshaled_com
{
Type_t * ___parent_0;
Type_t * ___declaring_type_1;
Il2CppChar* ___name_2;
MethodInfo_t * ___get_method_3;
MethodInfo_t * ___set_method_4;
int32_t ___attrs_5;
};
#endif // MONOPROPERTYINFO_TC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F_H
#ifndef PARAMETERINFO_T37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_H
#define PARAMETERINFO_T37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___ClassImpl_0), 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((&___DefaultValueImpl_1), 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((&___MemberImpl_2), 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((&___NameImpl_3), 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((&___marshalAs_6), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// 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;
};
#endif // PARAMETERINFO_T37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_H
#ifndef RUNTIMECONSTRUCTORINFO_TF21A59967629968D0BE5D0DAF677662824E9629D_H
#define RUNTIMECONSTRUCTORINFO_TF21A59967629968D0BE5D0DAF677662824E9629D_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.RuntimeConstructorInfo
struct RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D : public ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RUNTIMECONSTRUCTORINFO_TF21A59967629968D0BE5D0DAF677662824E9629D_H
#ifndef RUNTIMEMETHODINFO_TAA605450647FBADB423FB22832C3432CEEB36E3E_H
#define RUNTIMEMETHODINFO_TAA605450647FBADB423FB22832C3432CEEB36E3E_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.RuntimeMethodInfo
struct RuntimeMethodInfo_tAA605450647FBADB423FB22832C3432CEEB36E3E : public MethodInfo_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RUNTIMEMETHODINFO_TAA605450647FBADB423FB22832C3432CEEB36E3E_H
#ifndef STREAMINGCONTEXT_T2CCDC54E0E8D078AF4A50E3A8B921B828A900034_H
#define STREAMINGCONTEXT_T2CCDC54E0E8D078AF4A50E3A8B921B828A900034_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___m_additionalContext_0), 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// 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;
};
#endif // STREAMINGCONTEXT_T2CCDC54E0E8D078AF4A50E3A8B921B828A900034_H
#ifndef TASK_1_T640F0CBB720BB9CD14B90B7B81624471A9F56D87_H
#define TASK_1_T640F0CBB720BB9CD14B90B7B81624471A9F56D87_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.Task`1<System.Int32>
struct Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 : public Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2
{
public:
// TResult System.Threading.Tasks.Task`1::m_result
int32_t ___m_result_22;
public:
inline static int32_t get_offset_of_m_result_22() { return static_cast<int32_t>(offsetof(Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87, ___m_result_22)); }
inline int32_t get_m_result_22() const { return ___m_result_22; }
inline int32_t* get_address_of_m_result_22() { return &___m_result_22; }
inline void set_m_result_22(int32_t value)
{
___m_result_22 = value;
}
};
struct Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87_StaticFields
{
public:
// System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_Factory
TaskFactory_1_t35BBF03CDA9AA94D2BE8CB805D2C764236F56CC7 * ___s_Factory_23;
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<TResult>> System.Threading.Tasks.Task`1::TaskWhenAnyCast
Func_2_tBCA034BF330CE1C3008C166BF27F309CD4C41C24 * ___TaskWhenAnyCast_24;
public:
inline static int32_t get_offset_of_s_Factory_23() { return static_cast<int32_t>(offsetof(Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87_StaticFields, ___s_Factory_23)); }
inline TaskFactory_1_t35BBF03CDA9AA94D2BE8CB805D2C764236F56CC7 * get_s_Factory_23() const { return ___s_Factory_23; }
inline TaskFactory_1_t35BBF03CDA9AA94D2BE8CB805D2C764236F56CC7 ** get_address_of_s_Factory_23() { return &___s_Factory_23; }
inline void set_s_Factory_23(TaskFactory_1_t35BBF03CDA9AA94D2BE8CB805D2C764236F56CC7 * value)
{
___s_Factory_23 = value;
Il2CppCodeGenWriteBarrier((&___s_Factory_23), value);
}
inline static int32_t get_offset_of_TaskWhenAnyCast_24() { return static_cast<int32_t>(offsetof(Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87_StaticFields, ___TaskWhenAnyCast_24)); }
inline Func_2_tBCA034BF330CE1C3008C166BF27F309CD4C41C24 * get_TaskWhenAnyCast_24() const { return ___TaskWhenAnyCast_24; }
inline Func_2_tBCA034BF330CE1C3008C166BF27F309CD4C41C24 ** get_address_of_TaskWhenAnyCast_24() { return &___TaskWhenAnyCast_24; }
inline void set_TaskWhenAnyCast_24(Func_2_tBCA034BF330CE1C3008C166BF27F309CD4C41C24 * value)
{
___TaskWhenAnyCast_24 = value;
Il2CppCodeGenWriteBarrier((&___TaskWhenAnyCast_24), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TASK_1_T640F0CBB720BB9CD14B90B7B81624471A9F56D87_H
#ifndef TYPE_T_H
#define TYPE_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Type
struct Type_t : public MemberInfo_t
{
public:
// System.RuntimeTypeHandle System.Type::_impl
RuntimeTypeHandle_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((&___FilterAttribute_0), value);
}
inline static int32_t get_offset_of_FilterName_1() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_1)); }
inline MemberFilter_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((&___FilterName_1), value);
}
inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); }
inline MemberFilter_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((&___FilterNameIgnoreCase_2), value);
}
inline static int32_t get_offset_of_Missing_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_3)); }
inline RuntimeObject * get_Missing_3() const { return ___Missing_3; }
inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; }
inline void set_Missing_3(RuntimeObject * value)
{
___Missing_3 = value;
Il2CppCodeGenWriteBarrier((&___Missing_3), value);
}
inline static int32_t get_offset_of_Delimiter_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_4)); }
inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; }
inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; }
inline void set_Delimiter_4(Il2CppChar value)
{
___Delimiter_4 = value;
}
inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); }
inline TypeU5BU5D_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((&___EmptyTypes_5), value);
}
inline static int32_t get_offset_of_defaultBinder_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___defaultBinder_6)); }
inline Binder_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((&___defaultBinder_6), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TYPE_T_H
#ifndef ACTION_1_T551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0_H
#define ACTION_1_T551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Action`1<System.Object>
struct Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ACTION_1_T551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0_H
#ifndef FUNC_2_T8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6_H
#define FUNC_2_T8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Func`2<System.Object,System.Int32>
struct Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FUNC_2_T8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6_H
#ifndef FUNC_2_T44B347E67E515867D995E8BD5EFD67FA88CE53CF_H
#define FUNC_2_T44B347E67E515867D995E8BD5EFD67FA88CE53CF_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Func`2<System.Object,System.String>
struct Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FUNC_2_T44B347E67E515867D995E8BD5EFD67FA88CE53CF_H
#ifndef MISSINGFIELDEXCEPTION_TDDE5A10CB4AC8418D5507B2A00B8C55C8B053D37_H
#define MISSINGFIELDEXCEPTION_TDDE5A10CB4AC8418D5507B2A00B8C55C8B053D37_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.MissingFieldException
struct MissingFieldException_tDDE5A10CB4AC8418D5507B2A00B8C55C8B053D37 : public MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MISSINGFIELDEXCEPTION_TDDE5A10CB4AC8418D5507B2A00B8C55C8B053D37_H
#ifndef MISSINGMETHODEXCEPTION_T7D33DFD3009E4F19BE4DD0967F04D3878F348498_H
#define MISSINGMETHODEXCEPTION_T7D33DFD3009E4F19BE4DD0967F04D3878F348498_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.MissingMethodException
struct MissingMethodException_t7D33DFD3009E4F19BE4DD0967F04D3878F348498 : public MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD
{
public:
// System.String System.MissingMethodException::signature
String_t* ___signature_20;
public:
inline static int32_t get_offset_of_signature_20() { return static_cast<int32_t>(offsetof(MissingMethodException_t7D33DFD3009E4F19BE4DD0967F04D3878F348498, ___signature_20)); }
inline String_t* get_signature_20() const { return ___signature_20; }
inline String_t** get_address_of_signature_20() { return &___signature_20; }
inline void set_signature_20(String_t* value)
{
___signature_20 = value;
Il2CppCodeGenWriteBarrier((&___signature_20), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MISSINGMETHODEXCEPTION_T7D33DFD3009E4F19BE4DD0967F04D3878F348498_H
#ifndef NULLCONSOLEDRIVER_T4608D1A2E1195946C2945E3459E15364CF4EC43D_H
#define NULLCONSOLEDRIVER_T4608D1A2E1195946C2945E3459E15364CF4EC43D_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.NullConsoleDriver
struct NullConsoleDriver_t4608D1A2E1195946C2945E3459E15364CF4EC43D : public RuntimeObject
{
public:
public:
};
struct NullConsoleDriver_t4608D1A2E1195946C2945E3459E15364CF4EC43D_StaticFields
{
public:
// System.ConsoleKeyInfo System.NullConsoleDriver::EmptyConsoleKeyInfo
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 ___EmptyConsoleKeyInfo_0;
public:
inline static int32_t get_offset_of_EmptyConsoleKeyInfo_0() { return static_cast<int32_t>(offsetof(NullConsoleDriver_t4608D1A2E1195946C2945E3459E15364CF4EC43D_StaticFields, ___EmptyConsoleKeyInfo_0)); }
inline ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 get_EmptyConsoleKeyInfo_0() const { return ___EmptyConsoleKeyInfo_0; }
inline ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 * get_address_of_EmptyConsoleKeyInfo_0() { return &___EmptyConsoleKeyInfo_0; }
inline void set_EmptyConsoleKeyInfo_0(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 value)
{
___EmptyConsoleKeyInfo_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NULLCONSOLEDRIVER_T4608D1A2E1195946C2945E3459E15364CF4EC43D_H
#ifndef MONOCMETHOD_TFB85687BEF8202F8B3E77FE24BCC2E400EA4FC61_H
#define MONOCMETHOD_TFB85687BEF8202F8B3E77FE24BCC2E400EA4FC61_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.MonoCMethod
struct MonoCMethod_tFB85687BEF8202F8B3E77FE24BCC2E400EA4FC61 : public RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D
{
public:
// System.IntPtr System.Reflection.MonoCMethod::mhandle
intptr_t ___mhandle_2;
// System.String System.Reflection.MonoCMethod::name
String_t* ___name_3;
// System.Type System.Reflection.MonoCMethod::reftype
Type_t * ___reftype_4;
public:
inline static int32_t get_offset_of_mhandle_2() { return static_cast<int32_t>(offsetof(MonoCMethod_tFB85687BEF8202F8B3E77FE24BCC2E400EA4FC61, ___mhandle_2)); }
inline intptr_t get_mhandle_2() const { return ___mhandle_2; }
inline intptr_t* get_address_of_mhandle_2() { return &___mhandle_2; }
inline void set_mhandle_2(intptr_t value)
{
___mhandle_2 = value;
}
inline static int32_t get_offset_of_name_3() { return static_cast<int32_t>(offsetof(MonoCMethod_tFB85687BEF8202F8B3E77FE24BCC2E400EA4FC61, ___name_3)); }
inline String_t* get_name_3() const { return ___name_3; }
inline String_t** get_address_of_name_3() { return &___name_3; }
inline void set_name_3(String_t* value)
{
___name_3 = value;
Il2CppCodeGenWriteBarrier((&___name_3), value);
}
inline static int32_t get_offset_of_reftype_4() { return static_cast<int32_t>(offsetof(MonoCMethod_tFB85687BEF8202F8B3E77FE24BCC2E400EA4FC61, ___reftype_4)); }
inline Type_t * get_reftype_4() const { return ___reftype_4; }
inline Type_t ** get_address_of_reftype_4() { return &___reftype_4; }
inline void set_reftype_4(Type_t * value)
{
___reftype_4 = value;
Il2CppCodeGenWriteBarrier((&___reftype_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MONOCMETHOD_TFB85687BEF8202F8B3E77FE24BCC2E400EA4FC61_H
#ifndef MONOMETHOD_T_H
#define MONOMETHOD_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.MonoMethod
struct MonoMethod_t : public RuntimeMethodInfo_tAA605450647FBADB423FB22832C3432CEEB36E3E
{
public:
// System.IntPtr System.Reflection.MonoMethod::mhandle
intptr_t ___mhandle_0;
// System.String System.Reflection.MonoMethod::name
String_t* ___name_1;
// System.Type System.Reflection.MonoMethod::reftype
Type_t * ___reftype_2;
public:
inline static int32_t get_offset_of_mhandle_0() { return static_cast<int32_t>(offsetof(MonoMethod_t, ___mhandle_0)); }
inline intptr_t get_mhandle_0() const { return ___mhandle_0; }
inline intptr_t* get_address_of_mhandle_0() { return &___mhandle_0; }
inline void set_mhandle_0(intptr_t value)
{
___mhandle_0 = value;
}
inline static int32_t get_offset_of_name_1() { return static_cast<int32_t>(offsetof(MonoMethod_t, ___name_1)); }
inline String_t* get_name_1() const { return ___name_1; }
inline String_t** get_address_of_name_1() { return &___name_1; }
inline void set_name_1(String_t* value)
{
___name_1 = value;
Il2CppCodeGenWriteBarrier((&___name_1), value);
}
inline static int32_t get_offset_of_reftype_2() { return static_cast<int32_t>(offsetof(MonoMethod_t, ___reftype_2)); }
inline Type_t * get_reftype_2() const { return ___reftype_2; }
inline Type_t ** get_address_of_reftype_2() { return &___reftype_2; }
inline void set_reftype_2(Type_t * value)
{
___reftype_2 = value;
Il2CppCodeGenWriteBarrier((&___reftype_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MONOMETHOD_T_H
#ifndef MONOPROPERTY_T_H
#define MONOPROPERTY_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.MonoProperty
struct MonoProperty_t : public RuntimePropertyInfo_t241956A29299F26A2F8B8829685E9D1F0345C5E4
{
public:
// System.IntPtr System.Reflection.MonoProperty::klass
intptr_t ___klass_0;
// System.IntPtr System.Reflection.MonoProperty::prop
intptr_t ___prop_1;
// System.Reflection.MonoPropertyInfo System.Reflection.MonoProperty::info
MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F ___info_2;
// System.Reflection.PInfo System.Reflection.MonoProperty::cached
int32_t ___cached_3;
// System.Reflection.MonoProperty_GetterAdapter System.Reflection.MonoProperty::cached_getter
GetterAdapter_t74BFEC5259F2A8BF1BD37E9AA4232A397F4BC711 * ___cached_getter_4;
public:
inline static int32_t get_offset_of_klass_0() { return static_cast<int32_t>(offsetof(MonoProperty_t, ___klass_0)); }
inline intptr_t get_klass_0() const { return ___klass_0; }
inline intptr_t* get_address_of_klass_0() { return &___klass_0; }
inline void set_klass_0(intptr_t value)
{
___klass_0 = value;
}
inline static int32_t get_offset_of_prop_1() { return static_cast<int32_t>(offsetof(MonoProperty_t, ___prop_1)); }
inline intptr_t get_prop_1() const { return ___prop_1; }
inline intptr_t* get_address_of_prop_1() { return &___prop_1; }
inline void set_prop_1(intptr_t value)
{
___prop_1 = value;
}
inline static int32_t get_offset_of_info_2() { return static_cast<int32_t>(offsetof(MonoProperty_t, ___info_2)); }
inline MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F get_info_2() const { return ___info_2; }
inline MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F * get_address_of_info_2() { return &___info_2; }
inline void set_info_2(MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F value)
{
___info_2 = value;
}
inline static int32_t get_offset_of_cached_3() { return static_cast<int32_t>(offsetof(MonoProperty_t, ___cached_3)); }
inline int32_t get_cached_3() const { return ___cached_3; }
inline int32_t* get_address_of_cached_3() { return &___cached_3; }
inline void set_cached_3(int32_t value)
{
___cached_3 = value;
}
inline static int32_t get_offset_of_cached_getter_4() { return static_cast<int32_t>(offsetof(MonoProperty_t, ___cached_getter_4)); }
inline GetterAdapter_t74BFEC5259F2A8BF1BD37E9AA4232A397F4BC711 * get_cached_getter_4() const { return ___cached_getter_4; }
inline GetterAdapter_t74BFEC5259F2A8BF1BD37E9AA4232A397F4BC711 ** get_address_of_cached_getter_4() { return &___cached_getter_4; }
inline void set_cached_getter_4(GetterAdapter_t74BFEC5259F2A8BF1BD37E9AA4232A397F4BC711 * value)
{
___cached_getter_4 = value;
Il2CppCodeGenWriteBarrier((&___cached_getter_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MONOPROPERTY_T_H
#ifndef TYPEINFO_T9D6F65801A41B97F36138B15FD270A1550DBB3FC_H
#define TYPEINFO_T9D6F65801A41B97F36138B15FD270A1550DBB3FC_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.TypeInfo
struct TypeInfo_t9D6F65801A41B97F36138B15FD270A1550DBB3FC : public Type_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TYPEINFO_T9D6F65801A41B97F36138B15FD270A1550DBB3FC_H
#ifndef SAFEBUFFER_T9C39972A6152D9B18D97894AF4EB871581B64208_H
#define SAFEBUFFER_T9C39972A6152D9B18D97894AF4EB871581B64208_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.InteropServices.SafeBuffer
struct SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208 : public SafeHandleZeroOrMinusOneIsInvalid_t779A965C82098677DF1ED10A134DBCDEC8AACB8E
{
public:
// System.Boolean System.Runtime.InteropServices.SafeBuffer::inited
bool ___inited_6;
public:
inline static int32_t get_offset_of_inited_6() { return static_cast<int32_t>(offsetof(SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208, ___inited_6)); }
inline bool get_inited_6() const { return ___inited_6; }
inline bool* get_address_of_inited_6() { return &___inited_6; }
inline void set_inited_6(bool value)
{
___inited_6 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SAFEBUFFER_T9C39972A6152D9B18D97894AF4EB871581B64208_H
#ifndef RUNTIMETYPE_T40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_H
#define RUNTIMETYPE_T40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.RuntimeType
struct RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F : public TypeInfo_t9D6F65801A41B97F36138B15FD270A1550DBB3FC
{
public:
// System.MonoTypeInfo System.RuntimeType::type_info
MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D * ___type_info_26;
// System.Object System.RuntimeType::GenericCache
RuntimeObject * ___GenericCache_27;
// System.Reflection.RuntimeConstructorInfo System.RuntimeType::m_serializationCtor
RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D * ___m_serializationCtor_28;
public:
inline static int32_t get_offset_of_type_info_26() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F, ___type_info_26)); }
inline MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D * get_type_info_26() const { return ___type_info_26; }
inline MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D ** get_address_of_type_info_26() { return &___type_info_26; }
inline void set_type_info_26(MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D * value)
{
___type_info_26 = value;
Il2CppCodeGenWriteBarrier((&___type_info_26), value);
}
inline static int32_t get_offset_of_GenericCache_27() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F, ___GenericCache_27)); }
inline RuntimeObject * get_GenericCache_27() const { return ___GenericCache_27; }
inline RuntimeObject ** get_address_of_GenericCache_27() { return &___GenericCache_27; }
inline void set_GenericCache_27(RuntimeObject * value)
{
___GenericCache_27 = value;
Il2CppCodeGenWriteBarrier((&___GenericCache_27), value);
}
inline static int32_t get_offset_of_m_serializationCtor_28() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F, ___m_serializationCtor_28)); }
inline RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D * get_m_serializationCtor_28() const { return ___m_serializationCtor_28; }
inline RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D ** get_address_of_m_serializationCtor_28() { return &___m_serializationCtor_28; }
inline void set_m_serializationCtor_28(RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D * value)
{
___m_serializationCtor_28 = value;
Il2CppCodeGenWriteBarrier((&___m_serializationCtor_28), value);
}
};
struct RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields
{
public:
// System.RuntimeType System.RuntimeType::ValueType
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___ValueType_10;
// System.RuntimeType System.RuntimeType::EnumType
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___EnumType_11;
// System.RuntimeType System.RuntimeType::ObjectType
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___ObjectType_12;
// System.RuntimeType System.RuntimeType::StringType
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___StringType_13;
// System.RuntimeType System.RuntimeType::DelegateType
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___DelegateType_14;
// System.Type[] System.RuntimeType::s_SICtorParamTypes
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___s_SICtorParamTypes_15;
// System.RuntimeType System.RuntimeType::s_typedRef
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___s_typedRef_25;
public:
inline static int32_t get_offset_of_ValueType_10() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___ValueType_10)); }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_ValueType_10() const { return ___ValueType_10; }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_ValueType_10() { return &___ValueType_10; }
inline void set_ValueType_10(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value)
{
___ValueType_10 = value;
Il2CppCodeGenWriteBarrier((&___ValueType_10), value);
}
inline static int32_t get_offset_of_EnumType_11() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___EnumType_11)); }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_EnumType_11() const { return ___EnumType_11; }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_EnumType_11() { return &___EnumType_11; }
inline void set_EnumType_11(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value)
{
___EnumType_11 = value;
Il2CppCodeGenWriteBarrier((&___EnumType_11), value);
}
inline static int32_t get_offset_of_ObjectType_12() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___ObjectType_12)); }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_ObjectType_12() const { return ___ObjectType_12; }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_ObjectType_12() { return &___ObjectType_12; }
inline void set_ObjectType_12(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value)
{
___ObjectType_12 = value;
Il2CppCodeGenWriteBarrier((&___ObjectType_12), value);
}
inline static int32_t get_offset_of_StringType_13() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___StringType_13)); }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_StringType_13() const { return ___StringType_13; }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_StringType_13() { return &___StringType_13; }
inline void set_StringType_13(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value)
{
___StringType_13 = value;
Il2CppCodeGenWriteBarrier((&___StringType_13), value);
}
inline static int32_t get_offset_of_DelegateType_14() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___DelegateType_14)); }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_DelegateType_14() const { return ___DelegateType_14; }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_DelegateType_14() { return &___DelegateType_14; }
inline void set_DelegateType_14(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value)
{
___DelegateType_14 = value;
Il2CppCodeGenWriteBarrier((&___DelegateType_14), value);
}
inline static int32_t get_offset_of_s_SICtorParamTypes_15() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___s_SICtorParamTypes_15)); }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_s_SICtorParamTypes_15() const { return ___s_SICtorParamTypes_15; }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_s_SICtorParamTypes_15() { return &___s_SICtorParamTypes_15; }
inline void set_s_SICtorParamTypes_15(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
{
___s_SICtorParamTypes_15 = value;
Il2CppCodeGenWriteBarrier((&___s_SICtorParamTypes_15), value);
}
inline static int32_t get_offset_of_s_typedRef_25() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___s_typedRef_25)); }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_s_typedRef_25() const { return ___s_typedRef_25; }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_s_typedRef_25() { return &___s_typedRef_25; }
inline void set_s_typedRef_25(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value)
{
___s_typedRef_25 = value;
Il2CppCodeGenWriteBarrier((&___s_typedRef_25), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RUNTIMETYPE_T40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_H
#ifndef MONOTYPE_T_H
#define MONOTYPE_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.MonoType
struct MonoType_t : public RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MONOTYPE_T_H
// System.Char[]
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Il2CppChar m_Items[1];
public:
inline Il2CppChar GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Il2CppChar* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Il2CppChar value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Il2CppChar GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Il2CppChar* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Il2CppChar value)
{
m_Items[index] = value;
}
};
// System.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.Boolean[]
struct BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040 : public RuntimeArray
{
public:
ALIGN_FIELD (8) bool m_Items[1];
public:
inline bool GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline bool* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, bool value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline bool GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline bool* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, bool value)
{
m_Items[index] = value;
}
};
// System.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(m_Items + index, value);
}
inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier(m_Items + index, value);
}
};
// System.LocalDataStoreElement[]
struct LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0 : public RuntimeArray
{
public:
ALIGN_FIELD (8) LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * m_Items[1];
public:
inline LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA ** 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, LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier(m_Items + index, value);
}
inline LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier(m_Items + index, value);
}
};
// System.Double[]
struct DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D : public RuntimeArray
{
public:
ALIGN_FIELD (8) double m_Items[1];
public:
inline double GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline double* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, double value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline double GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline double* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, double value)
{
m_Items[index] = value;
}
};
// System.Attribute[]
struct AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * m_Items[1];
public:
inline Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 ** 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, Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier(m_Items + index, value);
}
inline Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier(m_Items + index, value);
}
};
// System.Reflection.CustomAttributeData[]
struct CustomAttributeDataU5BU5D_tE5B7BD0F5BF214F2158089D8B3FDA19FE1834BEB : public RuntimeArray
{
public:
ALIGN_FIELD (8) CustomAttributeData_t2CD9D78F97B6517D5DEE35DEE97159B02C078F88 * m_Items[1];
public:
inline CustomAttributeData_t2CD9D78F97B6517D5DEE35DEE97159B02C078F88 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline CustomAttributeData_t2CD9D78F97B6517D5DEE35DEE97159B02C078F88 ** 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, CustomAttributeData_t2CD9D78F97B6517D5DEE35DEE97159B02C078F88 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier(m_Items + index, value);
}
inline CustomAttributeData_t2CD9D78F97B6517D5DEE35DEE97159B02C078F88 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline CustomAttributeData_t2CD9D78F97B6517D5DEE35DEE97159B02C078F88 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, CustomAttributeData_t2CD9D78F97B6517D5DEE35DEE97159B02C078F88 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier(m_Items + index, 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(m_Items + index, 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(m_Items + index, 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(m_Items + index, 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(m_Items + index, 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(m_Items + index, 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(m_Items + index, value);
}
};
// System.Int32[]
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83 : 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;
}
};
extern "C" void Delegate_t_marshal_pinvoke(const Delegate_t& unmarshaled, Delegate_t_marshaled_pinvoke& marshaled);
extern "C" void Delegate_t_marshal_pinvoke_back(const Delegate_t_marshaled_pinvoke& marshaled, Delegate_t& unmarshaled);
extern "C" void Delegate_t_marshal_pinvoke_cleanup(Delegate_t_marshaled_pinvoke& marshaled);
extern "C" void Delegate_t_marshal_com(const Delegate_t& unmarshaled, Delegate_t_marshaled_com& marshaled);
extern "C" void Delegate_t_marshal_com_back(const Delegate_t_marshaled_com& marshaled, Delegate_t& unmarshaled);
extern "C" void Delegate_t_marshal_com_cleanup(Delegate_t_marshaled_com& marshaled);
// System.Void System.IO.SearchResultHandler`1<System.Object>::.ctor()
extern "C" IL2CPP_METHOD_ATTR void SearchResultHandler_1__ctor_m4699E42225BBEE44986AE8C44D37A72CF396166E_gshared (SearchResultHandler_1_t8F3FC374A9C3B6ACC965D7728D3926838F62AA4A * __this, const RuntimeMethod* method);
// System.Void System.Func`2<System.Object,System.Object>::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void Func_2__ctor_mE2AF7615AD18E9CD92B1909285F5EC5DA8D180C8_gshared (Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * __this, RuntimeObject * p0, intptr_t p1, const RuntimeMethod* method);
// System.Void System.Func`2<System.Object,System.Int32>::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void Func_2__ctor_m54408ED2EFA4F730EF559B45507C0009D7EC7917_gshared (Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * __this, RuntimeObject * p0, intptr_t p1, const RuntimeMethod* method);
// T1 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::get_Item1()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Tuple_4_get_Item1_mB9F3262AABCA302F85A50469C7EC4E7CB4524028_gshared (Tuple_4_tF7CBADC8FB46E4E6569992CB77252B1C464DA8B1 * __this, const RuntimeMethod* method);
// T2 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::get_Item2()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Tuple_4_get_Item2_mE1BF4632C63BD8DBF8A578455582CC2F21FD4002_gshared (Tuple_4_tF7CBADC8FB46E4E6569992CB77252B1C464DA8B1 * __this, const RuntimeMethod* method);
// T3 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::get_Item3()
extern "C" IL2CPP_METHOD_ATTR int32_t Tuple_4_get_Item3_mA5222F04F99CBA901A4A5B11CCE3D5DA7E8277C3_gshared (Tuple_4_tF7CBADC8FB46E4E6569992CB77252B1C464DA8B1 * __this, const RuntimeMethod* method);
// T4 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::get_Item4()
extern "C" IL2CPP_METHOD_ATTR int32_t Tuple_4_get_Item4_mBC1FC8F28A1BFFE2AB0AFD164DE6305FE98EDA69_gshared (Tuple_4_tF7CBADC8FB46E4E6569992CB77252B1C464DA8B1 * __this, const RuntimeMethod* method);
// System.Void System.Action`1<System.Object>::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510_gshared (Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * __this, RuntimeObject * p0, intptr_t p1, const RuntimeMethod* method);
// T1 System.Tuple`2<System.Object,System.Char>::get_Item1()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Tuple_2_get_Item1_mA483C126556F793CB20A05976E11B4A331D96AA9_gshared (Tuple_2_t10AF2DAB336473A3A993F224EC2171B187E7D000 * __this, const RuntimeMethod* method);
// T2 System.Tuple`2<System.Object,System.Char>::get_Item2()
extern "C" IL2CPP_METHOD_ATTR Il2CppChar Tuple_2_get_Item2_m41639BC03C1D91747BE1B3493BAC59AB4B6469AF_gshared (Tuple_2_t10AF2DAB336473A3A993F224EC2171B187E7D000 * __this, const RuntimeMethod* method);
// T1 System.Tuple`2<System.Object,System.Object>::get_Item1()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Tuple_2_get_Item1_m6510C633C5CE5469F032825306A482F311F89A20_gshared (Tuple_2_t66BEEC45F61266028F5253B4045F569CB4C812F5 * __this, const RuntimeMethod* method);
// T2 System.Tuple`2<System.Object,System.Object>::get_Item2()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Tuple_2_get_Item2_mF200874169D9957B0B84C426263AF8D9AC06F165_gshared (Tuple_2_t66BEEC45F61266028F5253B4045F569CB4C812F5 * __this, const RuntimeMethod* method);
// System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::FromCancellation<System.Int32>(System.Threading.CancellationToken)
extern "C" IL2CPP_METHOD_ATTR Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * Task_FromCancellation_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m9308AB377C21815221796A65F008519EA9FE7DE6_gshared (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken0, const RuntimeMethod* method);
// TResult System.Threading.Tasks.Task`1<System.Int32>::get_Result()
extern "C" IL2CPP_METHOD_ATTR int32_t Task_1_get_Result_m80E150EF93681DF361700DB6F78C976BE3EC871B_gshared (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * __this, const RuntimeMethod* method);
// System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::FromResult<System.Int32>(TResult)
extern "C" IL2CPP_METHOD_ATTR Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * Task_FromResult_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mFBACD0478E006CC68E4A4EAC261326DDE1B6D6CB_gshared (int32_t ___result0, const RuntimeMethod* method);
// System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::FromException<System.Int32>(System.Exception)
extern "C" IL2CPP_METHOD_ATTR Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * Task_FromException_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mF3C6382F7FF59C06CCB6AF3DEDF0C7E42B3EFC52_gshared (Exception_t * ___exception0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.Object>::Add(T)
extern "C" IL2CPP_METHOD_ATTR void List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, RuntimeObject * p0, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1<System.Object>::Remove(T)
extern "C" IL2CPP_METHOD_ATTR bool List_1_Remove_m908B647BB9F807676DACE34E3E73475C3C3751D4_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, RuntimeObject * p0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Add(TKey,TValue)
extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_Add_mC741BBB0A647C814227953DB9B23CB1BDF571C5B_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * p0, RuntimeObject * p1, const RuntimeMethod* method);
// TValue System.Collections.Generic.CollectionExtensions::GetValueOrDefault<System.Object,System.Object>(System.Collections.Generic.IReadOnlyDictionary`2<TKey,TValue>,TKey)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * CollectionExtensions_GetValueOrDefault_TisRuntimeObject_TisRuntimeObject_m65245601C668347780A2F6D1A8D7EEC7D79AD673_gshared (RuntimeObject* ___dictionary0, RuntimeObject * ___key1, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Remove(TKey)
extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_Remove_m0FCCD33CE2C6A7589E52A2AB0872FE361BF5EF60_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * p0, const RuntimeMethod* method);
// T System.Collections.Generic.List`1<System.Object>::get_Item(System.Int32)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, int32_t p0, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.List`1<System.Object>::get_Count()
extern "C" IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.Object>::.ctor()
extern "C" IL2CPP_METHOD_ATTR void List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor()
extern "C" IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m2C7E51568033239B506E15E7804A0B8658246498_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.Object>::.ctor(System.Int32)
extern "C" IL2CPP_METHOD_ATTR void List_1__ctor_mEE468B81D8E7C140F567D10FF7F5894A50EEEA57_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, int32_t p0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.Object>::CopyTo(T[],System.Int32)
extern "C" IL2CPP_METHOD_ATTR void List_1_CopyTo_mBC8DEE264FD7E346D098E28FB1D5096B0F9132FB_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* p0, int32_t p1, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor(System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m2895EBB13AA7D9232058658A7DC404DC5F608923_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, int32_t p0, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::TryGetValue(TKey,TValue&)
extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_m3455807C552312C60038DF52EF328C3687442DE3_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * p0, RuntimeObject ** p1, const RuntimeMethod* method);
// System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Array::AsReadOnly<System.Object>(T[])
extern "C" IL2CPP_METHOD_ATTR ReadOnlyCollection_1_t5D996E967221C71E4EC5CC11210C3076432D5A50 * Array_AsReadOnly_TisRuntimeObject_m5128285E46B9807817464A6C1048C00E81022EFF_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::set_Item(TKey,TValue)
extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_m466D001F105E25DEB5C9BCB17837EE92A27FDE93_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * p0, RuntimeObject * p1, const RuntimeMethod* method);
// System.Int32 System.Array::LastIndexOf<System.Object>(T[],T)
extern "C" IL2CPP_METHOD_ATTR int32_t Array_LastIndexOf_TisRuntimeObject_mADF32BA8AC5E3F1C5D224A446DA3C1F0E9CBC324_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, RuntimeObject * ___value1, const RuntimeMethod* method);
// System.Void System.Array::Resize<System.Char>(T[]&,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Array_Resize_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mE3769C688380A92B93977FA652B43B0C793F4EDC_gshared (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** ___array0, int32_t ___newSize1, const RuntimeMethod* method);
// System.Void System.IO.StreamReader::.ctor()
extern "C" IL2CPP_METHOD_ATTR void StreamReader__ctor_mFF4CF43617782C8B2EA8CED3C45571DD6B3AF7C6 (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, const RuntimeMethod* method);
// System.Void System.IO.StreamReader::Init(System.IO.Stream)
extern "C" IL2CPP_METHOD_ATTR void StreamReader_Init_mC5734A273A032305AF7F33DDB1BC2988C44D188C (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, const RuntimeMethod* method);
// System.Text.Encoding System.Text.Encoding::get_Unicode()
extern "C" IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Encoding_get_Unicode_m86CC470F70F9BB52DDB26721F0C0D6EDAFC318AA (const RuntimeMethod* method);
// System.Boolean System.Threading.Tasks.Task::get_IsCompleted()
extern "C" IL2CPP_METHOD_ATTR bool Task_get_IsCompleted_mA675F47CE1DBD1948BDC9215DCAE93F07FC32E19 (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, const RuntimeMethod* method);
// System.String System.Environment::GetResourceString(System.String)
extern "C" IL2CPP_METHOD_ATTR String_t* Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9 (String_t* ___key0, const RuntimeMethod* method);
// System.Void System.InvalidOperationException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706 (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.Text.UTF8Encoding::.ctor(System.Boolean,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void UTF8Encoding__ctor_m026030C6C39449C25EC6FA364AA0A49FB3ADCD9E (UTF8Encoding_t77ED103B749A387EF072C3429F48C91D12CA08DE * __this, bool ___encoderShouldEmitUTF8Identifier0, bool ___throwOnInvalidBytes1, const RuntimeMethod* method);
// System.Void System.Threading.Thread::MemoryBarrier()
extern "C" IL2CPP_METHOD_ATTR void Thread_MemoryBarrier_mAB9F6B8404ACCE0D17BEDBD656782FEDDBC9FB8A (const RuntimeMethod* method);
// System.Void System.IO.TextWriter::.ctor(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR void TextWriter__ctor_mB84CC0FA15C2F1759F4FFAB205C3E311EFAF3715 (TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * __this, RuntimeObject* ___formatProvider0, const RuntimeMethod* method);
// System.Text.Encoding System.IO.StreamWriter::get_UTF8NoBOM()
extern "C" IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * StreamWriter_get_UTF8NoBOM_mF9D881F064CFC1B6E16547F3E6830FD5E87A4CA8 (const RuntimeMethod* method);
// System.Void System.IO.StreamWriter::.ctor(System.IO.Stream,System.Text.Encoding,System.Int32,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void StreamWriter__ctor_mBDBE79E3F9A95CB601CEEE2D5464EA3DB663A779 (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding1, int32_t ___bufferSize2, bool ___leaveOpen3, const RuntimeMethod* method);
// System.Void System.ArgumentNullException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * __this, String_t* ___paramName0, const RuntimeMethod* method);
// System.Void System.ArgumentException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.String)
extern "C" IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method);
// System.Void System.IO.StreamWriter::Init(System.IO.Stream,System.Text.Encoding,System.Int32,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void StreamWriter_Init_m1AC24C15954A849C621FBEAFF94737EB12058FF5 (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___streamArg0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encodingArg1, int32_t ___bufferSize2, bool ___shouldLeaveOpen3, const RuntimeMethod* method);
// System.Void System.IO.StreamWriter::.ctor(System.String,System.Boolean,System.Text.Encoding,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void StreamWriter__ctor_m15EC5B8866FB9D0124CBE8E2C56AF4E5448E7FFD (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, String_t* ___path0, bool ___append1, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding2, int32_t ___bufferSize3, const RuntimeMethod* method);
// System.Void System.IO.StreamWriter::.ctor(System.String,System.Boolean,System.Text.Encoding,System.Int32,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void StreamWriter__ctor_m96BF593FFB42FB4DE81E4F37D4CF8F52DE34CC85 (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, String_t* ___path0, bool ___append1, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding2, int32_t ___bufferSize3, bool ___checkHost4, const RuntimeMethod* method);
// System.Int32 System.String::get_Length()
extern "C" IL2CPP_METHOD_ATTR int32_t String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018 (String_t* __this, const RuntimeMethod* method);
// System.IO.Stream System.IO.StreamWriter::CreateFile(System.String,System.Boolean,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * StreamWriter_CreateFile_m6900D5037BD4731DA905CA306E35DFFF26AFD3A6 (String_t* ___path0, bool ___append1, bool ___checkHost2, const RuntimeMethod* method);
// System.String System.IO.Path::GetFileName(System.String)
extern "C" IL2CPP_METHOD_ATTR String_t* Path_GetFileName_m2307E8E0B250632002840D9EC27DBABE9C4EB85E (String_t* ___path0, const RuntimeMethod* method);
// System.Void System.IO.FileStream::.ctor(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,System.Int32,System.IO.FileOptions,System.String,System.Boolean,System.Boolean,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void FileStream__ctor_m4818E4AD857A0B285557E2B41E582D2237F49209 (FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418 * __this, String_t* ___path0, int32_t ___mode1, int32_t ___access2, int32_t ___share3, int32_t ___bufferSize4, int32_t ___options5, String_t* ___msgPath6, bool ___bFromProxy7, bool ___useLongPath8, bool ___checkHost9, const RuntimeMethod* method);
// System.Void System.GC::SuppressFinalize(System.Object)
extern "C" IL2CPP_METHOD_ATTR void GC_SuppressFinalize_m037319A9B95A5BA437E806DE592802225EE5B425 (RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean System.IO.StreamWriter::get_LeaveOpen()
extern "C" IL2CPP_METHOD_ATTR bool StreamWriter_get_LeaveOpen_m32817B282FC0F87282FF1298322CD3826E0B2527 (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, const RuntimeMethod* method);
// System.Void System.IO.StreamWriter::CheckAsyncTaskInProgress()
extern "C" IL2CPP_METHOD_ATTR void StreamWriter_CheckAsyncTaskInProgress_mC3770987306B0EF9B870E1DB1D04723C1ACBA10E (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, const RuntimeMethod* method);
// System.Void System.IO.StreamWriter::Flush(System.Boolean,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void StreamWriter_Flush_m7C6A130948CE24E30E49CF155F5C8195DD2E4A1C (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, bool ___flushStream0, bool ___flushEncoder1, const RuntimeMethod* method);
// System.Void System.IO.TextWriter::Dispose(System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void TextWriter_Dispose_m53C25DF618C5F0D730B0E3EB96D056C301B66DFD (TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * __this, bool ___disposing0, const RuntimeMethod* method);
// System.Void System.IO.__Error::WriterClosed()
extern "C" IL2CPP_METHOD_ATTR void __Error_WriterClosed_m0CC83C102ABE14A259F83C3943DC72B372D1CC2F (const RuntimeMethod* method);
// System.Boolean System.Buffer::InternalBlockCopy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR bool Buffer_InternalBlockCopy_m80AEF70443EFBB84D8CCC36D477B8E17A8814FC2 (RuntimeArray * ___src0, int32_t ___srcOffsetBytes1, RuntimeArray * ___dst2, int32_t ___dstOffsetBytes3, int32_t ___byteCount4, const RuntimeMethod* method);
// System.Void System.ArgumentNullException::.ctor(System.String,System.String)
extern "C" IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method);
// System.Void System.String::CopyTo(System.Int32,System.Char[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void String_CopyTo_m054B8FF2ACBBA74F60199D98259E88395EAD3661 (String_t* __this, int32_t ___sourceIndex0, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___destination1, int32_t ___destinationIndex2, int32_t ___count3, const RuntimeMethod* method);
// System.Void System.IO.TextReader::.ctor()
extern "C" IL2CPP_METHOD_ATTR void TextReader__ctor_m55B663B30E5857236C635A37917C584BCB073E59 (TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * __this, const RuntimeMethod* method);
// System.Void System.IO.TextReader::Dispose(System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void TextReader_Dispose_m0DF461F7F5A52AD0C5ACB65BC5DD69106975AD0A (TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * __this, bool ___disposing0, const RuntimeMethod* method);
// System.Void System.IO.__Error::ReaderClosed()
extern "C" IL2CPP_METHOD_ATTR void __Error_ReaderClosed_mDEB32103741D23496C28421032CA44B7DB2E0717 (const RuntimeMethod* method);
// System.Char System.String::get_Chars(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96 (String_t* __this, int32_t ___index0, const RuntimeMethod* method);
// System.String System.String::Substring(System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR String_t* String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB (String_t* __this, int32_t ___startIndex0, int32_t ___length1, const RuntimeMethod* method);
// System.Void System.IO.SearchResultHandler`1<System.String>::.ctor()
inline void SearchResultHandler_1__ctor_m9FE92302F53647F2B3BE0C14514BF1EDFEA9BC32 (SearchResultHandler_1_t512E43241A0A98FD5802FD1BDA5ABD335315853C * __this, const RuntimeMethod* method)
{
(( void (*) (SearchResultHandler_1_t512E43241A0A98FD5802FD1BDA5ABD335315853C *, const RuntimeMethod*))SearchResultHandler_1__ctor_m4699E42225BBEE44986AE8C44D37A72CF396166E_gshared)(__this, method);
}
// Microsoft.Win32.Win32Native/WIN32_FIND_DATA System.IO.SearchResult::get_FindData()
extern "C" IL2CPP_METHOD_ATTR WIN32_FIND_DATA_t8A943FFC86D2F011824E8A9402E1DD1C54E27B56 * SearchResult_get_FindData_mDD555A3610B05788205821BEA598E0C00E7803DE (SearchResult_tB01A1197ED99DD064C9BB9ED2990ABCD8FD6BCAE * __this, const RuntimeMethod* method);
// System.Boolean System.IO.FileSystemEnumerableHelpers::IsFile(Microsoft.Win32.Win32Native/WIN32_FIND_DATA)
extern "C" IL2CPP_METHOD_ATTR bool FileSystemEnumerableHelpers_IsFile_m31E8694B440156340BA6E5C5F9639E506990BFBD (WIN32_FIND_DATA_t8A943FFC86D2F011824E8A9402E1DD1C54E27B56 * ___data0, const RuntimeMethod* method);
// System.Boolean System.IO.FileSystemEnumerableHelpers::IsDir(Microsoft.Win32.Win32Native/WIN32_FIND_DATA)
extern "C" IL2CPP_METHOD_ATTR bool FileSystemEnumerableHelpers_IsDir_mE9E04617BCC965AA8BE4AAE0E53E8283D9BE02C0 (WIN32_FIND_DATA_t8A943FFC86D2F011824E8A9402E1DD1C54E27B56 * ___data0, const RuntimeMethod* method);
// System.String System.IO.SearchResult::get_UserPath()
extern "C" IL2CPP_METHOD_ATTR String_t* SearchResult_get_UserPath_mB57A92D43162037A6A6F8AA91903F33C6D14B636 (SearchResult_tB01A1197ED99DD064C9BB9ED2990ABCD8FD6BCAE * __this, const RuntimeMethod* method);
// System.Void System.MarshalByRefObject::.ctor()
extern "C" IL2CPP_METHOD_ATTR void MarshalByRefObject__ctor_mD1C6F1D191B1A50DC93E8B214BCCA9BD93FDE850 (MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * __this, const RuntimeMethod* method);
// System.Void System.Text.StringBuilder::.ctor(System.Int32)
extern "C" IL2CPP_METHOD_ATTR void StringBuilder__ctor_m1C0F2D97B838537A2D0F64033AE4EF02D150A956 (StringBuilder_t * __this, int32_t ___capacity0, const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m549C532422286A982F7956C9BAE197D00B30DCA8 (StringBuilder_t * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___value0, int32_t ___startIndex1, int32_t ___charCount2, const RuntimeMethod* method);
// System.Void System.Text.StringBuilder::.ctor()
extern "C" IL2CPP_METHOD_ATTR void StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E (StringBuilder_t * __this, const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char)
extern "C" IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A (StringBuilder_t * __this, Il2CppChar ___value0, const RuntimeMethod* method);
// System.Int32 System.Text.StringBuilder::get_Length()
extern "C" IL2CPP_METHOD_ATTR int32_t StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07 (StringBuilder_t * __this, const RuntimeMethod* method);
// System.Void System.IO.TextReader/SyncTextReader::.ctor(System.IO.TextReader)
extern "C" IL2CPP_METHOD_ATTR void SyncTextReader__ctor_m446DFB6FF4BB359C37F582969794678305C7AC00 (SyncTextReader_t7F10F41C83862CC5CE2C92DD5A7DF48D8A645EB8 * __this, TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * ___t0, const RuntimeMethod* method);
// System.Void System.Func`2<System.Object,System.String>::.ctor(System.Object,System.IntPtr)
inline void Func_2__ctor_m0E11CA9B34D5352759D42FDEA69CC14E7C949427 (Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF * __this, RuntimeObject * p0, intptr_t p1, const RuntimeMethod* method)
{
(( void (*) (Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_2__ctor_mE2AF7615AD18E9CD92B1909285F5EC5DA8D180C8_gshared)(__this, p0, p1, method);
}
// System.Void System.Func`2<System.Object,System.Int32>::.ctor(System.Object,System.IntPtr)
inline void Func_2__ctor_m54408ED2EFA4F730EF559B45507C0009D7EC7917 (Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * __this, RuntimeObject * p0, intptr_t p1, const RuntimeMethod* method)
{
(( void (*) (Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_2__ctor_m54408ED2EFA4F730EF559B45507C0009D7EC7917_gshared)(__this, p0, p1, method);
}
// System.Void System.IO.TextReader/NullTextReader::.ctor()
extern "C" IL2CPP_METHOD_ATTR void NullTextReader__ctor_m7397DE48AF5DCEFAC0F1B12637AF1C54D1CB59B6 (NullTextReader_tCEFA26A066B5EE58FEC359F4D3791D42EB7A03C1 * __this, const RuntimeMethod* method);
// System.Void System.IO.TextReader/<>c::.ctor()
extern "C" IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_mD3FA2AB29BCF10A7A60EC4C6780195BE8F6F7C3A (U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590 * __this, const RuntimeMethod* method);
// System.Void System.Object::.ctor()
extern "C" IL2CPP_METHOD_ATTR void Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0 (RuntimeObject * __this, const RuntimeMethod* method);
// T1 System.Tuple`4<System.IO.TextReader,System.Char[],System.Int32,System.Int32>::get_Item1()
inline TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * Tuple_4_get_Item1_m39C8A1A8D6E4AF89146C46BC85FC3558DA836A87 (Tuple_4_tBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE * __this, const RuntimeMethod* method)
{
return (( TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * (*) (Tuple_4_tBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE *, const RuntimeMethod*))Tuple_4_get_Item1_mB9F3262AABCA302F85A50469C7EC4E7CB4524028_gshared)(__this, method);
}
// T2 System.Tuple`4<System.IO.TextReader,System.Char[],System.Int32,System.Int32>::get_Item2()
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* Tuple_4_get_Item2_mB5B46A5AB646B577CA14E9F4D0468B390E46801B (Tuple_4_tBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE * __this, const RuntimeMethod* method)
{
return (( CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* (*) (Tuple_4_tBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE *, const RuntimeMethod*))Tuple_4_get_Item2_mE1BF4632C63BD8DBF8A578455582CC2F21FD4002_gshared)(__this, method);
}
// T3 System.Tuple`4<System.IO.TextReader,System.Char[],System.Int32,System.Int32>::get_Item3()
inline int32_t Tuple_4_get_Item3_m9DC2B35F08BABAEAEF52F778F565CA1CA7FD97DA (Tuple_4_tBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Tuple_4_tBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE *, const RuntimeMethod*))Tuple_4_get_Item3_mA5222F04F99CBA901A4A5B11CCE3D5DA7E8277C3_gshared)(__this, method);
}
// T4 System.Tuple`4<System.IO.TextReader,System.Char[],System.Int32,System.Int32>::get_Item4()
inline int32_t Tuple_4_get_Item4_m6E1B7A0E892B4180E4B6FFBBAF3448082FAEC52F (Tuple_4_tBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Tuple_4_tBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE *, const RuntimeMethod*))Tuple_4_get_Item4_mBC1FC8F28A1BFFE2AB0AFD164DE6305FE98EDA69_gshared)(__this, method);
}
// System.String System.Environment::get_NewLine()
extern "C" IL2CPP_METHOD_ATTR String_t* Environment_get_NewLine_m5D4F4667FA5D1E2DBDD4DF9696D0CE76C83EF318 (const RuntimeMethod* method);
// System.String System.IO.TextWriter::get_InitialNewLine()
extern "C" IL2CPP_METHOD_ATTR String_t* TextWriter_get_InitialNewLine_mAC9E797CB00F45DB3E2210A88156593962322E26 (const RuntimeMethod* method);
// System.Char[] System.String::ToCharArray()
extern "C" IL2CPP_METHOD_ATTR CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* String_ToCharArray_mFCFF32A5EC698E81075E0C72C874282B9ED197A6 (String_t* __this, const RuntimeMethod* method);
// System.Threading.Thread System.Threading.Thread::get_CurrentThread()
extern "C" IL2CPP_METHOD_ATTR Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * Thread_get_CurrentThread_mB7A83CAE2B9A74CEA053196DFD1AF1E7AB30A70E (const RuntimeMethod* method);
// System.Globalization.CultureInfo System.Threading.Thread::get_CurrentCulture()
extern "C" IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * Thread_get_CurrentCulture_m97A15448A16FB3B5EC1E21A0538C9FC1F84AEE66 (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, const RuntimeMethod* method);
// System.Void System.IO.TextWriter/SyncTextWriter::.ctor(System.IO.TextWriter)
extern "C" IL2CPP_METHOD_ATTR void SyncTextWriter__ctor_m91ED4D434EA5ADAAAC7C914E8CF4EEEED23AD3B6 (SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93 * __this, TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * ___t0, const RuntimeMethod* method);
// System.String System.String::Format(System.IFormatProvider,System.String,System.Object)
extern "C" IL2CPP_METHOD_ATTR String_t* String_Format_m30892041DA5F50D7B8CFD82FFC0F55B5B97A2B7F (RuntimeObject* ___provider0, String_t* ___format1, RuntimeObject * ___arg02, const RuntimeMethod* method);
// System.String System.String::Format(System.IFormatProvider,System.String,System.Object,System.Object)
extern "C" IL2CPP_METHOD_ATTR String_t* String_Format_m453C2840536781B718FF4D0F5C7EEC8E5481C435 (RuntimeObject* ___provider0, String_t* ___format1, RuntimeObject * ___arg02, RuntimeObject * ___arg13, const RuntimeMethod* method);
// System.Void System.IO.TextWriter/NullTextWriter::.ctor()
extern "C" IL2CPP_METHOD_ATTR void NullTextWriter__ctor_m8F8E71063B4BFCDBC22823364C0CABC7CB5EA7C6 (NullTextWriter_t0831C630ABC3E000027E0BD4A8FC59B3D416E3C5 * __this, const RuntimeMethod* method);
// System.Void System.Action`1<System.Object>::.ctor(System.Object,System.IntPtr)
inline void Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510 (Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * __this, RuntimeObject * p0, intptr_t p1, const RuntimeMethod* method)
{
(( void (*) (Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510_gshared)(__this, p0, p1, method);
}
// System.Void System.IO.TextWriter/<>c::.ctor()
extern "C" IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m4BFB82C1926D0A1E0F29F2793EEF2848A79883C6 (U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 * __this, const RuntimeMethod* method);
// T1 System.Tuple`2<System.IO.TextWriter,System.Char>::get_Item1()
inline TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * Tuple_2_get_Item1_m527678C5A00E2F9C507E8D584FB3DC1C322626E2 (Tuple_2_t090B35D3DF6A166894F43442BEFD1A1F08D0EEC8 * __this, const RuntimeMethod* method)
{
return (( TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * (*) (Tuple_2_t090B35D3DF6A166894F43442BEFD1A1F08D0EEC8 *, const RuntimeMethod*))Tuple_2_get_Item1_mA483C126556F793CB20A05976E11B4A331D96AA9_gshared)(__this, method);
}
// T2 System.Tuple`2<System.IO.TextWriter,System.Char>::get_Item2()
inline Il2CppChar Tuple_2_get_Item2_m5C14925582F6593098C9A7B04EED31F70AE0D908 (Tuple_2_t090B35D3DF6A166894F43442BEFD1A1F08D0EEC8 * __this, const RuntimeMethod* method)
{
return (( Il2CppChar (*) (Tuple_2_t090B35D3DF6A166894F43442BEFD1A1F08D0EEC8 *, const RuntimeMethod*))Tuple_2_get_Item2_m41639BC03C1D91747BE1B3493BAC59AB4B6469AF_gshared)(__this, method);
}
// T1 System.Tuple`2<System.IO.TextWriter,System.String>::get_Item1()
inline TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * Tuple_2_get_Item1_mA19909B4C3EABD3B8D6195E5E7F669EE836229E1 (Tuple_2_tD1FC5C7507045B6D28C0A35144BF8C31F5FAC962 * __this, const RuntimeMethod* method)
{
return (( TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * (*) (Tuple_2_tD1FC5C7507045B6D28C0A35144BF8C31F5FAC962 *, const RuntimeMethod*))Tuple_2_get_Item1_m6510C633C5CE5469F032825306A482F311F89A20_gshared)(__this, method);
}
// T2 System.Tuple`2<System.IO.TextWriter,System.String>::get_Item2()
inline String_t* Tuple_2_get_Item2_m70254B4E070331E2DEFB6DFAC62E3AA89487CF9B (Tuple_2_tD1FC5C7507045B6D28C0A35144BF8C31F5FAC962 * __this, const RuntimeMethod* method)
{
return (( String_t* (*) (Tuple_2_tD1FC5C7507045B6D28C0A35144BF8C31F5FAC962 *, const RuntimeMethod*))Tuple_2_get_Item2_mF200874169D9957B0B84C426263AF8D9AC06F165_gshared)(__this, method);
}
// T1 System.Tuple`4<System.IO.TextWriter,System.Char[],System.Int32,System.Int32>::get_Item1()
inline TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * Tuple_4_get_Item1_m32F731E4D564371F4E37481673CA7CF2F7BD5272 (Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094 * __this, const RuntimeMethod* method)
{
return (( TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * (*) (Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094 *, const RuntimeMethod*))Tuple_4_get_Item1_mB9F3262AABCA302F85A50469C7EC4E7CB4524028_gshared)(__this, method);
}
// T2 System.Tuple`4<System.IO.TextWriter,System.Char[],System.Int32,System.Int32>::get_Item2()
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* Tuple_4_get_Item2_mF40CE211C4A2B12E95DA95E399E6F83EEDC21BC4 (Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094 * __this, const RuntimeMethod* method)
{
return (( CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* (*) (Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094 *, const RuntimeMethod*))Tuple_4_get_Item2_mE1BF4632C63BD8DBF8A578455582CC2F21FD4002_gshared)(__this, method);
}
// T3 System.Tuple`4<System.IO.TextWriter,System.Char[],System.Int32,System.Int32>::get_Item3()
inline int32_t Tuple_4_get_Item3_mABD6CF1A9B4DE5BABDC83733456B99CD19C26F46 (Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094 *, const RuntimeMethod*))Tuple_4_get_Item3_mA5222F04F99CBA901A4A5B11CCE3D5DA7E8277C3_gshared)(__this, method);
}
// T4 System.Tuple`4<System.IO.TextWriter,System.Char[],System.Int32,System.Int32>::get_Item4()
inline int32_t Tuple_4_get_Item4_mDA629EEB249C899F4520F710850DB753C680B86E (Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094 *, const RuntimeMethod*))Tuple_4_get_Item4_mBC1FC8F28A1BFFE2AB0AFD164DE6305FE98EDA69_gshared)(__this, method);
}
// System.Globalization.CultureInfo System.Globalization.CultureInfo::get_InvariantCulture()
extern "C" IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72 (const RuntimeMethod* method);
// System.Void System.IO.StreamReader::.ctor(System.IO.Stream,System.Text.Encoding)
extern "C" IL2CPP_METHOD_ATTR void StreamReader__ctor_mF319C927A1274118E912D93F2EB2AAE4DA17E3DC (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding1, const RuntimeMethod* method);
// System.Int32 System.IO.StreamReader::Peek()
extern "C" IL2CPP_METHOD_ATTR int32_t StreamReader_Peek_m8C914AF78EEF625B3DD817688FF76FCA1BA62E50 (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, const RuntimeMethod* method);
// System.Int32 System.IO.StreamReader::Read()
extern "C" IL2CPP_METHOD_ATTR int32_t StreamReader_Read_m04DCEDFC21FBC69F0E795164739D799FEA69562E (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, const RuntimeMethod* method);
// System.Boolean System.IO.UnexceptionalStreamReader::CheckEOL(System.Char)
extern "C" IL2CPP_METHOD_ATTR bool UnexceptionalStreamReader_CheckEOL_mB2A29E7FB02FC55ADFCA77C29386227B66AD0199 (UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA * __this, Il2CppChar ___current0, const RuntimeMethod* method);
// System.String System.IO.StreamReader::ReadLine()
extern "C" IL2CPP_METHOD_ATTR String_t* StreamReader_ReadLine_m6F43A4370F3F23B1882543F76DAF5AA30681E477 (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, const RuntimeMethod* method);
// System.String System.IO.StreamReader::ReadToEnd()
extern "C" IL2CPP_METHOD_ATTR String_t* StreamReader_ReadToEnd_m5AB87727EA94EEC0577189AFBC4EE9FAAA22C2FB (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, const RuntimeMethod* method);
// System.Void System.IO.StreamWriter::Flush()
extern "C" IL2CPP_METHOD_ATTR void StreamWriter_Flush_m326E76BE755A73CCBCD715166925FC9C5ADF8FB5 (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, const RuntimeMethod* method);
// System.Void System.IO.StreamWriter::Write(System.Char[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void StreamWriter_Write_m8056BDE8A4AD4816F9D7DBDBCB80D03BE8F3ED14 (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method);
// System.Void System.IO.StreamWriter::Write(System.Char)
extern "C" IL2CPP_METHOD_ATTR void StreamWriter_Write_mF8B514CF8D521D390B0F1F9950851B358560F623 (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, Il2CppChar ___value0, const RuntimeMethod* method);
// System.Void System.IO.StreamWriter::Write(System.Char[])
extern "C" IL2CPP_METHOD_ATTR void StreamWriter_Write_m71F168D89F89E740DF5E16D48C58624712CA808A (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___buffer0, const RuntimeMethod* method);
// System.Void System.IO.StreamWriter::Write(System.String)
extern "C" IL2CPP_METHOD_ATTR void StreamWriter_Write_mDBCA4E464A543DFD00B0619943BA0C7F15DB55FE (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void System.IO.Stream::.ctor()
extern "C" IL2CPP_METHOD_ATTR void Stream__ctor_m58342D6FD95230C6BA1058E5698AB4BAF0A4DBF5 (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * __this, const RuntimeMethod* method);
// System.Void System.IO.UnmanagedMemoryStream::Initialize(System.Byte*,System.Int64,System.Int64,System.IO.FileAccess,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void UnmanagedMemoryStream_Initialize_m8DAC8A1A09A4FA06187944DE2DA5D718FDFB6196 (UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E * __this, uint8_t* ___pointer0, int64_t ___length1, int64_t ___capacity2, int32_t ___access3, bool ___skipSecurityCheck4, const RuntimeMethod* method);
// System.Void System.IO.Stream::Dispose(System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void Stream_Dispose_mC0F23B2D31DC853B12A10F0233173A278FF21B05 (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * __this, bool ___disposing0, const RuntimeMethod* method);
// System.Void System.IO.__Error::StreamIsClosed()
extern "C" IL2CPP_METHOD_ATTR void __Error_StreamIsClosed_mAD2694451AA25C7099F2FD1C2357D5C3F1969F37 (const RuntimeMethod* method);
// System.Int64 System.Threading.Interlocked::Read(System.Int64&)
extern "C" IL2CPP_METHOD_ATTR int64_t Interlocked_Read_m6D73F1AA4709D4F871C6323FEBD3EEC45124B8CB (int64_t* ___location0, const RuntimeMethod* method);
// System.Int64 System.Threading.Interlocked::Exchange(System.Int64&,System.Int64)
extern "C" IL2CPP_METHOD_ATTR int64_t Interlocked_Exchange_m58CD9F00310C5BEA719E658CD6E7EDD08F09C0BB (int64_t* ___location10, int64_t ___value1, const RuntimeMethod* method);
// System.Void System.NotSupportedException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.IndexOutOfRangeException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void IndexOutOfRangeException__ctor_mCCE2EFF47A0ACB4B2636F63140F94FCEA71A9BCA (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.IO.__Error::ReadNotSupported()
extern "C" IL2CPP_METHOD_ATTR void __Error_ReadNotSupported_mE20D002F31774F786CAC01DE88CF2FD9F46C0696 (const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.RuntimeHelpers::PrepareConstrainedRegions()
extern "C" IL2CPP_METHOD_ATTR void RuntimeHelpers_PrepareConstrainedRegions_m108F0650C70D15D3CC657AFEBA8E69770EDB9027 (const RuntimeMethod* method);
// System.Void System.Runtime.InteropServices.SafeBuffer::AcquirePointer(System.Byte*&)
extern "C" IL2CPP_METHOD_ATTR void SafeBuffer_AcquirePointer_mD2A94F6258AB8805DFE25E1FA39B5B11B544A4E6 (SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208 * __this, uint8_t** ___pointer0, const RuntimeMethod* method);
// System.Void System.Buffer::Memcpy(System.Byte[],System.Int32,System.Byte*,System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Buffer_Memcpy_mDB0DE0234F1410CA74D01118A783FFB927B73354 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___dest0, int32_t ___destIndex1, uint8_t* ___src2, int32_t ___srcIndex3, int32_t ___len4, const RuntimeMethod* method);
// System.Void System.Runtime.InteropServices.SafeBuffer::ReleasePointer()
extern "C" IL2CPP_METHOD_ATTR void SafeBuffer_ReleasePointer_m27C2B7F09E29271161CB2987088305220F3E227D (SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208 * __this, const RuntimeMethod* method);
// System.Boolean System.Threading.CancellationToken::get_IsCancellationRequested()
extern "C" IL2CPP_METHOD_ATTR bool CancellationToken_get_IsCancellationRequested_mCF3521778F20F7048B7121885794B9562324447D (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB * __this, const RuntimeMethod* method);
// System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::FromCancellation<System.Int32>(System.Threading.CancellationToken)
inline Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * Task_FromCancellation_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m9308AB377C21815221796A65F008519EA9FE7DE6 (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken0, const RuntimeMethod* method)
{
return (( Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * (*) (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB , const RuntimeMethod*))Task_FromCancellation_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m9308AB377C21815221796A65F008519EA9FE7DE6_gshared)(___cancellationToken0, method);
}
// TResult System.Threading.Tasks.Task`1<System.Int32>::get_Result()
inline int32_t Task_1_get_Result_m80E150EF93681DF361700DB6F78C976BE3EC871B (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *, const RuntimeMethod*))Task_1_get_Result_m80E150EF93681DF361700DB6F78C976BE3EC871B_gshared)(__this, method);
}
// System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::FromResult<System.Int32>(TResult)
inline Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * Task_FromResult_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mFBACD0478E006CC68E4A4EAC261326DDE1B6D6CB (int32_t ___result0, const RuntimeMethod* method)
{
return (( Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * (*) (int32_t, const RuntimeMethod*))Task_FromResult_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mFBACD0478E006CC68E4A4EAC261326DDE1B6D6CB_gshared)(___result0, method);
}
// System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::FromException<System.Int32>(System.Exception)
inline Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * Task_FromException_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mF3C6382F7FF59C06CCB6AF3DEDF0C7E42B3EFC52 (Exception_t * ___exception0, const RuntimeMethod* method)
{
return (( Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * (*) (Exception_t *, const RuntimeMethod*))Task_FromException_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mF3C6382F7FF59C06CCB6AF3DEDF0C7E42B3EFC52_gshared)(___exception0, method);
}
// System.Void System.IO.IOException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void IOException__ctor_mB64DEFB376AA8E279A647A3770F913B20EF65175 (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.IO.__Error::WriteNotSupported()
extern "C" IL2CPP_METHOD_ATTR void __Error_WriteNotSupported_mDC018F02757EB3116B45F9CEE41F83910ED5FC1B (const RuntimeMethod* method);
// System.Void System.Buffer::ZeroMemory(System.Byte*,System.Int64)
extern "C" IL2CPP_METHOD_ATTR void Buffer_ZeroMemory_mAB17C8C19C2C8DD1F10E232FAE69C2FCBC31CCAC (uint8_t* ___src0, int64_t ___len1, const RuntimeMethod* method);
// System.Void System.Buffer::Memcpy(System.Byte*,System.Int32,System.Byte[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Buffer_Memcpy_m440DCCE8D0D13779D26E7B41618066CA98F4DEF3 (uint8_t* ___pDest0, int32_t ___destIndex1, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___src2, int32_t ___srcIndex3, int32_t ___len4, const RuntimeMethod* method);
// System.Threading.Tasks.Task System.Threading.Tasks.Task::FromCancellation(System.Threading.CancellationToken)
extern "C" IL2CPP_METHOD_ATTR Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * Task_FromCancellation_m2106218A961C3950EA87A16189081D7DFB42B860 (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken0, const RuntimeMethod* method);
// System.Threading.Tasks.Task System.Threading.Tasks.Task::get_CompletedTask()
extern "C" IL2CPP_METHOD_ATTR Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * Task_get_CompletedTask_mBB0764E7FDE04E900FFBE5B1BE6B815193681E86 (const RuntimeMethod* method);
// System.Void System.IO.EndOfStreamException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void EndOfStreamException__ctor_m6C04807A20CAA05C763225A3EC2F79B756FFBAC6 (EndOfStreamException_t1B47BA867EC337F83056C2833A59293754AAC01F * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.ObjectDisposedException::.ctor(System.String,System.String)
extern "C" IL2CPP_METHOD_ATTR void ObjectDisposedException__ctor_m303CFD09E4B541C36C60AE7B7CBC8B1B7EED66DC (ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A * __this, String_t* ___objectName0, String_t* ___message1, const RuntimeMethod* method);
// System.Boolean System.String::IsNullOrEmpty(System.String)
extern "C" IL2CPP_METHOD_ATTR bool String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229 (String_t* ___value0, const RuntimeMethod* method);
// System.Boolean System.IO.PathInternal::IsPartiallyQualified(System.String)
extern "C" IL2CPP_METHOD_ATTR bool PathInternal_IsPartiallyQualified_m04BC87968B46BEDDAB66FA4773F8B146E7F70E68 (String_t* ___path0, const RuntimeMethod* method);
// System.Boolean System.IO.Path::IsDirectorySeparator(System.Char)
extern "C" IL2CPP_METHOD_ATTR bool Path_IsDirectorySeparator_m12C353D093EE8E9EA5C1B818004DCABB40B6F832 (Il2CppChar ___c0, const RuntimeMethod* method);
// System.String System.IO.__Error::GetDisplayablePath(System.String,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR String_t* __Error_GetDisplayablePath_m5DC1E0FB5AAE0E7562C60B548E38AD45249D0105 (String_t* ___path0, bool ___isInvalidPath1, const RuntimeMethod* method);
// System.Void System.IO.FileNotFoundException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void FileNotFoundException__ctor_mA72DAA77008E903BC162A8D32FDE7F874B27E858 (FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.String System.Environment::GetResourceString(System.String,System.Object[])
extern "C" IL2CPP_METHOD_ATTR String_t* Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB (String_t* ___key0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___values1, const RuntimeMethod* method);
// System.Void System.IO.FileNotFoundException::.ctor(System.String,System.String)
extern "C" IL2CPP_METHOD_ATTR void FileNotFoundException__ctor_mB97B07D7D9C7A611842518376C8E11B56AD4CA98 (FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431 * __this, String_t* ___message0, String_t* ___fileName1, const RuntimeMethod* method);
// System.Void System.IO.DirectoryNotFoundException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void DirectoryNotFoundException__ctor_mFE363B5843BABE6F4801ABC79B7643C5BED4797B (DirectoryNotFoundException_tDD7866E46935FAD8898B4B35A82A354605DADF55 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.UnauthorizedAccessException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void UnauthorizedAccessException__ctor_mFE97E700E2ADBC5A46A6A43642CFA2FCB8C0BA85 (UnauthorizedAccessException_tC2210A745BFDD3AE3559A87A4219E2945EEC9F75 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Int32 Microsoft.Win32.Win32Native::MakeHRFromErrorCode(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Win32Native_MakeHRFromErrorCode_m15A49651F9587510FB2BEC6A2EFD40A54E414720 (int32_t ___errorCode0, const RuntimeMethod* method);
// System.Void System.IO.IOException::.ctor(System.String,System.Int32,System.String)
extern "C" IL2CPP_METHOD_ATTR void IOException__ctor_mF3652DBA8804D22DB90A135D386C1CCA34D079BC (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA * __this, String_t* ___message0, int32_t ___hresult1, String_t* ___maybeFullPath2, const RuntimeMethod* method);
// System.Void System.IO.PathTooLongException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void PathTooLongException__ctor_m245E1CA7C92C2F6406440660F4AF765583E024C8 (PathTooLongException_t8DFBC40E5D45388A65B3327CF0D1F677C0F923AA * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.IO.DriveNotFoundException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void DriveNotFoundException__ctor_m507AB9B313C4AF69DABD394073D0DC9A952EDF1B (DriveNotFoundException_tE24C6582F3C8F9A24BF0BD5BE63BCB2B6983353C * __this, String_t* ___message0, const RuntimeMethod* method);
// System.String Microsoft.Win32.Win32Native::GetMessage(System.Int32)
extern "C" IL2CPP_METHOD_ATTR String_t* Win32Native_GetMessage_m68D6D40DD33D7F2FF30B7CE600BADBEB4EE41B87 (int32_t ___hr0, const RuntimeMethod* method);
// System.Void System.OperationCanceledException::.ctor()
extern "C" IL2CPP_METHOD_ATTR void OperationCanceledException__ctor_m2B04DF548109DAA7069F6108990F53588B5C5CA4 (OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 * __this, const RuntimeMethod* method);
// System.Void System.SystemException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A (SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.Exception::SetErrorCode(System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7 (Exception_t * __this, int32_t ___hr0, const RuntimeMethod* method);
// System.Void System.SystemException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
extern "C" IL2CPP_METHOD_ATTR void SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949 (SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method);
// System.Int32 System.Int16::CompareTo(System.Object)
extern "C" IL2CPP_METHOD_ATTR int32_t Int16_CompareTo_m75483243B6AE62C89F02D137A5625051AF41306C (int16_t* __this, RuntimeObject * ___value0, const RuntimeMethod* method);
// System.Int32 System.Int16::CompareTo(System.Int16)
extern "C" IL2CPP_METHOD_ATTR int32_t Int16_CompareTo_m5CE241F3D922C600E6E9BDDA9610ABCFAAEC68EE (int16_t* __this, int16_t ___value0, const RuntimeMethod* method);
// System.Boolean System.Int16::Equals(System.Object)
extern "C" IL2CPP_METHOD_ATTR bool Int16_Equals_mB1FFCF510D2A74D15014660A0AFA1B5B0AE2F024 (int16_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean System.Int16::Equals(System.Int16)
extern "C" IL2CPP_METHOD_ATTR bool Int16_Equals_m87F0E70703F6F8BB46882EA7665DA7A7BB44F36B (int16_t* __this, int16_t ___obj0, const RuntimeMethod* method);
// System.Int32 System.Int16::GetHashCode()
extern "C" IL2CPP_METHOD_ATTR int32_t Int16_GetHashCode_m5DE8889F965D31CFDE23E2CD58650C85259FD798 (int16_t* __this, const RuntimeMethod* method);
// System.Globalization.NumberFormatInfo System.Globalization.NumberFormatInfo::get_CurrentInfo()
extern "C" IL2CPP_METHOD_ATTR NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * NumberFormatInfo_get_CurrentInfo_m595DF03E32E0C5B01F1EC45F7264B2BD09BA61C9 (const RuntimeMethod* method);
// System.String System.Number::FormatInt32(System.Int32,System.String,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR String_t* Number_FormatInt32_mFA98EABDFB7493EF299EB1F0C2B432EAFDFC7984 (int32_t ___value0, String_t* ___format1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, const RuntimeMethod* method);
// System.String System.Int16::ToString()
extern "C" IL2CPP_METHOD_ATTR String_t* Int16_ToString_m9945F0E2E7E6BE9E91203BFFA7125ABFC6843BA5 (int16_t* __this, const RuntimeMethod* method);
// System.Globalization.NumberFormatInfo System.Globalization.NumberFormatInfo::GetInstance(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A (RuntimeObject* ___formatProvider0, const RuntimeMethod* method);
// System.String System.Int16::ToString(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR String_t* Int16_ToString_m0BB578BBD7255A1F27D8F9E8E5C8BE9F09728E45 (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.String System.Int16::ToString(System.String,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR String_t* Int16_ToString_m357A0121C8D11A1B015C8FBD74CC17B899680420 (int16_t* __this, String_t* ___format0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info1, const RuntimeMethod* method);
// System.String System.Int16::ToString(System.String,System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR String_t* Int16_ToString_m9D8BFF89E90032C2A3332CF5831C38AFD2C9E31A (int16_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method);
// System.String System.Number::FormatUInt32(System.UInt32,System.String,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR String_t* Number_FormatUInt32_m585E2571063A256E46836A51BC4A54CFF151BDEE (uint32_t ___value0, String_t* ___format1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, const RuntimeMethod* method);
// System.Int16 System.Int16::Parse(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR int16_t Int16_Parse_mA406579E2A230A3489048B2140AE2F81E68A5622 (String_t* ___s0, int32_t ___style1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, const RuntimeMethod* method);
// System.Void System.Globalization.NumberFormatInfo::ValidateParseStyleInteger(System.Globalization.NumberStyles)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatInfo_ValidateParseStyleInteger_m5BD1C04C26D5589F0DFA5953294B72E1DDC2B7E3 (int32_t ___style0, const RuntimeMethod* method);
// System.Int32 System.Number::ParseInt32(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR int32_t Number_ParseInt32_mF4B8DA28891C736EAC85641489780C2E91F8AECF (String_t* ___s0, int32_t ___style1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, const RuntimeMethod* method);
// System.Void System.OverflowException::.ctor(System.String,System.Exception)
extern "C" IL2CPP_METHOD_ATTR void OverflowException__ctor_m15CD001EEB2E79D7497E101546B04D9A5520357E (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method);
// System.Void System.OverflowException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731 (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * __this, String_t* ___message0, const RuntimeMethod* method);
// System.TypeCode System.Int16::GetTypeCode()
extern "C" IL2CPP_METHOD_ATTR int32_t Int16_GetTypeCode_m1FABF625BFC2615A7F446E809DFE82700B181585 (int16_t* __this, const RuntimeMethod* method);
// System.Boolean System.Convert::ToBoolean(System.Int16)
extern "C" IL2CPP_METHOD_ATTR bool Convert_ToBoolean_m06007FC94CD66F1273731E389C6C7DC24B02B505 (int16_t ___value0, const RuntimeMethod* method);
// System.Boolean System.Int16::System.IConvertible.ToBoolean(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR bool Int16_System_IConvertible_ToBoolean_mAD9C67C2CD06B4C537DBF416474DEABE1C168A02 (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Char System.Convert::ToChar(System.Int16)
extern "C" IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_m9F32E993218E9D544A9FCC6FE50D6501A838315F (int16_t ___value0, const RuntimeMethod* method);
// System.Char System.Int16::System.IConvertible.ToChar(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR Il2CppChar Int16_System_IConvertible_ToChar_m7262DBBB8CE3561D40929E34003790296142BBB9 (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.SByte System.Convert::ToSByte(System.Int16)
extern "C" IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_mCC85C35F01295663A487DDA2C4855C5962ADA2AF (int16_t ___value0, const RuntimeMethod* method);
// System.SByte System.Int16::System.IConvertible.ToSByte(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR int8_t Int16_System_IConvertible_ToSByte_mEC3DBCD9D04D7E5A396D88031B1E770D11D1DE24 (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Byte System.Convert::ToByte(System.Int16)
extern "C" IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m2DDDB2A7442059FE2185B347BB71BF7577781807 (int16_t ___value0, const RuntimeMethod* method);
// System.Byte System.Int16::System.IConvertible.ToByte(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR uint8_t Int16_System_IConvertible_ToByte_mD200B0391F35F2C349843C9B326AB68F435F422E (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Int16 System.Int16::System.IConvertible.ToInt16(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR int16_t Int16_System_IConvertible_ToInt16_mECF742DC36D9825678461CA222750F4A572B5BD0 (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.UInt16 System.Convert::ToUInt16(System.Int16)
extern "C" IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m3BC2069048E0E6C17C6B4C18BFB8FC949739BFFF (int16_t ___value0, const RuntimeMethod* method);
// System.UInt16 System.Int16::System.IConvertible.ToUInt16(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR uint16_t Int16_System_IConvertible_ToUInt16_mE08D8131FFDEFCB4AA5FE34CB8C2DC62D5A14B30 (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Int32 System.Convert::ToInt32(System.Int16)
extern "C" IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_mB0AA47EFAB81D1DBA0C2153ECBD0E19DE230BE2C (int16_t ___value0, const RuntimeMethod* method);
// System.Int32 System.Int16::System.IConvertible.ToInt32(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR int32_t Int16_System_IConvertible_ToInt32_mE41B51DE2ABF8B6ECD413AD83FCD58459437A150 (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.UInt32 System.Convert::ToUInt32(System.Int16)
extern "C" IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_mC305AB953ECDC1EDEC3F76C2ED9C2898A6A2D8A8 (int16_t ___value0, const RuntimeMethod* method);
// System.UInt32 System.Int16::System.IConvertible.ToUInt32(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR uint32_t Int16_System_IConvertible_ToUInt32_m2723ECDC51455D3954F3ADB25F822024010E84C6 (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Int64 System.Convert::ToInt64(System.Int16)
extern "C" IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m2261BB84FA0B10E657E622163945B4ED9D3C2D11 (int16_t ___value0, const RuntimeMethod* method);
// System.Int64 System.Int16::System.IConvertible.ToInt64(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR int64_t Int16_System_IConvertible_ToInt64_mEA23608FC01CA0533C47D984B594C0FF93CEFA51 (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.UInt64 System.Convert::ToUInt64(System.Int16)
extern "C" IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_m97F318132CF70D2795CFB709BAB8789803BCC08A (int16_t ___value0, const RuntimeMethod* method);
// System.UInt64 System.Int16::System.IConvertible.ToUInt64(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR uint64_t Int16_System_IConvertible_ToUInt64_m923F81B1E4E6D28FFEE8362D735E0084C25CE10C (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Single System.Convert::ToSingle(System.Int16)
extern "C" IL2CPP_METHOD_ATTR float Convert_ToSingle_m419FC798EE52D4A39F7719FA060CC198EF94F2B0 (int16_t ___value0, const RuntimeMethod* method);
// System.Single System.Int16::System.IConvertible.ToSingle(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR float Int16_System_IConvertible_ToSingle_m0835ED262A97BD626712668A214700986F0506F7 (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Double System.Convert::ToDouble(System.Int16)
extern "C" IL2CPP_METHOD_ATTR double Convert_ToDouble_m9FFE6DC9FE9E17546E9681806ED4613D582A2D6C (int16_t ___value0, const RuntimeMethod* method);
// System.Double System.Int16::System.IConvertible.ToDouble(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR double Int16_System_IConvertible_ToDouble_mA60DE1A6D594144BE9DB9959314D2722064305CA (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Decimal System.Convert::ToDecimal(System.Int16)
extern "C" IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Convert_ToDecimal_mD9355C906353F7E283024449544616979EF4823E (int16_t ___value0, const RuntimeMethod* method);
// System.Decimal System.Int16::System.IConvertible.ToDecimal(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Int16_System_IConvertible_ToDecimal_mAD89611276C5804EFF4B236032F0DB906355EBF4 (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Void System.InvalidCastException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812 (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * __this, String_t* ___message0, const RuntimeMethod* method);
// System.DateTime System.Int16::System.IConvertible.ToDateTime(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Int16_System_IConvertible_ToDateTime_mE67E531150E271467E435831A1397A9309A0F26A (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Object System.Convert::DefaultToType(System.IConvertible,System.Type,System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Convert_DefaultToType_m899D5F6B9FE3E8B878BC56172C6BFE788B6C1BE3 (RuntimeObject* ___value0, Type_t * ___targetType1, RuntimeObject* ___provider2, const RuntimeMethod* method);
// System.Object System.Int16::System.IConvertible.ToType(System.Type,System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Int16_System_IConvertible_ToType_m8BE4912BFC63C00B6434A78D045251007E2D31D3 (int16_t* __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method);
// System.Int32 System.Int32::CompareTo(System.Object)
extern "C" IL2CPP_METHOD_ATTR int32_t Int32_CompareTo_m01C9CAA9D47EB4046F4784603646BD28567D66B2 (int32_t* __this, RuntimeObject * ___value0, const RuntimeMethod* method);
// System.Int32 System.Int32::CompareTo(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Int32_CompareTo_m2EB2B72F9095FF3438D830118D57E32E1CC67195 (int32_t* __this, int32_t ___value0, const RuntimeMethod* method);
// System.Boolean System.Int32::Equals(System.Object)
extern "C" IL2CPP_METHOD_ATTR bool Int32_Equals_mBE9097707986D98549AC11E94FB986DA1AB3E16C (int32_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean System.Int32::Equals(System.Int32)
extern "C" IL2CPP_METHOD_ATTR bool Int32_Equals_mC8C45B8899F291D55A6152C8FEDB3CFFF181170B (int32_t* __this, int32_t ___obj0, const RuntimeMethod* method);
// System.Int32 System.Int32::GetHashCode()
extern "C" IL2CPP_METHOD_ATTR int32_t Int32_GetHashCode_m245C424ECE351E5FE3277A88EEB02132DAB8C25A (int32_t* __this, const RuntimeMethod* method);
// System.String System.Int32::ToString()
extern "C" IL2CPP_METHOD_ATTR String_t* Int32_ToString_m1863896DE712BF97C031D55B12E1583F1982DC02 (int32_t* __this, const RuntimeMethod* method);
// System.String System.Int32::ToString(System.String)
extern "C" IL2CPP_METHOD_ATTR String_t* Int32_ToString_m5A125A41C41701E41FA0C4CC52CADBC73C1C96D8 (int32_t* __this, String_t* ___format0, const RuntimeMethod* method);
// System.String System.Int32::ToString(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR String_t* Int32_ToString_m1D0AF82BDAB5D4710527DD3FEFA6F01246D128A5 (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.String System.Int32::ToString(System.String,System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR String_t* Int32_ToString_mE527694B0C55AE14FDCBE1D9C848446C18E22C09 (int32_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method);
// System.TypeCode System.Int32::GetTypeCode()
extern "C" IL2CPP_METHOD_ATTR int32_t Int32_GetTypeCode_m5649B09956AFBDEE1788BFBEF9D5885DC2DCE601 (int32_t* __this, const RuntimeMethod* method);
// System.Boolean System.Convert::ToBoolean(System.Int32)
extern "C" IL2CPP_METHOD_ATTR bool Convert_ToBoolean_m30441623AE02A6C619CB77CD91B6A6199B90BC94 (int32_t ___value0, const RuntimeMethod* method);
// System.Boolean System.Int32::System.IConvertible.ToBoolean(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR bool Int32_System_IConvertible_ToBoolean_mE6733B98A89CEE394F9B2013DBAB3A6CCFDB2D3D (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Char System.Convert::ToChar(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_m5BD134B72978B879B81A824DFAC8FF29F5300245 (int32_t ___value0, const RuntimeMethod* method);
// System.Char System.Int32::System.IConvertible.ToChar(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR Il2CppChar Int32_System_IConvertible_ToChar_mB0BF53FFE0642F288E8BBC20EC14D581BF473FE1 (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.SByte System.Convert::ToSByte(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m65A58DC38CC3A2E7B1D2546EC2FE0803AAB03F34 (int32_t ___value0, const RuntimeMethod* method);
// System.SByte System.Int32::System.IConvertible.ToSByte(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR int8_t Int32_System_IConvertible_ToSByte_m3AE5F790ABB177CAC8C13DCFFFF7114108EB467B (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Byte System.Convert::ToByte(System.Int32)
extern "C" IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_mC952E2B42FF6008EF2123228A0BFB9054531EB64 (int32_t ___value0, const RuntimeMethod* method);
// System.Byte System.Int32::System.IConvertible.ToByte(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR uint8_t Int32_System_IConvertible_ToByte_m994642D028B0635653E63412AED073E3DE1DE4CA (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Int16 System.Convert::ToInt16(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m0D8DD7C5E5F85BE27D38E0FBD17411B8682618B3 (int32_t ___value0, const RuntimeMethod* method);
// System.Int16 System.Int32::System.IConvertible.ToInt16(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR int16_t Int32_System_IConvertible_ToInt16_m294F3466C92E10984CB25DD6DE2019DDD867DA22 (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.UInt16 System.Convert::ToUInt16(System.Int32)
extern "C" IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m926B887258078B9BB42574AA2B3F95DC50460EA7 (int32_t ___value0, const RuntimeMethod* method);
// System.UInt16 System.Int32::System.IConvertible.ToUInt16(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR uint16_t Int32_System_IConvertible_ToUInt16_m75BCB9F028E5A90A092854436D36986F68901995 (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Int32 System.Int32::System.IConvertible.ToInt32(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR int32_t Int32_System_IConvertible_ToInt32_m4191129190E57223399981DA5C6C22FDDAC3F5DA (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.UInt32 System.Convert::ToUInt32(System.Int32)
extern "C" IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_mA22ABF80925CA54B6B4869939964184C7F344B41 (int32_t ___value0, const RuntimeMethod* method);
// System.UInt32 System.Int32::System.IConvertible.ToUInt32(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR uint32_t Int32_System_IConvertible_ToUInt32_mEFA1E74EEA43FA4DBA9B15C4845F110AD727D58A (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Int64 System.Convert::ToInt64(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m61697621C2BC4FDADFE1742507EBA7B3C1D76475 (int32_t ___value0, const RuntimeMethod* method);
// System.Int64 System.Int32::System.IConvertible.ToInt64(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR int64_t Int32_System_IConvertible_ToInt64_m0D1DD55099D29C77A7F3DF423CBAD0D9446A8CC1 (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.UInt64 System.Convert::ToUInt64(System.Int32)
extern "C" IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_m3D60F8111B12E0D8BB538E433065340CF45EB772 (int32_t ___value0, const RuntimeMethod* method);
// System.UInt64 System.Int32::System.IConvertible.ToUInt64(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR uint64_t Int32_System_IConvertible_ToUInt64_m957A272747A361A7A59C76F4B056B81830345E4E (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Single System.Convert::ToSingle(System.Int32)
extern "C" IL2CPP_METHOD_ATTR float Convert_ToSingle_m4D6202BB2F75526A5E01DA49A35D26007C76A21C (int32_t ___value0, const RuntimeMethod* method);
// System.Single System.Int32::System.IConvertible.ToSingle(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR float Int32_System_IConvertible_ToSingle_mD0F2590754E9373E5EF9F56DA2772BF9DD2BA7C1 (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Double System.Convert::ToDouble(System.Int32)
extern "C" IL2CPP_METHOD_ATTR double Convert_ToDouble_mAE52754212671CD42E2C67BD9ABCE18DAEE443CC (int32_t ___value0, const RuntimeMethod* method);
// System.Double System.Int32::System.IConvertible.ToDouble(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR double Int32_System_IConvertible_ToDouble_mA689675733A81D913A74373B805F68CCA6BEB53E (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Decimal System.Convert::ToDecimal(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Convert_ToDecimal_m707FBD6E1B6D6F7F71D1D492C5F5AE981B561DEF (int32_t ___value0, const RuntimeMethod* method);
// System.Decimal System.Int32::System.IConvertible.ToDecimal(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Int32_System_IConvertible_ToDecimal_m8A2A9D17341AA91D8EC3D9B2F601EBA7B51CD0E1 (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.DateTime System.Int32::System.IConvertible.ToDateTime(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Int32_System_IConvertible_ToDateTime_mF77E94D74BA940647D099B2639EC019283BEBADD (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Object System.Int32::System.IConvertible.ToType(System.Type,System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Int32_System_IConvertible_ToType_m4FEECCC81AEEBE645FC073AC87BF9AE58FF57A6C (int32_t* __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method);
// System.Int32 System.Int64::CompareTo(System.Object)
extern "C" IL2CPP_METHOD_ATTR int32_t Int64_CompareTo_m8FCB93E6F212C873AD99C264E7F501559AD2C190 (int64_t* __this, RuntimeObject * ___value0, const RuntimeMethod* method);
// System.Int32 System.Int64::CompareTo(System.Int64)
extern "C" IL2CPP_METHOD_ATTR int32_t Int64_CompareTo_m21E0F72C677E986977303B18D5472487319DCFD2 (int64_t* __this, int64_t ___value0, const RuntimeMethod* method);
// System.Boolean System.Int64::Equals(System.Object)
extern "C" IL2CPP_METHOD_ATTR bool Int64_Equals_m217A2D6F9F752A690AA8BF039B1DF2091A7FE78C (int64_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean System.Int64::Equals(System.Int64)
extern "C" IL2CPP_METHOD_ATTR bool Int64_Equals_mB589D15F558BF8FECBB56EF429EFF5C7A39D9E0F (int64_t* __this, int64_t ___obj0, const RuntimeMethod* method);
// System.Int32 System.Int64::GetHashCode()
extern "C" IL2CPP_METHOD_ATTR int32_t Int64_GetHashCode_mB5F9D4E16AFBD7C3932709B38AD8C8BF920CC0A4 (int64_t* __this, const RuntimeMethod* method);
// System.String System.Number::FormatInt64(System.Int64,System.String,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR String_t* Number_FormatInt64_m4D4B9098DEEF54C61927074C5471C272A1B64BEB (int64_t ___value0, String_t* ___format1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, const RuntimeMethod* method);
// System.String System.Int64::ToString()
extern "C" IL2CPP_METHOD_ATTR String_t* Int64_ToString_m8210E39355A227AE15DD391EB810AA9B6AB8B26C (int64_t* __this, const RuntimeMethod* method);
// System.String System.Int64::ToString(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR String_t* Int64_ToString_m25F3F61DC30EAF186B76BD91F83083BDDDE82B2A (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.String System.Int64::ToString(System.String,System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR String_t* Int64_ToString_mB73201579D1D4BC868EC9BC901B2812AC4B90517 (int64_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method);
// System.Int64 System.Number::ParseInt64(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR int64_t Number_ParseInt64_m33AA7A0F69E575B698C474AA716B508904B92B62 (String_t* ___value0, int32_t ___options1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numfmt2, const RuntimeMethod* method);
// System.Boolean System.Number::TryParseInt64(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo,System.Int64&)
extern "C" IL2CPP_METHOD_ATTR bool Number_TryParseInt64_m62C1C9F9BAC32770297859436DE8E68DF0E1E598 (String_t* ___s0, int32_t ___style1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, int64_t* ___result3, const RuntimeMethod* method);
// System.TypeCode System.Int64::GetTypeCode()
extern "C" IL2CPP_METHOD_ATTR int32_t Int64_GetTypeCode_m661AF73541BCCE54598581F75762BA330DE2F911 (int64_t* __this, const RuntimeMethod* method);
// System.Boolean System.Convert::ToBoolean(System.Int64)
extern "C" IL2CPP_METHOD_ATTR bool Convert_ToBoolean_m6EB15B3E1D9AC269065DB500E880A81AA42AF5E7 (int64_t ___value0, const RuntimeMethod* method);
// System.Boolean System.Int64::System.IConvertible.ToBoolean(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR bool Int64_System_IConvertible_ToBoolean_m678B7CC49A2836D5E6D5E6ABA81ED0693CD1D0C7 (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Char System.Convert::ToChar(System.Int64)
extern "C" IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_m9171D149D77DE0FBB36CB4D91EEBDC06B2DD6F29 (int64_t ___value0, const RuntimeMethod* method);
// System.Char System.Int64::System.IConvertible.ToChar(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR Il2CppChar Int64_System_IConvertible_ToChar_m86A13E02736A1D84736DFBCC3DB7FA1A3D1035F4 (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.SByte System.Convert::ToSByte(System.Int64)
extern "C" IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m1A4B3CD0081049789B368AE723C5214669A80767 (int64_t ___value0, const RuntimeMethod* method);
// System.SByte System.Int64::System.IConvertible.ToSByte(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR int8_t Int64_System_IConvertible_ToSByte_mABEF3207B39F4C9FD1C21A01581010C67629FC0C (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Byte System.Convert::ToByte(System.Int64)
extern "C" IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m645FE381788C101B2BE504F57811E655AD432935 (int64_t ___value0, const RuntimeMethod* method);
// System.Byte System.Int64::System.IConvertible.ToByte(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR uint8_t Int64_System_IConvertible_ToByte_m4EF22DEB0E2F10C70C2E8D6029064CE178714D75 (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Int16 System.Convert::ToInt16(System.Int64)
extern "C" IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m452BBDF72FBBBF90915F464E0558DA82CE1F7DBF (int64_t ___value0, const RuntimeMethod* method);
// System.Int16 System.Int64::System.IConvertible.ToInt16(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR int16_t Int64_System_IConvertible_ToInt16_m300B40C5CCB4B0A742603476A6EFE6E4198EE755 (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.UInt16 System.Convert::ToUInt16(System.Int64)
extern "C" IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_mA5386907A6E781E3D4261BDB7D6308FBD5B518F7 (int64_t ___value0, const RuntimeMethod* method);
// System.UInt16 System.Int64::System.IConvertible.ToUInt16(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR uint16_t Int64_System_IConvertible_ToUInt16_m969A9B2B7390416D6A28B5E5AF05ED13EEE1E933 (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Int32 System.Convert::ToInt32(System.Int64)
extern "C" IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m5CE30569A0A5B70CBD85954BEEF436F57D6FAE6B (int64_t ___value0, const RuntimeMethod* method);
// System.Int32 System.Int64::System.IConvertible.ToInt32(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR int32_t Int64_System_IConvertible_ToInt32_mF857699718EF937019CDA97783F80904E77DEAA5 (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.UInt32 System.Convert::ToUInt32(System.Int64)
extern "C" IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_mD1B91075B4D330E0D2D4600A6D5283C2FA1586E4 (int64_t ___value0, const RuntimeMethod* method);
// System.UInt32 System.Int64::System.IConvertible.ToUInt32(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR uint32_t Int64_System_IConvertible_ToUInt32_m3F6CDD0B28BA8BBC9F0CA38DB5904D7A04F5BF38 (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Int64 System.Int64::System.IConvertible.ToInt64(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR int64_t Int64_System_IConvertible_ToInt64_m470CF2051A9BF81279B46FA6431FD3E05002B0C9 (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.UInt64 System.Convert::ToUInt64(System.Int64)
extern "C" IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_mE0A19C049B47AC33472017793E0B8FCF5A9CE098 (int64_t ___value0, const RuntimeMethod* method);
// System.UInt64 System.Int64::System.IConvertible.ToUInt64(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR uint64_t Int64_System_IConvertible_ToUInt64_mA8E1ABEFFF58D3299B47D571ADBDBC9D0F7D7E38 (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Single System.Convert::ToSingle(System.Int64)
extern "C" IL2CPP_METHOD_ATTR float Convert_ToSingle_m3A854A75BE60D077E283A444B4EEF3ED6E984F9A (int64_t ___value0, const RuntimeMethod* method);
// System.Single System.Int64::System.IConvertible.ToSingle(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR float Int64_System_IConvertible_ToSingle_m282A94EF4F2EBA18296B2824CB143B35F4F07A86 (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Double System.Convert::ToDouble(System.Int64)
extern "C" IL2CPP_METHOD_ATTR double Convert_ToDouble_m5948DF15E5B6EAE3A3D443BB5DAB6D6BF5D4E785 (int64_t ___value0, const RuntimeMethod* method);
// System.Double System.Int64::System.IConvertible.ToDouble(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR double Int64_System_IConvertible_ToDouble_mBF9D431716723F0B8614D0C3C7906D447788431E (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Decimal System.Convert::ToDecimal(System.Int64)
extern "C" IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Convert_ToDecimal_mECE2EDC28EBA5F0B88702C15D0A3A1DABEE8D6A1 (int64_t ___value0, const RuntimeMethod* method);
// System.Decimal System.Int64::System.IConvertible.ToDecimal(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Int64_System_IConvertible_ToDecimal_m8638C21E67A5D07CE98F13EC2FC76E150E9C9FBB (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.DateTime System.Int64::System.IConvertible.ToDateTime(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Int64_System_IConvertible_ToDateTime_m9885F222F844D272F9C0C5913DB93E0A39A22B1D (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Object System.Int64::System.IConvertible.ToType(System.Type,System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Int64_System_IConvertible_ToType_m553EB95677AEB0ABAA6CF513BD42EC32D19543B5 (int64_t* __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method);
// System.Void System.IntPtr::.ctor(System.Int32)
extern "C" IL2CPP_METHOD_ATTR void IntPtr__ctor_mA56CC06850BB1156300659D754DDA844E8F755C6 (intptr_t* __this, int32_t ___value0, const RuntimeMethod* method);
// System.Void System.IntPtr::.ctor(System.Int64)
extern "C" IL2CPP_METHOD_ATTR void IntPtr__ctor_m3C2353A241FD6B18CAE68756977D63B85F14DEBD (intptr_t* __this, int64_t ___value0, const RuntimeMethod* method);
// System.Void System.IntPtr::.ctor(System.Void*)
extern "C" IL2CPP_METHOD_ATTR void IntPtr__ctor_m6360250F4B87C6AE2F0389DA0DEE1983EED73FB6 (intptr_t* __this, void* ___value0, const RuntimeMethod* method);
// System.Int64 System.Runtime.Serialization.SerializationInfo::GetInt64(System.String)
extern "C" IL2CPP_METHOD_ATTR int64_t SerializationInfo_GetInt64_mD9FB62CFBEC90A544B95912AB9FA24377AC17E54 (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, const RuntimeMethod* method);
// System.Void System.IntPtr::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
extern "C" IL2CPP_METHOD_ATTR void IntPtr__ctor_mB9F614446AB7E84C11B210CC4E93696BBE80F50B (intptr_t* __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method);
// System.Int64 System.IntPtr::ToInt64()
extern "C" IL2CPP_METHOD_ATTR int64_t IntPtr_ToInt64_mDD00D5F4AD380F40D31B60E9C57843CC3C12BD6B (intptr_t* __this, const RuntimeMethod* method);
// System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Int64)
extern "C" IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_mCCC2918D05840247B2A72A834940BD36AD7F5DE4 (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, int64_t ___value1, const RuntimeMethod* method);
// System.Void System.IntPtr::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
extern "C" IL2CPP_METHOD_ATTR void IntPtr_System_Runtime_Serialization_ISerializable_GetObjectData_m5D9D75902BF6B3E73AD7C5BA3E4D964F38ED3816 (intptr_t* __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method);
// System.Boolean System.IntPtr::Equals(System.Object)
extern "C" IL2CPP_METHOD_ATTR bool IntPtr_Equals_m4C1C372B05E29E20EC5E9B48EF8AAEA3E49B874D (intptr_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 System.IntPtr::GetHashCode()
extern "C" IL2CPP_METHOD_ATTR int32_t IntPtr_GetHashCode_m0A6AE0C85A4AEEA127235FB5A32056F630E3749A (intptr_t* __this, const RuntimeMethod* method);
// System.Int32 System.IntPtr::get_Size()
extern "C" IL2CPP_METHOD_ATTR int32_t IntPtr_get_Size_m1342A61F11766A494F2F90D9B68CADAD62261929 (const RuntimeMethod* method);
// System.Void* System.IntPtr::ToPointer()
extern "C" IL2CPP_METHOD_ATTR void* IntPtr_ToPointer_mC56A17E597E9F767B889DA10DB866F0B96CF0D65 (intptr_t* __this, const RuntimeMethod* method);
// System.String System.IntPtr::ToString(System.String)
extern "C" IL2CPP_METHOD_ATTR String_t* IntPtr_ToString_m6ADB8DBD989D878D694B4031CC08461B1E2C51FF (intptr_t* __this, String_t* ___format0, const RuntimeMethod* method);
// System.String System.IntPtr::ToString()
extern "C" IL2CPP_METHOD_ATTR String_t* IntPtr_ToString_m69003637DD38C2850CFD23F50ECBDD777B3C310C (intptr_t* __this, const RuntimeMethod* method);
// System.Boolean System.IntPtr::IsNull()
extern "C" IL2CPP_METHOD_ATTR bool IntPtr_IsNull_mEB01FA7670F5CA3BE36507B9528EC6F1D5AAC6B4 (intptr_t* __this, const RuntimeMethod* method);
// System.Void System.SystemException::.ctor(System.String,System.Exception)
extern "C" IL2CPP_METHOD_ATTR void SystemException__ctor_mA18D2EA5642C066F35CB8C965398F9A542C33B0A (SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method);
// System.Void System.Exception::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void Exception__ctor_m89BADFF36C3B170013878726E07729D51AA9FBE0 (Exception_t * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.Exception::.ctor(System.String,System.Exception)
extern "C" IL2CPP_METHOD_ATTR void Exception__ctor_m62590BC1925B7B354EBFD852E162CD170FEB861D (Exception_t * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method);
// System.Void System.Exception::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
extern "C" IL2CPP_METHOD_ATTR void Exception__ctor_mBFF5996A1B65FCEEE0054A95A652BA3DD6366618 (Exception_t * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method);
// System.Void System.Exception::.ctor()
extern "C" IL2CPP_METHOD_ATTR void Exception__ctor_m5FEC89FBFACEEDCEE29CCFD44A85D72FC28EB0D1 (Exception_t * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.RuntimeHelpers::InitializeArray(System.Array,System.RuntimeFieldHandle)
extern "C" IL2CPP_METHOD_ATTR void RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A (RuntimeArray * ___array0, RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF ___fldHandle1, const RuntimeMethod* method);
// System.Void System.LocalDataStoreMgr::DeleteLocalDataStore(System.LocalDataStore)
extern "C" IL2CPP_METHOD_ATTR void LocalDataStoreMgr_DeleteLocalDataStore_m943DBF460E197662F6D146A370A3DCD94CBD51A3 (LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * __this, LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * ___store0, const RuntimeMethod* method);
// System.Void System.LocalDataStoreMgr::ValidateSlot(System.LocalDataStoreSlot)
extern "C" IL2CPP_METHOD_ATTR void LocalDataStoreMgr_ValidateSlot_m7D28FF28A27A12AB0DD0F029B5A32EEB546B55E9 (LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * __this, LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * ___slot0, const RuntimeMethod* method);
// System.Int32 System.LocalDataStoreSlot::get_Slot()
extern "C" IL2CPP_METHOD_ATTR int32_t LocalDataStoreSlot_get_Slot_m921BC8D705F8D4BB4D623B895B3DD6055166DD79 (LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * __this, const RuntimeMethod* method);
// System.Int64 System.LocalDataStoreElement::get_Cookie()
extern "C" IL2CPP_METHOD_ATTR int64_t LocalDataStoreElement_get_Cookie_m4D78FB1C0267C5A71D6DEBFA6CC0E89DC34D2B88 (LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * __this, const RuntimeMethod* method);
// System.Int64 System.LocalDataStoreSlot::get_Cookie()
extern "C" IL2CPP_METHOD_ATTR int64_t LocalDataStoreSlot_get_Cookie_m1D41A9C92E407A3AC6AB015F4663D0F260EBF2C5 (LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * __this, const RuntimeMethod* method);
// System.Object System.LocalDataStoreElement::get_Value()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * LocalDataStoreElement_get_Value_m5822C535F5DD63A7F1BA4EFA424D82450C972A16 (LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * __this, const RuntimeMethod* method);
// System.LocalDataStoreElement System.LocalDataStore::PopulateElement(System.LocalDataStoreSlot)
extern "C" IL2CPP_METHOD_ATTR LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * LocalDataStore_PopulateElement_m16D54E54CB4EA8F2F385B162B3011C8B3EB2568E (LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * __this, LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * ___slot0, const RuntimeMethod* method);
// System.Void System.LocalDataStoreElement::set_Value(System.Object)
extern "C" IL2CPP_METHOD_ATTR void LocalDataStoreElement_set_Value_mA97C37A5E8F4E76276D025D604DCBAD1400570B3 (LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * __this, RuntimeObject * ___value0, const RuntimeMethod* method);
// System.Void System.Threading.Monitor::Enter(System.Object,System.Boolean&)
extern "C" IL2CPP_METHOD_ATTR void Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5 (RuntimeObject * ___obj0, bool* ___lockTaken1, const RuntimeMethod* method);
// System.Int32 System.LocalDataStoreMgr::GetSlotTableLength()
extern "C" IL2CPP_METHOD_ATTR int32_t LocalDataStoreMgr_GetSlotTableLength_mE37679FF2EE2BFE95424C5494E5159275D0EE920 (LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * __this, const RuntimeMethod* method);
// System.Void System.Array::Copy(System.Array,System.Array,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Array_Copy_m2D96731C600DE8A167348CA8BA796344E64F7434 (RuntimeArray * ___sourceArray0, RuntimeArray * ___destinationArray1, int32_t ___length2, const RuntimeMethod* method);
// System.Void System.LocalDataStoreElement::.ctor(System.Int64)
extern "C" IL2CPP_METHOD_ATTR void LocalDataStoreElement__ctor_mA1B8C77848E6785BB0D83054DB673A85DC185034 (LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * __this, int64_t ___cookie0, const RuntimeMethod* method);
// System.Void System.Threading.Monitor::Exit(System.Object)
extern "C" IL2CPP_METHOD_ATTR void Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2 (RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Void System.LocalDataStore::Dispose()
extern "C" IL2CPP_METHOD_ATTR void LocalDataStore_Dispose_m2B25B7ACE605E5F0366A6063B5B9978C8656D935 (LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * __this, const RuntimeMethod* method);
// System.Void System.Object::Finalize()
extern "C" IL2CPP_METHOD_ATTR void Object_Finalize_m4015B7D3A44DE125C5FE34D7276CD4697C06F380 (RuntimeObject * __this, const RuntimeMethod* method);
// System.Void System.LocalDataStore::.ctor(System.LocalDataStoreMgr,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void LocalDataStore__ctor_m2FDC5D7F0A6331A045F5C5E90C1EE386AF755910 (LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * __this, LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * ___mgr0, int32_t ___InitialCapacity1, const RuntimeMethod* method);
// System.Void System.LocalDataStoreHolder::.ctor(System.LocalDataStore)
extern "C" IL2CPP_METHOD_ATTR void LocalDataStoreHolder__ctor_m87A5B4E0605928E76A804DF75AE5EFBAE417589A (LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * __this, LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * ___store0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.LocalDataStore>::Add(T)
inline void List_1_Add_mE9BF53EC826B27040A078E87C78E46CBE5793760 (List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D * __this, LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * p0, const RuntimeMethod* method)
{
(( void (*) (List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D *, LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE *, const RuntimeMethod*))List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared)(__this, p0, method);
}
// System.Boolean System.Collections.Generic.List`1<System.LocalDataStore>::Remove(T)
inline bool List_1_Remove_mA8778E00C87CE50D5466C24C94239B38DAC85F94 (List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D * __this, LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * p0, const RuntimeMethod* method)
{
return (( bool (*) (List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D *, LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE *, const RuntimeMethod*))List_1_Remove_m908B647BB9F807676DACE34E3E73475C3C3751D4_gshared)(__this, p0, method);
}
// System.Void System.LocalDataStoreSlot::.ctor(System.LocalDataStoreMgr,System.Int32,System.Int64)
extern "C" IL2CPP_METHOD_ATTR void LocalDataStoreSlot__ctor_mB1C1592C2941720C53B2F21CBBB875667FF23D89 (LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * __this, LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * ___mgr0, int32_t ___slot1, int64_t ___cookie2, const RuntimeMethod* method);
// System.LocalDataStoreSlot System.LocalDataStoreMgr::AllocateDataSlot()
extern "C" IL2CPP_METHOD_ATTR LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * LocalDataStoreMgr_AllocateDataSlot_m879EF0F47F1E07F1B0F905EB2F964E875CF7E036 (LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.String,System.LocalDataStoreSlot>::Add(TKey,TValue)
inline void Dictionary_2_Add_m6DC5880D3A3E5230394E72108396862B76ACE31C (Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08 * __this, String_t* p0, LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * p1, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08 *, String_t*, LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E *, const RuntimeMethod*))Dictionary_2_Add_mC741BBB0A647C814227953DB9B23CB1BDF571C5B_gshared)(__this, p0, p1, method);
}
// TValue System.Collections.Generic.CollectionExtensions::GetValueOrDefault<System.String,System.LocalDataStoreSlot>(System.Collections.Generic.IReadOnlyDictionary`2<TKey,TValue>,TKey)
inline LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * CollectionExtensions_GetValueOrDefault_TisString_t_TisLocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E_mCC4662D48DF2FE54F66A984047EA92CE774363AE (RuntimeObject* ___dictionary0, String_t* ___key1, const RuntimeMethod* method)
{
return (( LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * (*) (RuntimeObject*, String_t*, const RuntimeMethod*))CollectionExtensions_GetValueOrDefault_TisRuntimeObject_TisRuntimeObject_m65245601C668347780A2F6D1A8D7EEC7D79AD673_gshared)(___dictionary0, ___key1, method);
}
// System.LocalDataStoreSlot System.LocalDataStoreMgr::AllocateNamedDataSlot(System.String)
extern "C" IL2CPP_METHOD_ATTR LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * LocalDataStoreMgr_AllocateNamedDataSlot_mAD7738795BC4FF13631C2993592F6256FC309FF2 (LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * __this, String_t* ___name0, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.LocalDataStoreSlot>::Remove(TKey)
inline bool Dictionary_2_Remove_mC54306ED55A13BB48ACE4E0796F308D460A27CC1 (Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08 * __this, String_t* p0, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08 *, String_t*, const RuntimeMethod*))Dictionary_2_Remove_m0FCCD33CE2C6A7589E52A2AB0872FE361BF5EF60_gshared)(__this, p0, method);
}
// T System.Collections.Generic.List`1<System.LocalDataStore>::get_Item(System.Int32)
inline LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * List_1_get_Item_mD27D84BD9B6ABB638EB1C85C37CEA1DBC7EB3537 (List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D * __this, int32_t p0, const RuntimeMethod* method)
{
return (( LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * (*) (List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D *, int32_t, const RuntimeMethod*))List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared)(__this, p0, method);
}
// System.Void System.LocalDataStore::FreeData(System.Int32,System.Int64)
extern "C" IL2CPP_METHOD_ATTR void LocalDataStore_FreeData_m7DC3DC695D322B7F2ED47F357447D2790821B10C (LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * __this, int32_t ___slot0, int64_t ___cookie1, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.List`1<System.LocalDataStore>::get_Count()
inline int32_t List_1_get_Count_m417EECDB01F2D358551281253CC9E5A408B01572 (List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D *, const RuntimeMethod*))List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared)(__this, method);
}
// System.LocalDataStoreMgr System.LocalDataStoreSlot::get_Manager()
extern "C" IL2CPP_METHOD_ATTR LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * LocalDataStoreSlot_get_Manager_m75417D224C02173EC33CFD9BF494E82A70B21EDD (LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.LocalDataStore>::.ctor()
inline void List_1__ctor_mE9560E61EBE0949DDA139866213E36AB1F51D535 (List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D *, const RuntimeMethod*))List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2<System.String,System.LocalDataStoreSlot>::.ctor()
inline void Dictionary_2__ctor_mF0DECB37208B782E5DC487657101B9FBFA2491C8 (Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08 * __this, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08 *, const RuntimeMethod*))Dictionary_2__ctor_m2C7E51568033239B506E15E7804A0B8658246498_gshared)(__this, method);
}
// System.Void System.LocalDataStoreMgr::FreeDataSlot(System.Int32,System.Int64)
extern "C" IL2CPP_METHOD_ATTR void LocalDataStoreMgr_FreeDataSlot_mD32D43F69A116AAE4F0233FD8DE999D81B3643FA (LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * __this, int32_t ___slot0, int64_t ___cookie1, const RuntimeMethod* method);
// System.Void System.NotSupportedException::.ctor()
extern "C" IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33 (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * __this, const RuntimeMethod* method);
// System.Int32 System.Math::AbsHelper(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Math_AbsHelper_mBB53E92A37FF9A4AD65D354BBAC103F935C20802 (int32_t ___value0, const RuntimeMethod* method);
// System.Boolean System.Single::IsNaN(System.Single)
extern "C" IL2CPP_METHOD_ATTR bool Single_IsNaN_m1ACB82FA5DC805F0F5015A1DA6B3DC447C963AFB (float ___f0, const RuntimeMethod* method);
// System.Boolean System.Double::IsNaN(System.Double)
extern "C" IL2CPP_METHOD_ATTR bool Double_IsNaN_m5DFBBD58036879B687FEC248C50EACBABE205AB3 (double ___d0, const RuntimeMethod* method);
// System.Boolean System.Double::IsPositiveInfinity(System.Double)
extern "C" IL2CPP_METHOD_ATTR bool Double_IsPositiveInfinity_m45537C58204CD5AA96F39D42F4CB8DADA128C77B (double ___d0, const RuntimeMethod* method);
// System.Void System.MemberAccessException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void MemberAccessException__ctor_m9190C2717422BB9A0C877B8C1493A75521AB8101 (MemberAccessException_tDA869AFFB4FC1EA0EEF3143D85999710AC4774F0 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.MemberAccessException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
extern "C" IL2CPP_METHOD_ATTR void MemberAccessException__ctor_m8D560A4375A75BBD6631BE42402BC4B41B8F7E5F (MemberAccessException_tDA869AFFB4FC1EA0EEF3143D85999710AC4774F0 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method);
// System.Void System.MissingMemberException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void MissingMemberException__ctor_m2F8C7F0015B6EFEC5BD07F8240D53C2AEE4649DC (MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.MissingMemberException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
extern "C" IL2CPP_METHOD_ATTR void MissingMemberException__ctor_mE928DEDD684F9B56B2D739CC7C0D36F189B9BC13 (MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method);
// System.String System.MissingMemberException::get_Message()
extern "C" IL2CPP_METHOD_ATTR String_t* MissingMemberException_get_Message_m3995693C813787B7034776FC6F82C0DF7BDBC619 (MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD * __this, const RuntimeMethod* method);
// System.String System.MissingMemberException::FormatSignature(System.Byte[])
extern "C" IL2CPP_METHOD_ATTR String_t* MissingMemberException_FormatSignature_m3C89B3C272FB5A8C115D418C36E8F24CD38D1B41 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___signature0, const RuntimeMethod* method);
// System.String System.String::Concat(System.String,System.String)
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,System.String)
extern "C" IL2CPP_METHOD_ATTR String_t* String_Concat_mDD2E38332DED3A8C088D38D78A0E0BEB5091DA64 (String_t* ___str00, String_t* ___str11, String_t* ___str22, String_t* ___str33, const RuntimeMethod* method);
// System.Void System.MissingMemberException::.ctor()
extern "C" IL2CPP_METHOD_ATTR void MissingMemberException__ctor_m0E998DF25E681F352D27BD1575F45AD78788F481 (MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD * __this, const RuntimeMethod* method);
// System.String System.Runtime.Serialization.SerializationInfo::GetString(System.String)
extern "C" IL2CPP_METHOD_ATTR String_t* SerializationInfo_GetString_m06805A4E368E0B98D5FA70A9333B277CBDD84CF4 (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, const RuntimeMethod* method);
// System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
extern "C" IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6 (RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ___handle0, const RuntimeMethod* method);
// System.Object System.Runtime.Serialization.SerializationInfo::GetValue(System.String,System.Type)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, Type_t * ___type1, const RuntimeMethod* method);
// System.String System.Exception::get_Message()
extern "C" IL2CPP_METHOD_ATTR String_t* Exception_get_Message_m4315B19A04019652708F20C1B855805157F23CFD (Exception_t * __this, const RuntimeMethod* method);
// System.Void System.Exception::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
extern "C" IL2CPP_METHOD_ATTR void Exception_GetObjectData_m76F759ED00FA218FFC522C32626B851FDE849AD6 (Exception_t * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method);
// System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Object,System.Type)
extern "C" IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, RuntimeObject * ___value1, Type_t * ___type2, const RuntimeMethod* method);
// System.String System.String::Concat(System.String,System.String,System.String)
extern "C" IL2CPP_METHOD_ATTR String_t* String_Concat_mF4626905368D6558695A823466A1AF65EADB9923 (String_t* ___str00, String_t* ___str11, String_t* ___str22, const RuntimeMethod* method);
// System.Boolean System.Reflection.Assembly::op_Equality(System.Reflection.Assembly,System.Reflection.Assembly)
extern "C" IL2CPP_METHOD_ATTR bool Assembly_op_Equality_m4B6A318CE4104781ABF30A2BBBCCCFB0FE342316 (Assembly_t * ___left0, Assembly_t * ___right1, const RuntimeMethod* method);
// System.Type System.Object::GetType()
extern "C" IL2CPP_METHOD_ATTR Type_t * Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60 (RuntimeObject * __this, const RuntimeMethod* method);
// System.Boolean System.Reflection.Assembly::op_Inequality(System.Reflection.Assembly,System.Reflection.Assembly)
extern "C" IL2CPP_METHOD_ATTR bool Assembly_op_Inequality_m6949ED5777CC2840BF1EBD907C35A20E25F22F7B (Assembly_t * ___left0, Assembly_t * ___right1, const RuntimeMethod* method);
// System.Object[] System.Reflection.MonoMethod::GetPseudoCustomAttributes()
extern "C" IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* MonoMethod_GetPseudoCustomAttributes_mE46E69D39791BDF9B87A893B6EEB17B75754DE31 (MonoMethod_t * __this, const RuntimeMethod* method);
// System.Object[] System.Reflection.FieldInfo::GetPseudoCustomAttributes()
extern "C" IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* FieldInfo_GetPseudoCustomAttributes_m54546ADF590198164EE361638CFBDA4CFC733994 (FieldInfo_t * __this, const RuntimeMethod* method);
// System.Object[] System.Reflection.ParameterInfo::GetPseudoCustomAttributes()
extern "C" IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ParameterInfo_GetPseudoCustomAttributes_m6A16386472EB8A4B1448EB11CC4B987F06281E22 (ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * __this, const RuntimeMethod* method);
// System.Object[] System.MonoCustomAttrs::GetPseudoCustomAttributes(System.Type)
extern "C" IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* MonoCustomAttrs_GetPseudoCustomAttributes_m7598697AAF50EA30FF6E03C8F9F510FC60434988 (Type_t * ___type0, const RuntimeMethod* method);
// System.Boolean System.Type::op_Inequality(System.Type,System.Type)
extern "C" IL2CPP_METHOD_ATTR bool Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method);
// System.Reflection.TypeAttributes System.Type::get_Attributes()
extern "C" IL2CPP_METHOD_ATTR int32_t Type_get_Attributes_m8B229CC7A4DDE25E0EEB1A9F09FC61C499A72163 (Type_t * __this, const RuntimeMethod* method);
// System.Void System.SerializableAttribute::.ctor()
extern "C" IL2CPP_METHOD_ATTR void SerializableAttribute__ctor_m2EEE0A59C8AE32A075D806DDBB0D41EB85F049E8 (SerializableAttribute_t2522EA746802F84F4805F489ECE9CFAC1A817F0F * __this, const RuntimeMethod* method);
// System.Void System.Runtime.InteropServices.ComImportAttribute::.ctor()
extern "C" IL2CPP_METHOD_ATTR void ComImportAttribute__ctor_m372EC8A68CB0323D4453D465DD612CDE9B595678 (ComImportAttribute_t274D44BA1076F587D6AC97C2AFBA0A7B25EFDF40 * __this, const RuntimeMethod* method);
// System.Boolean System.MonoCustomAttrs::IsUserCattrProvider(System.Object)
extern "C" IL2CPP_METHOD_ATTR bool MonoCustomAttrs_IsUserCattrProvider_m9B868B5F0A99FE40FD0CC0387036A0E9BBB75932 (RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Object[] System.MonoCustomAttrs::GetCustomAttributesInternal(System.Reflection.ICustomAttributeProvider,System.Type,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* MonoCustomAttrs_GetCustomAttributesInternal_m3F958BFAAAE4332BBF02F37419B0735C3BB5A772 (RuntimeObject* ___obj0, Type_t * ___attributeType1, bool ___pseudoAttrs2, const RuntimeMethod* method);
// System.Object[] System.MonoCustomAttrs::GetPseudoCustomAttributes(System.Reflection.ICustomAttributeProvider,System.Type)
extern "C" IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* MonoCustomAttrs_GetPseudoCustomAttributes_m0D01BF6CDDC677D096E44DC0F32136E4D3812DE9 (RuntimeObject* ___obj0, Type_t * ___attributeType1, const RuntimeMethod* method);
// System.Void System.Array::Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6 (RuntimeArray * ___sourceArray0, int32_t ___sourceIndex1, RuntimeArray * ___destinationArray2, int32_t ___destinationIndex3, int32_t ___length4, const RuntimeMethod* method);
// System.Boolean System.Type::op_Equality(System.Type,System.Type)
extern "C" IL2CPP_METHOD_ATTR bool Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method);
// System.Object[] System.MonoCustomAttrs::GetCustomAttributesBase(System.Reflection.ICustomAttributeProvider,System.Type,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* MonoCustomAttrs_GetCustomAttributesBase_mBF75044E83593AAD9DA29F0C19056B1FB1D98673 (RuntimeObject* ___obj0, Type_t * ___attributeType1, bool ___inheritedOnly2, const RuntimeMethod* method);
// System.Void System.Reflection.CustomAttributeFormatException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void CustomAttributeFormatException__ctor_mD45240130392F4AE30163D4585E8062EB886236B (CustomAttributeFormatException_tE63CB0CF2AB9605E56F823E2F32B41C5E24E705D * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Array System.Array::CreateInstance(System.Type,System.Int32)
extern "C" IL2CPP_METHOD_ATTR RuntimeArray * Array_CreateInstance_mE3FF1559BCD06302A7DA79FCE32232941AC38F3F (Type_t * ___elementType0, int32_t ___length1, const RuntimeMethod* method);
// System.Reflection.ICustomAttributeProvider System.MonoCustomAttrs::GetBase(System.Reflection.ICustomAttributeProvider)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* MonoCustomAttrs_GetBase_m14B26004C94018740FB8627C7FE3383E16E3BD5F (RuntimeObject* ___obj0, const RuntimeMethod* method);
// System.Boolean System.Type::get_IsSealed()
extern "C" IL2CPP_METHOD_ATTR bool Type_get_IsSealed_mC42D173AFAF7802291DEA2C3D691340F2375FD9A (Type_t * __this, const RuntimeMethod* method);
// System.AttributeUsageAttribute System.MonoCustomAttrs::RetrieveAttributeUsage(System.Type)
extern "C" IL2CPP_METHOD_ATTR AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * MonoCustomAttrs_RetrieveAttributeUsage_m229824E6B6B43362F51318A23656CCA20729B39F (Type_t * ___attributeType0, const RuntimeMethod* method);
// System.Boolean System.AttributeUsageAttribute::get_Inherited()
extern "C" IL2CPP_METHOD_ATTR bool AttributeUsageAttribute_get_Inherited_mE46032EFECAED37FA15BCEE3384DFA4E9868024F (AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * __this, const RuntimeMethod* method);
// System.Int32 System.Math::Max(System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Math_Max_mA99E48BB021F2E4B62D4EA9F52EA6928EED618A2 (int32_t ___val10, int32_t ___val21, const RuntimeMethod* method);
// System.Void System.Array::CopyTo(System.Array,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Array_CopyTo_m455300D414FFB0EBFE53EA4E8BBD31532006EBB7 (RuntimeArray * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.Object>::.ctor(System.Int32)
inline void List_1__ctor_mEE468B81D8E7C140F567D10FF7F5894A50EEEA57 (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, int32_t p0, const RuntimeMethod* method)
{
(( void (*) (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D *, int32_t, const RuntimeMethod*))List_1__ctor_mEE468B81D8E7C140F567D10FF7F5894A50EEEA57_gshared)(__this, p0, method);
}
// System.Void System.Collections.Generic.List`1<System.Object>::Add(T)
inline void List_1_Add_m6930161974C7504C80F52EC379EF012387D43138 (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, RuntimeObject * p0, const RuntimeMethod* method)
{
(( void (*) (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D *, RuntimeObject *, const RuntimeMethod*))List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared)(__this, p0, method);
}
// System.Boolean System.Type::get_IsValueType()
extern "C" IL2CPP_METHOD_ATTR bool Type_get_IsValueType_mDDCCBAE9B59A483CBC3E5C02E3D68CEBEB2E41A8 (Type_t * __this, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.List`1<System.Object>::get_Count()
inline int32_t List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22 (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D *, const RuntimeMethod*))List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1<System.Object>::CopyTo(T[],System.Int32)
inline void List_1_CopyTo_mBC8DEE264FD7E346D098E28FB1D5096B0F9132FB (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* p0, int32_t p1, const RuntimeMethod* method)
{
(( void (*) (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D *, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, int32_t, const RuntimeMethod*))List_1_CopyTo_mBC8DEE264FD7E346D098E28FB1D5096B0F9132FB_gshared)(__this, p0, p1, method);
}
// System.Void System.Collections.Generic.Dictionary`2<System.Type,System.MonoCustomAttrs/AttributeInfo>::.ctor(System.Int32)
inline void Dictionary_2__ctor_mEE3657EA369C703F44E13F63138E65536EC62533 (Dictionary_2_t772861296417691DD84C8A9E8D84AAC7F39FD992 * __this, int32_t p0, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t772861296417691DD84C8A9E8D84AAC7F39FD992 *, int32_t, const RuntimeMethod*))Dictionary_2__ctor_m2895EBB13AA7D9232058658A7DC404DC5F608923_gshared)(__this, p0, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2<System.Type,System.MonoCustomAttrs/AttributeInfo>::TryGetValue(TKey,TValue&)
inline bool Dictionary_2_TryGetValue_m0F44FDB3488E44FD0A1C8D1D1490DFA483E3BC73 (Dictionary_2_t772861296417691DD84C8A9E8D84AAC7F39FD992 * __this, Type_t * p0, AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A ** p1, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_t772861296417691DD84C8A9E8D84AAC7F39FD992 *, Type_t *, AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A **, const RuntimeMethod*))Dictionary_2_TryGetValue_m3455807C552312C60038DF52EF328C3687442DE3_gshared)(__this, p0, p1, method);
}
// System.AttributeUsageAttribute System.MonoCustomAttrs/AttributeInfo::get_Usage()
extern "C" IL2CPP_METHOD_ATTR AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * AttributeInfo_get_Usage_mC0CA19AEB050A11C3E89E5A015E204AB9D51F4A0 (AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A * __this, const RuntimeMethod* method);
// System.Boolean System.AttributeUsageAttribute::get_AllowMultiple()
extern "C" IL2CPP_METHOD_ATTR bool AttributeUsageAttribute_get_AllowMultiple_mF910B0B16B485A8F02C54854FC9A9604B8810FF7 (AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * __this, const RuntimeMethod* method);
// System.Int32 System.MonoCustomAttrs/AttributeInfo::get_InheritanceLevel()
extern "C" IL2CPP_METHOD_ATTR int32_t AttributeInfo_get_InheritanceLevel_mDC293DDDC43F613FBBA304C3A5FDC63AB3961AAD (AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A * __this, const RuntimeMethod* method);
// System.Void System.MonoCustomAttrs/AttributeInfo::.ctor(System.AttributeUsageAttribute,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void AttributeInfo__ctor_mB43DF2481E1EE03052137FEB5EADDDF71F935BFF (AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A * __this, AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * ___usage0, int32_t ___inheritanceLevel1, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.Type,System.MonoCustomAttrs/AttributeInfo>::Add(TKey,TValue)
inline void Dictionary_2_Add_m3DFDBF11129C60DC0ECECB033EC05774E050982A (Dictionary_2_t772861296417691DD84C8A9E8D84AAC7F39FD992 * __this, Type_t * p0, AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A * p1, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t772861296417691DD84C8A9E8D84AAC7F39FD992 *, Type_t *, AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A *, const RuntimeMethod*))Dictionary_2_Add_mC741BBB0A647C814227953DB9B23CB1BDF571C5B_gshared)(__this, p0, p1, method);
}
// System.Object System.Array::Clone()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Array_Clone_mE8C710213E323617A6F46F2B36DCDDD4C7CF5176 (RuntimeArray * __this, const RuntimeMethod* method);
// System.Object[] System.MonoCustomAttrs::GetCustomAttributes(System.Reflection.ICustomAttributeProvider,System.Type,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* MonoCustomAttrs_GetCustomAttributes_m1FD79FB099EEB9D47077C17F9496F4E17AD97115 (RuntimeObject* ___obj0, Type_t * ___attributeType1, bool ___inherit2, const RuntimeMethod* method);
// System.Reflection.CustomAttributeData[] System.MonoCustomAttrs::GetCustomAttributesDataInternal(System.Reflection.ICustomAttributeProvider)
extern "C" IL2CPP_METHOD_ATTR CustomAttributeDataU5BU5D_tE5B7BD0F5BF214F2158089D8B3FDA19FE1834BEB* MonoCustomAttrs_GetCustomAttributesDataInternal_mA4D57D5AF94FF74220D85C27DEAD3C6A7B522500 (RuntimeObject* ___obj0, const RuntimeMethod* method);
// System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Array::AsReadOnly<System.Reflection.CustomAttributeData>(T[])
inline ReadOnlyCollection_1_tDD4D93FFE40A14E74D1B366764AABCE0121ED99F * Array_AsReadOnly_TisCustomAttributeData_t2CD9D78F97B6517D5DEE35DEE97159B02C078F88_m30364FCF20CF26279523189E6647C3D40B0BBB7E (CustomAttributeDataU5BU5D_tE5B7BD0F5BF214F2158089D8B3FDA19FE1834BEB* ___array0, const RuntimeMethod* method)
{
return (( ReadOnlyCollection_1_tDD4D93FFE40A14E74D1B366764AABCE0121ED99F * (*) (CustomAttributeDataU5BU5D_tE5B7BD0F5BF214F2158089D8B3FDA19FE1834BEB*, const RuntimeMethod*))Array_AsReadOnly_TisRuntimeObject_m5128285E46B9807817464A6C1048C00E81022EFF_gshared)(___array0, method);
}
// System.Boolean System.MonoCustomAttrs::IsDefinedInternal(System.Reflection.ICustomAttributeProvider,System.Type)
extern "C" IL2CPP_METHOD_ATTR bool MonoCustomAttrs_IsDefinedInternal_mCAD7B5C69738393BD3509E8CBFDC8D37AE540700 (RuntimeObject* ___obj0, Type_t * ___AttributeType1, const RuntimeMethod* method);
// System.Boolean System.Reflection.MethodInfo::op_Equality(System.Reflection.MethodInfo,System.Reflection.MethodInfo)
extern "C" IL2CPP_METHOD_ATTR bool MethodInfo_op_Equality_m1E51FB51169B9B8FB3120ED5F9B454785932C5D0 (MethodInfo_t * ___left0, MethodInfo_t * ___right1, const RuntimeMethod* method);
// System.Boolean System.Reflection.MethodBase::get_IsVirtual()
extern "C" IL2CPP_METHOD_ATTR bool MethodBase_get_IsVirtual_m60B52F086B75D675CAB423C351C3B0CA062675F4 (MethodBase_t * __this, const RuntimeMethod* method);
// System.Boolean System.Reflection.MethodInfo::op_Inequality(System.Reflection.MethodInfo,System.Reflection.MethodInfo)
extern "C" IL2CPP_METHOD_ATTR bool MethodInfo_op_Inequality_m76AC38C8B8FB8F28C21E6F9A3F0268FF8E4CC237 (MethodInfo_t * ___left0, MethodInfo_t * ___right1, const RuntimeMethod* method);
// System.Reflection.PropertyInfo System.Type::GetProperty(System.String,System.Type,System.Type[])
extern "C" IL2CPP_METHOD_ATTR PropertyInfo_t * Type_GetProperty_m6F2C962FDCCD4966698E40A631F8DD9F4BF5A1C0 (Type_t * __this, String_t* ___name0, Type_t * ___returnType1, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___types2, const RuntimeMethod* method);
// System.Reflection.PropertyInfo System.Type::GetProperty(System.String,System.Type)
extern "C" IL2CPP_METHOD_ATTR PropertyInfo_t * Type_GetProperty_mB92E711C0B593302FC700804ECB78B45932E12B3 (Type_t * __this, String_t* ___name0, Type_t * ___returnType1, const RuntimeMethod* method);
// System.Boolean System.Reflection.MethodBase::get_IsPublic()
extern "C" IL2CPP_METHOD_ATTR bool MethodBase_get_IsPublic_m9DCA641DBE6F06D0DC4A4B2828641A6DEA97F88B (MethodBase_t * __this, const RuntimeMethod* method);
// System.Boolean System.Reflection.MethodBase::get_IsStatic()
extern "C" IL2CPP_METHOD_ATTR bool MethodBase_get_IsStatic_m745A9BDA4869DB7CC4886436C52D34855C1270A5 (MethodBase_t * __this, const RuntimeMethod* method);
// System.Reflection.PropertyInfo System.MonoCustomAttrs::GetBasePropertyDefinition(System.Reflection.MonoProperty)
extern "C" IL2CPP_METHOD_ATTR PropertyInfo_t * MonoCustomAttrs_GetBasePropertyDefinition_mE4F385A4AAB21725646424F839451ACE328562D8 (MonoProperty_t * ___property0, const RuntimeMethod* method);
// System.Reflection.EventInfo System.MonoCustomAttrs::GetBaseEventDefinition(System.Reflection.MonoEvent)
extern "C" IL2CPP_METHOD_ATTR EventInfo_t * MonoCustomAttrs_GetBaseEventDefinition_mB663428AC56D3B5530449230B5060FC157F25F2D (MonoEvent_t * ___evt0, const RuntimeMethod* method);
// System.Void System.AttributeUsageAttribute::.ctor(System.AttributeTargets)
extern "C" IL2CPP_METHOD_ATTR void AttributeUsageAttribute__ctor_mC429C14AB95A0097160F40CE859CC1894C406051 (AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * __this, int32_t ___validOn0, const RuntimeMethod* method);
// System.Void System.FormatException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14 (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.Type,System.AttributeUsageAttribute>::.ctor()
inline void Dictionary_2__ctor_m75E41D2EE0C3109FBF9ACDBB01D255B7BB0A5C4E (Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236 * __this, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236 *, const RuntimeMethod*))Dictionary_2__ctor_m2C7E51568033239B506E15E7804A0B8658246498_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2<System.Type,System.AttributeUsageAttribute>::TryGetValue(TKey,TValue&)
inline bool Dictionary_2_TryGetValue_mCF45E61BB80AB25D2060B3C4F73161D47C8CEE56 (Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236 * __this, Type_t * p0, AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 ** p1, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236 *, Type_t *, AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 **, const RuntimeMethod*))Dictionary_2_TryGetValue_m3455807C552312C60038DF52EF328C3687442DE3_gshared)(__this, p0, p1, method);
}
// System.AttributeUsageAttribute System.MonoCustomAttrs::RetrieveAttributeUsageNoCache(System.Type)
extern "C" IL2CPP_METHOD_ATTR AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * MonoCustomAttrs_RetrieveAttributeUsageNoCache_m1218D6C313469F040577C11FCCAB830B29806949 (Type_t * ___attributeType0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.Type,System.AttributeUsageAttribute>::set_Item(TKey,TValue)
inline void Dictionary_2_set_Item_mD180D4FC3F0C1345E889F4BDC76AE4AE4F7D3D2F (Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236 * __this, Type_t * p0, AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * p1, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236 *, Type_t *, AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 *, const RuntimeMethod*))Dictionary_2_set_Item_m466D001F105E25DEB5C9BCB17837EE92A27FDE93_gshared)(__this, p0, p1, method);
}
// System.Void System.MonoTODOAttribute::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void MonoTODOAttribute__ctor_mC199F774DE64B70BD4A1611D55857310A3D7E9E9 (MonoTODOAttribute_t0D37CE020492CC4F1A620F173C52E5780E2A9666 * __this, String_t* ___comment0, const RuntimeMethod* method);
// System.Void System.Attribute::.ctor()
extern "C" IL2CPP_METHOD_ATTR void Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0 (Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * __this, const RuntimeMethod* method);
// System.Void System.Delegate::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
extern "C" IL2CPP_METHOD_ATTR void Delegate_GetObjectData_m4471B2DAE39E8F41977BAD88E2CDCA01217B2D71 (Delegate_t * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method);
// System.Boolean System.Delegate::Equals(System.Object)
extern "C" IL2CPP_METHOD_ATTR bool Delegate_Equals_m3256FBF115534E4E8D5B83350AA95EC60D84899D (Delegate_t * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 System.Delegate::GetHashCode()
extern "C" IL2CPP_METHOD_ATTR int32_t Delegate_GetHashCode_m8FBCC6E42228A161DA710A330981B8E19BC6FABC (Delegate_t * __this, const RuntimeMethod* method);
// System.Reflection.MethodInfo System.Delegate::get_Method()
extern "C" IL2CPP_METHOD_ATTR MethodInfo_t * Delegate_get_Method_m0AC85D2B0C4CA63C471BC37FFDC3A5EA1E8ED048 (Delegate_t * __this, const RuntimeMethod* method);
// System.Reflection.MethodInfo System.Delegate::GetMethodImpl()
extern "C" IL2CPP_METHOD_ATTR MethodInfo_t * Delegate_GetMethodImpl_m804444FE22E0481DDB8A41E0E25114E744D76921 (Delegate_t * __this, const RuntimeMethod* method);
// System.MulticastDelegate System.Delegate::AllocDelegateLike_internal(System.Delegate)
extern "C" IL2CPP_METHOD_ATTR MulticastDelegate_t * Delegate_AllocDelegateLike_internal_m44C2E3D4E421F3F19058E691FEEB6EC054A92B3F (Delegate_t * ___d0, const RuntimeMethod* method);
// System.Int32 System.Array::LastIndexOf<System.Delegate>(T[],T)
inline int32_t Array_LastIndexOf_TisDelegate_t_mEF3643667769C5E754C0DF7DD1B0C9D54E493C45 (DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* ___array0, Delegate_t * ___value1, const RuntimeMethod* method)
{
return (( int32_t (*) (DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86*, Delegate_t *, const RuntimeMethod*))Array_LastIndexOf_TisRuntimeObject_mADF32BA8AC5E3F1C5D224A446DA3C1F0E9CBC324_gshared)(___array0, ___value1, method);
}
// System.Void System.InvalidOperationException::.ctor()
extern "C" IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_m1F94EA1226068BD1B7EAA1B836A59C99979F579E (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * __this, const RuntimeMethod* method);
// System.Int32 System.MulticastDelegate::LastIndexOf(System.Delegate[],System.Delegate[])
extern "C" IL2CPP_METHOD_ATTR int32_t MulticastDelegate_LastIndexOf_mC8608A9B5AD9B47651893C1F9FD4EE93E883230D (MulticastDelegate_t * __this, DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* ___haystack0, DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* ___needle1, const RuntimeMethod* method);
// System.Void System.ConsoleKeyInfo::.ctor(System.Char,System.ConsoleKey,System.Boolean,System.Boolean,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98 (ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 * __this, Il2CppChar ___keyChar0, int32_t ___key1, bool ___shift2, bool ___alt3, bool ___control4, const RuntimeMethod* method);
// System.String System.NumberFormatter::NumberToString(System.String,System.Decimal,System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatter_NumberToString_mB2192DEA3E3EFE9F8799E9D931F21586823E61D9 (String_t* ___format0, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value1, RuntimeObject* ___fp2, const RuntimeMethod* method);
// System.String System.NumberFormatter::NumberToString(System.String,System.Double,System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatter_NumberToString_m52F79BE9C6B6531191AE27454C6DEBA1C09A4717 (String_t* ___format0, double ___value1, RuntimeObject* ___fp2, const RuntimeMethod* method);
// System.String System.NumberFormatter::NumberToString(System.String,System.Int32,System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatter_NumberToString_mD13D145869D2857BFDAEDD127A04E68A6B929950 (String_t* ___format0, int32_t ___value1, RuntimeObject* ___fp2, const RuntimeMethod* method);
// System.String System.NumberFormatter::NumberToString(System.String,System.UInt32,System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatter_NumberToString_mBA9C9AB4809ADB1CEDAC880569E1F4EC2ADB547C (String_t* ___format0, uint32_t ___value1, RuntimeObject* ___fp2, const RuntimeMethod* method);
// System.String System.NumberFormatter::NumberToString(System.String,System.Int64,System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatter_NumberToString_mF2FEDF5FC0B3511F8BE51DC6C6FF1B6326BDDA05 (String_t* ___format0, int64_t ___value1, RuntimeObject* ___fp2, const RuntimeMethod* method);
// System.String System.NumberFormatter::NumberToString(System.String,System.UInt64,System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatter_NumberToString_mB04F03382B99D07E7DDEE769E704C823EC6EF201 (String_t* ___format0, uint64_t ___value1, RuntimeObject* ___fp2, const RuntimeMethod* method);
// System.String System.NumberFormatter::NumberToString(System.String,System.Single,System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatter_NumberToString_m2BCC98CB4910CBDA506DD64B026DB3C66A66A657 (String_t* ___format0, float ___value1, RuntimeObject* ___fp2, const RuntimeMethod* method);
// System.Boolean System.Number::HexNumberToUInt32(System.Number/NumberBuffer&,System.UInt32&)
extern "C" IL2CPP_METHOD_ATTR bool Number_HexNumberToUInt32_mCF1D424CBE49EEA9B5D2546B705C79519A41195F (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number0, uint32_t* ___value1, const RuntimeMethod* method);
// System.Boolean System.Number::HexNumberToUInt64(System.Number/NumberBuffer&,System.UInt64&)
extern "C" IL2CPP_METHOD_ATTR bool Number_HexNumberToUInt64_mD5003F23674F5CF4D681066993ECC3F4DD9D4252 (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number0, uint64_t* ___value1, const RuntimeMethod* method);
// System.Int32 System.Runtime.CompilerServices.RuntimeHelpers::get_OffsetToStringData()
extern "C" IL2CPP_METHOD_ATTR int32_t RuntimeHelpers_get_OffsetToStringData_mF3B79A906181F1A2734590DA161E2AF183853F8B (const RuntimeMethod* method);
// System.Char* System.Number::MatchChars(System.Char*,System.Char*)
extern "C" IL2CPP_METHOD_ATTR Il2CppChar* Number_MatchChars_m7EE86D2BE9EC4117EE64EF821DB270C0A717ACAC (Il2CppChar* ___p0, Il2CppChar* ___str1, const RuntimeMethod* method);
// System.Void System.Number/NumberBuffer::.ctor(System.Byte*)
extern "C" IL2CPP_METHOD_ATTR void NumberBuffer__ctor_m3CC10B06A100FC612C5BD24BBC5A20C2BCDCD68E (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * __this, uint8_t* ___stackBuffer0, const RuntimeMethod* method);
// System.Void System.Number::StringToNumber(System.String,System.Globalization.NumberStyles,System.Number/NumberBuffer&,System.Globalization.NumberFormatInfo,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void Number_StringToNumber_m430FD04F901D7715B727832A85D4D8DCD6EB4BED (String_t* ___str0, int32_t ___options1, NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number2, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info3, bool ___parseDecimal4, const RuntimeMethod* method);
// System.Byte* System.Number/NumberBuffer::PackForNative()
extern "C" IL2CPP_METHOD_ATTR uint8_t* NumberBuffer_PackForNative_m7790B7A255562FC1823BACABA471AF133A86D640 (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * __this, const RuntimeMethod* method);
// System.Boolean System.Number::NumberBufferToDecimal(System.Byte*,System.Decimal&)
extern "C" IL2CPP_METHOD_ATTR bool Number_NumberBufferToDecimal_m0C4AC5B6FF9A6FCC8BF29288793B11CB09AB38C7 (uint8_t* ___number0, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * ___value1, const RuntimeMethod* method);
// System.Boolean System.Number::TryStringToNumber(System.String,System.Globalization.NumberStyles,System.Number/NumberBuffer&,System.Globalization.NumberFormatInfo,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR bool Number_TryStringToNumber_mDA7F326F742680FF01ACA545ED511EE80A3248D7 (String_t* ___str0, int32_t ___options1, NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number2, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numfmt3, bool ___parseDecimal4, const RuntimeMethod* method);
// System.String System.String::Trim()
extern "C" IL2CPP_METHOD_ATTR String_t* String_Trim_mB52EB7876C7132358B76B7DC95DEACA20722EF4D (String_t* __this, const RuntimeMethod* method);
// System.String System.Globalization.NumberFormatInfo::get_PositiveInfinitySymbol()
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_PositiveInfinitySymbol_m7602CB28ED33148275C2ED9CF8395241BF8E0F0A (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.Boolean System.String::Equals(System.String)
extern "C" IL2CPP_METHOD_ATTR bool String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1 (String_t* __this, String_t* ___value0, const RuntimeMethod* method);
// System.String System.Globalization.NumberFormatInfo::get_NegativeInfinitySymbol()
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_NegativeInfinitySymbol_m8C1DDF6E543F2193CD0BE65F67175E4DECED1DB8 (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.String System.Globalization.NumberFormatInfo::get_NaNSymbol()
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_NaNSymbol_m82326D3E16F9834D5138685A6956EE154944891E (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.Boolean System.Number::NumberBufferToDouble(System.Byte*,System.Double&)
extern "C" IL2CPP_METHOD_ATTR bool Number_NumberBufferToDouble_mE27725FD73DD8B9F85044B850CBA7356C5A9082D (uint8_t* ___number0, double* ___value1, const RuntimeMethod* method);
// System.Boolean System.Number::HexNumberToInt32(System.Number/NumberBuffer&,System.Int32&)
extern "C" IL2CPP_METHOD_ATTR bool Number_HexNumberToInt32_m9229BEC2774D0AC4211B2D01CDD18EB1FB5DDDD7 (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number0, int32_t* ___value1, const RuntimeMethod* method);
// System.Boolean System.Number::NumberToInt32(System.Number/NumberBuffer&,System.Int32&)
extern "C" IL2CPP_METHOD_ATTR bool Number_NumberToInt32_m21C6C8AB448D962C7658840F3C511835089D26E6 (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number0, int32_t* ___value1, const RuntimeMethod* method);
// System.Boolean System.Number::HexNumberToInt64(System.Number/NumberBuffer&,System.Int64&)
extern "C" IL2CPP_METHOD_ATTR bool Number_HexNumberToInt64_m378430BD3E19ACC499999BE305850B0AFD292313 (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number0, int64_t* ___value1, const RuntimeMethod* method);
// System.Boolean System.Number::NumberToInt64(System.Number/NumberBuffer&,System.Int64&)
extern "C" IL2CPP_METHOD_ATTR bool Number_NumberToInt64_mC59DFAEF3C78A77FFFFA66937DD8109E747F4EE0 (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number0, int64_t* ___value1, const RuntimeMethod* method);
// System.String System.Globalization.NumberFormatInfo::get_CurrencySymbol()
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16 (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.String System.Globalization.NumberFormatInfo::get_NumberDecimalSeparator()
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_NumberDecimalSeparator_m1A9F946D267B5C2FC5982D34AF97D9AEB9C24A6E (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.String System.Globalization.NumberFormatInfo::get_NumberGroupSeparator()
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_NumberGroupSeparator_mD995708E10C4CC55A19E7126E7A6C256A2DD1A35 (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.String System.Globalization.NumberFormatInfo::get_CurrencyDecimalSeparator()
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_CurrencyDecimalSeparator_mB1EE2B6EA5D9F58355F26F071B9A08435378214D (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.String System.Globalization.NumberFormatInfo::get_CurrencyGroupSeparator()
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_CurrencyGroupSeparator_m5AC1CA2A478284D1D059459951C8208168A20130 (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.Boolean System.Number::IsWhite(System.Char)
extern "C" IL2CPP_METHOD_ATTR bool Number_IsWhite_m2FBD10D7315E0E9771F98FA00CA7787699C03700 (Il2CppChar ___ch0, const RuntimeMethod* method);
// System.Int32 System.Globalization.NumberFormatInfo::get_NumberNegativePattern()
extern "C" IL2CPP_METHOD_ATTR int32_t NumberFormatInfo_get_NumberNegativePattern_mF41D38C78ED74CB2F365ECE09BFB386434F2B017 (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.String System.Globalization.NumberFormatInfo::get_PositiveSign()
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_PositiveSign_m268EA84CDC3A03566ACDC10208E165DB74948747 (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.Char* System.Number::MatchChars(System.Char*,System.String)
extern "C" IL2CPP_METHOD_ATTR Il2CppChar* Number_MatchChars_mB3DAD884D42368A0428DACB98B14EAF4E223FAEA (Il2CppChar* ___p0, String_t* ___str1, const RuntimeMethod* method);
// System.String System.Globalization.NumberFormatInfo::get_NegativeSign()
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.Boolean System.Single::IsInfinity(System.Single)
extern "C" IL2CPP_METHOD_ATTR bool Single_IsInfinity_m811B198540AB538C4FE145F7C0303C4AD772988B (float ___f0, const RuntimeMethod* method);
// System.Boolean System.Number::NumberToUInt32(System.Number/NumberBuffer&,System.UInt32&)
extern "C" IL2CPP_METHOD_ATTR bool Number_NumberToUInt32_m60BDF4513A1673F8F993CAA12CA865FD4294308F (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number0, uint32_t* ___value1, const RuntimeMethod* method);
// System.Boolean System.Number::NumberToUInt64(System.Number/NumberBuffer&,System.UInt64&)
extern "C" IL2CPP_METHOD_ATTR bool Number_NumberToUInt64_m4F1E853E52800DA97846B99A6989596F310501C0 (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number0, uint64_t* ___value1, const RuntimeMethod* method);
// System.Boolean System.Number::ParseNumber(System.Char*&,System.Globalization.NumberStyles,System.Number/NumberBuffer&,System.Text.StringBuilder,System.Globalization.NumberFormatInfo,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR bool Number_ParseNumber_m17629D8063D3403750ED6ACEE47F9F3F3C682241 (Il2CppChar** ___str0, int32_t ___options1, NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number2, StringBuilder_t * ___sb3, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numfmt4, bool ___parseDecimal5, const RuntimeMethod* method);
// System.Boolean System.Number::TrailingZeros(System.String,System.Int32)
extern "C" IL2CPP_METHOD_ATTR bool Number_TrailingZeros_m5B8B34E5E660FBD4870DE2D2778FC3758F28750F (String_t* ___s0, int32_t ___index1, const RuntimeMethod* method);
// System.Boolean System.Number::TryStringToNumber(System.String,System.Globalization.NumberStyles,System.Number/NumberBuffer&,System.Text.StringBuilder,System.Globalization.NumberFormatInfo,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR bool Number_TryStringToNumber_m515B5B64EE9D50013D45179933663F00752A2DEC (String_t* ___str0, int32_t ___options1, NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number2, StringBuilder_t * ___sb3, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numfmt4, bool ___parseDecimal5, const RuntimeMethod* method);
// System.Void System.NumberFormatter::GetFormatterTables(System.UInt64*&,System.Int32*&,System.Char*&,System.Char*&,System.Int64*&,System.Int32*&)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_GetFormatterTables_m67567DB29277C2F860D0CD7A882C269F1775A9DE (uint64_t** ___MantissaBitsTable0, int32_t** ___TensExponentTable1, Il2CppChar** ___DigitLowerTable2, Il2CppChar** ___DigitUpperTable3, int64_t** ___TenPowersList4, int32_t** ___DecHexDigits5, const RuntimeMethod* method);
// System.UInt32 System.NumberFormatter::FastToDecHex(System.Int32)
extern "C" IL2CPP_METHOD_ATTR uint32_t NumberFormatter_FastToDecHex_m70F4537592F2D301B57DCB01BF0BF5F5B929845F (int32_t ___val0, const RuntimeMethod* method);
// System.UInt32 System.NumberFormatter::ToDecHex(System.Int32)
extern "C" IL2CPP_METHOD_ATTR uint32_t NumberFormatter_ToDecHex_m6EF9C97FE4375306151C2AD7C0F47C993D12454D (int32_t ___val0, const RuntimeMethod* method);
// System.Void System.NumberFormatter::InitDecHexDigits(System.UInt64)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_InitDecHexDigits_m6B41DFE2085FE5ECE27586ACA44B44359C3E3883 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, uint64_t ___value0, const RuntimeMethod* method);
// System.Int32 System.NumberFormatter::FastDecHexLen(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t NumberFormatter_FastDecHexLen_m9B02B763871E7640DA540045D2A10E0D001650F4 (int32_t ___val0, const RuntimeMethod* method);
// System.Int32 System.NumberFormatter::DecHexLen(System.UInt32)
extern "C" IL2CPP_METHOD_ATTR int32_t NumberFormatter_DecHexLen_m89FBA140789567E30D1C73851FBBE539088E5579 (uint32_t ___val0, const RuntimeMethod* method);
// System.Int64 System.NumberFormatter::GetTenPowerOf(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int64_t NumberFormatter_GetTenPowerOf_mFB4993FB5A5C694F12FC7772DF431C0AA3F6E43C (int32_t ___i0, const RuntimeMethod* method);
// System.Int32 System.Math::Min(System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Math_Min_mC950438198519FB2B0260FCB91220847EE4BB525 (int32_t ___val10, int32_t ___val21, const RuntimeMethod* method);
// System.Void System.NumberFormatter::set_CurrentCulture(System.Globalization.CultureInfo)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_set_CurrentCulture_mF438AEA3F0930A76E4A09B0E7B1ECE7BCCE0D964 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___value0, const RuntimeMethod* method);
// System.Int32 System.NumberFormatter::ParsePrecision(System.String)
extern "C" IL2CPP_METHOD_ATTR int32_t NumberFormatter_ParsePrecision_m333DE08D2CE6C38EBCEF7D7B94D18CDC3224154C (String_t* ___format0, const RuntimeMethod* method);
// System.Int32 System.NumberFormatter::DecHexLen()
extern "C" IL2CPP_METHOD_ATTR int32_t NumberFormatter_DecHexLen_m6624BB04300860C2C7187CC1C66FF3FB9A68D97B (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method);
// System.Void System.NumberFormatter::Init(System.String)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_Init_mE4CB58F7935FD515BDBC5A88C389CCAE85A45286 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, String_t* ___format0, const RuntimeMethod* method);
// System.Void System.NumberFormatter::InitHex(System.UInt64)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_InitHex_mE69DD9D0FA84E4553B40C522E76D49E850A6AE30 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, uint64_t ___value0, const RuntimeMethod* method);
// System.Void System.NumberFormatter::InitDecHexDigits(System.UInt32)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_InitDecHexDigits_mDDED506A219AEEA8A1A12EBC660550D440FF873B (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, uint32_t ___value0, const RuntimeMethod* method);
// System.Int64 System.BitConverter::DoubleToInt64Bits(System.Double)
extern "C" IL2CPP_METHOD_ATTR int64_t BitConverter_DoubleToInt64Bits_mE511B45BE25B2E1D22059420D16055CBA7E1EAA4 (double ___value0, const RuntimeMethod* method);
// System.Int32 System.NumberFormatter::ScaleOrder(System.Int64)
extern "C" IL2CPP_METHOD_ATTR int32_t NumberFormatter_ScaleOrder_m712CE7B5E134E507EC41CC93A43D76F02FC2D8C2 (int64_t ___hi0, const RuntimeMethod* method);
// System.Int32 System.NumberFormatter::InitialFloatingPrecision()
extern "C" IL2CPP_METHOD_ATTR int32_t NumberFormatter_InitialFloatingPrecision_m0E00B5AAAD8CEE7FBFFF538CED95D40FBE8A5184 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method);
// System.Int32 System.NumberFormatter::CountTrailingZeros()
extern "C" IL2CPP_METHOD_ATTR int32_t NumberFormatter_CountTrailingZeros_m10E7E51D6F3BEFE9FE7D5982334C3A39074F1BD3 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method);
// System.Int32[] System.Decimal::GetBits(System.Decimal)
extern "C" IL2CPP_METHOD_ATTR Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* Decimal_GetBits_m581C2DB9823AC9CD84817738A740E8A7D39609BF (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___d0, const RuntimeMethod* method);
// System.Void System.NumberFormatter::InitDecHexDigits(System.UInt32,System.UInt64)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_InitDecHexDigits_m42646433FC393F360E2B559C275DA76F30E1CAD0 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, uint32_t ___hi0, uint64_t ___lo1, const RuntimeMethod* method);
// System.Void System.Array::Resize<System.Char>(T[]&,System.Int32)
inline void Array_Resize_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mE3769C688380A92B93977FA652B43B0C793F4EDC (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** ___array0, int32_t ___newSize1, const RuntimeMethod* method)
{
(( void (*) (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2**, int32_t, const RuntimeMethod*))Array_Resize_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mE3769C688380A92B93977FA652B43B0C793F4EDC_gshared)(___array0, ___newSize1, method);
}
// System.Void System.NumberFormatter::Resize(System.Int32)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_Resize_m5DDC37B326ECCCFEE173B9F90431116E294F64B1 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___len0, const RuntimeMethod* method);
// System.Boolean System.Globalization.CultureInfo::get_IsReadOnly()
extern "C" IL2CPP_METHOD_ATTR bool CultureInfo_get_IsReadOnly_m527F0337C516B57391AD20A70BF18FF7B0AC4849 (CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * __this, const RuntimeMethod* method);
// System.Boolean System.NumberFormatter::RoundBits(System.Int32)
extern "C" IL2CPP_METHOD_ATTR bool NumberFormatter_RoundBits_m0630F9CB3D9867F5732E5C9473B3D637C47EEBFC (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___shift0, const RuntimeMethod* method);
// System.Void System.NumberFormatter::AddOneToDecHex()
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_AddOneToDecHex_mD5A7D9EA97B16B9B318D5FC7E9F6007E98990878 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method);
// System.Void System.NumberFormatter::RemoveTrailingZeros()
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_RemoveTrailingZeros_mFE3D46E49E75DEAF1406B777009FF6A21F3BC6CF (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method);
// System.UInt32 System.NumberFormatter::AddOneToDecHex(System.UInt32)
extern "C" IL2CPP_METHOD_ATTR uint32_t NumberFormatter_AddOneToDecHex_m851488765EF4DFAE8BE75CB6BFCE577528D6FBF7 (uint32_t ___val0, const RuntimeMethod* method);
// System.Int32 System.NumberFormatter::CountTrailingZeros(System.UInt32)
extern "C" IL2CPP_METHOD_ATTR int32_t NumberFormatter_CountTrailingZeros_m09BDBCCEC51A69C186B534021A1BFCD2477C4B1B (uint32_t ___val0, const RuntimeMethod* method);
// System.Void System.NumberFormatter::.ctor(System.Threading.Thread)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter__ctor_m8C967CC13F98B4F01D3E9D0691465B0C919FC280 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * ___current0, const RuntimeMethod* method);
// System.NumberFormatter System.NumberFormatter::GetInstance(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * NumberFormatter_GetInstance_mA49673EC58400C43805623A779916C2F6705AF99 (RuntimeObject* ___fp0, const RuntimeMethod* method);
// System.Void System.NumberFormatter::Init(System.String,System.UInt32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_Init_m90911E05952A76710E710724EB8F62C3DCD8D34E (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, String_t* ___format0, uint32_t ___value1, int32_t ___defPrecision2, const RuntimeMethod* method);
// System.String System.NumberFormatter::IntegerToString(System.String,System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatter_IntegerToString_m167EB2E9184CBA8A18A5A7AE72CD61602227AA50 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, String_t* ___format0, RuntimeObject* ___fp1, const RuntimeMethod* method);
// System.Void System.NumberFormatter::Release()
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_Release_mDCB5A3DC8C2A7E6FFF66C72576E7D29AB4E95D83 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method);
// System.Void System.NumberFormatter::Init(System.String,System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_Init_m7D7CC10DDA255BB0023BD72A0C91F09AD729BE2E (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, String_t* ___format0, int32_t ___value1, int32_t ___defPrecision2, const RuntimeMethod* method);
// System.Void System.NumberFormatter::Init(System.String,System.UInt64)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_Init_m6C605647C5BD888F8F085190C2F56EBB905598E1 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, String_t* ___format0, uint64_t ___value1, const RuntimeMethod* method);
// System.Void System.NumberFormatter::Init(System.String,System.Int64)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_Init_mC48E49CCC89DD59718AC2D00A477CA8F397FBA8C (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, String_t* ___format0, int64_t ___value1, const RuntimeMethod* method);
// System.Void System.NumberFormatter::Init(System.String,System.Double,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_Init_mD235F6B64FD6B6A4FD970449FD0BF75EC0D621C2 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, String_t* ___format0, double ___value1, int32_t ___defPrecision2, const RuntimeMethod* method);
// System.Globalization.NumberFormatInfo System.NumberFormatter::GetNumberFormatInstance(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * NumberFormatter_GetNumberFormatInstance_m6E17C915C981DF8649E00FF0D53ECF896FB8A34F (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, RuntimeObject* ___fp0, const RuntimeMethod* method);
// System.String System.NumberFormatter::FormatRoundtrip(System.Single,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatRoundtrip_mBE6EBC5BD83D8DB4BAE38032B659B9E3BB291439 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, float ___origval0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, const RuntimeMethod* method);
// System.String System.NumberFormatter::NumberToString(System.String,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatter_NumberToString_m831CA24EE69F2EEA3AD4D4FD4AA9353B40FF2FB3 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, String_t* ___format0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, const RuntimeMethod* method);
// System.String System.NumberFormatter::FormatRoundtrip(System.Double,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatRoundtrip_m8339767BDB6A61BABFE5AB826D923D6151DDD816 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, double ___origval0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, const RuntimeMethod* method);
// System.Void System.NumberFormatter::Init(System.String,System.Decimal)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_Init_mF96F3A764D7CCB55B5B187EEDB14881E4BD5A2CB (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, String_t* ___format0, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value1, const RuntimeMethod* method);
// System.String System.NumberFormatter::FormatCurrency(System.Int32,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatCurrency_mC64056524876376E9088DFF17B4811760CD5C34E (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___precision0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, const RuntimeMethod* method);
// System.String System.NumberFormatter::FormatDecimal(System.Int32,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatDecimal_mE1966648115F3FB18A1C369BAB5EA78E2CED2168 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___precision0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, const RuntimeMethod* method);
// System.String System.NumberFormatter::FormatExponential(System.Int32,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatExponential_mCA7BFD8EAC7AD2C23FF91756A5AE9F143478E226 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___precision0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, const RuntimeMethod* method);
// System.String System.NumberFormatter::FormatFixedPoint(System.Int32,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatFixedPoint_mAAC0C8EEEFB528FBAB46F9FFBFCA6B2393EA1929 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___precision0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, const RuntimeMethod* method);
// System.String System.NumberFormatter::FormatGeneral(System.Int32,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatGeneral_m08239388C5D5B3545ED9B2D297540A39D53E73A7 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___precision0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, const RuntimeMethod* method);
// System.String System.NumberFormatter::FormatNumber(System.Int32,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatNumber_m76967F927201EA1997827D0323F12BF9B7083D0F (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___precision0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, const RuntimeMethod* method);
// System.String System.NumberFormatter::FormatPercent(System.Int32,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatPercent_mF5BE951C483C1D7FE18851CB684B2EFD0B39A742 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___precision0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, const RuntimeMethod* method);
// System.String System.NumberFormatter::FormatHexadecimal(System.Int32)
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatHexadecimal_mCDD30C1720063B4956F47E52F32775D60B5444AC (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___precision0, const RuntimeMethod* method);
// System.String System.NumberFormatter::FormatCustom(System.String,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatCustom_m5DAC683F225013EEBFC4FDC1682A88C40152A85F (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, String_t* ___format0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, const RuntimeMethod* method);
// System.Int32 System.Globalization.NumberFormatInfo::get_CurrencyDecimalDigits()
extern "C" IL2CPP_METHOD_ATTR int32_t NumberFormatInfo_get_CurrencyDecimalDigits_mB08BE40DFC57B589B74916CF3D63CEBBC7432C25 (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.Boolean System.NumberFormatter::RoundDecimal(System.Int32)
extern "C" IL2CPP_METHOD_ATTR bool NumberFormatter_RoundDecimal_mE3446A2208E792FF9BB01F93871A8C1BCFF10F4E (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___decimals0, const RuntimeMethod* method);
// System.Int32 System.NumberFormatter::get_IntegerDigits()
extern "C" IL2CPP_METHOD_ATTR int32_t NumberFormatter_get_IntegerDigits_m91E2E8AF66FD565349B6447D6F9AB3B9BD61F741 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method);
// System.Void System.NumberFormatter::ResetCharBuf(System.Int32)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_ResetCharBuf_m6F248689219DB23CBC466C266D313DBE0E64AAA1 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___size0, const RuntimeMethod* method);
// System.Int32 System.Globalization.NumberFormatInfo::get_CurrencyPositivePattern()
extern "C" IL2CPP_METHOD_ATTR int32_t NumberFormatInfo_get_CurrencyPositivePattern_mA9F592EAAA7F5BD929C60D65936892A45A101D7B (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.Void System.NumberFormatter::Append(System.String)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, String_t* ___s0, const RuntimeMethod* method);
// System.Void System.NumberFormatter::Append(System.Char)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, Il2CppChar ___c0, const RuntimeMethod* method);
// System.Int32 System.Globalization.NumberFormatInfo::get_CurrencyNegativePattern()
extern "C" IL2CPP_METHOD_ATTR int32_t NumberFormatInfo_get_CurrencyNegativePattern_mFC6B6D99EB695BFB5ED94F3F7F4DD40F5D02A58A (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.Int32[] System.Globalization.NumberFormatInfo::get_CurrencyGroupSizes()
extern "C" IL2CPP_METHOD_ATTR Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* NumberFormatInfo_get_CurrencyGroupSizes_m422B13575ABEF5EC163FE50A6CF26AADFCAB9324 (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.Void System.NumberFormatter::AppendIntegerStringWithGroupSeparator(System.Int32[],System.String)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_AppendIntegerStringWithGroupSeparator_m761D1912DA7C38E84F3C2AC297FA7C9ABD09D403 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___groups0, String_t* ___groupSeparator1, const RuntimeMethod* method);
// System.Void System.NumberFormatter::AppendDecimalString(System.Int32)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_AppendDecimalString_mE9DC096988E86A4835B3456196883DFC51A57623 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___precision0, const RuntimeMethod* method);
// System.String System.String::CreateString(System.Char[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR String_t* String_CreateString_mC7FB167C0D5B97F7EF502AF54399C61DD5B87509 (String_t* __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___val0, int32_t ___startIndex1, int32_t ___length2, const RuntimeMethod* method);
// System.Void System.NumberFormatter::AppendDigits(System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_AppendDigits_m59DE31608D1C9D737C456B0FC4ADF8BF5D0B17E2 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___start0, int32_t ___end1, const RuntimeMethod* method);
// System.Int32 System.Globalization.NumberFormatInfo::get_NumberDecimalDigits()
extern "C" IL2CPP_METHOD_ATTR int32_t NumberFormatInfo_get_NumberDecimalDigits_m52C856E2079DAA1657069DB00506DCF77EA62DC2 (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.Void System.NumberFormatter::AppendIntegerString(System.Int32)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_AppendIntegerString_mD6FB81A7D8109CDAED213804F4D91E2FA476BD88 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___minLength0, const RuntimeMethod* method);
// System.NumberFormatter System.NumberFormatter::GetClone()
extern "C" IL2CPP_METHOD_ATTR NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * NumberFormatter_GetClone_m6D13FD559EC8229D8C0F802988E32965EF53119A (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method);
// System.Double System.Double::Parse(System.String,System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR double Double_Parse_m598B75F6A7C50F719F439CF354BDDD22B9AF8C67 (String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method);
// System.Single System.Single::Parse(System.String,System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR float Single_Parse_m341EA42F7782B136FA7335771DA3C6C96AF6BD86 (String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method);
// System.Boolean System.NumberFormatter::get_IsFloatingSource()
extern "C" IL2CPP_METHOD_ATTR bool NumberFormatter_get_IsFloatingSource_m6CFAC659F6A85391D719FE8364828EDA57232B1A (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method);
// System.Void System.NumberFormatter::RoundPos(System.Int32)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_RoundPos_mD1767AEAEE9801C748F3C7B8BE7A29598A843961 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___pos0, const RuntimeMethod* method);
// System.String System.NumberFormatter::FormatExponential(System.Int32,System.Globalization.NumberFormatInfo,System.Int32)
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatExponential_m860C5350D97E7958CA0EC214263E0BE6B34F326F (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___precision0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, int32_t ___expDigits2, const RuntimeMethod* method);
// System.Int32[] System.Globalization.NumberFormatInfo::get_NumberGroupSizes()
extern "C" IL2CPP_METHOD_ATTR Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* NumberFormatInfo_get_NumberGroupSizes_m565821165B43AA202D8F644E4403A3181188965A (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.Int32 System.Globalization.NumberFormatInfo::get_PercentDecimalDigits()
extern "C" IL2CPP_METHOD_ATTR int32_t NumberFormatInfo_get_PercentDecimalDigits_mC976C226BAA510C75E13D526FF7407B2A2E2A164 (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.Void System.NumberFormatter::Multiply10(System.Int32)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_Multiply10_mCDC2D6E96D4920F5E9DED8BA045339DC26292227 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___count0, const RuntimeMethod* method);
// System.Int32 System.Globalization.NumberFormatInfo::get_PercentPositivePattern()
extern "C" IL2CPP_METHOD_ATTR int32_t NumberFormatInfo_get_PercentPositivePattern_mD23B2B53488F48B707952CCFADD216A7E7BAA430 (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.String System.Globalization.NumberFormatInfo::get_PercentSymbol()
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_PercentSymbol_m6661F58FEE65E75453C83AD04492B1C5199B2DAB (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.Int32 System.Globalization.NumberFormatInfo::get_PercentNegativePattern()
extern "C" IL2CPP_METHOD_ATTR int32_t NumberFormatInfo_get_PercentNegativePattern_m9563E73E22236A41D695465A1B2E76F3AA7DD463 (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.Int32[] System.Globalization.NumberFormatInfo::get_PercentGroupSizes()
extern "C" IL2CPP_METHOD_ATTR Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* NumberFormatInfo_get_PercentGroupSizes_m4E8851281AB5160EC0EE06F633B08235440DF4C8 (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.String System.Globalization.NumberFormatInfo::get_PercentGroupSeparator()
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_PercentGroupSeparator_mBCCC5E617B3BEFED528AB99571AC593CEA45B4EC (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.String System.Globalization.NumberFormatInfo::get_PercentDecimalSeparator()
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_PercentDecimalSeparator_m8E0E23E04199DCA6D6E7E494D11522465180CCD2 (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
// System.Void System.NumberFormatter::AppendOneDigit(System.Int32)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_AppendOneDigit_m00E78B4DAFD47E5393BF1B3664B4453A646061A5 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___start0, const RuntimeMethod* method);
// System.Void System.NumberFormatter::AppendExponent(System.Globalization.NumberFormatInfo,System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_AppendExponent_m642543981CFC9CB61ECCE7DD35289F1711ED0F0C (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi0, int32_t ___exponent1, int32_t ___minDigits2, const RuntimeMethod* method);
// System.Boolean System.NumberFormatter::get_IsZero()
extern "C" IL2CPP_METHOD_ATTR bool NumberFormatter_get_IsZero_m8F40311773109C6A0B1F80956155E17EE982838E (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method);
// System.Void System.NumberFormatter/CustomInfo::GetActiveSection(System.String,System.Boolean&,System.Boolean,System.Int32&,System.Int32&)
extern "C" IL2CPP_METHOD_ATTR void CustomInfo_GetActiveSection_m3C48CF37C771F5434981309EEBDB47383654E25A (String_t* ___format0, bool* ___positive1, bool ___zero2, int32_t* ___offset3, int32_t* ___length4, const RuntimeMethod* method);
// System.NumberFormatter/CustomInfo System.NumberFormatter/CustomInfo::Parse(System.String,System.Int32,System.Int32,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * CustomInfo_Parse_m221FEE3DBA88FC585E7EC4F51CE590B9BE0E334A (String_t* ___format0, int32_t ___offset1, int32_t ___length2, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi3, const RuntimeMethod* method);
// System.Void System.NumberFormatter::Divide10(System.Int32)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_Divide10_m19182F6184716E02E9DBA42FCF89EFEBA7AC19B7 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___count0, const RuntimeMethod* method);
// System.Void System.NumberFormatter::AppendNonNegativeNumber(System.Text.StringBuilder,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_AppendNonNegativeNumber_m9AF8B3BAFDE9443EF437F2A4659E2759913D70E1 (StringBuilder_t * ___sb0, int32_t ___v1, const RuntimeMethod* method);
// System.Boolean System.NumberFormatter::get_IsZeroInteger()
extern "C" IL2CPP_METHOD_ATTR bool NumberFormatter_get_IsZeroInteger_m914987F51303120CDEB2339FB10E4617E9F17307 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method);
// System.Void System.NumberFormatter::AppendIntegerString(System.Int32,System.Text.StringBuilder)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_AppendIntegerString_m37A5A133D337FE0E7378D3F5C9B5C42ABC4F500C (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___minLength0, StringBuilder_t * ___sb1, const RuntimeMethod* method);
// System.Int32 System.NumberFormatter::get_DecimalDigits()
extern "C" IL2CPP_METHOD_ATTR int32_t NumberFormatter_get_DecimalDigits_m7D1E99D450C28EEB92D1C28F23393F18A2AB202E (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method);
// System.Void System.NumberFormatter::AppendDecimalString(System.Int32,System.Text.StringBuilder)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_AppendDecimalString_mE1BE0D20CD069420690F5E5C06A394C7369C90BF (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___precision0, StringBuilder_t * ___sb1, const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.StringBuilder::Insert(System.Int32,System.String,System.Int32)
extern "C" IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Insert_mC4C722CFB7E8BA17F47DF230DD69F6E0E46C7D05 (StringBuilder_t * __this, int32_t ___index0, String_t* ___value1, int32_t ___count2, const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.StringBuilder::Insert(System.Int32,System.Char)
extern "C" IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Insert_m5A00CEB69C56B823E3766C84114D8B8ACCFC67A1 (StringBuilder_t * __this, int32_t ___index0, Il2CppChar ___value1, const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.StringBuilder::Insert(System.Int32,System.String)
extern "C" IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Insert_m38829D9C9FE52ACD6541ED735D4435FB2A831A2C (StringBuilder_t * __this, int32_t ___index0, String_t* ___value1, const RuntimeMethod* method);
// System.Boolean System.NumberFormatter::IsZeroOnly(System.Text.StringBuilder)
extern "C" IL2CPP_METHOD_ATTR bool NumberFormatter_IsZeroOnly_m34EC372F18B62ED7716195F4BD28945F7B1C2716 (StringBuilder_t * ___sb0, const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.StringBuilder::Remove(System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Remove_m5DA9C1C4D056FA61B8923BE85E6BFF44B14A24F9 (StringBuilder_t * __this, int32_t ___startIndex0, int32_t ___length1, const RuntimeMethod* method);
// System.Void System.NumberFormatter::ZeroTrimEnd(System.Text.StringBuilder,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_ZeroTrimEnd_mCFA43BC122387E7BB042BCD81DE7DE4870FB5D99 (StringBuilder_t * ___sb0, bool ___canEmpty1, const RuntimeMethod* method);
// System.String System.NumberFormatter/CustomInfo::Format(System.String,System.Int32,System.Int32,System.Globalization.NumberFormatInfo,System.Boolean,System.Text.StringBuilder,System.Text.StringBuilder,System.Text.StringBuilder)
extern "C" IL2CPP_METHOD_ATTR String_t* CustomInfo_Format_m1A29FF4C0EF0861E7E2564D8548EEA6916D91252 (CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * __this, String_t* ___format0, int32_t ___offset1, int32_t ___length2, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi3, bool ___positive4, StringBuilder_t * ___sb_int5, StringBuilder_t * ___sb_dec6, StringBuilder_t * ___sb_exp7, const RuntimeMethod* method);
// System.Char System.Text.StringBuilder::get_Chars(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Il2CppChar StringBuilder_get_Chars_mC069533DCA4FB798DFA069469EBABA85DCC183C6 (StringBuilder_t * __this, int32_t ___index0, const RuntimeMethod* method);
// System.Boolean System.Char::IsDigit(System.Char)
extern "C" IL2CPP_METHOD_ATTR bool Char_IsDigit_m29508E0B60DAE54350BDC3DED0D42895DBA4087E (Il2CppChar ___c0, const RuntimeMethod* method);
// System.Void System.ArgumentException::.ctor()
extern "C" IL2CPP_METHOD_ATTR void ArgumentException__ctor_m77591C20EDA3ADEE2FAF1987321D686E249326C5 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char,System.Int32)
extern "C" IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m9702CA108F81CBF2B174826C1DFC5F7552C36C45 (StringBuilder_t * __this, Il2CppChar ___value0, int32_t ___repeatCount1, const RuntimeMethod* method);
// System.Void System.NumberFormatter::AppendDigits(System.Int32,System.Int32,System.Text.StringBuilder)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_AppendDigits_m17CDC05D8F1F8CB837429D7BBD4F24501ABF45F7 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___start0, int32_t ___end1, StringBuilder_t * ___sb2, const RuntimeMethod* method);
// System.Void System.NumberFormatter::Append(System.Char,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_Append_m2A6A1C7BE013B8DC696AD7A2D2D715B5C685E0A9 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, Il2CppChar ___c0, int32_t ___cnt1, const RuntimeMethod* method);
// System.Void System.Text.StringBuilder::set_Length(System.Int32)
extern "C" IL2CPP_METHOD_ATTR void StringBuilder_set_Length_m84AF318230AE5C3D0D48F1CE7C2170F6F5C19F5B (StringBuilder_t * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Void System.Text.StringBuilder::set_Chars(System.Int32,System.Char)
extern "C" IL2CPP_METHOD_ATTR void StringBuilder_set_Chars_m71B2B761D6D287A666302FD85E320E1E60F388EA (StringBuilder_t * __this, int32_t ___index0, Il2CppChar ___value1, const RuntimeMethod* method);
// System.Object System.Object::MemberwiseClone()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Object_MemberwiseClone_m1DAC4538CD68D4CF4DC5B04E4BBE86D470948B28 (RuntimeObject * __this, const RuntimeMethod* method);
// System.Void System.NumberFormatter/CustomInfo::.ctor()
extern "C" IL2CPP_METHOD_ATTR void CustomInfo__ctor_mCA9215FA4EE11DB2219772F9F2A54F0E262949AF (CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * __this, const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.String)
extern "C" IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260 (StringBuilder_t * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Object)
extern "C" IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_mA1A063A1388A21C8EA011DBA7FC98C24C3EE3D65 (StringBuilder_t * __this, RuntimeObject * ___value0, const RuntimeMethod* method);
// System.String System.Globalization.NumberFormatInfo::get_PerMilleSymbol()
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_PerMilleSymbol_m3876887016E8E505064301E65DC57B76040FF42E (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.IO.StreamReader_NullStreamReader::.ctor()
extern "C" IL2CPP_METHOD_ATTR void NullStreamReader__ctor_mFC80352B41353767D65E0BE0AA46A5ABDCDC2BF8 (NullStreamReader_t0417C5015CD6E626B701E9BE83FBD298CB22D5D0 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NullStreamReader__ctor_mFC80352B41353767D65E0BE0AA46A5ABDCDC2BF8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E_il2cpp_TypeInfo_var);
StreamReader__ctor_mFF4CF43617782C8B2EA8CED3C45571DD6B3AF7C6(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_il2cpp_TypeInfo_var);
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_0 = ((Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_StaticFields*)il2cpp_codegen_static_fields_for(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_il2cpp_TypeInfo_var))->get_Null_1();
StreamReader_Init_mC5734A273A032305AF7F33DDB1BC2988C44D188C(__this, L_0, /*hidden argument*/NULL);
return;
}
}
// System.IO.Stream System.IO.StreamReader_NullStreamReader::get_BaseStream()
extern "C" IL2CPP_METHOD_ATTR Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * NullStreamReader_get_BaseStream_m5EFE3833B56E4E0E587F776133554658EC9A09A3 (NullStreamReader_t0417C5015CD6E626B701E9BE83FBD298CB22D5D0 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NullStreamReader_get_BaseStream_m5EFE3833B56E4E0E587F776133554658EC9A09A3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_il2cpp_TypeInfo_var);
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_0 = ((Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_StaticFields*)il2cpp_codegen_static_fields_for(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_il2cpp_TypeInfo_var))->get_Null_1();
return L_0;
}
}
// System.Text.Encoding System.IO.StreamReader_NullStreamReader::get_CurrentEncoding()
extern "C" IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * NullStreamReader_get_CurrentEncoding_m85EB4DB084F54EE39BEA4F6FE5B51D76A468CF87 (NullStreamReader_t0417C5015CD6E626B701E9BE83FBD298CB22D5D0 * __this, const RuntimeMethod* method)
{
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = Encoding_get_Unicode_m86CC470F70F9BB52DDB26721F0C0D6EDAFC318AA(/*hidden argument*/NULL);
return L_0;
}
}
// System.Void System.IO.StreamReader_NullStreamReader::Dispose(System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void NullStreamReader_Dispose_m57C394E189DB374A85C3D1A7B0546030B784B98A (NullStreamReader_t0417C5015CD6E626B701E9BE83FBD298CB22D5D0 * __this, bool ___disposing0, const RuntimeMethod* method)
{
{
return;
}
}
// System.Int32 System.IO.StreamReader_NullStreamReader::Peek()
extern "C" IL2CPP_METHOD_ATTR int32_t NullStreamReader_Peek_m1CC2251E272E2D15B6D4D46CE4726A63A18B71E0 (NullStreamReader_t0417C5015CD6E626B701E9BE83FBD298CB22D5D0 * __this, const RuntimeMethod* method)
{
{
return (-1);
}
}
// System.Int32 System.IO.StreamReader_NullStreamReader::Read()
extern "C" IL2CPP_METHOD_ATTR int32_t NullStreamReader_Read_m435F9F5BDCFB4A3F45C347146E0AC9FF47DDE76F (NullStreamReader_t0417C5015CD6E626B701E9BE83FBD298CB22D5D0 * __this, const RuntimeMethod* method)
{
{
return (-1);
}
}
// System.Int32 System.IO.StreamReader_NullStreamReader::Read(System.Char[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t NullStreamReader_Read_m4A2BCE08C3531149D40224D119D6CBE2E44010A8 (NullStreamReader_t0417C5015CD6E626B701E9BE83FBD298CB22D5D0 * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
{
return 0;
}
}
// System.String System.IO.StreamReader_NullStreamReader::ReadLine()
extern "C" IL2CPP_METHOD_ATTR String_t* NullStreamReader_ReadLine_m4445419B42D1387CDAD078AB50F062E580DCC39E (NullStreamReader_t0417C5015CD6E626B701E9BE83FBD298CB22D5D0 * __this, const RuntimeMethod* method)
{
{
return (String_t*)NULL;
}
}
// System.String System.IO.StreamReader_NullStreamReader::ReadToEnd()
extern "C" IL2CPP_METHOD_ATTR String_t* NullStreamReader_ReadToEnd_mEEED7270C45A89D861A6816C2F0DD27CB7D2B8B8 (NullStreamReader_t0417C5015CD6E626B701E9BE83FBD298CB22D5D0 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NullStreamReader_ReadToEnd_mEEED7270C45A89D861A6816C2F0DD27CB7D2B8B8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
return L_0;
}
}
// System.Int32 System.IO.StreamReader_NullStreamReader::ReadBuffer()
extern "C" IL2CPP_METHOD_ATTR int32_t NullStreamReader_ReadBuffer_m4AFCF855C7F92BFBCB96DA3003C32C26D258067C (NullStreamReader_t0417C5015CD6E626B701E9BE83FBD298CB22D5D0 * __this, const RuntimeMethod* method)
{
{
return 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 System.IO.StreamWriter::CheckAsyncTaskInProgress()
extern "C" IL2CPP_METHOD_ATTR void StreamWriter_CheckAsyncTaskInProgress_mC3770987306B0EF9B870E1DB1D04723C1ACBA10E (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StreamWriter_CheckAsyncTaskInProgress_mC3770987306B0EF9B870E1DB1D04723C1ACBA10E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * V_0 = NULL;
{
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_0 = __this->get__asyncWriteTask_22();
il2cpp_codegen_memory_barrier();
V_0 = L_0;
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_1 = V_0;
if (!L_1)
{
goto IL_0024;
}
}
{
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_2 = V_0;
NullCheck(L_2);
bool L_3 = Task_get_IsCompleted_mA675F47CE1DBD1948BDC9215DCAE93F07FC32E19(L_2, /*hidden argument*/NULL);
if (L_3)
{
goto IL_0024;
}
}
{
String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralBD8E5715A35A52835F116AEA5F84A3B21F98BBC7, /*hidden argument*/NULL);
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_5 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_5, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, StreamWriter_CheckAsyncTaskInProgress_mC3770987306B0EF9B870E1DB1D04723C1ACBA10E_RuntimeMethod_var);
}
IL_0024:
{
return;
}
}
// System.Text.Encoding System.IO.StreamWriter::get_UTF8NoBOM()
extern "C" IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * StreamWriter_get_UTF8NoBOM_mF9D881F064CFC1B6E16547F3E6830FD5E87A4CA8 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StreamWriter_get_UTF8NoBOM_mF9D881F064CFC1B6E16547F3E6830FD5E87A4CA8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_il2cpp_TypeInfo_var);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = ((StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_StaticFields*)il2cpp_codegen_static_fields_for(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_il2cpp_TypeInfo_var))->get__UTF8NoBOM_23();
il2cpp_codegen_memory_barrier();
if (L_0)
{
goto IL_001c;
}
}
{
UTF8Encoding_t77ED103B749A387EF072C3429F48C91D12CA08DE * L_1 = (UTF8Encoding_t77ED103B749A387EF072C3429F48C91D12CA08DE *)il2cpp_codegen_object_new(UTF8Encoding_t77ED103B749A387EF072C3429F48C91D12CA08DE_il2cpp_TypeInfo_var);
UTF8Encoding__ctor_m026030C6C39449C25EC6FA364AA0A49FB3ADCD9E(L_1, (bool)0, (bool)1, /*hidden argument*/NULL);
Thread_MemoryBarrier_mAB9F6B8404ACCE0D17BEDBD656782FEDDBC9FB8A(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_il2cpp_TypeInfo_var);
il2cpp_codegen_memory_barrier();
((StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_StaticFields*)il2cpp_codegen_static_fields_for(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_il2cpp_TypeInfo_var))->set__UTF8NoBOM_23(L_1);
}
IL_001c:
{
IL2CPP_RUNTIME_CLASS_INIT(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_il2cpp_TypeInfo_var);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_2 = ((StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_StaticFields*)il2cpp_codegen_static_fields_for(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_il2cpp_TypeInfo_var))->get__UTF8NoBOM_23();
il2cpp_codegen_memory_barrier();
return L_2;
}
}
// System.Void System.IO.StreamWriter::.ctor()
extern "C" IL2CPP_METHOD_ATTR void StreamWriter__ctor_m1795A943BBA92A3335FDC2112A2082ADD47DF9C4 (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StreamWriter__ctor_m1795A943BBA92A3335FDC2112A2082ADD47DF9C4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_il2cpp_TypeInfo_var);
TextWriter__ctor_mB84CC0FA15C2F1759F4FFAB205C3E311EFAF3715(__this, (RuntimeObject*)NULL, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.StreamWriter::.ctor(System.IO.Stream)
extern "C" IL2CPP_METHOD_ATTR void StreamWriter__ctor_mB84BC6A7038D0550163682CD317A76740620E039 (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StreamWriter__ctor_mB84BC6A7038D0550163682CD317A76740620E039_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_0 = ___stream0;
IL2CPP_RUNTIME_CLASS_INIT(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_il2cpp_TypeInfo_var);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_1 = StreamWriter_get_UTF8NoBOM_mF9D881F064CFC1B6E16547F3E6830FD5E87A4CA8(/*hidden argument*/NULL);
StreamWriter__ctor_mBDBE79E3F9A95CB601CEEE2D5464EA3DB663A779(__this, L_0, L_1, ((int32_t)1024), (bool)0, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.StreamWriter::.ctor(System.IO.Stream,System.Text.Encoding)
extern "C" IL2CPP_METHOD_ATTR void StreamWriter__ctor_mFD481E7A16D86AF74F41C928C7828B19EFEF9F5C (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding1, const RuntimeMethod* method)
{
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_0 = ___stream0;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_1 = ___encoding1;
StreamWriter__ctor_mBDBE79E3F9A95CB601CEEE2D5464EA3DB663A779(__this, L_0, L_1, ((int32_t)1024), (bool)0, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.StreamWriter::.ctor(System.IO.Stream,System.Text.Encoding,System.Int32,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void StreamWriter__ctor_mBDBE79E3F9A95CB601CEEE2D5464EA3DB663A779 (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding1, int32_t ___bufferSize2, bool ___leaveOpen3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StreamWriter__ctor_mBDBE79E3F9A95CB601CEEE2D5464EA3DB663A779_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B5_0 = NULL;
{
IL2CPP_RUNTIME_CLASS_INIT(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_il2cpp_TypeInfo_var);
TextWriter__ctor_mB84CC0FA15C2F1759F4FFAB205C3E311EFAF3715(__this, (RuntimeObject*)NULL, /*hidden argument*/NULL);
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_0 = ___stream0;
if (!L_0)
{
goto IL_000d;
}
}
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_1 = ___encoding1;
if (L_1)
{
goto IL_0022;
}
}
IL_000d:
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_2 = ___stream0;
if (!L_2)
{
goto IL_0017;
}
}
{
G_B5_0 = _stringLiteral14A9DC09E10179B15BEAF94C0AED53904ACE0336;
goto IL_001c;
}
IL_0017:
{
G_B5_0 = _stringLiteralC82E3D7279EFA3ECA576370AF952C815D48CE41F;
}
IL_001c:
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_3 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_3, G_B5_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, StreamWriter__ctor_mBDBE79E3F9A95CB601CEEE2D5464EA3DB663A779_RuntimeMethod_var);
}
IL_0022:
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_4 = ___stream0;
NullCheck(L_4);
bool L_5 = VirtFuncInvoker0< bool >::Invoke(9 /* System.Boolean System.IO.Stream::get_CanWrite() */, L_4);
if (L_5)
{
goto IL_003a;
}
}
{
String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral43E4B01DA5BC310916BDCD59560588C54E5A08C9, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_7, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, StreamWriter__ctor_mBDBE79E3F9A95CB601CEEE2D5464EA3DB663A779_RuntimeMethod_var);
}
IL_003a:
{
int32_t L_8 = ___bufferSize2;
if ((((int32_t)L_8) > ((int32_t)0)))
{
goto IL_0053;
}
}
{
String_t* L_9 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD5DF16A053AC14B040C62E79CA35CBD99E8BA7C8, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, _stringLiteralF75E94DCC92ECC309EF861E9A10FFFB6B1A383AF, L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, StreamWriter__ctor_mBDBE79E3F9A95CB601CEEE2D5464EA3DB663A779_RuntimeMethod_var);
}
IL_0053:
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_11 = ___stream0;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_12 = ___encoding1;
int32_t L_13 = ___bufferSize2;
bool L_14 = ___leaveOpen3;
StreamWriter_Init_m1AC24C15954A849C621FBEAFF94737EB12058FF5(__this, L_11, L_12, L_13, L_14, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.StreamWriter::.ctor(System.String,System.Boolean,System.Text.Encoding)
extern "C" IL2CPP_METHOD_ATTR void StreamWriter__ctor_m1D1CC9AC344BA16DBFD6A99AAADF2E383B4E888C (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, String_t* ___path0, bool ___append1, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding2, const RuntimeMethod* method)
{
{
String_t* L_0 = ___path0;
bool L_1 = ___append1;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_2 = ___encoding2;
StreamWriter__ctor_m15EC5B8866FB9D0124CBE8E2C56AF4E5448E7FFD(__this, L_0, L_1, L_2, ((int32_t)1024), /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.StreamWriter::.ctor(System.String,System.Boolean,System.Text.Encoding,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void StreamWriter__ctor_m15EC5B8866FB9D0124CBE8E2C56AF4E5448E7FFD (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, String_t* ___path0, bool ___append1, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding2, int32_t ___bufferSize3, const RuntimeMethod* method)
{
{
String_t* L_0 = ___path0;
bool L_1 = ___append1;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_2 = ___encoding2;
int32_t L_3 = ___bufferSize3;
StreamWriter__ctor_m96BF593FFB42FB4DE81E4F37D4CF8F52DE34CC85(__this, L_0, L_1, L_2, L_3, (bool)1, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.StreamWriter::.ctor(System.String,System.Boolean,System.Text.Encoding,System.Int32,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void StreamWriter__ctor_m96BF593FFB42FB4DE81E4F37D4CF8F52DE34CC85 (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, String_t* ___path0, bool ___append1, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding2, int32_t ___bufferSize3, bool ___checkHost4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StreamWriter__ctor_m96BF593FFB42FB4DE81E4F37D4CF8F52DE34CC85_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * V_0 = NULL;
{
IL2CPP_RUNTIME_CLASS_INIT(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_il2cpp_TypeInfo_var);
TextWriter__ctor_mB84CC0FA15C2F1759F4FFAB205C3E311EFAF3715(__this, (RuntimeObject*)NULL, /*hidden argument*/NULL);
String_t* L_0 = ___path0;
if (L_0)
{
goto IL_0015;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral3150ECD5E0294534A81AE047DDAC559DE481D774, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, StreamWriter__ctor_m96BF593FFB42FB4DE81E4F37D4CF8F52DE34CC85_RuntimeMethod_var);
}
IL_0015:
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_2 = ___encoding2;
if (L_2)
{
goto IL_0023;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_3 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_3, _stringLiteral14A9DC09E10179B15BEAF94C0AED53904ACE0336, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, StreamWriter__ctor_m96BF593FFB42FB4DE81E4F37D4CF8F52DE34CC85_RuntimeMethod_var);
}
IL_0023:
{
String_t* L_4 = ___path0;
NullCheck(L_4);
int32_t L_5 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_003b;
}
}
{
String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral5F547FBCFA545D5B8CD060929EB2311739FF8BFD, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_7, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, StreamWriter__ctor_m96BF593FFB42FB4DE81E4F37D4CF8F52DE34CC85_RuntimeMethod_var);
}
IL_003b:
{
int32_t L_8 = ___bufferSize3;
if ((((int32_t)L_8) > ((int32_t)0)))
{
goto IL_0055;
}
}
{
String_t* L_9 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD5DF16A053AC14B040C62E79CA35CBD99E8BA7C8, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, _stringLiteralF75E94DCC92ECC309EF861E9A10FFFB6B1A383AF, L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, StreamWriter__ctor_m96BF593FFB42FB4DE81E4F37D4CF8F52DE34CC85_RuntimeMethod_var);
}
IL_0055:
{
String_t* L_11 = ___path0;
bool L_12 = ___append1;
bool L_13 = ___checkHost4;
IL2CPP_RUNTIME_CLASS_INIT(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_il2cpp_TypeInfo_var);
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_14 = StreamWriter_CreateFile_m6900D5037BD4731DA905CA306E35DFFF26AFD3A6(L_11, L_12, L_13, /*hidden argument*/NULL);
V_0 = L_14;
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_15 = V_0;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_16 = ___encoding2;
int32_t L_17 = ___bufferSize3;
StreamWriter_Init_m1AC24C15954A849C621FBEAFF94737EB12058FF5(__this, L_15, L_16, L_17, (bool)0, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.StreamWriter::Init(System.IO.Stream,System.Text.Encoding,System.Int32,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void StreamWriter_Init_m1AC24C15954A849C621FBEAFF94737EB12058FF5 (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___streamArg0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encodingArg1, int32_t ___bufferSize2, bool ___shouldLeaveOpen3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StreamWriter_Init_m1AC24C15954A849C621FBEAFF94737EB12058FF5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_0 = ___streamArg0;
__this->set_stream_12(L_0);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_1 = ___encodingArg1;
__this->set_encoding_13(L_1);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_2 = __this->get_encoding_13();
NullCheck(L_2);
Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 * L_3 = VirtFuncInvoker0< Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 * >::Invoke(28 /* System.Text.Encoder System.Text.Encoding::GetEncoder() */, L_2);
__this->set_encoder_14(L_3);
int32_t L_4 = ___bufferSize2;
if ((((int32_t)L_4) >= ((int32_t)((int32_t)128))))
{
goto IL_002e;
}
}
{
___bufferSize2 = ((int32_t)128);
}
IL_002e:
{
int32_t L_5 = ___bufferSize2;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_6 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)L_5);
__this->set_charBuffer_16(L_6);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_7 = __this->get_encoding_13();
int32_t L_8 = ___bufferSize2;
NullCheck(L_7);
int32_t L_9 = VirtFuncInvoker1< int32_t, int32_t >::Invoke(29 /* System.Int32 System.Text.Encoding::GetMaxByteCount(System.Int32) */, L_7, L_8);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)L_9);
__this->set_byteBuffer_15(L_10);
int32_t L_11 = ___bufferSize2;
__this->set_charLen_18(L_11);
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_12 = __this->get_stream_12();
NullCheck(L_12);
bool L_13 = VirtFuncInvoker0< bool >::Invoke(8 /* System.Boolean System.IO.Stream::get_CanSeek() */, L_12);
if (!L_13)
{
goto IL_007b;
}
}
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_14 = __this->get_stream_12();
NullCheck(L_14);
int64_t L_15 = VirtFuncInvoker0< int64_t >::Invoke(11 /* System.Int64 System.IO.Stream::get_Position() */, L_14);
if ((((int64_t)L_15) <= ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_007b;
}
}
{
__this->set_haveWrittenPreamble_20((bool)1);
}
IL_007b:
{
bool L_16 = ___shouldLeaveOpen3;
__this->set_closable_21((bool)((((int32_t)L_16) == ((int32_t)0))? 1 : 0));
return;
}
}
// System.IO.Stream System.IO.StreamWriter::CreateFile(System.String,System.Boolean,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * StreamWriter_CreateFile_m6900D5037BD4731DA905CA306E35DFFF26AFD3A6 (String_t* ___path0, bool ___append1, bool ___checkHost2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StreamWriter_CreateFile_m6900D5037BD4731DA905CA306E35DFFF26AFD3A6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t G_B3_0 = 0;
{
bool L_0 = ___append1;
if (L_0)
{
goto IL_0006;
}
}
{
G_B3_0 = 2;
goto IL_0007;
}
IL_0006:
{
G_B3_0 = 6;
}
IL_0007:
{
V_0 = G_B3_0;
String_t* L_1 = ___path0;
int32_t L_2 = V_0;
String_t* L_3 = ___path0;
IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var);
String_t* L_4 = Path_GetFileName_m2307E8E0B250632002840D9EC27DBABE9C4EB85E(L_3, /*hidden argument*/NULL);
bool L_5 = ___checkHost2;
FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418 * L_6 = (FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418 *)il2cpp_codegen_object_new(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418_il2cpp_TypeInfo_var);
FileStream__ctor_m4818E4AD857A0B285557E2B41E582D2237F49209(L_6, L_1, L_2, 2, 1, ((int32_t)4096), ((int32_t)134217728), L_4, (bool)0, (bool)0, L_5, /*hidden argument*/NULL);
return L_6;
}
}
// System.Void System.IO.StreamWriter::Close()
extern "C" IL2CPP_METHOD_ATTR void StreamWriter_Close_mAE61E73AE3168E9DA2DAAFFC301F912DEC52AA31 (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StreamWriter_Close_mAE61E73AE3168E9DA2DAAFFC301F912DEC52AA31_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
VirtActionInvoker1< bool >::Invoke(9 /* System.Void System.IO.TextWriter::Dispose(System.Boolean) */, __this, (bool)1);
IL2CPP_RUNTIME_CLASS_INIT(GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var);
GC_SuppressFinalize_m037319A9B95A5BA437E806DE592802225EE5B425(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.StreamWriter::Dispose(System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void StreamWriter_Dispose_m76151F3AC1AE52E8B720FF5193398FA9E627F025 (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, bool ___disposing0, const RuntimeMethod* method)
{
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
IL_0000:
try
{ // begin try (depth: 1)
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_0 = __this->get_stream_12();
if (!L_0)
{
goto IL_002a;
}
}
IL_0008:
{
bool L_1 = ___disposing0;
if (L_1)
{
goto IL_001c;
}
}
IL_000b:
{
bool L_2 = StreamWriter_get_LeaveOpen_m32817B282FC0F87282FF1298322CD3826E0B2527(__this, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_002a;
}
}
IL_0013:
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_3 = __this->get_stream_12();
goto IL_002a;
}
IL_001c:
{
StreamWriter_CheckAsyncTaskInProgress_mC3770987306B0EF9B870E1DB1D04723C1ACBA10E(__this, /*hidden argument*/NULL);
StreamWriter_Flush_m7C6A130948CE24E30E49CF155F5C8195DD2E4A1C(__this, (bool)1, (bool)1, /*hidden argument*/NULL);
}
IL_002a:
{
IL2CPP_LEAVE(0x7F, FINALLY_002c);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_002c;
}
FINALLY_002c:
{ // begin finally (depth: 1)
{
bool L_4 = StreamWriter_get_LeaveOpen_m32817B282FC0F87282FF1298322CD3826E0B2527(__this, /*hidden argument*/NULL);
if (L_4)
{
goto IL_007e;
}
}
IL_0034:
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_5 = __this->get_stream_12();
if (!L_5)
{
goto IL_007e;
}
}
IL_003c:
try
{ // begin try (depth: 2)
{
bool L_6 = ___disposing0;
if (!L_6)
{
goto IL_004a;
}
}
IL_003f:
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_7 = __this->get_stream_12();
NullCheck(L_7);
VirtActionInvoker0::Invoke(13 /* System.Void System.IO.Stream::Close() */, L_7);
}
IL_004a:
{
IL2CPP_LEAVE(0x7E, FINALLY_004c);
}
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_004c;
}
FINALLY_004c:
{ // begin finally (depth: 2)
__this->set_stream_12((Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 *)NULL);
__this->set_byteBuffer_15((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL);
__this->set_charBuffer_16((CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)NULL);
__this->set_encoding_13((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 *)NULL);
__this->set_encoder_14((Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 *)NULL);
__this->set_charLen_18(0);
bool L_8 = ___disposing0;
TextWriter_Dispose_m53C25DF618C5F0D730B0E3EB96D056C301B66DFD(__this, L_8, /*hidden argument*/NULL);
IL2CPP_RESET_LEAVE(0x7E);
IL2CPP_END_FINALLY(76)
} // end finally (depth: 2)
IL2CPP_CLEANUP(76)
{
IL2CPP_JUMP_TBL(0x7E, IL_007e)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_007e:
{
IL2CPP_RESET_LEAVE(0x7F);
IL2CPP_END_FINALLY(44)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(44)
{
IL2CPP_JUMP_TBL(0x7F, IL_007f)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_007f:
{
return;
}
}
// System.Void System.IO.StreamWriter::Flush()
extern "C" IL2CPP_METHOD_ATTR void StreamWriter_Flush_m326E76BE755A73CCBCD715166925FC9C5ADF8FB5 (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, const RuntimeMethod* method)
{
{
StreamWriter_CheckAsyncTaskInProgress_mC3770987306B0EF9B870E1DB1D04723C1ACBA10E(__this, /*hidden argument*/NULL);
StreamWriter_Flush_m7C6A130948CE24E30E49CF155F5C8195DD2E4A1C(__this, (bool)1, (bool)1, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.StreamWriter::Flush(System.Boolean,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void StreamWriter_Flush_m7C6A130948CE24E30E49CF155F5C8195DD2E4A1C (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, bool ___flushStream0, bool ___flushEncoder1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StreamWriter_Flush_m7C6A130948CE24E30E49CF155F5C8195DD2E4A1C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL;
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_0 = __this->get_stream_12();
if (L_0)
{
goto IL_000d;
}
}
{
__Error_WriterClosed_m0CC83C102ABE14A259F83C3943DC72B372D1CC2F(/*hidden argument*/NULL);
}
IL_000d:
{
int32_t L_1 = __this->get_charPos_17();
if (L_1)
{
goto IL_0023;
}
}
{
bool L_2 = ___flushStream0;
if (L_2)
{
goto IL_001b;
}
}
{
bool L_3 = ___flushEncoder1;
if (!L_3)
{
goto IL_0022;
}
}
IL_001b:
{
IL2CPP_RUNTIME_CLASS_INIT(CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_il2cpp_TypeInfo_var);
bool L_4 = ((CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_StaticFields*)il2cpp_codegen_static_fields_for(CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_il2cpp_TypeInfo_var))->get_IsAppEarlierThanWindowsPhone8_1();
if (!L_4)
{
goto IL_0023;
}
}
IL_0022:
{
return;
}
IL_0023:
{
bool L_5 = __this->get_haveWrittenPreamble_20();
if (L_5)
{
goto IL_0052;
}
}
{
__this->set_haveWrittenPreamble_20((bool)1);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_6 = __this->get_encoding_13();
NullCheck(L_6);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(6 /* System.Byte[] System.Text.Encoding::GetPreamble() */, L_6);
V_1 = L_7;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = V_1;
NullCheck(L_8);
if (!(((RuntimeArray *)L_8)->max_length))
{
goto IL_0052;
}
}
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_9 = __this->get_stream_12();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = V_1;
NullCheck(L_11);
NullCheck(L_9);
VirtActionInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(25 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_9, L_10, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_11)->max_length)))));
}
IL_0052:
{
Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 * L_12 = __this->get_encoder_14();
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_13 = __this->get_charBuffer_16();
int32_t L_14 = __this->get_charPos_17();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_15 = __this->get_byteBuffer_15();
bool L_16 = ___flushEncoder1;
NullCheck(L_12);
int32_t L_17 = VirtFuncInvoker6< int32_t, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t, int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, bool >::Invoke(7 /* System.Int32 System.Text.Encoder::GetBytes(System.Char[],System.Int32,System.Int32,System.Byte[],System.Int32,System.Boolean) */, L_12, L_13, 0, L_14, L_15, 0, L_16);
V_0 = L_17;
__this->set_charPos_17(0);
int32_t L_18 = V_0;
if ((((int32_t)L_18) <= ((int32_t)0)))
{
goto IL_0091;
}
}
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_19 = __this->get_stream_12();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_20 = __this->get_byteBuffer_15();
int32_t L_21 = V_0;
NullCheck(L_19);
VirtActionInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(25 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_19, L_20, 0, L_21);
}
IL_0091:
{
bool L_22 = ___flushStream0;
if (!L_22)
{
goto IL_009f;
}
}
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_23 = __this->get_stream_12();
NullCheck(L_23);
VirtActionInvoker0::Invoke(15 /* System.Void System.IO.Stream::Flush() */, L_23);
}
IL_009f:
{
return;
}
}
// System.Void System.IO.StreamWriter::set_AutoFlush(System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void StreamWriter_set_AutoFlush_mEFB9D46E4D861F65CB93F310B7BBA8AF0E10C1B6 (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, bool ___value0, const RuntimeMethod* method)
{
{
StreamWriter_CheckAsyncTaskInProgress_mC3770987306B0EF9B870E1DB1D04723C1ACBA10E(__this, /*hidden argument*/NULL);
bool L_0 = ___value0;
__this->set_autoFlush_19(L_0);
bool L_1 = ___value0;
if (!L_1)
{
goto IL_0018;
}
}
{
StreamWriter_Flush_m7C6A130948CE24E30E49CF155F5C8195DD2E4A1C(__this, (bool)1, (bool)0, /*hidden argument*/NULL);
}
IL_0018:
{
return;
}
}
// System.Boolean System.IO.StreamWriter::get_LeaveOpen()
extern "C" IL2CPP_METHOD_ATTR bool StreamWriter_get_LeaveOpen_m32817B282FC0F87282FF1298322CD3826E0B2527 (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_closable_21();
return (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
}
}
// System.Void System.IO.StreamWriter::Write(System.Char)
extern "C" IL2CPP_METHOD_ATTR void StreamWriter_Write_mF8B514CF8D521D390B0F1F9950851B358560F623 (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, Il2CppChar ___value0, const RuntimeMethod* method)
{
{
StreamWriter_CheckAsyncTaskInProgress_mC3770987306B0EF9B870E1DB1D04723C1ACBA10E(__this, /*hidden argument*/NULL);
int32_t L_0 = __this->get_charPos_17();
int32_t L_1 = __this->get_charLen_18();
if ((!(((uint32_t)L_0) == ((uint32_t)L_1))))
{
goto IL_001c;
}
}
{
StreamWriter_Flush_m7C6A130948CE24E30E49CF155F5C8195DD2E4A1C(__this, (bool)0, (bool)0, /*hidden argument*/NULL);
}
IL_001c:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_2 = __this->get_charBuffer_16();
int32_t L_3 = __this->get_charPos_17();
Il2CppChar L_4 = ___value0;
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (Il2CppChar)L_4);
int32_t L_5 = __this->get_charPos_17();
__this->set_charPos_17(((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)));
bool L_6 = __this->get_autoFlush_19();
if (!L_6)
{
goto IL_0048;
}
}
{
StreamWriter_Flush_m7C6A130948CE24E30E49CF155F5C8195DD2E4A1C(__this, (bool)1, (bool)0, /*hidden argument*/NULL);
}
IL_0048:
{
return;
}
}
// System.Void System.IO.StreamWriter::Write(System.Char[])
extern "C" IL2CPP_METHOD_ATTR void StreamWriter_Write_m71F168D89F89E740DF5E16D48C58624712CA808A (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___buffer0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = ___buffer0;
if (L_0)
{
goto IL_0004;
}
}
{
return;
}
IL_0004:
{
StreamWriter_CheckAsyncTaskInProgress_mC3770987306B0EF9B870E1DB1D04723C1ACBA10E(__this, /*hidden argument*/NULL);
V_0 = 0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = ___buffer0;
NullCheck(L_1);
V_1 = (((int32_t)((int32_t)(((RuntimeArray *)L_1)->max_length))));
goto IL_006d;
}
IL_0012:
{
int32_t L_2 = __this->get_charPos_17();
int32_t L_3 = __this->get_charLen_18();
if ((!(((uint32_t)L_2) == ((uint32_t)L_3))))
{
goto IL_0028;
}
}
{
StreamWriter_Flush_m7C6A130948CE24E30E49CF155F5C8195DD2E4A1C(__this, (bool)0, (bool)0, /*hidden argument*/NULL);
}
IL_0028:
{
int32_t L_4 = __this->get_charLen_18();
int32_t L_5 = __this->get_charPos_17();
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)L_5));
int32_t L_6 = V_2;
int32_t L_7 = V_1;
if ((((int32_t)L_6) <= ((int32_t)L_7)))
{
goto IL_003c;
}
}
{
int32_t L_8 = V_1;
V_2 = L_8;
}
IL_003c:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_9 = ___buffer0;
int32_t L_10 = V_0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_11 = __this->get_charBuffer_16();
int32_t L_12 = __this->get_charPos_17();
int32_t L_13 = V_2;
Buffer_InternalBlockCopy_m80AEF70443EFBB84D8CCC36D477B8E17A8814FC2((RuntimeArray *)(RuntimeArray *)L_9, ((int32_t)il2cpp_codegen_multiply((int32_t)L_10, (int32_t)2)), (RuntimeArray *)(RuntimeArray *)L_11, ((int32_t)il2cpp_codegen_multiply((int32_t)L_12, (int32_t)2)), ((int32_t)il2cpp_codegen_multiply((int32_t)L_13, (int32_t)2)), /*hidden argument*/NULL);
int32_t L_14 = __this->get_charPos_17();
int32_t L_15 = V_2;
__this->set_charPos_17(((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)));
int32_t L_16 = V_0;
int32_t L_17 = V_2;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)L_17));
int32_t L_18 = V_1;
int32_t L_19 = V_2;
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)L_19));
}
IL_006d:
{
int32_t L_20 = V_1;
if ((((int32_t)L_20) > ((int32_t)0)))
{
goto IL_0012;
}
}
{
bool L_21 = __this->get_autoFlush_19();
if (!L_21)
{
goto IL_0081;
}
}
{
StreamWriter_Flush_m7C6A130948CE24E30E49CF155F5C8195DD2E4A1C(__this, (bool)1, (bool)0, /*hidden argument*/NULL);
}
IL_0081:
{
return;
}
}
// System.Void System.IO.StreamWriter::Write(System.Char[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void StreamWriter_Write_m8056BDE8A4AD4816F9D7DBDBCB80D03BE8F3ED14 (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StreamWriter_Write_m8056BDE8A4AD4816F9D7DBDBCB80D03BE8F3ED14_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = ___buffer0;
if (L_0)
{
goto IL_0018;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB80ADA17FA6976840EA2EE6BFF02BC04F45EEBA7, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteralE53C2EA1FE4BD2B78BF4723C7C155A578E020A25, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, StreamWriter_Write_m8056BDE8A4AD4816F9D7DBDBCB80D03BE8F3ED14_RuntimeMethod_var);
}
IL_0018:
{
int32_t L_3 = ___index1;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
{
String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, StreamWriter_Write_m8056BDE8A4AD4816F9D7DBDBCB80D03BE8F3ED14_RuntimeMethod_var);
}
IL_0031:
{
int32_t L_6 = ___count2;
if ((((int32_t)L_6) >= ((int32_t)0)))
{
goto IL_004a;
}
}
{
String_t* L_7 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_8, _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, StreamWriter_Write_m8056BDE8A4AD4816F9D7DBDBCB80D03BE8F3ED14_RuntimeMethod_var);
}
IL_004a:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_9 = ___buffer0;
NullCheck(L_9);
int32_t L_10 = ___index1;
int32_t L_11 = ___count2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_11)))
{
goto IL_0062;
}
}
{
String_t* L_12 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_13 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_13, L_12, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, NULL, StreamWriter_Write_m8056BDE8A4AD4816F9D7DBDBCB80D03BE8F3ED14_RuntimeMethod_var);
}
IL_0062:
{
StreamWriter_CheckAsyncTaskInProgress_mC3770987306B0EF9B870E1DB1D04723C1ACBA10E(__this, /*hidden argument*/NULL);
goto IL_00c7;
}
IL_006a:
{
int32_t L_14 = __this->get_charPos_17();
int32_t L_15 = __this->get_charLen_18();
if ((!(((uint32_t)L_14) == ((uint32_t)L_15))))
{
goto IL_0080;
}
}
{
StreamWriter_Flush_m7C6A130948CE24E30E49CF155F5C8195DD2E4A1C(__this, (bool)0, (bool)0, /*hidden argument*/NULL);
}
IL_0080:
{
int32_t L_16 = __this->get_charLen_18();
int32_t L_17 = __this->get_charPos_17();
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)L_17));
int32_t L_18 = V_0;
int32_t L_19 = ___count2;
if ((((int32_t)L_18) <= ((int32_t)L_19)))
{
goto IL_0094;
}
}
{
int32_t L_20 = ___count2;
V_0 = L_20;
}
IL_0094:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_21 = ___buffer0;
int32_t L_22 = ___index1;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_23 = __this->get_charBuffer_16();
int32_t L_24 = __this->get_charPos_17();
int32_t L_25 = V_0;
Buffer_InternalBlockCopy_m80AEF70443EFBB84D8CCC36D477B8E17A8814FC2((RuntimeArray *)(RuntimeArray *)L_21, ((int32_t)il2cpp_codegen_multiply((int32_t)L_22, (int32_t)2)), (RuntimeArray *)(RuntimeArray *)L_23, ((int32_t)il2cpp_codegen_multiply((int32_t)L_24, (int32_t)2)), ((int32_t)il2cpp_codegen_multiply((int32_t)L_25, (int32_t)2)), /*hidden argument*/NULL);
int32_t L_26 = __this->get_charPos_17();
int32_t L_27 = V_0;
__this->set_charPos_17(((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)L_27)));
int32_t L_28 = ___index1;
int32_t L_29 = V_0;
___index1 = ((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)L_29));
int32_t L_30 = ___count2;
int32_t L_31 = V_0;
___count2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_30, (int32_t)L_31));
}
IL_00c7:
{
int32_t L_32 = ___count2;
if ((((int32_t)L_32) > ((int32_t)0)))
{
goto IL_006a;
}
}
{
bool L_33 = __this->get_autoFlush_19();
if (!L_33)
{
goto IL_00db;
}
}
{
StreamWriter_Flush_m7C6A130948CE24E30E49CF155F5C8195DD2E4A1C(__this, (bool)1, (bool)0, /*hidden argument*/NULL);
}
IL_00db:
{
return;
}
}
// System.Void System.IO.StreamWriter::Write(System.String)
extern "C" IL2CPP_METHOD_ATTR void StreamWriter_Write_mDBCA4E464A543DFD00B0619943BA0C7F15DB55FE (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * __this, String_t* ___value0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
String_t* L_0 = ___value0;
if (!L_0)
{
goto IL_007c;
}
}
{
StreamWriter_CheckAsyncTaskInProgress_mC3770987306B0EF9B870E1DB1D04723C1ACBA10E(__this, /*hidden argument*/NULL);
String_t* L_1 = ___value0;
NullCheck(L_1);
int32_t L_2 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_1, /*hidden argument*/NULL);
V_0 = L_2;
V_1 = 0;
goto IL_0068;
}
IL_0014:
{
int32_t L_3 = __this->get_charPos_17();
int32_t L_4 = __this->get_charLen_18();
if ((!(((uint32_t)L_3) == ((uint32_t)L_4))))
{
goto IL_002a;
}
}
{
StreamWriter_Flush_m7C6A130948CE24E30E49CF155F5C8195DD2E4A1C(__this, (bool)0, (bool)0, /*hidden argument*/NULL);
}
IL_002a:
{
int32_t L_5 = __this->get_charLen_18();
int32_t L_6 = __this->get_charPos_17();
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)L_6));
int32_t L_7 = V_2;
int32_t L_8 = V_0;
if ((((int32_t)L_7) <= ((int32_t)L_8)))
{
goto IL_003e;
}
}
{
int32_t L_9 = V_0;
V_2 = L_9;
}
IL_003e:
{
String_t* L_10 = ___value0;
int32_t L_11 = V_1;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_12 = __this->get_charBuffer_16();
int32_t L_13 = __this->get_charPos_17();
int32_t L_14 = V_2;
NullCheck(L_10);
String_CopyTo_m054B8FF2ACBBA74F60199D98259E88395EAD3661(L_10, L_11, L_12, L_13, L_14, /*hidden argument*/NULL);
int32_t L_15 = __this->get_charPos_17();
int32_t L_16 = V_2;
__this->set_charPos_17(((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)L_16)));
int32_t L_17 = V_1;
int32_t L_18 = V_2;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)L_18));
int32_t L_19 = V_0;
int32_t L_20 = V_2;
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)L_20));
}
IL_0068:
{
int32_t L_21 = V_0;
if ((((int32_t)L_21) > ((int32_t)0)))
{
goto IL_0014;
}
}
{
bool L_22 = __this->get_autoFlush_19();
if (!L_22)
{
goto IL_007c;
}
}
{
StreamWriter_Flush_m7C6A130948CE24E30E49CF155F5C8195DD2E4A1C(__this, (bool)1, (bool)0, /*hidden argument*/NULL);
}
IL_007c:
{
return;
}
}
// System.Void System.IO.StreamWriter::.cctor()
extern "C" IL2CPP_METHOD_ATTR void StreamWriter__cctor_m201F8BD01435889E27515048CF151323BAC42345 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StreamWriter__cctor_m201F8BD01435889E27515048CF151323BAC42345_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_il2cpp_TypeInfo_var);
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_0 = ((Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_StaticFields*)il2cpp_codegen_static_fields_for(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_il2cpp_TypeInfo_var))->get_Null_1();
UTF8Encoding_t77ED103B749A387EF072C3429F48C91D12CA08DE * L_1 = (UTF8Encoding_t77ED103B749A387EF072C3429F48C91D12CA08DE *)il2cpp_codegen_object_new(UTF8Encoding_t77ED103B749A387EF072C3429F48C91D12CA08DE_il2cpp_TypeInfo_var);
UTF8Encoding__ctor_m026030C6C39449C25EC6FA364AA0A49FB3ADCD9E(L_1, (bool)0, (bool)1, /*hidden argument*/NULL);
StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * L_2 = (StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E *)il2cpp_codegen_object_new(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_il2cpp_TypeInfo_var);
StreamWriter__ctor_mBDBE79E3F9A95CB601CEEE2D5464EA3DB663A779(L_2, L_0, L_1, ((int32_t)128), (bool)1, /*hidden argument*/NULL);
((StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_StaticFields*)il2cpp_codegen_static_fields_for(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_il2cpp_TypeInfo_var))->set_Null_11(L_2);
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 System.IO.StringReader::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void StringReader__ctor_mA55383C19EFBC075E762145D88F15A2B8B0CDA17 (StringReader_t3095DEB3D26F40D1A7F9B76835D80AFE70E47E12 * __this, String_t* ___s0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringReader__ctor_mA55383C19EFBC075E762145D88F15A2B8B0CDA17_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringReader_t3095DEB3D26F40D1A7F9B76835D80AFE70E47E12 * G_B4_0 = NULL;
StringReader_t3095DEB3D26F40D1A7F9B76835D80AFE70E47E12 * G_B3_0 = NULL;
int32_t G_B5_0 = 0;
StringReader_t3095DEB3D26F40D1A7F9B76835D80AFE70E47E12 * G_B5_1 = NULL;
{
IL2CPP_RUNTIME_CLASS_INIT(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_il2cpp_TypeInfo_var);
TextReader__ctor_m55B663B30E5857236C635A37917C584BCB073E59(__this, /*hidden argument*/NULL);
String_t* L_0 = ___s0;
if (L_0)
{
goto IL_0014;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralA0F1490A20D0211C997B44BC357E1972DEAB8AE3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, StringReader__ctor_mA55383C19EFBC075E762145D88F15A2B8B0CDA17_RuntimeMethod_var);
}
IL_0014:
{
String_t* L_2 = ___s0;
__this->set__s_4(L_2);
String_t* L_3 = ___s0;
G_B3_0 = __this;
if (!L_3)
{
G_B4_0 = __this;
goto IL_0027;
}
}
{
String_t* L_4 = ___s0;
NullCheck(L_4);
int32_t L_5 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_4, /*hidden argument*/NULL);
G_B5_0 = L_5;
G_B5_1 = G_B3_0;
goto IL_0028;
}
IL_0027:
{
G_B5_0 = 0;
G_B5_1 = G_B4_0;
}
IL_0028:
{
NullCheck(G_B5_1);
G_B5_1->set__length_6(G_B5_0);
return;
}
}
// System.Void System.IO.StringReader::Dispose(System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void StringReader_Dispose_mE20D4831BF0E8F2CAFBE5AC5CFDADA8A8C11FFBA (StringReader_t3095DEB3D26F40D1A7F9B76835D80AFE70E47E12 * __this, bool ___disposing0, const RuntimeMethod* method)
{
{
__this->set__s_4((String_t*)NULL);
__this->set__pos_5(0);
__this->set__length_6(0);
bool L_0 = ___disposing0;
TextReader_Dispose_m0DF461F7F5A52AD0C5ACB65BC5DD69106975AD0A(__this, L_0, /*hidden argument*/NULL);
return;
}
}
// System.Int32 System.IO.StringReader::Peek()
extern "C" IL2CPP_METHOD_ATTR int32_t StringReader_Peek_m24E1F26BF93B84536D03A25D9DEA617EFB01070F (StringReader_t3095DEB3D26F40D1A7F9B76835D80AFE70E47E12 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__s_4();
if (L_0)
{
goto IL_000d;
}
}
{
__Error_ReaderClosed_mDEB32103741D23496C28421032CA44B7DB2E0717(/*hidden argument*/NULL);
}
IL_000d:
{
int32_t L_1 = __this->get__pos_5();
int32_t L_2 = __this->get__length_6();
if ((!(((uint32_t)L_1) == ((uint32_t)L_2))))
{
goto IL_001d;
}
}
{
return (-1);
}
IL_001d:
{
String_t* L_3 = __this->get__s_4();
int32_t L_4 = __this->get__pos_5();
NullCheck(L_3);
Il2CppChar L_5 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_3, L_4, /*hidden argument*/NULL);
return L_5;
}
}
// System.Int32 System.IO.StringReader::Read()
extern "C" IL2CPP_METHOD_ATTR int32_t StringReader_Read_m063E6569ED299143098989C3E91FEADF611FE43B (StringReader_t3095DEB3D26F40D1A7F9B76835D80AFE70E47E12 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
String_t* L_0 = __this->get__s_4();
if (L_0)
{
goto IL_000d;
}
}
{
__Error_ReaderClosed_mDEB32103741D23496C28421032CA44B7DB2E0717(/*hidden argument*/NULL);
}
IL_000d:
{
int32_t L_1 = __this->get__pos_5();
int32_t L_2 = __this->get__length_6();
if ((!(((uint32_t)L_1) == ((uint32_t)L_2))))
{
goto IL_001d;
}
}
{
return (-1);
}
IL_001d:
{
String_t* L_3 = __this->get__s_4();
int32_t L_4 = __this->get__pos_5();
V_0 = L_4;
int32_t L_5 = V_0;
__this->set__pos_5(((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)));
int32_t L_6 = V_0;
NullCheck(L_3);
Il2CppChar L_7 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_3, L_6, /*hidden argument*/NULL);
return L_7;
}
}
// System.Int32 System.IO.StringReader::Read(System.Char[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t StringReader_Read_m683E57834DF8E10FA7957AEB3D6041F4C72A148F (StringReader_t3095DEB3D26F40D1A7F9B76835D80AFE70E47E12 * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringReader_Read_m683E57834DF8E10FA7957AEB3D6041F4C72A148F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = ___buffer0;
if (L_0)
{
goto IL_0018;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB80ADA17FA6976840EA2EE6BFF02BC04F45EEBA7, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteralE53C2EA1FE4BD2B78BF4723C7C155A578E020A25, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, StringReader_Read_m683E57834DF8E10FA7957AEB3D6041F4C72A148F_RuntimeMethod_var);
}
IL_0018:
{
int32_t L_3 = ___index1;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
{
String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, StringReader_Read_m683E57834DF8E10FA7957AEB3D6041F4C72A148F_RuntimeMethod_var);
}
IL_0031:
{
int32_t L_6 = ___count2;
if ((((int32_t)L_6) >= ((int32_t)0)))
{
goto IL_004a;
}
}
{
String_t* L_7 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_8, _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, StringReader_Read_m683E57834DF8E10FA7957AEB3D6041F4C72A148F_RuntimeMethod_var);
}
IL_004a:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_9 = ___buffer0;
NullCheck(L_9);
int32_t L_10 = ___index1;
int32_t L_11 = ___count2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_11)))
{
goto IL_0062;
}
}
{
String_t* L_12 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_13 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_13, L_12, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, NULL, StringReader_Read_m683E57834DF8E10FA7957AEB3D6041F4C72A148F_RuntimeMethod_var);
}
IL_0062:
{
String_t* L_14 = __this->get__s_4();
if (L_14)
{
goto IL_006f;
}
}
{
__Error_ReaderClosed_mDEB32103741D23496C28421032CA44B7DB2E0717(/*hidden argument*/NULL);
}
IL_006f:
{
int32_t L_15 = __this->get__length_6();
int32_t L_16 = __this->get__pos_5();
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)L_16));
int32_t L_17 = V_0;
if ((((int32_t)L_17) <= ((int32_t)0)))
{
goto IL_00a9;
}
}
{
int32_t L_18 = V_0;
int32_t L_19 = ___count2;
if ((((int32_t)L_18) <= ((int32_t)L_19)))
{
goto IL_0087;
}
}
{
int32_t L_20 = ___count2;
V_0 = L_20;
}
IL_0087:
{
String_t* L_21 = __this->get__s_4();
int32_t L_22 = __this->get__pos_5();
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_23 = ___buffer0;
int32_t L_24 = ___index1;
int32_t L_25 = V_0;
NullCheck(L_21);
String_CopyTo_m054B8FF2ACBBA74F60199D98259E88395EAD3661(L_21, L_22, L_23, L_24, L_25, /*hidden argument*/NULL);
int32_t L_26 = __this->get__pos_5();
int32_t L_27 = V_0;
__this->set__pos_5(((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)L_27)));
}
IL_00a9:
{
int32_t L_28 = V_0;
return L_28;
}
}
// System.String System.IO.StringReader::ReadToEnd()
extern "C" IL2CPP_METHOD_ATTR String_t* StringReader_ReadToEnd_m718CA3B9418CA054C2241737F069F609C26C6828 (StringReader_t3095DEB3D26F40D1A7F9B76835D80AFE70E47E12 * __this, const RuntimeMethod* method)
{
String_t* V_0 = NULL;
{
String_t* L_0 = __this->get__s_4();
if (L_0)
{
goto IL_000d;
}
}
{
__Error_ReaderClosed_mDEB32103741D23496C28421032CA44B7DB2E0717(/*hidden argument*/NULL);
}
IL_000d:
{
int32_t L_1 = __this->get__pos_5();
if (L_1)
{
goto IL_001e;
}
}
{
String_t* L_2 = __this->get__s_4();
V_0 = L_2;
goto IL_003d;
}
IL_001e:
{
String_t* L_3 = __this->get__s_4();
int32_t L_4 = __this->get__pos_5();
int32_t L_5 = __this->get__length_6();
int32_t L_6 = __this->get__pos_5();
NullCheck(L_3);
String_t* L_7 = String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB(L_3, L_4, ((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)L_6)), /*hidden argument*/NULL);
V_0 = L_7;
}
IL_003d:
{
int32_t L_8 = __this->get__length_6();
__this->set__pos_5(L_8);
String_t* L_9 = V_0;
return L_9;
}
}
// System.String System.IO.StringReader::ReadLine()
extern "C" IL2CPP_METHOD_ATTR String_t* StringReader_ReadLine_m2A9BF4A2A6DE1107F7FA579BD1ABFC66625596E7 (StringReader_t3095DEB3D26F40D1A7F9B76835D80AFE70E47E12 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
Il2CppChar V_1 = 0x0;
String_t* G_B9_0 = NULL;
String_t* G_B6_0 = NULL;
String_t* G_B7_0 = NULL;
String_t* G_B8_0 = NULL;
{
String_t* L_0 = __this->get__s_4();
if (L_0)
{
goto IL_000d;
}
}
{
__Error_ReaderClosed_mDEB32103741D23496C28421032CA44B7DB2E0717(/*hidden argument*/NULL);
}
IL_000d:
{
int32_t L_1 = __this->get__pos_5();
V_0 = L_1;
goto IL_008a;
}
IL_0016:
{
String_t* L_2 = __this->get__s_4();
int32_t L_3 = V_0;
NullCheck(L_2);
Il2CppChar L_4 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_2, L_3, /*hidden argument*/NULL);
V_1 = L_4;
Il2CppChar L_5 = V_1;
if ((((int32_t)L_5) == ((int32_t)((int32_t)13))))
{
goto IL_002d;
}
}
{
Il2CppChar L_6 = V_1;
if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)10)))))
{
goto IL_0086;
}
}
IL_002d:
{
String_t* L_7 = __this->get__s_4();
int32_t L_8 = __this->get__pos_5();
int32_t L_9 = V_0;
int32_t L_10 = __this->get__pos_5();
NullCheck(L_7);
String_t* L_11 = String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB(L_7, L_8, ((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)L_10)), /*hidden argument*/NULL);
int32_t L_12 = V_0;
__this->set__pos_5(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)));
Il2CppChar L_13 = V_1;
G_B6_0 = L_11;
if ((!(((uint32_t)L_13) == ((uint32_t)((int32_t)13)))))
{
G_B9_0 = L_11;
goto IL_0085;
}
}
{
int32_t L_14 = __this->get__pos_5();
int32_t L_15 = __this->get__length_6();
G_B7_0 = G_B6_0;
if ((((int32_t)L_14) >= ((int32_t)L_15)))
{
G_B9_0 = G_B6_0;
goto IL_0085;
}
}
{
String_t* L_16 = __this->get__s_4();
int32_t L_17 = __this->get__pos_5();
NullCheck(L_16);
Il2CppChar L_18 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_16, L_17, /*hidden argument*/NULL);
G_B8_0 = G_B7_0;
if ((!(((uint32_t)L_18) == ((uint32_t)((int32_t)10)))))
{
G_B9_0 = G_B7_0;
goto IL_0085;
}
}
{
int32_t L_19 = __this->get__pos_5();
__this->set__pos_5(((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1)));
G_B9_0 = G_B8_0;
}
IL_0085:
{
return G_B9_0;
}
IL_0086:
{
int32_t L_20 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1));
}
IL_008a:
{
int32_t L_21 = V_0;
int32_t L_22 = __this->get__length_6();
if ((((int32_t)L_21) < ((int32_t)L_22)))
{
goto IL_0016;
}
}
{
int32_t L_23 = V_0;
int32_t L_24 = __this->get__pos_5();
if ((((int32_t)L_23) <= ((int32_t)L_24)))
{
goto IL_00bd;
}
}
{
String_t* L_25 = __this->get__s_4();
int32_t L_26 = __this->get__pos_5();
int32_t L_27 = V_0;
int32_t L_28 = __this->get__pos_5();
NullCheck(L_25);
String_t* L_29 = String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB(L_25, L_26, ((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)L_28)), /*hidden argument*/NULL);
int32_t L_30 = V_0;
__this->set__pos_5(L_30);
return L_29;
}
IL_00bd:
{
return (String_t*)NULL;
}
}
#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 System.IO.StringResultHandler::.ctor(System.Boolean,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void StringResultHandler__ctor_m88B61167B257C333679A5C8CD893238E5B0A56A3 (StringResultHandler_tA57B2E939732C5126B9780732364D603FF7D44A6 * __this, bool ___includeFiles0, bool ___includeDirs1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringResultHandler__ctor_m88B61167B257C333679A5C8CD893238E5B0A56A3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
SearchResultHandler_1__ctor_m9FE92302F53647F2B3BE0C14514BF1EDFEA9BC32(__this, /*hidden argument*/SearchResultHandler_1__ctor_m9FE92302F53647F2B3BE0C14514BF1EDFEA9BC32_RuntimeMethod_var);
bool L_0 = ___includeFiles0;
__this->set__includeFiles_0(L_0);
bool L_1 = ___includeDirs1;
__this->set__includeDirs_1(L_1);
return;
}
}
// System.Boolean System.IO.StringResultHandler::IsResultIncluded(System.IO.SearchResult)
extern "C" IL2CPP_METHOD_ATTR bool StringResultHandler_IsResultIncluded_mD12BEF4142CC7FD733B839980C2B8DFBD1E4E92E (StringResultHandler_tA57B2E939732C5126B9780732364D603FF7D44A6 * __this, SearchResult_tB01A1197ED99DD064C9BB9ED2990ABCD8FD6BCAE * ___result0, const RuntimeMethod* method)
{
bool V_0 = false;
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;
{
bool L_0 = __this->get__includeFiles_0();
if (!L_0)
{
goto IL_0015;
}
}
{
SearchResult_tB01A1197ED99DD064C9BB9ED2990ABCD8FD6BCAE * L_1 = ___result0;
NullCheck(L_1);
WIN32_FIND_DATA_t8A943FFC86D2F011824E8A9402E1DD1C54E27B56 * L_2 = SearchResult_get_FindData_mDD555A3610B05788205821BEA598E0C00E7803DE(L_1, /*hidden argument*/NULL);
bool L_3 = FileSystemEnumerableHelpers_IsFile_m31E8694B440156340BA6E5C5F9639E506990BFBD(L_2, /*hidden argument*/NULL);
G_B3_0 = ((int32_t)(L_3));
goto IL_0016;
}
IL_0015:
{
G_B3_0 = 0;
}
IL_0016:
{
bool L_4 = __this->get__includeDirs_1();
G_B4_0 = G_B3_0;
if (!L_4)
{
G_B5_0 = G_B3_0;
goto IL_002b;
}
}
{
SearchResult_tB01A1197ED99DD064C9BB9ED2990ABCD8FD6BCAE * L_5 = ___result0;
NullCheck(L_5);
WIN32_FIND_DATA_t8A943FFC86D2F011824E8A9402E1DD1C54E27B56 * L_6 = SearchResult_get_FindData_mDD555A3610B05788205821BEA598E0C00E7803DE(L_5, /*hidden argument*/NULL);
bool L_7 = FileSystemEnumerableHelpers_IsDir_mE9E04617BCC965AA8BE4AAE0E53E8283D9BE02C0(L_6, /*hidden argument*/NULL);
G_B6_0 = ((int32_t)(L_7));
G_B6_1 = G_B4_0;
goto IL_002c;
}
IL_002b:
{
G_B6_0 = 0;
G_B6_1 = G_B5_0;
}
IL_002c:
{
V_0 = (bool)G_B6_0;
bool L_8 = V_0;
return (bool)((int32_t)((int32_t)G_B6_1|(int32_t)L_8));
}
}
// System.String System.IO.StringResultHandler::CreateObject(System.IO.SearchResult)
extern "C" IL2CPP_METHOD_ATTR String_t* StringResultHandler_CreateObject_m7B18AAB77DE4E656852F66B6047369360ECF2031 (StringResultHandler_tA57B2E939732C5126B9780732364D603FF7D44A6 * __this, SearchResult_tB01A1197ED99DD064C9BB9ED2990ABCD8FD6BCAE * ___result0, const RuntimeMethod* method)
{
{
SearchResult_tB01A1197ED99DD064C9BB9ED2990ABCD8FD6BCAE * L_0 = ___result0;
NullCheck(L_0);
String_t* L_1 = SearchResult_get_UserPath_mB57A92D43162037A6A6F8AA91903F33C6D14B636(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
// System.Void System.IO.TextReader::.ctor()
extern "C" IL2CPP_METHOD_ATTR void TextReader__ctor_m55B663B30E5857236C635A37917C584BCB073E59 (TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * __this, const RuntimeMethod* method)
{
{
MarshalByRefObject__ctor_mD1C6F1D191B1A50DC93E8B214BCCA9BD93FDE850(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.TextReader::Dispose()
extern "C" IL2CPP_METHOD_ATTR void TextReader_Dispose_m9DA31CD42D5E73A1452F4EEC014C5703B5872930 (TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TextReader_Dispose_m9DA31CD42D5E73A1452F4EEC014C5703B5872930_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
VirtActionInvoker1< bool >::Invoke(7 /* System.Void System.IO.TextReader::Dispose(System.Boolean) */, __this, (bool)1);
IL2CPP_RUNTIME_CLASS_INIT(GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var);
GC_SuppressFinalize_m037319A9B95A5BA437E806DE592802225EE5B425(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.TextReader::Dispose(System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void TextReader_Dispose_m0DF461F7F5A52AD0C5ACB65BC5DD69106975AD0A (TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * __this, bool ___disposing0, const RuntimeMethod* method)
{
{
return;
}
}
// System.Int32 System.IO.TextReader::Peek()
extern "C" IL2CPP_METHOD_ATTR int32_t TextReader_Peek_mEC8583F2B73F3EC56D8738B6A5AE30DD27187780 (TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * __this, const RuntimeMethod* method)
{
{
return (-1);
}
}
// System.Int32 System.IO.TextReader::Read()
extern "C" IL2CPP_METHOD_ATTR int32_t TextReader_Read_mB5298E46622EEE25100B88443E96AD6B7D98603B (TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * __this, const RuntimeMethod* method)
{
{
return (-1);
}
}
// System.Int32 System.IO.TextReader::Read(System.Char[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t TextReader_Read_m055B04C72D5511C20A674B021A8DFBEB035A80AA (TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TextReader_Read_m055B04C72D5511C20A674B021A8DFBEB035A80AA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = ___buffer0;
if (L_0)
{
goto IL_0018;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB80ADA17FA6976840EA2EE6BFF02BC04F45EEBA7, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteralE53C2EA1FE4BD2B78BF4723C7C155A578E020A25, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, TextReader_Read_m055B04C72D5511C20A674B021A8DFBEB035A80AA_RuntimeMethod_var);
}
IL_0018:
{
int32_t L_3 = ___index1;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
{
String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, TextReader_Read_m055B04C72D5511C20A674B021A8DFBEB035A80AA_RuntimeMethod_var);
}
IL_0031:
{
int32_t L_6 = ___count2;
if ((((int32_t)L_6) >= ((int32_t)0)))
{
goto IL_004a;
}
}
{
String_t* L_7 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_8, _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, TextReader_Read_m055B04C72D5511C20A674B021A8DFBEB035A80AA_RuntimeMethod_var);
}
IL_004a:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_9 = ___buffer0;
NullCheck(L_9);
int32_t L_10 = ___index1;
int32_t L_11 = ___count2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_11)))
{
goto IL_0062;
}
}
{
String_t* L_12 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_13 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_13, L_12, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, NULL, TextReader_Read_m055B04C72D5511C20A674B021A8DFBEB035A80AA_RuntimeMethod_var);
}
IL_0062:
{
V_0 = 0;
}
IL_0064:
{
int32_t L_14 = VirtFuncInvoker0< int32_t >::Invoke(9 /* System.Int32 System.IO.TextReader::Read() */, __this);
V_1 = L_14;
int32_t L_15 = V_1;
if ((((int32_t)L_15) == ((int32_t)(-1))))
{
goto IL_007e;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_16 = ___buffer0;
int32_t L_17 = ___index1;
int32_t L_18 = V_0;
int32_t L_19 = L_18;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1));
int32_t L_20 = V_1;
NullCheck(L_16);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)L_19))), (Il2CppChar)(((int32_t)((uint16_t)L_20))));
int32_t L_21 = V_0;
int32_t L_22 = ___count2;
if ((((int32_t)L_21) < ((int32_t)L_22)))
{
goto IL_0064;
}
}
IL_007e:
{
int32_t L_23 = V_0;
return L_23;
}
}
// System.String System.IO.TextReader::ReadToEnd()
extern "C" IL2CPP_METHOD_ATTR String_t* TextReader_ReadToEnd_m0132D9AB2B3B376AE3BF4CD4A809D60A08E38179 (TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TextReader_ReadToEnd_m0132D9AB2B3B376AE3BF4CD4A809D60A08E38179_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* V_0 = NULL;
int32_t V_1 = 0;
StringBuilder_t * V_2 = NULL;
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)((int32_t)4096));
V_0 = L_0;
StringBuilder_t * L_1 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m1C0F2D97B838537A2D0F64033AE4EF02D150A956(L_1, ((int32_t)4096), /*hidden argument*/NULL);
V_2 = L_1;
goto IL_0022;
}
IL_0018:
{
StringBuilder_t * L_2 = V_2;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_3 = V_0;
int32_t L_4 = V_1;
NullCheck(L_2);
StringBuilder_Append_m549C532422286A982F7956C9BAE197D00B30DCA8(L_2, L_3, 0, L_4, /*hidden argument*/NULL);
}
IL_0022:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_5 = V_0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_6 = V_0;
NullCheck(L_6);
int32_t L_7 = VirtFuncInvoker3< int32_t, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t, int32_t >::Invoke(10 /* System.Int32 System.IO.TextReader::Read(System.Char[],System.Int32,System.Int32) */, __this, L_5, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length)))));
int32_t L_8 = L_7;
V_1 = L_8;
if (L_8)
{
goto IL_0018;
}
}
{
StringBuilder_t * L_9 = V_2;
NullCheck(L_9);
String_t* L_10 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_9);
return L_10;
}
}
// System.String System.IO.TextReader::ReadLine()
extern "C" IL2CPP_METHOD_ATTR String_t* TextReader_ReadLine_m44D609BFD3E8C6C8225A5EF91E2DF9D1D9EE2336 (TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TextReader_ReadLine_m44D609BFD3E8C6C8225A5EF91E2DF9D1D9EE2336_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
int32_t V_1 = 0;
{
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_0, /*hidden argument*/NULL);
V_0 = L_0;
}
IL_0006:
{
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(9 /* System.Int32 System.IO.TextReader::Read() */, __this);
V_1 = L_1;
int32_t L_2 = V_1;
if ((((int32_t)L_2) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_3 = V_1;
if ((((int32_t)L_3) == ((int32_t)((int32_t)13))))
{
goto IL_001b;
}
}
{
int32_t L_4 = V_1;
if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)10)))))
{
goto IL_0038;
}
}
IL_001b:
{
int32_t L_5 = V_1;
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)13)))))
{
goto IL_0031;
}
}
{
int32_t L_6 = VirtFuncInvoker0< int32_t >::Invoke(8 /* System.Int32 System.IO.TextReader::Peek() */, __this);
if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)10)))))
{
goto IL_0031;
}
}
{
VirtFuncInvoker0< int32_t >::Invoke(9 /* System.Int32 System.IO.TextReader::Read() */, __this);
}
IL_0031:
{
StringBuilder_t * L_7 = V_0;
NullCheck(L_7);
String_t* L_8 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_7);
return L_8;
}
IL_0038:
{
StringBuilder_t * L_9 = V_0;
int32_t L_10 = V_1;
NullCheck(L_9);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_9, (((int32_t)((uint16_t)L_10))), /*hidden argument*/NULL);
goto IL_0006;
}
IL_0043:
{
StringBuilder_t * L_11 = V_0;
NullCheck(L_11);
int32_t L_12 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_11, /*hidden argument*/NULL);
if ((((int32_t)L_12) <= ((int32_t)0)))
{
goto IL_0053;
}
}
{
StringBuilder_t * L_13 = V_0;
NullCheck(L_13);
String_t* L_14 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_13);
return L_14;
}
IL_0053:
{
return (String_t*)NULL;
}
}
// System.IO.TextReader System.IO.TextReader::Synchronized(System.IO.TextReader)
extern "C" IL2CPP_METHOD_ATTR TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * TextReader_Synchronized_mAC0571B77131073ED9B627C8FEE2082CB28EDA9D (TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * ___reader0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TextReader_Synchronized_mAC0571B77131073ED9B627C8FEE2082CB28EDA9D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * L_0 = ___reader0;
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, _stringLiteral24B55FE81E9E7B11798D3A4E4677DD48FFC81559, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, TextReader_Synchronized_mAC0571B77131073ED9B627C8FEE2082CB28EDA9D_RuntimeMethod_var);
}
IL_000e:
{
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * L_2 = ___reader0;
if (!((SyncTextReader_t7F10F41C83862CC5CE2C92DD5A7DF48D8A645EB8 *)IsInstSealed((RuntimeObject*)L_2, SyncTextReader_t7F10F41C83862CC5CE2C92DD5A7DF48D8A645EB8_il2cpp_TypeInfo_var)))
{
goto IL_0018;
}
}
{
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * L_3 = ___reader0;
return L_3;
}
IL_0018:
{
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * L_4 = ___reader0;
SyncTextReader_t7F10F41C83862CC5CE2C92DD5A7DF48D8A645EB8 * L_5 = (SyncTextReader_t7F10F41C83862CC5CE2C92DD5A7DF48D8A645EB8 *)il2cpp_codegen_object_new(SyncTextReader_t7F10F41C83862CC5CE2C92DD5A7DF48D8A645EB8_il2cpp_TypeInfo_var);
SyncTextReader__ctor_m446DFB6FF4BB359C37F582969794678305C7AC00(L_5, L_4, /*hidden argument*/NULL);
return L_5;
}
}
// System.Void System.IO.TextReader::.cctor()
extern "C" IL2CPP_METHOD_ATTR void TextReader__cctor_m4DC7D8BFF04344567D945853BF464C47AADC8663 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TextReader__cctor_m4DC7D8BFF04344567D945853BF464C47AADC8663_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590_il2cpp_TypeInfo_var);
U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590 * L_0 = ((U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590_il2cpp_TypeInfo_var))->get_U3CU3E9_0();
Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF * L_1 = (Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF *)il2cpp_codegen_object_new(Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF_il2cpp_TypeInfo_var);
Func_2__ctor_m0E11CA9B34D5352759D42FDEA69CC14E7C949427(L_1, L_0, (intptr_t)((intptr_t)U3CU3Ec_U3C_cctorU3Eb__22_0_m5FA84DE2E51772EC0D643C393A08683107DD2A27_RuntimeMethod_var), /*hidden argument*/Func_2__ctor_m0E11CA9B34D5352759D42FDEA69CC14E7C949427_RuntimeMethod_var);
((TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_StaticFields*)il2cpp_codegen_static_fields_for(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_il2cpp_TypeInfo_var))->set__ReadLineDelegate_1(L_1);
U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590 * L_2 = ((U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590_il2cpp_TypeInfo_var))->get_U3CU3E9_0();
Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * L_3 = (Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 *)il2cpp_codegen_object_new(Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6_il2cpp_TypeInfo_var);
Func_2__ctor_m54408ED2EFA4F730EF559B45507C0009D7EC7917(L_3, L_2, (intptr_t)((intptr_t)U3CU3Ec_U3C_cctorU3Eb__22_1_m79BB5DA57C6FBC5B24A881168FDB0BD2838ABF66_RuntimeMethod_var), /*hidden argument*/Func_2__ctor_m54408ED2EFA4F730EF559B45507C0009D7EC7917_RuntimeMethod_var);
((TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_StaticFields*)il2cpp_codegen_static_fields_for(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_il2cpp_TypeInfo_var))->set__ReadDelegate_2(L_3);
NullTextReader_tCEFA26A066B5EE58FEC359F4D3791D42EB7A03C1 * L_4 = (NullTextReader_tCEFA26A066B5EE58FEC359F4D3791D42EB7A03C1 *)il2cpp_codegen_object_new(NullTextReader_tCEFA26A066B5EE58FEC359F4D3791D42EB7A03C1_il2cpp_TypeInfo_var);
NullTextReader__ctor_m7397DE48AF5DCEFAC0F1B12637AF1C54D1CB59B6(L_4, /*hidden argument*/NULL);
((TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_StaticFields*)il2cpp_codegen_static_fields_for(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_il2cpp_TypeInfo_var))->set_Null_3(L_4);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.IO.TextReader_<>c::.cctor()
extern "C" IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m0A826CA81945CBA6D7FC29CCD4289C0A4265478F (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec__cctor_m0A826CA81945CBA6D7FC29CCD4289C0A4265478F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590 * L_0 = (U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590 *)il2cpp_codegen_object_new(U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590_il2cpp_TypeInfo_var);
U3CU3Ec__ctor_mD3FA2AB29BCF10A7A60EC4C6780195BE8F6F7C3A(L_0, /*hidden argument*/NULL);
((U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590_il2cpp_TypeInfo_var))->set_U3CU3E9_0(L_0);
return;
}
}
// System.Void System.IO.TextReader_<>c::.ctor()
extern "C" IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_mD3FA2AB29BCF10A7A60EC4C6780195BE8F6F7C3A (U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
// System.String System.IO.TextReader_<>c::<.cctor>b__22_0(System.Object)
extern "C" IL2CPP_METHOD_ATTR String_t* U3CU3Ec_U3C_cctorU3Eb__22_0_m5FA84DE2E51772EC0D643C393A08683107DD2A27 (U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590 * __this, RuntimeObject * ___state0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec_U3C_cctorU3Eb__22_0_m5FA84DE2E51772EC0D643C393A08683107DD2A27_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___state0;
NullCheck(((TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A *)CastclassClass((RuntimeObject*)L_0, TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_il2cpp_TypeInfo_var)));
String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(12 /* System.String System.IO.TextReader::ReadLine() */, ((TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A *)CastclassClass((RuntimeObject*)L_0, TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_il2cpp_TypeInfo_var)));
return L_1;
}
}
// System.Int32 System.IO.TextReader_<>c::<.cctor>b__22_1(System.Object)
extern "C" IL2CPP_METHOD_ATTR int32_t U3CU3Ec_U3C_cctorU3Eb__22_1_m79BB5DA57C6FBC5B24A881168FDB0BD2838ABF66 (U3CU3Ec_tD3B2771D28CFCA225BA7B58C729C5FD766E56590 * __this, RuntimeObject * ___state0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec_U3C_cctorU3Eb__22_1_m79BB5DA57C6FBC5B24A881168FDB0BD2838ABF66_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_4_tBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE * V_0 = NULL;
{
RuntimeObject * L_0 = ___state0;
V_0 = ((Tuple_4_tBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE *)CastclassClass((RuntimeObject*)L_0, Tuple_4_tBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE_il2cpp_TypeInfo_var));
Tuple_4_tBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE * L_1 = V_0;
NullCheck(L_1);
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * L_2 = Tuple_4_get_Item1_m39C8A1A8D6E4AF89146C46BC85FC3558DA836A87(L_1, /*hidden argument*/Tuple_4_get_Item1_m39C8A1A8D6E4AF89146C46BC85FC3558DA836A87_RuntimeMethod_var);
Tuple_4_tBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE * L_3 = V_0;
NullCheck(L_3);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_4 = Tuple_4_get_Item2_mB5B46A5AB646B577CA14E9F4D0468B390E46801B(L_3, /*hidden argument*/Tuple_4_get_Item2_mB5B46A5AB646B577CA14E9F4D0468B390E46801B_RuntimeMethod_var);
Tuple_4_tBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE * L_5 = V_0;
NullCheck(L_5);
int32_t L_6 = Tuple_4_get_Item3_m9DC2B35F08BABAEAEF52F778F565CA1CA7FD97DA(L_5, /*hidden argument*/Tuple_4_get_Item3_m9DC2B35F08BABAEAEF52F778F565CA1CA7FD97DA_RuntimeMethod_var);
Tuple_4_tBB82E926DC5CCB3067C0BA6CFDBE7F99EBCE2FCE * L_7 = V_0;
NullCheck(L_7);
int32_t L_8 = Tuple_4_get_Item4_m6E1B7A0E892B4180E4B6FFBBAF3448082FAEC52F(L_7, /*hidden argument*/Tuple_4_get_Item4_m6E1B7A0E892B4180E4B6FFBBAF3448082FAEC52F_RuntimeMethod_var);
NullCheck(L_2);
int32_t L_9 = VirtFuncInvoker3< int32_t, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t, int32_t >::Invoke(10 /* System.Int32 System.IO.TextReader::Read(System.Char[],System.Int32,System.Int32) */, L_2, L_4, L_6, L_8);
return L_9;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.IO.TextReader_NullTextReader::.ctor()
extern "C" IL2CPP_METHOD_ATTR void NullTextReader__ctor_m7397DE48AF5DCEFAC0F1B12637AF1C54D1CB59B6 (NullTextReader_tCEFA26A066B5EE58FEC359F4D3791D42EB7A03C1 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NullTextReader__ctor_m7397DE48AF5DCEFAC0F1B12637AF1C54D1CB59B6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_il2cpp_TypeInfo_var);
TextReader__ctor_m55B663B30E5857236C635A37917C584BCB073E59(__this, /*hidden argument*/NULL);
return;
}
}
// System.Int32 System.IO.TextReader_NullTextReader::Read(System.Char[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t NullTextReader_Read_mD15B52BA04B95A1EF531D960CF26EAC93BB29A76 (NullTextReader_tCEFA26A066B5EE58FEC359F4D3791D42EB7A03C1 * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
{
return 0;
}
}
// System.String System.IO.TextReader_NullTextReader::ReadLine()
extern "C" IL2CPP_METHOD_ATTR String_t* NullTextReader_ReadLine_m12E62212D0A17F43292E516E26180D12BF65707D (NullTextReader_tCEFA26A066B5EE58FEC359F4D3791D42EB7A03C1 * __this, const RuntimeMethod* method)
{
{
return (String_t*)NULL;
}
}
#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 System.IO.TextReader_SyncTextReader::.ctor(System.IO.TextReader)
extern "C" IL2CPP_METHOD_ATTR void SyncTextReader__ctor_m446DFB6FF4BB359C37F582969794678305C7AC00 (SyncTextReader_t7F10F41C83862CC5CE2C92DD5A7DF48D8A645EB8 * __this, TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * ___t0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SyncTextReader__ctor_m446DFB6FF4BB359C37F582969794678305C7AC00_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_il2cpp_TypeInfo_var);
TextReader__ctor_m55B663B30E5857236C635A37917C584BCB073E59(__this, /*hidden argument*/NULL);
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * L_0 = ___t0;
__this->set__in_4(L_0);
return;
}
}
// System.Void System.IO.TextReader_SyncTextReader::Dispose(System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void SyncTextReader_Dispose_mD8824E922534B09273852261FF986840CDBA0AB1 (SyncTextReader_t7F10F41C83862CC5CE2C92DD5A7DF48D8A645EB8 * __this, bool ___disposing0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SyncTextReader_Dispose_mD8824E922534B09273852261FF986840CDBA0AB1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = ___disposing0;
if (!L_0)
{
goto IL_000e;
}
}
{
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * L_1 = __this->get__in_4();
NullCheck(L_1);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_1);
}
IL_000e:
{
return;
}
}
// System.Int32 System.IO.TextReader_SyncTextReader::Peek()
extern "C" IL2CPP_METHOD_ATTR int32_t SyncTextReader_Peek_m95DC7660AE8679CEC1B16B7C25C06F179ADD903B (SyncTextReader_t7F10F41C83862CC5CE2C92DD5A7DF48D8A645EB8 * __this, const RuntimeMethod* method)
{
{
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * L_0 = __this->get__in_4();
NullCheck(L_0);
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(8 /* System.Int32 System.IO.TextReader::Peek() */, L_0);
return L_1;
}
}
// System.Int32 System.IO.TextReader_SyncTextReader::Read()
extern "C" IL2CPP_METHOD_ATTR int32_t SyncTextReader_Read_mFCD5947DD0DBB9688A57792E4990F38998828243 (SyncTextReader_t7F10F41C83862CC5CE2C92DD5A7DF48D8A645EB8 * __this, const RuntimeMethod* method)
{
{
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * L_0 = __this->get__in_4();
NullCheck(L_0);
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(9 /* System.Int32 System.IO.TextReader::Read() */, L_0);
return L_1;
}
}
// System.Int32 System.IO.TextReader_SyncTextReader::Read(System.Char[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t SyncTextReader_Read_mD06B8DE6A5367A31EF20D82B9A7084C69EDF8757 (SyncTextReader_t7F10F41C83862CC5CE2C92DD5A7DF48D8A645EB8 * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
{
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * L_0 = __this->get__in_4();
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = ___buffer0;
int32_t L_2 = ___index1;
int32_t L_3 = ___count2;
NullCheck(L_0);
int32_t L_4 = VirtFuncInvoker3< int32_t, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t, int32_t >::Invoke(10 /* System.Int32 System.IO.TextReader::Read(System.Char[],System.Int32,System.Int32) */, L_0, L_1, L_2, L_3);
return L_4;
}
}
// System.String System.IO.TextReader_SyncTextReader::ReadLine()
extern "C" IL2CPP_METHOD_ATTR String_t* SyncTextReader_ReadLine_mCAB4104D2A8F9978CB468FF9B25CCEE7314EA696 (SyncTextReader_t7F10F41C83862CC5CE2C92DD5A7DF48D8A645EB8 * __this, const RuntimeMethod* method)
{
{
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * L_0 = __this->get__in_4();
NullCheck(L_0);
String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(12 /* System.String System.IO.TextReader::ReadLine() */, L_0);
return L_1;
}
}
// System.String System.IO.TextReader_SyncTextReader::ReadToEnd()
extern "C" IL2CPP_METHOD_ATTR String_t* SyncTextReader_ReadToEnd_mC22466B5267CC309939F6792D6A8F62CA447D773 (SyncTextReader_t7F10F41C83862CC5CE2C92DD5A7DF48D8A645EB8 * __this, const RuntimeMethod* method)
{
{
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * L_0 = __this->get__in_4();
NullCheck(L_0);
String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(11 /* System.String System.IO.TextReader::ReadToEnd() */, L_0);
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
// System.String System.IO.TextWriter::get_InitialNewLine()
extern "C" IL2CPP_METHOD_ATTR String_t* TextWriter_get_InitialNewLine_mAC9E797CB00F45DB3E2210A88156593962322E26 (const RuntimeMethod* method)
{
{
String_t* L_0 = Environment_get_NewLine_m5D4F4667FA5D1E2DBDD4DF9696D0CE76C83EF318(/*hidden argument*/NULL);
return L_0;
}
}
// System.Void System.IO.TextWriter::.ctor()
extern "C" IL2CPP_METHOD_ATTR void TextWriter__ctor_m9E003066292D16C33BCD9F462445436BCBF9AAFA (TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TextWriter__ctor_m9E003066292D16C33BCD9F462445436BCBF9AAFA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_il2cpp_TypeInfo_var);
String_t* L_0 = TextWriter_get_InitialNewLine_mAC9E797CB00F45DB3E2210A88156593962322E26(/*hidden argument*/NULL);
NullCheck(L_0);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = String_ToCharArray_mFCFF32A5EC698E81075E0C72C874282B9ED197A6(L_0, /*hidden argument*/NULL);
__this->set_CoreNewLine_9(L_1);
MarshalByRefObject__ctor_mD1C6F1D191B1A50DC93E8B214BCCA9BD93FDE850(__this, /*hidden argument*/NULL);
__this->set_InternalFormatProvider_10((RuntimeObject*)NULL);
return;
}
}
// System.Void System.IO.TextWriter::.ctor(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR void TextWriter__ctor_mB84CC0FA15C2F1759F4FFAB205C3E311EFAF3715 (TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * __this, RuntimeObject* ___formatProvider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TextWriter__ctor_mB84CC0FA15C2F1759F4FFAB205C3E311EFAF3715_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_il2cpp_TypeInfo_var);
String_t* L_0 = TextWriter_get_InitialNewLine_mAC9E797CB00F45DB3E2210A88156593962322E26(/*hidden argument*/NULL);
NullCheck(L_0);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = String_ToCharArray_mFCFF32A5EC698E81075E0C72C874282B9ED197A6(L_0, /*hidden argument*/NULL);
__this->set_CoreNewLine_9(L_1);
MarshalByRefObject__ctor_mD1C6F1D191B1A50DC93E8B214BCCA9BD93FDE850(__this, /*hidden argument*/NULL);
RuntimeObject* L_2 = ___formatProvider0;
__this->set_InternalFormatProvider_10(L_2);
return;
}
}
// System.IFormatProvider System.IO.TextWriter::get_FormatProvider()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* TextWriter_get_FormatProvider_mD43D221A2E0A10F694755BECA02294CD6B9FEB5C (TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get_InternalFormatProvider_10();
if (L_0)
{
goto IL_0013;
}
}
{
Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * L_1 = Thread_get_CurrentThread_mB7A83CAE2B9A74CEA053196DFD1AF1E7AB30A70E(/*hidden argument*/NULL);
NullCheck(L_1);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_2 = Thread_get_CurrentCulture_m97A15448A16FB3B5EC1E21A0538C9FC1F84AEE66(L_1, /*hidden argument*/NULL);
return L_2;
}
IL_0013:
{
RuntimeObject* L_3 = __this->get_InternalFormatProvider_10();
return L_3;
}
}
// System.Void System.IO.TextWriter::Close()
extern "C" IL2CPP_METHOD_ATTR void TextWriter_Close_m0AAE67F57C5EA4BF166C9FA78B3FEF104979B9BF (TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TextWriter_Close_m0AAE67F57C5EA4BF166C9FA78B3FEF104979B9BF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
VirtActionInvoker1< bool >::Invoke(9 /* System.Void System.IO.TextWriter::Dispose(System.Boolean) */, __this, (bool)1);
IL2CPP_RUNTIME_CLASS_INIT(GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var);
GC_SuppressFinalize_m037319A9B95A5BA437E806DE592802225EE5B425(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.TextWriter::Dispose(System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void TextWriter_Dispose_m53C25DF618C5F0D730B0E3EB96D056C301B66DFD (TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * __this, bool ___disposing0, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.IO.TextWriter::Dispose()
extern "C" IL2CPP_METHOD_ATTR void TextWriter_Dispose_m8B516B9539EB72469E3B3852BEDFB7DC5A677569 (TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TextWriter_Dispose_m8B516B9539EB72469E3B3852BEDFB7DC5A677569_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
VirtActionInvoker1< bool >::Invoke(9 /* System.Void System.IO.TextWriter::Dispose(System.Boolean) */, __this, (bool)1);
IL2CPP_RUNTIME_CLASS_INIT(GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var);
GC_SuppressFinalize_m037319A9B95A5BA437E806DE592802225EE5B425(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.TextWriter::Flush()
extern "C" IL2CPP_METHOD_ATTR void TextWriter_Flush_m62740B1AE48F937AF1FA4F8BDDE475A956E39E60 (TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.IO.TextWriter System.IO.TextWriter::Synchronized(System.IO.TextWriter)
extern "C" IL2CPP_METHOD_ATTR TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * TextWriter_Synchronized_m09204B9D335A228553F62AB1588490109E5DCD86 (TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * ___writer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TextWriter_Synchronized_m09204B9D335A228553F62AB1588490109E5DCD86_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_0 = ___writer0;
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, _stringLiteralFE28F10D2C6DAB4E315F2659ADAA6A4F16B5E4B8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, TextWriter_Synchronized_m09204B9D335A228553F62AB1588490109E5DCD86_RuntimeMethod_var);
}
IL_000e:
{
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_2 = ___writer0;
if (!((SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93 *)IsInstSealed((RuntimeObject*)L_2, SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93_il2cpp_TypeInfo_var)))
{
goto IL_0018;
}
}
{
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_3 = ___writer0;
return L_3;
}
IL_0018:
{
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_4 = ___writer0;
SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93 * L_5 = (SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93 *)il2cpp_codegen_object_new(SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93_il2cpp_TypeInfo_var);
SyncTextWriter__ctor_m91ED4D434EA5ADAAAC7C914E8CF4EEEED23AD3B6(L_5, L_4, /*hidden argument*/NULL);
return L_5;
}
}
// System.Void System.IO.TextWriter::Write(System.Char)
extern "C" IL2CPP_METHOD_ATTR void TextWriter_Write_mE7F1C9D723489C987D9F01A6461CB53428D84F66 (TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * __this, Il2CppChar ___value0, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.IO.TextWriter::Write(System.Char[])
extern "C" IL2CPP_METHOD_ATTR void TextWriter_Write_mD6F2EF241D48AB7ACB3ABED28374F215328D4628 (TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___buffer0, const RuntimeMethod* method)
{
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = ___buffer0;
if (!L_0)
{
goto IL_000e;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = ___buffer0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_2 = ___buffer0;
NullCheck(L_2);
VirtActionInvoker3< CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t, int32_t >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char[],System.Int32,System.Int32) */, __this, L_1, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_2)->max_length)))));
}
IL_000e:
{
return;
}
}
// System.Void System.IO.TextWriter::Write(System.Char[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void TextWriter_Write_m2F4DFB4147572864DEB552CE8AEFC04D45FB955B (TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TextWriter_Write_m2F4DFB4147572864DEB552CE8AEFC04D45FB955B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = ___buffer0;
if (L_0)
{
goto IL_0018;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB80ADA17FA6976840EA2EE6BFF02BC04F45EEBA7, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteralE53C2EA1FE4BD2B78BF4723C7C155A578E020A25, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, TextWriter_Write_m2F4DFB4147572864DEB552CE8AEFC04D45FB955B_RuntimeMethod_var);
}
IL_0018:
{
int32_t L_3 = ___index1;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
{
String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, TextWriter_Write_m2F4DFB4147572864DEB552CE8AEFC04D45FB955B_RuntimeMethod_var);
}
IL_0031:
{
int32_t L_6 = ___count2;
if ((((int32_t)L_6) >= ((int32_t)0)))
{
goto IL_004a;
}
}
{
String_t* L_7 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_8, _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, TextWriter_Write_m2F4DFB4147572864DEB552CE8AEFC04D45FB955B_RuntimeMethod_var);
}
IL_004a:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_9 = ___buffer0;
NullCheck(L_9);
int32_t L_10 = ___index1;
int32_t L_11 = ___count2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_11)))
{
goto IL_0062;
}
}
{
String_t* L_12 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_13 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_13, L_12, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, NULL, TextWriter_Write_m2F4DFB4147572864DEB552CE8AEFC04D45FB955B_RuntimeMethod_var);
}
IL_0062:
{
V_0 = 0;
goto IL_0075;
}
IL_0066:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_14 = ___buffer0;
int32_t L_15 = ___index1;
int32_t L_16 = V_0;
NullCheck(L_14);
int32_t L_17 = ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)L_16));
uint16_t L_18 = (uint16_t)(L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_17));
VirtActionInvoker1< Il2CppChar >::Invoke(11 /* System.Void System.IO.TextWriter::Write(System.Char) */, __this, L_18);
int32_t L_19 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1));
}
IL_0075:
{
int32_t L_20 = V_0;
int32_t L_21 = ___count2;
if ((((int32_t)L_20) < ((int32_t)L_21)))
{
goto IL_0066;
}
}
{
return;
}
}
// System.Void System.IO.TextWriter::Write(System.String)
extern "C" IL2CPP_METHOD_ATTR void TextWriter_Write_m1D479631E6966171EDE87988B8B1B26B5544BA21 (TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
if (!L_0)
{
goto IL_000f;
}
}
{
String_t* L_1 = ___value0;
NullCheck(L_1);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_2 = String_ToCharArray_mFCFF32A5EC698E81075E0C72C874282B9ED197A6(L_1, /*hidden argument*/NULL);
VirtActionInvoker1< CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* >::Invoke(12 /* System.Void System.IO.TextWriter::Write(System.Char[]) */, __this, L_2);
}
IL_000f:
{
return;
}
}
// System.Void System.IO.TextWriter::WriteLine()
extern "C" IL2CPP_METHOD_ATTR void TextWriter_WriteLine_mE9E9942821C80CC1DC076B71B366F2A9B09BC7D1 (TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * __this, const RuntimeMethod* method)
{
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = __this->get_CoreNewLine_9();
VirtActionInvoker1< CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* >::Invoke(12 /* System.Void System.IO.TextWriter::Write(System.Char[]) */, __this, L_0);
return;
}
}
// System.Void System.IO.TextWriter::WriteLine(System.Char)
extern "C" IL2CPP_METHOD_ATTR void TextWriter_WriteLine_m4ED7948CA4FC94450D52C3BB3A0AAF6A5E716369 (TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * __this, Il2CppChar ___value0, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = ___value0;
VirtActionInvoker1< Il2CppChar >::Invoke(11 /* System.Void System.IO.TextWriter::Write(System.Char) */, __this, L_0);
VirtActionInvoker0::Invoke(15 /* System.Void System.IO.TextWriter::WriteLine() */, __this);
return;
}
}
// System.Void System.IO.TextWriter::WriteLine(System.Char[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void TextWriter_WriteLine_mC0ADE92539E75A48BA8E884A8FF394381C77EACB (TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = ___buffer0;
int32_t L_1 = ___index1;
int32_t L_2 = ___count2;
VirtActionInvoker3< CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t, int32_t >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char[],System.Int32,System.Int32) */, __this, L_0, L_1, L_2);
VirtActionInvoker0::Invoke(15 /* System.Void System.IO.TextWriter::WriteLine() */, __this);
return;
}
}
// System.Void System.IO.TextWriter::WriteLine(System.String)
extern "C" IL2CPP_METHOD_ATTR void TextWriter_WriteLine_m8502FED0DEE6B89056D2D7D04B798D6BA8D14E38 (TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * __this, String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TextWriter_WriteLine_m8502FED0DEE6B89056D2D7D04B798D6BA8D14E38_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* V_2 = NULL;
{
String_t* L_0 = ___value0;
if (L_0)
{
goto IL_000a;
}
}
{
VirtActionInvoker0::Invoke(15 /* System.Void System.IO.TextWriter::WriteLine() */, __this);
return;
}
IL_000a:
{
String_t* L_1 = ___value0;
NullCheck(L_1);
int32_t L_2 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_1, /*hidden argument*/NULL);
V_0 = L_2;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_3 = __this->get_CoreNewLine_9();
NullCheck(L_3);
V_1 = (((int32_t)((int32_t)(((RuntimeArray *)L_3)->max_length))));
int32_t L_4 = V_0;
int32_t L_5 = V_1;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_6 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)L_5)));
V_2 = L_6;
String_t* L_7 = ___value0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_8 = V_2;
int32_t L_9 = V_0;
NullCheck(L_7);
String_CopyTo_m054B8FF2ACBBA74F60199D98259E88395EAD3661(L_7, 0, L_8, 0, L_9, /*hidden argument*/NULL);
int32_t L_10 = V_1;
if ((!(((uint32_t)L_10) == ((uint32_t)2))))
{
goto IL_004b;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_11 = V_2;
int32_t L_12 = V_0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_13 = __this->get_CoreNewLine_9();
NullCheck(L_13);
int32_t L_14 = 0;
uint16_t L_15 = (uint16_t)(L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
NullCheck(L_11);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(L_12), (Il2CppChar)L_15);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_16 = V_2;
int32_t L_17 = V_0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_18 = __this->get_CoreNewLine_9();
NullCheck(L_18);
int32_t L_19 = 1;
uint16_t L_20 = (uint16_t)(L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
NullCheck(L_16);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))), (Il2CppChar)L_20);
goto IL_0070;
}
IL_004b:
{
int32_t L_21 = V_1;
if ((!(((uint32_t)L_21) == ((uint32_t)1))))
{
goto IL_005c;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_22 = V_2;
int32_t L_23 = V_0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_24 = __this->get_CoreNewLine_9();
NullCheck(L_24);
int32_t L_25 = 0;
uint16_t L_26 = (uint16_t)(L_24)->GetAt(static_cast<il2cpp_array_size_t>(L_25));
NullCheck(L_22);
(L_22)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (Il2CppChar)L_26);
goto IL_0070;
}
IL_005c:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_27 = __this->get_CoreNewLine_9();
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_28 = V_2;
int32_t L_29 = V_0;
int32_t L_30 = V_1;
Buffer_InternalBlockCopy_m80AEF70443EFBB84D8CCC36D477B8E17A8814FC2((RuntimeArray *)(RuntimeArray *)L_27, 0, (RuntimeArray *)(RuntimeArray *)L_28, ((int32_t)il2cpp_codegen_multiply((int32_t)L_29, (int32_t)2)), ((int32_t)il2cpp_codegen_multiply((int32_t)L_30, (int32_t)2)), /*hidden argument*/NULL);
}
IL_0070:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_31 = V_2;
int32_t L_32 = V_0;
int32_t L_33 = V_1;
VirtActionInvoker3< CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t, int32_t >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char[],System.Int32,System.Int32) */, __this, L_31, 0, ((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)L_33)));
return;
}
}
// System.Void System.IO.TextWriter::WriteLine(System.String,System.Object)
extern "C" IL2CPP_METHOD_ATTR void TextWriter_WriteLine_m7653DB04BE93536287F2285C0C32915322ED7BB6 (TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * __this, String_t* ___format0, RuntimeObject * ___arg01, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = VirtFuncInvoker0< RuntimeObject* >::Invoke(7 /* System.IFormatProvider System.IO.TextWriter::get_FormatProvider() */, __this);
String_t* L_1 = ___format0;
RuntimeObject * L_2 = ___arg01;
String_t* L_3 = String_Format_m30892041DA5F50D7B8CFD82FFC0F55B5B97A2B7F(L_0, L_1, L_2, /*hidden argument*/NULL);
VirtActionInvoker1< String_t* >::Invoke(18 /* System.Void System.IO.TextWriter::WriteLine(System.String) */, __this, L_3);
return;
}
}
// System.Void System.IO.TextWriter::WriteLine(System.String,System.Object,System.Object)
extern "C" IL2CPP_METHOD_ATTR void TextWriter_WriteLine_m698736E0F50D6FEF49BA5DFB2D4DAF9710066FF3 (TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * __this, String_t* ___format0, RuntimeObject * ___arg01, RuntimeObject * ___arg12, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = VirtFuncInvoker0< RuntimeObject* >::Invoke(7 /* System.IFormatProvider System.IO.TextWriter::get_FormatProvider() */, __this);
String_t* L_1 = ___format0;
RuntimeObject * L_2 = ___arg01;
RuntimeObject * L_3 = ___arg12;
String_t* L_4 = String_Format_m453C2840536781B718FF4D0F5C7EEC8E5481C435(L_0, L_1, L_2, L_3, /*hidden argument*/NULL);
VirtActionInvoker1< String_t* >::Invoke(18 /* System.Void System.IO.TextWriter::WriteLine(System.String) */, __this, L_4);
return;
}
}
// System.Void System.IO.TextWriter::.cctor()
extern "C" IL2CPP_METHOD_ATTR void TextWriter__cctor_mD358433C9213A8F66FE33D65996DEBA8315C1219 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TextWriter__cctor_mD358433C9213A8F66FE33D65996DEBA8315C1219_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NullTextWriter_t0831C630ABC3E000027E0BD4A8FC59B3D416E3C5 * L_0 = (NullTextWriter_t0831C630ABC3E000027E0BD4A8FC59B3D416E3C5 *)il2cpp_codegen_object_new(NullTextWriter_t0831C630ABC3E000027E0BD4A8FC59B3D416E3C5_il2cpp_TypeInfo_var);
NullTextWriter__ctor_m8F8E71063B4BFCDBC22823364C0CABC7CB5EA7C6(L_0, /*hidden argument*/NULL);
((TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields*)il2cpp_codegen_static_fields_for(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_il2cpp_TypeInfo_var))->set_Null_1(L_0);
IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7_il2cpp_TypeInfo_var);
U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 * L_1 = ((U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7_il2cpp_TypeInfo_var))->get_U3CU3E9_0();
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * L_2 = (Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 *)il2cpp_codegen_object_new(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0_il2cpp_TypeInfo_var);
Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510(L_2, L_1, (intptr_t)((intptr_t)U3CU3Ec_U3C_cctorU3Eb__73_0_m3B1FF41F549E0E7AA2334079D1D26252D18105B7_RuntimeMethod_var), /*hidden argument*/Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510_RuntimeMethod_var);
((TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields*)il2cpp_codegen_static_fields_for(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_il2cpp_TypeInfo_var))->set__WriteCharDelegate_2(L_2);
U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 * L_3 = ((U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7_il2cpp_TypeInfo_var))->get_U3CU3E9_0();
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * L_4 = (Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 *)il2cpp_codegen_object_new(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0_il2cpp_TypeInfo_var);
Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510(L_4, L_3, (intptr_t)((intptr_t)U3CU3Ec_U3C_cctorU3Eb__73_1_m2EAB86EE51BF32E8DE49B5066EB33B030007F089_RuntimeMethod_var), /*hidden argument*/Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510_RuntimeMethod_var);
((TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields*)il2cpp_codegen_static_fields_for(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_il2cpp_TypeInfo_var))->set__WriteStringDelegate_3(L_4);
U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 * L_5 = ((U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7_il2cpp_TypeInfo_var))->get_U3CU3E9_0();
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * L_6 = (Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 *)il2cpp_codegen_object_new(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0_il2cpp_TypeInfo_var);
Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510(L_6, L_5, (intptr_t)((intptr_t)U3CU3Ec_U3C_cctorU3Eb__73_2_m9DBB698CF400EEC7CF39A0259760712ACC725C89_RuntimeMethod_var), /*hidden argument*/Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510_RuntimeMethod_var);
((TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields*)il2cpp_codegen_static_fields_for(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_il2cpp_TypeInfo_var))->set__WriteCharArrayRangeDelegate_4(L_6);
U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 * L_7 = ((U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7_il2cpp_TypeInfo_var))->get_U3CU3E9_0();
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * L_8 = (Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 *)il2cpp_codegen_object_new(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0_il2cpp_TypeInfo_var);
Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510(L_8, L_7, (intptr_t)((intptr_t)U3CU3Ec_U3C_cctorU3Eb__73_3_mACCED9B9CC89A76110744CF30009510404F8C3C3_RuntimeMethod_var), /*hidden argument*/Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510_RuntimeMethod_var);
((TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields*)il2cpp_codegen_static_fields_for(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_il2cpp_TypeInfo_var))->set__WriteLineCharDelegate_5(L_8);
U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 * L_9 = ((U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7_il2cpp_TypeInfo_var))->get_U3CU3E9_0();
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * L_10 = (Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 *)il2cpp_codegen_object_new(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0_il2cpp_TypeInfo_var);
Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510(L_10, L_9, (intptr_t)((intptr_t)U3CU3Ec_U3C_cctorU3Eb__73_4_mB71BEAAAD8D1B478FCB0385F8305C170C4E9ACBD_RuntimeMethod_var), /*hidden argument*/Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510_RuntimeMethod_var);
((TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields*)il2cpp_codegen_static_fields_for(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_il2cpp_TypeInfo_var))->set__WriteLineStringDelegate_6(L_10);
U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 * L_11 = ((U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7_il2cpp_TypeInfo_var))->get_U3CU3E9_0();
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * L_12 = (Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 *)il2cpp_codegen_object_new(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0_il2cpp_TypeInfo_var);
Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510(L_12, L_11, (intptr_t)((intptr_t)U3CU3Ec_U3C_cctorU3Eb__73_5_m088E29ED249A2EC902368BF4FCD1A9D335B5E733_RuntimeMethod_var), /*hidden argument*/Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510_RuntimeMethod_var);
((TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields*)il2cpp_codegen_static_fields_for(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_il2cpp_TypeInfo_var))->set__WriteLineCharArrayRangeDelegate_7(L_12);
U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 * L_13 = ((U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7_il2cpp_TypeInfo_var))->get_U3CU3E9_0();
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * L_14 = (Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 *)il2cpp_codegen_object_new(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0_il2cpp_TypeInfo_var);
Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510(L_14, L_13, (intptr_t)((intptr_t)U3CU3Ec_U3C_cctorU3Eb__73_6_mF5D48543C70DDB142FA1A87A3312AEA854A5DC3D_RuntimeMethod_var), /*hidden argument*/Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510_RuntimeMethod_var);
((TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields*)il2cpp_codegen_static_fields_for(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_il2cpp_TypeInfo_var))->set__FlushDelegate_8(L_14);
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 System.IO.TextWriter_<>c::.cctor()
extern "C" IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m8FECC4F9793F3511CB4737E4315989A627B9BA94 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec__cctor_m8FECC4F9793F3511CB4737E4315989A627B9BA94_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 * L_0 = (U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 *)il2cpp_codegen_object_new(U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7_il2cpp_TypeInfo_var);
U3CU3Ec__ctor_m4BFB82C1926D0A1E0F29F2793EEF2848A79883C6(L_0, /*hidden argument*/NULL);
((U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7_il2cpp_TypeInfo_var))->set_U3CU3E9_0(L_0);
return;
}
}
// System.Void System.IO.TextWriter_<>c::.ctor()
extern "C" IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m4BFB82C1926D0A1E0F29F2793EEF2848A79883C6 (U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.TextWriter_<>c::<.cctor>b__73_0(System.Object)
extern "C" IL2CPP_METHOD_ATTR void U3CU3Ec_U3C_cctorU3Eb__73_0_m3B1FF41F549E0E7AA2334079D1D26252D18105B7 (U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 * __this, RuntimeObject * ___state0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec_U3C_cctorU3Eb__73_0_m3B1FF41F549E0E7AA2334079D1D26252D18105B7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_2_t090B35D3DF6A166894F43442BEFD1A1F08D0EEC8 * V_0 = NULL;
{
RuntimeObject * L_0 = ___state0;
V_0 = ((Tuple_2_t090B35D3DF6A166894F43442BEFD1A1F08D0EEC8 *)CastclassClass((RuntimeObject*)L_0, Tuple_2_t090B35D3DF6A166894F43442BEFD1A1F08D0EEC8_il2cpp_TypeInfo_var));
Tuple_2_t090B35D3DF6A166894F43442BEFD1A1F08D0EEC8 * L_1 = V_0;
NullCheck(L_1);
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_2 = Tuple_2_get_Item1_m527678C5A00E2F9C507E8D584FB3DC1C322626E2(L_1, /*hidden argument*/Tuple_2_get_Item1_m527678C5A00E2F9C507E8D584FB3DC1C322626E2_RuntimeMethod_var);
Tuple_2_t090B35D3DF6A166894F43442BEFD1A1F08D0EEC8 * L_3 = V_0;
NullCheck(L_3);
Il2CppChar L_4 = Tuple_2_get_Item2_m5C14925582F6593098C9A7B04EED31F70AE0D908(L_3, /*hidden argument*/Tuple_2_get_Item2_m5C14925582F6593098C9A7B04EED31F70AE0D908_RuntimeMethod_var);
NullCheck(L_2);
VirtActionInvoker1< Il2CppChar >::Invoke(11 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_2, L_4);
return;
}
}
// System.Void System.IO.TextWriter_<>c::<.cctor>b__73_1(System.Object)
extern "C" IL2CPP_METHOD_ATTR void U3CU3Ec_U3C_cctorU3Eb__73_1_m2EAB86EE51BF32E8DE49B5066EB33B030007F089 (U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 * __this, RuntimeObject * ___state0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec_U3C_cctorU3Eb__73_1_m2EAB86EE51BF32E8DE49B5066EB33B030007F089_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_2_tD1FC5C7507045B6D28C0A35144BF8C31F5FAC962 * V_0 = NULL;
{
RuntimeObject * L_0 = ___state0;
V_0 = ((Tuple_2_tD1FC5C7507045B6D28C0A35144BF8C31F5FAC962 *)CastclassClass((RuntimeObject*)L_0, Tuple_2_tD1FC5C7507045B6D28C0A35144BF8C31F5FAC962_il2cpp_TypeInfo_var));
Tuple_2_tD1FC5C7507045B6D28C0A35144BF8C31F5FAC962 * L_1 = V_0;
NullCheck(L_1);
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_2 = Tuple_2_get_Item1_mA19909B4C3EABD3B8D6195E5E7F669EE836229E1(L_1, /*hidden argument*/Tuple_2_get_Item1_mA19909B4C3EABD3B8D6195E5E7F669EE836229E1_RuntimeMethod_var);
Tuple_2_tD1FC5C7507045B6D28C0A35144BF8C31F5FAC962 * L_3 = V_0;
NullCheck(L_3);
String_t* L_4 = Tuple_2_get_Item2_m70254B4E070331E2DEFB6DFAC62E3AA89487CF9B(L_3, /*hidden argument*/Tuple_2_get_Item2_m70254B4E070331E2DEFB6DFAC62E3AA89487CF9B_RuntimeMethod_var);
NullCheck(L_2);
VirtActionInvoker1< String_t* >::Invoke(14 /* System.Void System.IO.TextWriter::Write(System.String) */, L_2, L_4);
return;
}
}
// System.Void System.IO.TextWriter_<>c::<.cctor>b__73_2(System.Object)
extern "C" IL2CPP_METHOD_ATTR void U3CU3Ec_U3C_cctorU3Eb__73_2_m9DBB698CF400EEC7CF39A0259760712ACC725C89 (U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 * __this, RuntimeObject * ___state0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec_U3C_cctorU3Eb__73_2_m9DBB698CF400EEC7CF39A0259760712ACC725C89_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094 * V_0 = NULL;
{
RuntimeObject * L_0 = ___state0;
V_0 = ((Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094 *)CastclassClass((RuntimeObject*)L_0, Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094_il2cpp_TypeInfo_var));
Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094 * L_1 = V_0;
NullCheck(L_1);
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_2 = Tuple_4_get_Item1_m32F731E4D564371F4E37481673CA7CF2F7BD5272(L_1, /*hidden argument*/Tuple_4_get_Item1_m32F731E4D564371F4E37481673CA7CF2F7BD5272_RuntimeMethod_var);
Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094 * L_3 = V_0;
NullCheck(L_3);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_4 = Tuple_4_get_Item2_mF40CE211C4A2B12E95DA95E399E6F83EEDC21BC4(L_3, /*hidden argument*/Tuple_4_get_Item2_mF40CE211C4A2B12E95DA95E399E6F83EEDC21BC4_RuntimeMethod_var);
Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094 * L_5 = V_0;
NullCheck(L_5);
int32_t L_6 = Tuple_4_get_Item3_mABD6CF1A9B4DE5BABDC83733456B99CD19C26F46(L_5, /*hidden argument*/Tuple_4_get_Item3_mABD6CF1A9B4DE5BABDC83733456B99CD19C26F46_RuntimeMethod_var);
Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094 * L_7 = V_0;
NullCheck(L_7);
int32_t L_8 = Tuple_4_get_Item4_mDA629EEB249C899F4520F710850DB753C680B86E(L_7, /*hidden argument*/Tuple_4_get_Item4_mDA629EEB249C899F4520F710850DB753C680B86E_RuntimeMethod_var);
NullCheck(L_2);
VirtActionInvoker3< CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t, int32_t >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char[],System.Int32,System.Int32) */, L_2, L_4, L_6, L_8);
return;
}
}
// System.Void System.IO.TextWriter_<>c::<.cctor>b__73_3(System.Object)
extern "C" IL2CPP_METHOD_ATTR void U3CU3Ec_U3C_cctorU3Eb__73_3_mACCED9B9CC89A76110744CF30009510404F8C3C3 (U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 * __this, RuntimeObject * ___state0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec_U3C_cctorU3Eb__73_3_mACCED9B9CC89A76110744CF30009510404F8C3C3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_2_t090B35D3DF6A166894F43442BEFD1A1F08D0EEC8 * V_0 = NULL;
{
RuntimeObject * L_0 = ___state0;
V_0 = ((Tuple_2_t090B35D3DF6A166894F43442BEFD1A1F08D0EEC8 *)CastclassClass((RuntimeObject*)L_0, Tuple_2_t090B35D3DF6A166894F43442BEFD1A1F08D0EEC8_il2cpp_TypeInfo_var));
Tuple_2_t090B35D3DF6A166894F43442BEFD1A1F08D0EEC8 * L_1 = V_0;
NullCheck(L_1);
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_2 = Tuple_2_get_Item1_m527678C5A00E2F9C507E8D584FB3DC1C322626E2(L_1, /*hidden argument*/Tuple_2_get_Item1_m527678C5A00E2F9C507E8D584FB3DC1C322626E2_RuntimeMethod_var);
Tuple_2_t090B35D3DF6A166894F43442BEFD1A1F08D0EEC8 * L_3 = V_0;
NullCheck(L_3);
Il2CppChar L_4 = Tuple_2_get_Item2_m5C14925582F6593098C9A7B04EED31F70AE0D908(L_3, /*hidden argument*/Tuple_2_get_Item2_m5C14925582F6593098C9A7B04EED31F70AE0D908_RuntimeMethod_var);
NullCheck(L_2);
VirtActionInvoker1< Il2CppChar >::Invoke(16 /* System.Void System.IO.TextWriter::WriteLine(System.Char) */, L_2, L_4);
return;
}
}
// System.Void System.IO.TextWriter_<>c::<.cctor>b__73_4(System.Object)
extern "C" IL2CPP_METHOD_ATTR void U3CU3Ec_U3C_cctorU3Eb__73_4_mB71BEAAAD8D1B478FCB0385F8305C170C4E9ACBD (U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 * __this, RuntimeObject * ___state0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec_U3C_cctorU3Eb__73_4_mB71BEAAAD8D1B478FCB0385F8305C170C4E9ACBD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_2_tD1FC5C7507045B6D28C0A35144BF8C31F5FAC962 * V_0 = NULL;
{
RuntimeObject * L_0 = ___state0;
V_0 = ((Tuple_2_tD1FC5C7507045B6D28C0A35144BF8C31F5FAC962 *)CastclassClass((RuntimeObject*)L_0, Tuple_2_tD1FC5C7507045B6D28C0A35144BF8C31F5FAC962_il2cpp_TypeInfo_var));
Tuple_2_tD1FC5C7507045B6D28C0A35144BF8C31F5FAC962 * L_1 = V_0;
NullCheck(L_1);
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_2 = Tuple_2_get_Item1_mA19909B4C3EABD3B8D6195E5E7F669EE836229E1(L_1, /*hidden argument*/Tuple_2_get_Item1_mA19909B4C3EABD3B8D6195E5E7F669EE836229E1_RuntimeMethod_var);
Tuple_2_tD1FC5C7507045B6D28C0A35144BF8C31F5FAC962 * L_3 = V_0;
NullCheck(L_3);
String_t* L_4 = Tuple_2_get_Item2_m70254B4E070331E2DEFB6DFAC62E3AA89487CF9B(L_3, /*hidden argument*/Tuple_2_get_Item2_m70254B4E070331E2DEFB6DFAC62E3AA89487CF9B_RuntimeMethod_var);
NullCheck(L_2);
VirtActionInvoker1< String_t* >::Invoke(18 /* System.Void System.IO.TextWriter::WriteLine(System.String) */, L_2, L_4);
return;
}
}
// System.Void System.IO.TextWriter_<>c::<.cctor>b__73_5(System.Object)
extern "C" IL2CPP_METHOD_ATTR void U3CU3Ec_U3C_cctorU3Eb__73_5_m088E29ED249A2EC902368BF4FCD1A9D335B5E733 (U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 * __this, RuntimeObject * ___state0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec_U3C_cctorU3Eb__73_5_m088E29ED249A2EC902368BF4FCD1A9D335B5E733_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094 * V_0 = NULL;
{
RuntimeObject * L_0 = ___state0;
V_0 = ((Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094 *)CastclassClass((RuntimeObject*)L_0, Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094_il2cpp_TypeInfo_var));
Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094 * L_1 = V_0;
NullCheck(L_1);
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_2 = Tuple_4_get_Item1_m32F731E4D564371F4E37481673CA7CF2F7BD5272(L_1, /*hidden argument*/Tuple_4_get_Item1_m32F731E4D564371F4E37481673CA7CF2F7BD5272_RuntimeMethod_var);
Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094 * L_3 = V_0;
NullCheck(L_3);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_4 = Tuple_4_get_Item2_mF40CE211C4A2B12E95DA95E399E6F83EEDC21BC4(L_3, /*hidden argument*/Tuple_4_get_Item2_mF40CE211C4A2B12E95DA95E399E6F83EEDC21BC4_RuntimeMethod_var);
Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094 * L_5 = V_0;
NullCheck(L_5);
int32_t L_6 = Tuple_4_get_Item3_mABD6CF1A9B4DE5BABDC83733456B99CD19C26F46(L_5, /*hidden argument*/Tuple_4_get_Item3_mABD6CF1A9B4DE5BABDC83733456B99CD19C26F46_RuntimeMethod_var);
Tuple_4_tC75BD1E53ABE4CA2D4365A765E9818A74C349094 * L_7 = V_0;
NullCheck(L_7);
int32_t L_8 = Tuple_4_get_Item4_mDA629EEB249C899F4520F710850DB753C680B86E(L_7, /*hidden argument*/Tuple_4_get_Item4_mDA629EEB249C899F4520F710850DB753C680B86E_RuntimeMethod_var);
NullCheck(L_2);
VirtActionInvoker3< CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t, int32_t >::Invoke(17 /* System.Void System.IO.TextWriter::WriteLine(System.Char[],System.Int32,System.Int32) */, L_2, L_4, L_6, L_8);
return;
}
}
// System.Void System.IO.TextWriter_<>c::<.cctor>b__73_6(System.Object)
extern "C" IL2CPP_METHOD_ATTR void U3CU3Ec_U3C_cctorU3Eb__73_6_mF5D48543C70DDB142FA1A87A3312AEA854A5DC3D (U3CU3Ec_tD60344454053DCF4B3CBDE46ACE0FEA519855BA7 * __this, RuntimeObject * ___state0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec_U3C_cctorU3Eb__73_6_mF5D48543C70DDB142FA1A87A3312AEA854A5DC3D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___state0;
NullCheck(((TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 *)CastclassClass((RuntimeObject*)L_0, TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_il2cpp_TypeInfo_var)));
VirtActionInvoker0::Invoke(10 /* System.Void System.IO.TextWriter::Flush() */, ((TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 *)CastclassClass((RuntimeObject*)L_0, TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_il2cpp_TypeInfo_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 System.IO.TextWriter_NullTextWriter::.ctor()
extern "C" IL2CPP_METHOD_ATTR void NullTextWriter__ctor_m8F8E71063B4BFCDBC22823364C0CABC7CB5EA7C6 (NullTextWriter_t0831C630ABC3E000027E0BD4A8FC59B3D416E3C5 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NullTextWriter__ctor_m8F8E71063B4BFCDBC22823364C0CABC7CB5EA7C6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_il2cpp_TypeInfo_var);
TextWriter__ctor_mB84CC0FA15C2F1759F4FFAB205C3E311EFAF3715(__this, L_0, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.TextWriter_NullTextWriter::Write(System.Char[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void NullTextWriter_Write_mF69A71F697DCA9CC7C94225F169ABB0FCFB01891 (NullTextWriter_t0831C630ABC3E000027E0BD4A8FC59B3D416E3C5 * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.IO.TextWriter_NullTextWriter::Write(System.String)
extern "C" IL2CPP_METHOD_ATTR void NullTextWriter_Write_m12488A34B132CA8228E0EF57536D5B7FC2861B0C (NullTextWriter_t0831C630ABC3E000027E0BD4A8FC59B3D416E3C5 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.IO.TextWriter_NullTextWriter::WriteLine()
extern "C" IL2CPP_METHOD_ATTR void NullTextWriter_WriteLine_m8C3873CDB0215EF63E6C33843BE0BBB83579754E (NullTextWriter_t0831C630ABC3E000027E0BD4A8FC59B3D416E3C5 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.IO.TextWriter_NullTextWriter::WriteLine(System.String)
extern "C" IL2CPP_METHOD_ATTR void NullTextWriter_WriteLine_mC34013993C7E5A74E073F7A8D55E7B4C047B2C93 (NullTextWriter_t0831C630ABC3E000027E0BD4A8FC59B3D416E3C5 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
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 System.IO.TextWriter_SyncTextWriter::.ctor(System.IO.TextWriter)
extern "C" IL2CPP_METHOD_ATTR void SyncTextWriter__ctor_m91ED4D434EA5ADAAAC7C914E8CF4EEEED23AD3B6 (SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93 * __this, TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * ___t0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SyncTextWriter__ctor_m91ED4D434EA5ADAAAC7C914E8CF4EEEED23AD3B6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_0 = ___t0;
NullCheck(L_0);
IL2CPP_RUNTIME_CLASS_INIT(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_il2cpp_TypeInfo_var);
RuntimeObject* L_1 = VirtFuncInvoker0< RuntimeObject* >::Invoke(7 /* System.IFormatProvider System.IO.TextWriter::get_FormatProvider() */, L_0);
TextWriter__ctor_mB84CC0FA15C2F1759F4FFAB205C3E311EFAF3715(__this, L_1, /*hidden argument*/NULL);
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_2 = ___t0;
__this->set__out_11(L_2);
return;
}
}
// System.IFormatProvider System.IO.TextWriter_SyncTextWriter::get_FormatProvider()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* SyncTextWriter_get_FormatProvider_mBB5A7B1A93E0C77355564F9EC85D4C5F2FF41774 (SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93 * __this, const RuntimeMethod* method)
{
{
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_0 = __this->get__out_11();
NullCheck(L_0);
RuntimeObject* L_1 = VirtFuncInvoker0< RuntimeObject* >::Invoke(7 /* System.IFormatProvider System.IO.TextWriter::get_FormatProvider() */, L_0);
return L_1;
}
}
// System.Void System.IO.TextWriter_SyncTextWriter::Close()
extern "C" IL2CPP_METHOD_ATTR void SyncTextWriter_Close_m442CBB7A7C6A0BAAE2EF72D4016AF3C5C035DD29 (SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93 * __this, const RuntimeMethod* method)
{
{
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_0 = __this->get__out_11();
NullCheck(L_0);
VirtActionInvoker0::Invoke(8 /* System.Void System.IO.TextWriter::Close() */, L_0);
return;
}
}
// System.Void System.IO.TextWriter_SyncTextWriter::Dispose(System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void SyncTextWriter_Dispose_m12B3249821E891828F58F13CBD6F154F4FE739D6 (SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93 * __this, bool ___disposing0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SyncTextWriter_Dispose_m12B3249821E891828F58F13CBD6F154F4FE739D6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = ___disposing0;
if (!L_0)
{
goto IL_000e;
}
}
{
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_1 = __this->get__out_11();
NullCheck(L_1);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_1);
}
IL_000e:
{
return;
}
}
// System.Void System.IO.TextWriter_SyncTextWriter::Flush()
extern "C" IL2CPP_METHOD_ATTR void SyncTextWriter_Flush_m7EAECB076AD3E34C2F20C8958D04A07C6E0EEB8E (SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93 * __this, const RuntimeMethod* method)
{
{
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_0 = __this->get__out_11();
NullCheck(L_0);
VirtActionInvoker0::Invoke(10 /* System.Void System.IO.TextWriter::Flush() */, L_0);
return;
}
}
// System.Void System.IO.TextWriter_SyncTextWriter::Write(System.Char)
extern "C" IL2CPP_METHOD_ATTR void SyncTextWriter_Write_m64F839E2DBBEEBB6DCF1B52A5514C16B09EE904E (SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93 * __this, Il2CppChar ___value0, const RuntimeMethod* method)
{
{
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_0 = __this->get__out_11();
Il2CppChar L_1 = ___value0;
NullCheck(L_0);
VirtActionInvoker1< Il2CppChar >::Invoke(11 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_0, L_1);
return;
}
}
// System.Void System.IO.TextWriter_SyncTextWriter::Write(System.Char[])
extern "C" IL2CPP_METHOD_ATTR void SyncTextWriter_Write_mF91F1AD887FB1A3F1F65FC78AD0DC2491FE594BC (SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93 * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___buffer0, const RuntimeMethod* method)
{
{
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_0 = __this->get__out_11();
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = ___buffer0;
NullCheck(L_0);
VirtActionInvoker1< CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* >::Invoke(12 /* System.Void System.IO.TextWriter::Write(System.Char[]) */, L_0, L_1);
return;
}
}
// System.Void System.IO.TextWriter_SyncTextWriter::Write(System.Char[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void SyncTextWriter_Write_mC1289A4071793D109F52EEFD91F60A0E47B4301A (SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93 * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
{
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_0 = __this->get__out_11();
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = ___buffer0;
int32_t L_2 = ___index1;
int32_t L_3 = ___count2;
NullCheck(L_0);
VirtActionInvoker3< CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t, int32_t >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char[],System.Int32,System.Int32) */, L_0, L_1, L_2, L_3);
return;
}
}
// System.Void System.IO.TextWriter_SyncTextWriter::Write(System.String)
extern "C" IL2CPP_METHOD_ATTR void SyncTextWriter_Write_m92C21C91A51100364BE09F47CA47EFC8750EFBE9 (SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_0 = __this->get__out_11();
String_t* L_1 = ___value0;
NullCheck(L_0);
VirtActionInvoker1< String_t* >::Invoke(14 /* System.Void System.IO.TextWriter::Write(System.String) */, L_0, L_1);
return;
}
}
// System.Void System.IO.TextWriter_SyncTextWriter::WriteLine()
extern "C" IL2CPP_METHOD_ATTR void SyncTextWriter_WriteLine_mD2575724C2BE602AEEA1B1CB85F17D13C1BD12BC (SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93 * __this, const RuntimeMethod* method)
{
{
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_0 = __this->get__out_11();
NullCheck(L_0);
VirtActionInvoker0::Invoke(15 /* System.Void System.IO.TextWriter::WriteLine() */, L_0);
return;
}
}
// System.Void System.IO.TextWriter_SyncTextWriter::WriteLine(System.Char)
extern "C" IL2CPP_METHOD_ATTR void SyncTextWriter_WriteLine_m86746149A91B63666E3CE190D35B7DC90934A2BD (SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93 * __this, Il2CppChar ___value0, const RuntimeMethod* method)
{
{
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_0 = __this->get__out_11();
Il2CppChar L_1 = ___value0;
NullCheck(L_0);
VirtActionInvoker1< Il2CppChar >::Invoke(16 /* System.Void System.IO.TextWriter::WriteLine(System.Char) */, L_0, L_1);
return;
}
}
// System.Void System.IO.TextWriter_SyncTextWriter::WriteLine(System.Char[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void SyncTextWriter_WriteLine_m06EC7583D518BB9C99BA602F182A0663FE903B4A (SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93 * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
{
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_0 = __this->get__out_11();
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = ___buffer0;
int32_t L_2 = ___index1;
int32_t L_3 = ___count2;
NullCheck(L_0);
VirtActionInvoker3< CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t, int32_t >::Invoke(17 /* System.Void System.IO.TextWriter::WriteLine(System.Char[],System.Int32,System.Int32) */, L_0, L_1, L_2, L_3);
return;
}
}
// System.Void System.IO.TextWriter_SyncTextWriter::WriteLine(System.String)
extern "C" IL2CPP_METHOD_ATTR void SyncTextWriter_WriteLine_m586CCCF724615A32FCBB0FF416472DABFB1AFB4D (SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_0 = __this->get__out_11();
String_t* L_1 = ___value0;
NullCheck(L_0);
VirtActionInvoker1< String_t* >::Invoke(18 /* System.Void System.IO.TextWriter::WriteLine(System.String) */, L_0, L_1);
return;
}
}
// System.Void System.IO.TextWriter_SyncTextWriter::WriteLine(System.String,System.Object)
extern "C" IL2CPP_METHOD_ATTR void SyncTextWriter_WriteLine_m227BA2E9F86D78A62851054DFFA9F9056B634478 (SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93 * __this, String_t* ___format0, RuntimeObject * ___arg01, const RuntimeMethod* method)
{
{
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_0 = __this->get__out_11();
String_t* L_1 = ___format0;
RuntimeObject * L_2 = ___arg01;
NullCheck(L_0);
VirtActionInvoker2< String_t*, RuntimeObject * >::Invoke(19 /* System.Void System.IO.TextWriter::WriteLine(System.String,System.Object) */, L_0, L_1, L_2);
return;
}
}
// System.Void System.IO.TextWriter_SyncTextWriter::WriteLine(System.String,System.Object,System.Object)
extern "C" IL2CPP_METHOD_ATTR void SyncTextWriter_WriteLine_m846B11A612E51525E7FCBB9ACA85BFA816373DE6 (SyncTextWriter_t6F72D25BA0E09A41BB4AAAE9B02533644C78FC93 * __this, String_t* ___format0, RuntimeObject * ___arg01, RuntimeObject * ___arg12, const RuntimeMethod* method)
{
{
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_0 = __this->get__out_11();
String_t* L_1 = ___format0;
RuntimeObject * L_2 = ___arg01;
RuntimeObject * L_3 = ___arg12;
NullCheck(L_0);
VirtActionInvoker3< String_t*, RuntimeObject *, RuntimeObject * >::Invoke(20 /* System.Void System.IO.TextWriter::WriteLine(System.String,System.Object,System.Object) */, L_0, L_1, L_2, L_3);
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 System.IO.UnexceptionalStreamReader::.cctor()
extern "C" IL2CPP_METHOD_ATTR void UnexceptionalStreamReader__cctor_m8030C6E3F2620159376D6BB9B035D9F4E99B3A0A (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnexceptionalStreamReader__cctor_m8030C6E3F2620159376D6BB9B035D9F4E99B3A0A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
String_t* L_0 = Environment_get_NewLine_m5D4F4667FA5D1E2DBDD4DF9696D0CE76C83EF318(/*hidden argument*/NULL);
NullCheck(L_0);
int32_t L_1 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_0, /*hidden argument*/NULL);
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_2 = (BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040*)SZArrayNew(BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040_il2cpp_TypeInfo_var, (uint32_t)L_1);
((UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_StaticFields*)il2cpp_codegen_static_fields_for(UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_il2cpp_TypeInfo_var))->set_newline_21(L_2);
String_t* L_3 = Environment_get_NewLine_m5D4F4667FA5D1E2DBDD4DF9696D0CE76C83EF318(/*hidden argument*/NULL);
V_0 = L_3;
String_t* L_4 = V_0;
NullCheck(L_4);
int32_t L_5 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_4, /*hidden argument*/NULL);
if ((!(((uint32_t)L_5) == ((uint32_t)1))))
{
goto IL_002f;
}
}
{
String_t* L_6 = V_0;
NullCheck(L_6);
Il2CppChar L_7 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_6, 0, /*hidden argument*/NULL);
((UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_StaticFields*)il2cpp_codegen_static_fields_for(UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_il2cpp_TypeInfo_var))->set_newlineChar_22(L_7);
}
IL_002f:
{
return;
}
}
// System.Void System.IO.UnexceptionalStreamReader::.ctor(System.IO.Stream,System.Text.Encoding)
extern "C" IL2CPP_METHOD_ATTR void UnexceptionalStreamReader__ctor_m66258235565573CF051C6F053EADEEF9A67A084D (UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnexceptionalStreamReader__ctor_m66258235565573CF051C6F053EADEEF9A67A084D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_0 = ___stream0;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_1 = ___encoding1;
IL2CPP_RUNTIME_CLASS_INIT(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E_il2cpp_TypeInfo_var);
StreamReader__ctor_mF319C927A1274118E912D93F2EB2AAE4DA17E3DC(__this, L_0, L_1, /*hidden argument*/NULL);
return;
}
}
// System.Int32 System.IO.UnexceptionalStreamReader::Peek()
extern "C" IL2CPP_METHOD_ATTR int32_t UnexceptionalStreamReader_Peek_mB5A106F3ABBC672E906ECC85D2C78D2EBC5975A7 (UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnexceptionalStreamReader_Peek_mB5A106F3ABBC672E906ECC85D2C78D2EBC5975A7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
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);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
IL_0000:
try
{ // begin try (depth: 1)
int32_t L_0 = StreamReader_Peek_m8C914AF78EEF625B3DD817688FF76FCA1BA62E50(__this, /*hidden argument*/NULL);
V_0 = L_0;
goto IL_000e;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0009;
throw e;
}
CATCH_0009:
{ // begin catch(System.IO.IOException)
goto IL_000c;
} // end catch (depth: 1)
IL_000c:
{
return (-1);
}
IL_000e:
{
int32_t L_1 = V_0;
return L_1;
}
}
// System.Int32 System.IO.UnexceptionalStreamReader::Read()
extern "C" IL2CPP_METHOD_ATTR int32_t UnexceptionalStreamReader_Read_m763AE2B1D9BB0572ACE16E91236FAF9C716DC359 (UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnexceptionalStreamReader_Read_m763AE2B1D9BB0572ACE16E91236FAF9C716DC359_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
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);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
IL_0000:
try
{ // begin try (depth: 1)
int32_t L_0 = StreamReader_Read_m04DCEDFC21FBC69F0E795164739D799FEA69562E(__this, /*hidden argument*/NULL);
V_0 = L_0;
goto IL_000e;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0009;
throw e;
}
CATCH_0009:
{ // begin catch(System.IO.IOException)
goto IL_000c;
} // end catch (depth: 1)
IL_000c:
{
return (-1);
}
IL_000e:
{
int32_t L_1 = V_0;
return L_1;
}
}
// System.Int32 System.IO.UnexceptionalStreamReader::Read(System.Char[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t UnexceptionalStreamReader_Read_mCDBCFCCE88507C52224150414BE559B996428195 (UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___dest_buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnexceptionalStreamReader_Read_mCDBCFCCE88507C52224150414BE559B996428195_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Il2CppChar V_1 = 0x0;
int32_t V_2 = 0;
int32_t V_3 = 0;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = ___dest_buffer0;
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, _stringLiteral2D3767ECF17FE52403E47357B1DE071CC86B255E, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, UnexceptionalStreamReader_Read_mCDBCFCCE88507C52224150414BE559B996428195_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
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, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, _stringLiteralDAA58D8010113F4E181D2FE5796A123551AAA764, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, UnexceptionalStreamReader_Read_mCDBCFCCE88507C52224150414BE559B996428195_RuntimeMethod_var);
}
IL_0022:
{
int32_t L_4 = ___count2;
if ((((int32_t)L_4) >= ((int32_t)0)))
{
goto IL_0036;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, _stringLiteralDAA58D8010113F4E181D2FE5796A123551AAA764, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, UnexceptionalStreamReader_Read_mCDBCFCCE88507C52224150414BE559B996428195_RuntimeMethod_var);
}
IL_0036:
{
int32_t L_6 = ___index1;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_7 = ___dest_buffer0;
NullCheck(L_7);
int32_t L_8 = ___count2;
if ((((int32_t)L_6) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_7)->max_length)))), (int32_t)L_8)))))
{
goto IL_0049;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, _stringLiteral0253A7DA857E36DFB4AB8D7957C356E36829F5F7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, UnexceptionalStreamReader_Read_mCDBCFCCE88507C52224150414BE559B996428195_RuntimeMethod_var);
}
IL_0049:
{
V_0 = 0;
IL2CPP_RUNTIME_CLASS_INIT(UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_il2cpp_TypeInfo_var);
Il2CppChar L_10 = ((UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_StaticFields*)il2cpp_codegen_static_fields_for(UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_il2cpp_TypeInfo_var))->get_newlineChar_22();
V_1 = L_10;
}
IL_0051:
try
{ // begin try (depth: 1)
{
goto IL_008b;
}
IL_0053:
{
int32_t L_11 = StreamReader_Read_m04DCEDFC21FBC69F0E795164739D799FEA69562E(__this, /*hidden argument*/NULL);
V_2 = L_11;
int32_t L_12 = V_2;
if ((((int32_t)L_12) < ((int32_t)0)))
{
goto IL_008f;
}
}
IL_005e:
{
int32_t L_13 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1));
int32_t L_14 = ___count2;
___count2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)1));
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_15 = ___dest_buffer0;
int32_t L_16 = ___index1;
int32_t L_17 = V_2;
NullCheck(L_15);
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(L_16), (Il2CppChar)(((int32_t)((uint16_t)L_17))));
Il2CppChar L_18 = V_1;
if (!L_18)
{
goto IL_0078;
}
}
IL_006f:
{
int32_t L_19 = V_2;
Il2CppChar L_20 = V_1;
if ((!(((uint32_t)(((int32_t)((uint16_t)L_19)))) == ((uint32_t)L_20))))
{
goto IL_0086;
}
}
IL_0074:
{
int32_t L_21 = V_0;
V_3 = L_21;
goto IL_0096;
}
IL_0078:
{
int32_t L_22 = V_2;
bool L_23 = UnexceptionalStreamReader_CheckEOL_mB2A29E7FB02FC55ADFCA77C29386227B66AD0199(__this, (((int32_t)((uint16_t)L_22))), /*hidden argument*/NULL);
if (!L_23)
{
goto IL_0086;
}
}
IL_0082:
{
int32_t L_24 = V_0;
V_3 = L_24;
goto IL_0096;
}
IL_0086:
{
int32_t L_25 = ___index1;
___index1 = ((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
}
IL_008b:
{
int32_t L_26 = ___count2;
if ((((int32_t)L_26) > ((int32_t)0)))
{
goto IL_0053;
}
}
IL_008f:
{
goto IL_0094;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0091;
throw e;
}
CATCH_0091:
{ // begin catch(System.IO.IOException)
goto IL_0094;
} // end catch (depth: 1)
IL_0094:
{
int32_t L_27 = V_0;
return L_27;
}
IL_0096:
{
int32_t L_28 = V_3;
return L_28;
}
}
// System.Boolean System.IO.UnexceptionalStreamReader::CheckEOL(System.Char)
extern "C" IL2CPP_METHOD_ATTR bool UnexceptionalStreamReader_CheckEOL_mB2A29E7FB02FC55ADFCA77C29386227B66AD0199 (UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA * __this, Il2CppChar ___current0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnexceptionalStreamReader_CheckEOL_mB2A29E7FB02FC55ADFCA77C29386227B66AD0199_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
V_0 = 0;
goto IL_0034;
}
IL_0004:
{
IL2CPP_RUNTIME_CLASS_INIT(UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_il2cpp_TypeInfo_var);
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_0 = ((UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_StaticFields*)il2cpp_codegen_static_fields_for(UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_il2cpp_TypeInfo_var))->get_newline_21();
int32_t L_1 = V_0;
NullCheck(L_0);
int32_t L_2 = L_1;
uint8_t L_3 = (uint8_t)(L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
if (L_3)
{
goto IL_0030;
}
}
{
Il2CppChar L_4 = ___current0;
String_t* L_5 = Environment_get_NewLine_m5D4F4667FA5D1E2DBDD4DF9696D0CE76C83EF318(/*hidden argument*/NULL);
int32_t L_6 = V_0;
NullCheck(L_5);
Il2CppChar L_7 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_5, L_6, /*hidden argument*/NULL);
if ((!(((uint32_t)L_4) == ((uint32_t)L_7))))
{
goto IL_003e;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_il2cpp_TypeInfo_var);
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_8 = ((UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_StaticFields*)il2cpp_codegen_static_fields_for(UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_il2cpp_TypeInfo_var))->get_newline_21();
int32_t L_9 = V_0;
NullCheck(L_8);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(L_9), (bool)1);
int32_t L_10 = V_0;
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_11 = ((UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_StaticFields*)il2cpp_codegen_static_fields_for(UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_il2cpp_TypeInfo_var))->get_newline_21();
NullCheck(L_11);
return (bool)((((int32_t)L_10) == ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_11)->max_length)))), (int32_t)1))))? 1 : 0);
}
IL_0030:
{
int32_t L_12 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1));
}
IL_0034:
{
int32_t L_13 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_il2cpp_TypeInfo_var);
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_14 = ((UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_StaticFields*)il2cpp_codegen_static_fields_for(UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_il2cpp_TypeInfo_var))->get_newline_21();
NullCheck(L_14);
if ((((int32_t)L_13) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_14)->max_length)))))))
{
goto IL_0004;
}
}
IL_003e:
{
V_1 = 0;
goto IL_004e;
}
IL_0042:
{
IL2CPP_RUNTIME_CLASS_INIT(UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_il2cpp_TypeInfo_var);
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_15 = ((UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_StaticFields*)il2cpp_codegen_static_fields_for(UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_il2cpp_TypeInfo_var))->get_newline_21();
int32_t L_16 = V_1;
NullCheck(L_15);
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(L_16), (bool)0);
int32_t L_17 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1));
}
IL_004e:
{
int32_t L_18 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_il2cpp_TypeInfo_var);
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_19 = ((UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_StaticFields*)il2cpp_codegen_static_fields_for(UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_il2cpp_TypeInfo_var))->get_newline_21();
NullCheck(L_19);
if ((((int32_t)L_18) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_19)->max_length)))))))
{
goto IL_0042;
}
}
{
return (bool)0;
}
}
// System.String System.IO.UnexceptionalStreamReader::ReadLine()
extern "C" IL2CPP_METHOD_ATTR String_t* UnexceptionalStreamReader_ReadLine_m6075E7BFF09EF43C2620DD57A508E8C925778533 (UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnexceptionalStreamReader_ReadLine_m6075E7BFF09EF43C2620DD57A508E8C925778533_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* 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);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
IL_0000:
try
{ // begin try (depth: 1)
String_t* L_0 = StreamReader_ReadLine_m6F43A4370F3F23B1882543F76DAF5AA30681E477(__this, /*hidden argument*/NULL);
V_0 = L_0;
goto IL_000e;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0009;
throw e;
}
CATCH_0009:
{ // begin catch(System.IO.IOException)
goto IL_000c;
} // end catch (depth: 1)
IL_000c:
{
return (String_t*)NULL;
}
IL_000e:
{
String_t* L_1 = V_0;
return L_1;
}
}
// System.String System.IO.UnexceptionalStreamReader::ReadToEnd()
extern "C" IL2CPP_METHOD_ATTR String_t* UnexceptionalStreamReader_ReadToEnd_mFFF67772696E14242FFE13674054746AE61B3AE2 (UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnexceptionalStreamReader_ReadToEnd_mFFF67772696E14242FFE13674054746AE61B3AE2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* 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);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
IL_0000:
try
{ // begin try (depth: 1)
String_t* L_0 = StreamReader_ReadToEnd_m5AB87727EA94EEC0577189AFBC4EE9FAAA22C2FB(__this, /*hidden argument*/NULL);
V_0 = L_0;
goto IL_000e;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0009;
throw e;
}
CATCH_0009:
{ // begin catch(System.IO.IOException)
goto IL_000c;
} // end catch (depth: 1)
IL_000c:
{
return (String_t*)NULL;
}
IL_000e:
{
String_t* L_1 = V_0;
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
// System.Void System.IO.UnexceptionalStreamWriter::.ctor(System.IO.Stream,System.Text.Encoding)
extern "C" IL2CPP_METHOD_ATTR void UnexceptionalStreamWriter__ctor_m4504DBFFC2C8A76C6BA8BB0EE18630E32D03C772 (UnexceptionalStreamWriter_t15265DC169F829537681A0A5A1826F6713ABC1CB * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnexceptionalStreamWriter__ctor_m4504DBFFC2C8A76C6BA8BB0EE18630E32D03C772_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_0 = ___stream0;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_1 = ___encoding1;
IL2CPP_RUNTIME_CLASS_INIT(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_il2cpp_TypeInfo_var);
StreamWriter__ctor_mBDBE79E3F9A95CB601CEEE2D5464EA3DB663A779(__this, L_0, L_1, ((int32_t)1024), (bool)1, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.UnexceptionalStreamWriter::Flush()
extern "C" IL2CPP_METHOD_ATTR void UnexceptionalStreamWriter_Flush_mA8E33985ABE27D7AB777CD9216F928A093F13618 (UnexceptionalStreamWriter_t15265DC169F829537681A0A5A1826F6713ABC1CB * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnexceptionalStreamWriter_Flush_mA8E33985ABE27D7AB777CD9216F928A093F13618_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
IL_0000:
try
{ // begin try (depth: 1)
StreamWriter_Flush_m326E76BE755A73CCBCD715166925FC9C5ADF8FB5(__this, /*hidden argument*/NULL);
goto IL_000b;
} // 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_0008;
throw e;
}
CATCH_0008:
{ // begin catch(System.Exception)
goto IL_000b;
} // end catch (depth: 1)
IL_000b:
{
return;
}
}
// System.Void System.IO.UnexceptionalStreamWriter::Write(System.Char[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void UnexceptionalStreamWriter_Write_mAC310C8D24F673608DC7F130666E572ADD388E07 (UnexceptionalStreamWriter_t15265DC169F829537681A0A5A1826F6713ABC1CB * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnexceptionalStreamWriter_Write_mAC310C8D24F673608DC7F130666E572ADD388E07_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
IL_0000:
try
{ // begin try (depth: 1)
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = ___buffer0;
int32_t L_1 = ___index1;
int32_t L_2 = ___count2;
StreamWriter_Write_m8056BDE8A4AD4816F9D7DBDBCB80D03BE8F3ED14(__this, L_0, L_1, L_2, /*hidden argument*/NULL);
goto IL_000e;
} // 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_000b;
throw e;
}
CATCH_000b:
{ // begin catch(System.Exception)
goto IL_000e;
} // end catch (depth: 1)
IL_000e:
{
return;
}
}
// System.Void System.IO.UnexceptionalStreamWriter::Write(System.Char)
extern "C" IL2CPP_METHOD_ATTR void UnexceptionalStreamWriter_Write_m38254FD2768CB49A68C9503918CE6FEA65F9A197 (UnexceptionalStreamWriter_t15265DC169F829537681A0A5A1826F6713ABC1CB * __this, Il2CppChar ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnexceptionalStreamWriter_Write_m38254FD2768CB49A68C9503918CE6FEA65F9A197_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
IL_0000:
try
{ // begin try (depth: 1)
Il2CppChar L_0 = ___value0;
StreamWriter_Write_mF8B514CF8D521D390B0F1F9950851B358560F623(__this, L_0, /*hidden argument*/NULL);
goto IL_000c;
} // 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_0009;
throw e;
}
CATCH_0009:
{ // begin catch(System.Exception)
goto IL_000c;
} // end catch (depth: 1)
IL_000c:
{
return;
}
}
// System.Void System.IO.UnexceptionalStreamWriter::Write(System.Char[])
extern "C" IL2CPP_METHOD_ATTR void UnexceptionalStreamWriter_Write_m7C22DC062E894CC609C07612CE9AF17631CF5769 (UnexceptionalStreamWriter_t15265DC169F829537681A0A5A1826F6713ABC1CB * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnexceptionalStreamWriter_Write_m7C22DC062E894CC609C07612CE9AF17631CF5769_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
IL_0000:
try
{ // begin try (depth: 1)
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = ___value0;
StreamWriter_Write_m71F168D89F89E740DF5E16D48C58624712CA808A(__this, L_0, /*hidden argument*/NULL);
goto IL_000c;
} // 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_0009;
throw e;
}
CATCH_0009:
{ // begin catch(System.Exception)
goto IL_000c;
} // end catch (depth: 1)
IL_000c:
{
return;
}
}
// System.Void System.IO.UnexceptionalStreamWriter::Write(System.String)
extern "C" IL2CPP_METHOD_ATTR void UnexceptionalStreamWriter_Write_m662E03F82B13865872B3ADC048BEFE8E6C94B30F (UnexceptionalStreamWriter_t15265DC169F829537681A0A5A1826F6713ABC1CB * __this, String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnexceptionalStreamWriter_Write_m662E03F82B13865872B3ADC048BEFE8E6C94B30F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
IL_0000:
try
{ // begin try (depth: 1)
String_t* L_0 = ___value0;
StreamWriter_Write_mDBCA4E464A543DFD00B0619943BA0C7F15DB55FE(__this, L_0, /*hidden argument*/NULL);
goto IL_000c;
} // 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_0009;
throw e;
}
CATCH_0009:
{ // begin catch(System.Exception)
goto IL_000c;
} // end catch (depth: 1)
IL_000c:
{
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 System.IO.UnmanagedMemoryStream::.ctor()
extern "C" IL2CPP_METHOD_ATTR void UnmanagedMemoryStream__ctor_mC321B43F918DC8453F1DDA5DE21D88CB9B259167 (UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnmanagedMemoryStream__ctor_mC321B43F918DC8453F1DDA5DE21D88CB9B259167_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_il2cpp_TypeInfo_var);
Stream__ctor_m58342D6FD95230C6BA1058E5698AB4BAF0A4DBF5(__this, /*hidden argument*/NULL);
__this->set__mem_5((uint8_t*)(((uintptr_t)0)));
__this->set__isOpen_11((bool)0);
return;
}
}
// System.Void System.IO.UnmanagedMemoryStream::.ctor(System.Byte*,System.Int64,System.Int64,System.IO.FileAccess,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void UnmanagedMemoryStream__ctor_mDAB26A2823AF7D8CD45A0119BAE6B5549A9581C5 (UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E * __this, uint8_t* ___pointer0, int64_t ___length1, int64_t ___capacity2, int32_t ___access3, bool ___skipSecurityCheck4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnmanagedMemoryStream__ctor_mDAB26A2823AF7D8CD45A0119BAE6B5549A9581C5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_il2cpp_TypeInfo_var);
Stream__ctor_m58342D6FD95230C6BA1058E5698AB4BAF0A4DBF5(__this, /*hidden argument*/NULL);
uint8_t* L_0 = ___pointer0;
int64_t L_1 = ___length1;
int64_t L_2 = ___capacity2;
int32_t L_3 = ___access3;
bool L_4 = ___skipSecurityCheck4;
UnmanagedMemoryStream_Initialize_m8DAC8A1A09A4FA06187944DE2DA5D718FDFB6196(__this, (uint8_t*)(uint8_t*)L_0, L_1, L_2, L_3, L_4, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.UnmanagedMemoryStream::Initialize(System.Byte*,System.Int64,System.Int64,System.IO.FileAccess,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void UnmanagedMemoryStream_Initialize_m8DAC8A1A09A4FA06187944DE2DA5D718FDFB6196 (UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E * __this, uint8_t* ___pointer0, int64_t ___length1, int64_t ___capacity2, int32_t ___access3, bool ___skipSecurityCheck4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnmanagedMemoryStream_Initialize_m8DAC8A1A09A4FA06187944DE2DA5D718FDFB6196_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B7_0 = NULL;
{
uint8_t* L_0 = ___pointer0;
if ((!(((uintptr_t)L_0) == ((uintptr_t)(((uintptr_t)0))))))
{
goto IL_0010;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralB35BB38DF9605E4C5858316B7853A16E42EA6997, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, UnmanagedMemoryStream_Initialize_m8DAC8A1A09A4FA06187944DE2DA5D718FDFB6196_RuntimeMethod_var);
}
IL_0010:
{
int64_t L_2 = ___length1;
if ((((int64_t)L_2) < ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_001a;
}
}
{
int64_t L_3 = ___capacity2;
if ((((int64_t)L_3) >= ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_003b;
}
}
IL_001a:
{
int64_t L_4 = ___length1;
if ((((int64_t)L_4) < ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_0026;
}
}
{
G_B7_0 = _stringLiteral7CB1F56D3FBE09E809244FC8E13671CD876E3860;
goto IL_002b;
}
IL_0026:
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
}
IL_002b:
{
String_t* L_5 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_6 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_6, G_B7_0, L_5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, UnmanagedMemoryStream_Initialize_m8DAC8A1A09A4FA06187944DE2DA5D718FDFB6196_RuntimeMethod_var);
}
IL_003b:
{
int64_t L_7 = ___length1;
int64_t L_8 = ___capacity2;
if ((((int64_t)L_7) <= ((int64_t)L_8)))
{
goto IL_0054;
}
}
{
String_t* L_9 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral223C5EC119A56013FF9761A6462704E438095BAA, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, _stringLiteral3D54973F528B01019A58A52D34D518405A01B891, L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, UnmanagedMemoryStream_Initialize_m8DAC8A1A09A4FA06187944DE2DA5D718FDFB6196_RuntimeMethod_var);
}
IL_0054:
{
uint8_t* L_11 = ___pointer0;
int64_t L_12 = ___capacity2;
uint8_t* L_13 = ___pointer0;
if ((!(((uintptr_t)(((uintptr_t)((int64_t)il2cpp_codegen_add((int64_t)(((int64_t)((uint64_t)(intptr_t)L_11))), (int64_t)L_12))))) < ((uintptr_t)L_13))))
{
goto IL_0071;
}
}
{
String_t* L_14 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralA2DE159285074E167990DE97D55BBF9C966A2A8F, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_15 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_15, _stringLiteral7CB1F56D3FBE09E809244FC8E13671CD876E3860, L_14, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, NULL, UnmanagedMemoryStream_Initialize_m8DAC8A1A09A4FA06187944DE2DA5D718FDFB6196_RuntimeMethod_var);
}
IL_0071:
{
int32_t L_16 = ___access3;
if ((((int32_t)L_16) < ((int32_t)1)))
{
goto IL_007b;
}
}
{
int32_t L_17 = ___access3;
if ((((int32_t)L_17) <= ((int32_t)3)))
{
goto IL_0090;
}
}
IL_007b:
{
String_t* L_18 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral328B8E8918DCC5480BFFCEC1BCF1A68EFF1C3293, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_19 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_19, _stringLiteral0F12541AFCCE175FB34BB05A79C95B76E765488B, L_18, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, NULL, UnmanagedMemoryStream_Initialize_m8DAC8A1A09A4FA06187944DE2DA5D718FDFB6196_RuntimeMethod_var);
}
IL_0090:
{
bool L_20 = __this->get__isOpen_11();
if (!L_20)
{
goto IL_00a8;
}
}
{
String_t* L_21 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral1B1DF1408555872EE44D2433990E37F37C6057B8, /*hidden argument*/NULL);
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_22 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_22, L_21, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_22, NULL, UnmanagedMemoryStream_Initialize_m8DAC8A1A09A4FA06187944DE2DA5D718FDFB6196_RuntimeMethod_var);
}
IL_00a8:
{
uint8_t* L_23 = ___pointer0;
__this->set__mem_5((uint8_t*)L_23);
__this->set__offset_9((((int64_t)((int64_t)0))));
int64_t L_24 = ___length1;
__this->set__length_6(L_24);
int64_t L_25 = ___capacity2;
__this->set__capacity_7(L_25);
int32_t L_26 = ___access3;
__this->set__access_10(L_26);
__this->set__isOpen_11((bool)1);
return;
}
}
// System.Boolean System.IO.UnmanagedMemoryStream::get_CanRead()
extern "C" IL2CPP_METHOD_ATTR bool UnmanagedMemoryStream_get_CanRead_m78E9630BE3FE41A94E0AFC75D58FCD9C9E5EB5F2 (UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get__isOpen_11();
if (!L_0)
{
goto IL_0014;
}
}
{
int32_t L_1 = __this->get__access_10();
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_1&(int32_t)1))) <= ((uint32_t)0)))? 1 : 0);
}
IL_0014:
{
return (bool)0;
}
}
// System.Boolean System.IO.UnmanagedMemoryStream::get_CanSeek()
extern "C" IL2CPP_METHOD_ATTR bool UnmanagedMemoryStream_get_CanSeek_mF5CC7C11C9E18039402AE21A06686DDB6963D1FB (UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get__isOpen_11();
return L_0;
}
}
// System.Boolean System.IO.UnmanagedMemoryStream::get_CanWrite()
extern "C" IL2CPP_METHOD_ATTR bool UnmanagedMemoryStream_get_CanWrite_m10C8D5BA26DE57D0142C6027452C452C2B018490 (UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get__isOpen_11();
if (!L_0)
{
goto IL_0014;
}
}
{
int32_t L_1 = __this->get__access_10();
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_1&(int32_t)2))) <= ((uint32_t)0)))? 1 : 0);
}
IL_0014:
{
return (bool)0;
}
}
// System.Void System.IO.UnmanagedMemoryStream::Dispose(System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void UnmanagedMemoryStream_Dispose_mA8E1A981BC7EFDFAC1B4C4E95D1CAB823EA284CA (UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E * __this, bool ___disposing0, const RuntimeMethod* method)
{
{
__this->set__isOpen_11((bool)0);
__this->set__mem_5((uint8_t*)(((uintptr_t)0)));
bool L_0 = ___disposing0;
Stream_Dispose_mC0F23B2D31DC853B12A10F0233173A278FF21B05(__this, L_0, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.UnmanagedMemoryStream::Flush()
extern "C" IL2CPP_METHOD_ATTR void UnmanagedMemoryStream_Flush_m461EFEEA2A4C1866BC68D63F596E3EB8EF5A3F60 (UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get__isOpen_11();
if (L_0)
{
goto IL_000d;
}
}
{
__Error_StreamIsClosed_mAD2694451AA25C7099F2FD1C2357D5C3F1969F37(/*hidden argument*/NULL);
}
IL_000d:
{
return;
}
}
// System.Int64 System.IO.UnmanagedMemoryStream::get_Length()
extern "C" IL2CPP_METHOD_ATTR int64_t UnmanagedMemoryStream_get_Length_m033BE76142FBBAF8A80055B60DB6BF5C009E9C97 (UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get__isOpen_11();
if (L_0)
{
goto IL_000d;
}
}
{
__Error_StreamIsClosed_mAD2694451AA25C7099F2FD1C2357D5C3F1969F37(/*hidden argument*/NULL);
}
IL_000d:
{
int64_t* L_1 = __this->get_address_of__length_6();
int64_t L_2 = Interlocked_Read_m6D73F1AA4709D4F871C6323FEBD3EEC45124B8CB((int64_t*)L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Int64 System.IO.UnmanagedMemoryStream::get_Position()
extern "C" IL2CPP_METHOD_ATTR int64_t UnmanagedMemoryStream_get_Position_m3D49344ACCD6823BABF2F81A3CAFCE40AED1FA97 (UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E * __this, const RuntimeMethod* method)
{
{
bool L_0 = VirtFuncInvoker0< bool >::Invoke(8 /* System.Boolean System.IO.Stream::get_CanSeek() */, __this);
if (L_0)
{
goto IL_000d;
}
}
{
__Error_StreamIsClosed_mAD2694451AA25C7099F2FD1C2357D5C3F1969F37(/*hidden argument*/NULL);
}
IL_000d:
{
int64_t* L_1 = __this->get_address_of__position_8();
int64_t L_2 = Interlocked_Read_m6D73F1AA4709D4F871C6323FEBD3EEC45124B8CB((int64_t*)L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Void System.IO.UnmanagedMemoryStream::set_Position(System.Int64)
extern "C" IL2CPP_METHOD_ATTR void UnmanagedMemoryStream_set_Position_m9E69460D1AB811E973FA8A85CF8E3AC4A1B6D73C (UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E * __this, int64_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnmanagedMemoryStream_set_Position_m9E69460D1AB811E973FA8A85CF8E3AC4A1B6D73C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = ___value0;
if ((((int64_t)L_0) >= ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_001a;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_2, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, UnmanagedMemoryStream_set_Position_m9E69460D1AB811E973FA8A85CF8E3AC4A1B6D73C_RuntimeMethod_var);
}
IL_001a:
{
bool L_3 = VirtFuncInvoker0< bool >::Invoke(8 /* System.Boolean System.IO.Stream::get_CanSeek() */, __this);
if (L_3)
{
goto IL_0027;
}
}
{
__Error_StreamIsClosed_mAD2694451AA25C7099F2FD1C2357D5C3F1969F37(/*hidden argument*/NULL);
}
IL_0027:
{
int64_t* L_4 = __this->get_address_of__position_8();
int64_t L_5 = ___value0;
Interlocked_Exchange_m58CD9F00310C5BEA719E658CD6E7EDD08F09C0BB((int64_t*)L_4, L_5, /*hidden argument*/NULL);
return;
}
}
// System.Byte* System.IO.UnmanagedMemoryStream::get_PositionPointer()
extern "C" IL2CPP_METHOD_ATTR uint8_t* UnmanagedMemoryStream_get_PositionPointer_m679CDF3178C1512CA36CAB5FD1A39F5A398A2ADB (UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnmanagedMemoryStream_get_PositionPointer_m679CDF3178C1512CA36CAB5FD1A39F5A398A2ADB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
uint8_t* G_B6_0 = NULL;
uint8_t* G_B5_0 = NULL;
{
SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208 * L_0 = __this->get__buffer_4();
if (!L_0)
{
goto IL_0018;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral59B2021BD6AB5F81D9C5385CB14DEBA14BCAD549, /*hidden argument*/NULL);
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_2 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, UnmanagedMemoryStream_get_PositionPointer_m679CDF3178C1512CA36CAB5FD1A39F5A398A2ADB_RuntimeMethod_var);
}
IL_0018:
{
int64_t* L_3 = __this->get_address_of__position_8();
int64_t L_4 = Interlocked_Read_m6D73F1AA4709D4F871C6323FEBD3EEC45124B8CB((int64_t*)L_3, /*hidden argument*/NULL);
V_0 = L_4;
int64_t L_5 = V_0;
int64_t L_6 = __this->get__capacity_7();
if ((((int64_t)L_5) <= ((int64_t)L_6)))
{
goto IL_003d;
}
}
{
String_t* L_7 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral2068B0AE2DE93955C64C2244FFC32581BB827B1E, /*hidden argument*/NULL);
IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF * L_8 = (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF *)il2cpp_codegen_object_new(IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var);
IndexOutOfRangeException__ctor_mCCE2EFF47A0ACB4B2636F63140F94FCEA71A9BCA(L_8, L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, UnmanagedMemoryStream_get_PositionPointer_m679CDF3178C1512CA36CAB5FD1A39F5A398A2ADB_RuntimeMethod_var);
}
IL_003d:
{
uint8_t* L_9 = __this->get__mem_5();
int64_t L_10 = V_0;
bool L_11 = __this->get__isOpen_11();
G_B5_0 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_9, (intptr_t)(((intptr_t)L_10))));
if (L_11)
{
G_B6_0 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_9, (intptr_t)(((intptr_t)L_10))));
goto IL_0053;
}
}
{
__Error_StreamIsClosed_mAD2694451AA25C7099F2FD1C2357D5C3F1969F37(/*hidden argument*/NULL);
G_B6_0 = G_B5_0;
}
IL_0053:
{
return (uint8_t*)(G_B6_0);
}
}
// System.Int32 System.IO.UnmanagedMemoryStream::Read(System.Byte[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t UnmanagedMemoryStream_Read_mA93FD9DA48DAC9A7E5E11E51E507C4B4A4945754 (UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___offset1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnmanagedMemoryStream_Read_mA93FD9DA48DAC9A7E5E11E51E507C4B4A4945754_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
int64_t V_1 = 0;
int32_t V_2 = 0;
uint8_t* V_3 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___buffer0;
if (L_0)
{
goto IL_0018;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB80ADA17FA6976840EA2EE6BFF02BC04F45EEBA7, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteralE53C2EA1FE4BD2B78BF4723C7C155A578E020A25, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, UnmanagedMemoryStream_Read_mA93FD9DA48DAC9A7E5E11E51E507C4B4A4945754_RuntimeMethod_var);
}
IL_0018:
{
int32_t L_3 = ___offset1;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
{
String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, _stringLiteral53A610E925BBC0A175E365D31241AE75AEEAD651, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, UnmanagedMemoryStream_Read_mA93FD9DA48DAC9A7E5E11E51E507C4B4A4945754_RuntimeMethod_var);
}
IL_0031:
{
int32_t L_6 = ___count2;
if ((((int32_t)L_6) >= ((int32_t)0)))
{
goto IL_004a;
}
}
{
String_t* L_7 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_8, _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, UnmanagedMemoryStream_Read_mA93FD9DA48DAC9A7E5E11E51E507C4B4A4945754_RuntimeMethod_var);
}
IL_004a:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = ___buffer0;
NullCheck(L_9);
int32_t L_10 = ___offset1;
int32_t L_11 = ___count2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_11)))
{
goto IL_0062;
}
}
{
String_t* L_12 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_13 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_13, L_12, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, NULL, UnmanagedMemoryStream_Read_mA93FD9DA48DAC9A7E5E11E51E507C4B4A4945754_RuntimeMethod_var);
}
IL_0062:
{
bool L_14 = __this->get__isOpen_11();
if (L_14)
{
goto IL_006f;
}
}
{
__Error_StreamIsClosed_mAD2694451AA25C7099F2FD1C2357D5C3F1969F37(/*hidden argument*/NULL);
}
IL_006f:
{
bool L_15 = VirtFuncInvoker0< bool >::Invoke(7 /* System.Boolean System.IO.Stream::get_CanRead() */, __this);
if (L_15)
{
goto IL_007c;
}
}
{
__Error_ReadNotSupported_mE20D002F31774F786CAC01DE88CF2FD9F46C0696(/*hidden argument*/NULL);
}
IL_007c:
{
int64_t* L_16 = __this->get_address_of__position_8();
int64_t L_17 = Interlocked_Read_m6D73F1AA4709D4F871C6323FEBD3EEC45124B8CB((int64_t*)L_16, /*hidden argument*/NULL);
V_0 = L_17;
int64_t* L_18 = __this->get_address_of__length_6();
int64_t L_19 = Interlocked_Read_m6D73F1AA4709D4F871C6323FEBD3EEC45124B8CB((int64_t*)L_18, /*hidden argument*/NULL);
int64_t L_20 = V_0;
V_1 = ((int64_t)il2cpp_codegen_subtract((int64_t)L_19, (int64_t)L_20));
int64_t L_21 = V_1;
int32_t L_22 = ___count2;
if ((((int64_t)L_21) <= ((int64_t)(((int64_t)((int64_t)L_22))))))
{
goto IL_009e;
}
}
{
int32_t L_23 = ___count2;
V_1 = (((int64_t)((int64_t)L_23)));
}
IL_009e:
{
int64_t L_24 = V_1;
if ((((int64_t)L_24) > ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_00a5;
}
}
{
return 0;
}
IL_00a5:
{
int64_t L_25 = V_1;
V_2 = (((int32_t)((int32_t)L_25)));
int32_t L_26 = V_2;
if ((((int32_t)L_26) >= ((int32_t)0)))
{
goto IL_00ae;
}
}
{
V_2 = 0;
}
IL_00ae:
{
SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208 * L_27 = __this->get__buffer_4();
if (!L_27)
{
goto IL_00f3;
}
}
{
V_3 = (uint8_t*)(((uintptr_t)0));
RuntimeHelpers_PrepareConstrainedRegions_m108F0650C70D15D3CC657AFEBA8E69770EDB9027(/*hidden argument*/NULL);
}
IL_00be:
try
{ // begin try (depth: 1)
SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208 * L_28 = __this->get__buffer_4();
NullCheck(L_28);
SafeBuffer_AcquirePointer_mD2A94F6258AB8805DFE25E1FA39B5B11B544A4E6(L_28, (uint8_t**)(&V_3), /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_29 = ___buffer0;
int32_t L_30 = ___offset1;
uint8_t* L_31 = V_3;
int64_t L_32 = V_0;
int64_t L_33 = __this->get__offset_9();
int32_t L_34 = V_2;
Buffer_Memcpy_mDB0DE0234F1410CA74D01118A783FFB927B73354(L_29, L_30, (uint8_t*)(uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)((uint8_t*)il2cpp_codegen_add((intptr_t)L_31, (intptr_t)(((intptr_t)L_32)))), (intptr_t)(((intptr_t)L_33)))), 0, L_34, /*hidden argument*/NULL);
IL2CPP_LEAVE(0x105, FINALLY_00e2);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00e2;
}
FINALLY_00e2:
{ // begin finally (depth: 1)
{
uint8_t* L_35 = V_3;
if ((((intptr_t)L_35) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_00f2;
}
}
IL_00e7:
{
SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208 * L_36 = __this->get__buffer_4();
NullCheck(L_36);
SafeBuffer_ReleasePointer_m27C2B7F09E29271161CB2987088305220F3E227D(L_36, /*hidden argument*/NULL);
}
IL_00f2:
{
IL2CPP_RESET_LEAVE(0x105);
IL2CPP_END_FINALLY(226)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(226)
{
IL2CPP_JUMP_TBL(0x105, IL_0105)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00f3:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_37 = ___buffer0;
int32_t L_38 = ___offset1;
uint8_t* L_39 = __this->get__mem_5();
int64_t L_40 = V_0;
int32_t L_41 = V_2;
Buffer_Memcpy_mDB0DE0234F1410CA74D01118A783FFB927B73354(L_37, L_38, (uint8_t*)(uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_39, (intptr_t)(((intptr_t)L_40)))), 0, L_41, /*hidden argument*/NULL);
}
IL_0105:
{
int64_t* L_42 = __this->get_address_of__position_8();
int64_t L_43 = V_0;
int64_t L_44 = V_1;
Interlocked_Exchange_m58CD9F00310C5BEA719E658CD6E7EDD08F09C0BB((int64_t*)L_42, ((int64_t)il2cpp_codegen_add((int64_t)L_43, (int64_t)L_44)), /*hidden argument*/NULL);
int32_t L_45 = V_2;
return L_45;
}
}
// System.Threading.Tasks.Task`1<System.Int32> System.IO.UnmanagedMemoryStream::ReadAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)
extern "C" IL2CPP_METHOD_ATTR Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * UnmanagedMemoryStream_ReadAsync_m9365011A8EA2266D91FAE823DBFD31C15FB7E9D3 (UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___offset1, int32_t ___count2, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnmanagedMemoryStream_ReadAsync_m9365011A8EA2266D91FAE823DBFD31C15FB7E9D3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * V_1 = NULL;
Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * G_B15_0 = NULL;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___buffer0;
if (L_0)
{
goto IL_0018;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB80ADA17FA6976840EA2EE6BFF02BC04F45EEBA7, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteralE53C2EA1FE4BD2B78BF4723C7C155A578E020A25, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, UnmanagedMemoryStream_ReadAsync_m9365011A8EA2266D91FAE823DBFD31C15FB7E9D3_RuntimeMethod_var);
}
IL_0018:
{
int32_t L_3 = ___offset1;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
{
String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, _stringLiteral53A610E925BBC0A175E365D31241AE75AEEAD651, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, UnmanagedMemoryStream_ReadAsync_m9365011A8EA2266D91FAE823DBFD31C15FB7E9D3_RuntimeMethod_var);
}
IL_0031:
{
int32_t L_6 = ___count2;
if ((((int32_t)L_6) >= ((int32_t)0)))
{
goto IL_004a;
}
}
{
String_t* L_7 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_8, _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, UnmanagedMemoryStream_ReadAsync_m9365011A8EA2266D91FAE823DBFD31C15FB7E9D3_RuntimeMethod_var);
}
IL_004a:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = ___buffer0;
NullCheck(L_9);
int32_t L_10 = ___offset1;
int32_t L_11 = ___count2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_11)))
{
goto IL_0062;
}
}
{
String_t* L_12 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_13 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_13, L_12, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, NULL, UnmanagedMemoryStream_ReadAsync_m9365011A8EA2266D91FAE823DBFD31C15FB7E9D3_RuntimeMethod_var);
}
IL_0062:
{
bool L_14 = CancellationToken_get_IsCancellationRequested_mCF3521778F20F7048B7121885794B9562324447D((CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)(&___cancellationToken3), /*hidden argument*/NULL);
if (!L_14)
{
goto IL_0073;
}
}
{
CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_15 = ___cancellationToken3;
IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var);
Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_16 = Task_FromCancellation_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m9308AB377C21815221796A65F008519EA9FE7DE6(L_15, /*hidden argument*/Task_FromCancellation_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m9308AB377C21815221796A65F008519EA9FE7DE6_RuntimeMethod_var);
return L_16;
}
IL_0073:
{
}
IL_0074:
try
{ // begin try (depth: 1)
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_17 = ___buffer0;
int32_t L_18 = ___offset1;
int32_t L_19 = ___count2;
int32_t L_20 = VirtFuncInvoker3< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(23 /* System.Int32 System.IO.Stream::Read(System.Byte[],System.Int32,System.Int32) */, __this, L_17, L_18, L_19);
V_0 = L_20;
Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_21 = __this->get__lastReadTask_12();
V_1 = L_21;
Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_22 = V_1;
if (!L_22)
{
goto IL_0091;
}
}
IL_0088:
{
Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_23 = V_1;
NullCheck(L_23);
int32_t L_24 = Task_1_get_Result_m80E150EF93681DF361700DB6F78C976BE3EC871B(L_23, /*hidden argument*/Task_1_get_Result_m80E150EF93681DF361700DB6F78C976BE3EC871B_RuntimeMethod_var);
int32_t L_25 = V_0;
if ((((int32_t)L_24) == ((int32_t)L_25)))
{
goto IL_00a2;
}
}
IL_0091:
{
int32_t L_26 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var);
Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_27 = Task_FromResult_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mFBACD0478E006CC68E4A4EAC261326DDE1B6D6CB(L_26, /*hidden argument*/Task_FromResult_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mFBACD0478E006CC68E4A4EAC261326DDE1B6D6CB_RuntimeMethod_var);
Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_28 = L_27;
V_2 = L_28;
__this->set__lastReadTask_12(L_28);
Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_29 = V_2;
G_B15_0 = L_29;
goto IL_00a3;
}
IL_00a2:
{
Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_30 = V_1;
G_B15_0 = L_30;
}
IL_00a3:
{
V_2 = G_B15_0;
goto IL_00ae;
}
} // 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_00a6;
throw e;
}
CATCH_00a6:
{ // begin catch(System.Exception)
IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var);
Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_31 = Task_FromException_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mF3C6382F7FF59C06CCB6AF3DEDF0C7E42B3EFC52(((Exception_t *)__exception_local), /*hidden argument*/Task_FromException_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mF3C6382F7FF59C06CCB6AF3DEDF0C7E42B3EFC52_RuntimeMethod_var);
V_2 = L_31;
goto IL_00ae;
} // end catch (depth: 1)
IL_00ae:
{
Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_32 = V_2;
return L_32;
}
}
// System.Int32 System.IO.UnmanagedMemoryStream::ReadByte()
extern "C" IL2CPP_METHOD_ATTR int32_t UnmanagedMemoryStream_ReadByte_mD7922C57C7C508DFCBC9D6C8D9D103E0F6C5E590 (UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E * __this, const RuntimeMethod* method)
{
int64_t V_0 = 0;
int64_t V_1 = 0;
int32_t V_2 = 0;
uint8_t* V_3 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
bool L_0 = __this->get__isOpen_11();
if (L_0)
{
goto IL_000d;
}
}
{
__Error_StreamIsClosed_mAD2694451AA25C7099F2FD1C2357D5C3F1969F37(/*hidden argument*/NULL);
}
IL_000d:
{
bool L_1 = VirtFuncInvoker0< bool >::Invoke(7 /* System.Boolean System.IO.Stream::get_CanRead() */, __this);
if (L_1)
{
goto IL_001a;
}
}
{
__Error_ReadNotSupported_mE20D002F31774F786CAC01DE88CF2FD9F46C0696(/*hidden argument*/NULL);
}
IL_001a:
{
int64_t* L_2 = __this->get_address_of__position_8();
int64_t L_3 = Interlocked_Read_m6D73F1AA4709D4F871C6323FEBD3EEC45124B8CB((int64_t*)L_2, /*hidden argument*/NULL);
V_0 = L_3;
int64_t* L_4 = __this->get_address_of__length_6();
int64_t L_5 = Interlocked_Read_m6D73F1AA4709D4F871C6323FEBD3EEC45124B8CB((int64_t*)L_4, /*hidden argument*/NULL);
V_1 = L_5;
int64_t L_6 = V_0;
int64_t L_7 = V_1;
if ((((int64_t)L_6) < ((int64_t)L_7)))
{
goto IL_0038;
}
}
{
return (-1);
}
IL_0038:
{
int64_t* L_8 = __this->get_address_of__position_8();
int64_t L_9 = V_0;
Interlocked_Exchange_m58CD9F00310C5BEA719E658CD6E7EDD08F09C0BB((int64_t*)L_8, ((int64_t)il2cpp_codegen_add((int64_t)L_9, (int64_t)(((int64_t)((int64_t)1))))), /*hidden argument*/NULL);
SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208 * L_10 = __this->get__buffer_4();
if (!L_10)
{
goto IL_0086;
}
}
{
V_3 = (uint8_t*)(((uintptr_t)0));
RuntimeHelpers_PrepareConstrainedRegions_m108F0650C70D15D3CC657AFEBA8E69770EDB9027(/*hidden argument*/NULL);
}
IL_0058:
try
{ // begin try (depth: 1)
SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208 * L_11 = __this->get__buffer_4();
NullCheck(L_11);
SafeBuffer_AcquirePointer_mD2A94F6258AB8805DFE25E1FA39B5B11B544A4E6(L_11, (uint8_t**)(&V_3), /*hidden argument*/NULL);
uint8_t* L_12 = V_3;
int64_t L_13 = V_0;
int64_t L_14 = __this->get__offset_9();
int32_t L_15 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)((uint8_t*)il2cpp_codegen_add((intptr_t)L_12, (intptr_t)(((intptr_t)L_13)))), (intptr_t)(((intptr_t)L_14)))));
V_2 = L_15;
IL2CPP_LEAVE(0x91, FINALLY_0075);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0075;
}
FINALLY_0075:
{ // begin finally (depth: 1)
{
uint8_t* L_16 = V_3;
if ((((intptr_t)L_16) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_0085;
}
}
IL_007a:
{
SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208 * L_17 = __this->get__buffer_4();
NullCheck(L_17);
SafeBuffer_ReleasePointer_m27C2B7F09E29271161CB2987088305220F3E227D(L_17, /*hidden argument*/NULL);
}
IL_0085:
{
IL2CPP_RESET_LEAVE(0x91);
IL2CPP_END_FINALLY(117)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(117)
{
IL2CPP_JUMP_TBL(0x91, IL_0091)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0086:
{
uint8_t* L_18 = __this->get__mem_5();
int64_t L_19 = V_0;
int32_t L_20 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_18, (intptr_t)(((intptr_t)L_19)))));
V_2 = L_20;
}
IL_0091:
{
int32_t L_21 = V_2;
return L_21;
}
}
// System.Int64 System.IO.UnmanagedMemoryStream::Seek(System.Int64,System.IO.SeekOrigin)
extern "C" IL2CPP_METHOD_ATTR int64_t UnmanagedMemoryStream_Seek_mF247A85CB3170986E397A5EF632C3C8E06CB4713 (UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E * __this, int64_t ___offset0, int32_t ___loc1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnmanagedMemoryStream_Seek_mF247A85CB3170986E397A5EF632C3C8E06CB4713_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
int64_t V_1 = 0;
{
bool L_0 = __this->get__isOpen_11();
if (L_0)
{
goto IL_000d;
}
}
{
__Error_StreamIsClosed_mAD2694451AA25C7099F2FD1C2357D5C3F1969F37(/*hidden argument*/NULL);
}
IL_000d:
{
int64_t L_1 = ___offset0;
if ((((int64_t)L_1) <= ((int64_t)((int64_t)std::numeric_limits<int64_t>::max()))))
{
goto IL_002e;
}
}
{
String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9D4F4EF8DD2FA106FAD50D3C601D6CDA629B6218, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_3 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_3, _stringLiteral53A610E925BBC0A175E365D31241AE75AEEAD651, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, UnmanagedMemoryStream_Seek_mF247A85CB3170986E397A5EF632C3C8E06CB4713_RuntimeMethod_var);
}
IL_002e:
{
int32_t L_4 = ___loc1;
switch (L_4)
{
case 0:
{
goto IL_0045;
}
case 1:
{
goto IL_0069;
}
case 2:
{
goto IL_009d;
}
}
}
{
goto IL_00d1;
}
IL_0045:
{
int64_t L_5 = ___offset0;
if ((((int64_t)L_5) >= ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_005a;
}
}
{
String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral58700C5522A1E65B9667A019F67113C5F9666D37, /*hidden argument*/NULL);
IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA * L_7 = (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA *)il2cpp_codegen_object_new(IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var);
IOException__ctor_mB64DEFB376AA8E279A647A3770F913B20EF65175(L_7, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, UnmanagedMemoryStream_Seek_mF247A85CB3170986E397A5EF632C3C8E06CB4713_RuntimeMethod_var);
}
IL_005a:
{
int64_t* L_8 = __this->get_address_of__position_8();
int64_t L_9 = ___offset0;
Interlocked_Exchange_m58CD9F00310C5BEA719E658CD6E7EDD08F09C0BB((int64_t*)L_8, L_9, /*hidden argument*/NULL);
goto IL_00e1;
}
IL_0069:
{
int64_t* L_10 = __this->get_address_of__position_8();
int64_t L_11 = Interlocked_Read_m6D73F1AA4709D4F871C6323FEBD3EEC45124B8CB((int64_t*)L_10, /*hidden argument*/NULL);
V_0 = L_11;
int64_t L_12 = ___offset0;
int64_t L_13 = V_0;
if ((((int64_t)((int64_t)il2cpp_codegen_add((int64_t)L_12, (int64_t)L_13))) >= ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_008c;
}
}
{
String_t* L_14 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral58700C5522A1E65B9667A019F67113C5F9666D37, /*hidden argument*/NULL);
IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA * L_15 = (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA *)il2cpp_codegen_object_new(IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var);
IOException__ctor_mB64DEFB376AA8E279A647A3770F913B20EF65175(L_15, L_14, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, NULL, UnmanagedMemoryStream_Seek_mF247A85CB3170986E397A5EF632C3C8E06CB4713_RuntimeMethod_var);
}
IL_008c:
{
int64_t* L_16 = __this->get_address_of__position_8();
int64_t L_17 = ___offset0;
int64_t L_18 = V_0;
Interlocked_Exchange_m58CD9F00310C5BEA719E658CD6E7EDD08F09C0BB((int64_t*)L_16, ((int64_t)il2cpp_codegen_add((int64_t)L_17, (int64_t)L_18)), /*hidden argument*/NULL);
goto IL_00e1;
}
IL_009d:
{
int64_t* L_19 = __this->get_address_of__length_6();
int64_t L_20 = Interlocked_Read_m6D73F1AA4709D4F871C6323FEBD3EEC45124B8CB((int64_t*)L_19, /*hidden argument*/NULL);
V_1 = L_20;
int64_t L_21 = V_1;
int64_t L_22 = ___offset0;
if ((((int64_t)((int64_t)il2cpp_codegen_add((int64_t)L_21, (int64_t)L_22))) >= ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_00c0;
}
}
{
String_t* L_23 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral58700C5522A1E65B9667A019F67113C5F9666D37, /*hidden argument*/NULL);
IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA * L_24 = (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA *)il2cpp_codegen_object_new(IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var);
IOException__ctor_mB64DEFB376AA8E279A647A3770F913B20EF65175(L_24, L_23, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, NULL, UnmanagedMemoryStream_Seek_mF247A85CB3170986E397A5EF632C3C8E06CB4713_RuntimeMethod_var);
}
IL_00c0:
{
int64_t* L_25 = __this->get_address_of__position_8();
int64_t L_26 = V_1;
int64_t L_27 = ___offset0;
Interlocked_Exchange_m58CD9F00310C5BEA719E658CD6E7EDD08F09C0BB((int64_t*)L_25, ((int64_t)il2cpp_codegen_add((int64_t)L_26, (int64_t)L_27)), /*hidden argument*/NULL);
goto IL_00e1;
}
IL_00d1:
{
String_t* L_28 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral44AC91F010ECDD855BA22A4FE5878DA9B04839E4, /*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, NULL, UnmanagedMemoryStream_Seek_mF247A85CB3170986E397A5EF632C3C8E06CB4713_RuntimeMethod_var);
}
IL_00e1:
{
int64_t* L_30 = __this->get_address_of__position_8();
int64_t L_31 = Interlocked_Read_m6D73F1AA4709D4F871C6323FEBD3EEC45124B8CB((int64_t*)L_30, /*hidden argument*/NULL);
return L_31;
}
}
// System.Void System.IO.UnmanagedMemoryStream::Write(System.Byte[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void UnmanagedMemoryStream_Write_m9256DCD481FB6F93D3761684B74CD1639E3AEC6C (UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___offset1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnmanagedMemoryStream_Write_m9256DCD481FB6F93D3761684B74CD1639E3AEC6C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
int64_t V_1 = 0;
int64_t V_2 = 0;
uint8_t* V_3 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___buffer0;
if (L_0)
{
goto IL_0018;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB80ADA17FA6976840EA2EE6BFF02BC04F45EEBA7, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteralE53C2EA1FE4BD2B78BF4723C7C155A578E020A25, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, UnmanagedMemoryStream_Write_m9256DCD481FB6F93D3761684B74CD1639E3AEC6C_RuntimeMethod_var);
}
IL_0018:
{
int32_t L_3 = ___offset1;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
{
String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, _stringLiteral53A610E925BBC0A175E365D31241AE75AEEAD651, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, UnmanagedMemoryStream_Write_m9256DCD481FB6F93D3761684B74CD1639E3AEC6C_RuntimeMethod_var);
}
IL_0031:
{
int32_t L_6 = ___count2;
if ((((int32_t)L_6) >= ((int32_t)0)))
{
goto IL_004a;
}
}
{
String_t* L_7 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_8, _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, UnmanagedMemoryStream_Write_m9256DCD481FB6F93D3761684B74CD1639E3AEC6C_RuntimeMethod_var);
}
IL_004a:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = ___buffer0;
NullCheck(L_9);
int32_t L_10 = ___offset1;
int32_t L_11 = ___count2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_11)))
{
goto IL_0062;
}
}
{
String_t* L_12 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_13 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_13, L_12, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, NULL, UnmanagedMemoryStream_Write_m9256DCD481FB6F93D3761684B74CD1639E3AEC6C_RuntimeMethod_var);
}
IL_0062:
{
bool L_14 = __this->get__isOpen_11();
if (L_14)
{
goto IL_006f;
}
}
{
__Error_StreamIsClosed_mAD2694451AA25C7099F2FD1C2357D5C3F1969F37(/*hidden argument*/NULL);
}
IL_006f:
{
bool L_15 = VirtFuncInvoker0< bool >::Invoke(9 /* System.Boolean System.IO.Stream::get_CanWrite() */, __this);
if (L_15)
{
goto IL_007c;
}
}
{
__Error_WriteNotSupported_mDC018F02757EB3116B45F9CEE41F83910ED5FC1B(/*hidden argument*/NULL);
}
IL_007c:
{
int64_t* L_16 = __this->get_address_of__position_8();
int64_t L_17 = Interlocked_Read_m6D73F1AA4709D4F871C6323FEBD3EEC45124B8CB((int64_t*)L_16, /*hidden argument*/NULL);
V_0 = L_17;
int64_t* L_18 = __this->get_address_of__length_6();
int64_t L_19 = Interlocked_Read_m6D73F1AA4709D4F871C6323FEBD3EEC45124B8CB((int64_t*)L_18, /*hidden argument*/NULL);
V_1 = L_19;
int64_t L_20 = V_0;
int32_t L_21 = ___count2;
V_2 = ((int64_t)il2cpp_codegen_add((int64_t)L_20, (int64_t)(((int64_t)((int64_t)L_21)))));
int64_t L_22 = V_2;
if ((((int64_t)L_22) >= ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_00ae;
}
}
{
String_t* L_23 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral2BCB5536759D024FC4C84E0F923502D4B9E8B26E, /*hidden argument*/NULL);
IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA * L_24 = (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA *)il2cpp_codegen_object_new(IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var);
IOException__ctor_mB64DEFB376AA8E279A647A3770F913B20EF65175(L_24, L_23, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, NULL, UnmanagedMemoryStream_Write_m9256DCD481FB6F93D3761684B74CD1639E3AEC6C_RuntimeMethod_var);
}
IL_00ae:
{
int64_t L_25 = V_2;
int64_t L_26 = __this->get__capacity_7();
if ((((int64_t)L_25) <= ((int64_t)L_26)))
{
goto IL_00c7;
}
}
{
String_t* L_27 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral97E3C8FAF75EBD4A5B79D9632596155B4EB5403F, /*hidden argument*/NULL);
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_28 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_28, L_27, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, NULL, UnmanagedMemoryStream_Write_m9256DCD481FB6F93D3761684B74CD1639E3AEC6C_RuntimeMethod_var);
}
IL_00c7:
{
SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208 * L_29 = __this->get__buffer_4();
if (L_29)
{
goto IL_00f5;
}
}
{
int64_t L_30 = V_0;
int64_t L_31 = V_1;
if ((((int64_t)L_30) <= ((int64_t)L_31)))
{
goto IL_00e4;
}
}
{
uint8_t* L_32 = __this->get__mem_5();
int64_t L_33 = V_1;
int64_t L_34 = V_0;
int64_t L_35 = V_1;
Buffer_ZeroMemory_mAB17C8C19C2C8DD1F10E232FAE69C2FCBC31CCAC((uint8_t*)(uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_32, (intptr_t)(((intptr_t)L_33)))), ((int64_t)il2cpp_codegen_subtract((int64_t)L_34, (int64_t)L_35)), /*hidden argument*/NULL);
}
IL_00e4:
{
int64_t L_36 = V_2;
int64_t L_37 = V_1;
if ((((int64_t)L_36) <= ((int64_t)L_37)))
{
goto IL_00f5;
}
}
{
int64_t* L_38 = __this->get_address_of__length_6();
int64_t L_39 = V_2;
Interlocked_Exchange_m58CD9F00310C5BEA719E658CD6E7EDD08F09C0BB((int64_t*)L_38, L_39, /*hidden argument*/NULL);
}
IL_00f5:
{
SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208 * L_40 = __this->get__buffer_4();
if (!L_40)
{
goto IL_0156;
}
}
{
int64_t L_41 = __this->get__capacity_7();
int64_t L_42 = V_0;
int32_t L_43 = ___count2;
if ((((int64_t)((int64_t)il2cpp_codegen_subtract((int64_t)L_41, (int64_t)L_42))) >= ((int64_t)(((int64_t)((int64_t)L_43))))))
{
goto IL_0119;
}
}
{
String_t* L_44 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralE165BC316E01BC9110D90356CA81693D51C6EE78, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_45 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_45, L_44, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_45, NULL, UnmanagedMemoryStream_Write_m9256DCD481FB6F93D3761684B74CD1639E3AEC6C_RuntimeMethod_var);
}
IL_0119:
{
V_3 = (uint8_t*)(((uintptr_t)0));
RuntimeHelpers_PrepareConstrainedRegions_m108F0650C70D15D3CC657AFEBA8E69770EDB9027(/*hidden argument*/NULL);
}
IL_0121:
try
{ // begin try (depth: 1)
SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208 * L_46 = __this->get__buffer_4();
NullCheck(L_46);
SafeBuffer_AcquirePointer_mD2A94F6258AB8805DFE25E1FA39B5B11B544A4E6(L_46, (uint8_t**)(&V_3), /*hidden argument*/NULL);
uint8_t* L_47 = V_3;
int64_t L_48 = V_0;
int64_t L_49 = __this->get__offset_9();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_50 = ___buffer0;
int32_t L_51 = ___offset1;
int32_t L_52 = ___count2;
Buffer_Memcpy_m440DCCE8D0D13779D26E7B41618066CA98F4DEF3((uint8_t*)(uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)((uint8_t*)il2cpp_codegen_add((intptr_t)L_47, (intptr_t)(((intptr_t)L_48)))), (intptr_t)(((intptr_t)L_49)))), 0, L_50, L_51, L_52, /*hidden argument*/NULL);
IL2CPP_LEAVE(0x168, FINALLY_0145);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0145;
}
FINALLY_0145:
{ // begin finally (depth: 1)
{
uint8_t* L_53 = V_3;
if ((((intptr_t)L_53) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_0155;
}
}
IL_014a:
{
SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208 * L_54 = __this->get__buffer_4();
NullCheck(L_54);
SafeBuffer_ReleasePointer_m27C2B7F09E29271161CB2987088305220F3E227D(L_54, /*hidden argument*/NULL);
}
IL_0155:
{
IL2CPP_RESET_LEAVE(0x168);
IL2CPP_END_FINALLY(325)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(325)
{
IL2CPP_JUMP_TBL(0x168, IL_0168)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0156:
{
uint8_t* L_55 = __this->get__mem_5();
int64_t L_56 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_57 = ___buffer0;
int32_t L_58 = ___offset1;
int32_t L_59 = ___count2;
Buffer_Memcpy_m440DCCE8D0D13779D26E7B41618066CA98F4DEF3((uint8_t*)(uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_55, (intptr_t)(((intptr_t)L_56)))), 0, L_57, L_58, L_59, /*hidden argument*/NULL);
}
IL_0168:
{
int64_t* L_60 = __this->get_address_of__position_8();
int64_t L_61 = V_2;
Interlocked_Exchange_m58CD9F00310C5BEA719E658CD6E7EDD08F09C0BB((int64_t*)L_60, L_61, /*hidden argument*/NULL);
return;
}
}
// System.Threading.Tasks.Task System.IO.UnmanagedMemoryStream::WriteAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)
extern "C" IL2CPP_METHOD_ATTR Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * UnmanagedMemoryStream_WriteAsync_m35A3170A45ABFBA4A884747F52D86E78C804DB2C (UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___offset1, int32_t ___count2, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnmanagedMemoryStream_WriteAsync_m35A3170A45ABFBA4A884747F52D86E78C804DB2C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * 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);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___buffer0;
if (L_0)
{
goto IL_0018;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB80ADA17FA6976840EA2EE6BFF02BC04F45EEBA7, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteralE53C2EA1FE4BD2B78BF4723C7C155A578E020A25, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, UnmanagedMemoryStream_WriteAsync_m35A3170A45ABFBA4A884747F52D86E78C804DB2C_RuntimeMethod_var);
}
IL_0018:
{
int32_t L_3 = ___offset1;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
{
String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, _stringLiteral53A610E925BBC0A175E365D31241AE75AEEAD651, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, UnmanagedMemoryStream_WriteAsync_m35A3170A45ABFBA4A884747F52D86E78C804DB2C_RuntimeMethod_var);
}
IL_0031:
{
int32_t L_6 = ___count2;
if ((((int32_t)L_6) >= ((int32_t)0)))
{
goto IL_004a;
}
}
{
String_t* L_7 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_8, _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, UnmanagedMemoryStream_WriteAsync_m35A3170A45ABFBA4A884747F52D86E78C804DB2C_RuntimeMethod_var);
}
IL_004a:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = ___buffer0;
NullCheck(L_9);
int32_t L_10 = ___offset1;
int32_t L_11 = ___count2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_11)))
{
goto IL_0062;
}
}
{
String_t* L_12 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_13 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_13, L_12, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, NULL, UnmanagedMemoryStream_WriteAsync_m35A3170A45ABFBA4A884747F52D86E78C804DB2C_RuntimeMethod_var);
}
IL_0062:
{
bool L_14 = CancellationToken_get_IsCancellationRequested_mCF3521778F20F7048B7121885794B9562324447D((CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)(&___cancellationToken3), /*hidden argument*/NULL);
if (!L_14)
{
goto IL_0073;
}
}
{
CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_15 = ___cancellationToken3;
IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var);
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_16 = Task_FromCancellation_m2106218A961C3950EA87A16189081D7DFB42B860(L_15, /*hidden argument*/NULL);
return L_16;
}
IL_0073:
{
}
IL_0074:
try
{ // begin try (depth: 1)
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_17 = ___buffer0;
int32_t L_18 = ___offset1;
int32_t L_19 = ___count2;
VirtActionInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(25 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, __this, L_17, L_18, L_19);
IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var);
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_20 = Task_get_CompletedTask_mBB0764E7FDE04E900FFBE5B1BE6B815193681E86(/*hidden argument*/NULL);
V_0 = L_20;
goto IL_008d;
} // 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_0085;
throw e;
}
CATCH_0085:
{ // begin catch(System.Exception)
IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var);
Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_21 = Task_FromException_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mF3C6382F7FF59C06CCB6AF3DEDF0C7E42B3EFC52(((Exception_t *)__exception_local), /*hidden argument*/Task_FromException_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mF3C6382F7FF59C06CCB6AF3DEDF0C7E42B3EFC52_RuntimeMethod_var);
V_0 = L_21;
goto IL_008d;
} // end catch (depth: 1)
IL_008d:
{
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_22 = V_0;
return L_22;
}
}
// System.Void System.IO.UnmanagedMemoryStream::WriteByte(System.Byte)
extern "C" IL2CPP_METHOD_ATTR void UnmanagedMemoryStream_WriteByte_mEF8DEF7777C9ABCB846D9234073A451717F908B6 (UnmanagedMemoryStream_tB2905D85030C9C1E831E3EB02AD7E5B1B1A5FE4E * __this, uint8_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnmanagedMemoryStream_WriteByte_mEF8DEF7777C9ABCB846D9234073A451717F908B6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
int64_t V_1 = 0;
int64_t V_2 = 0;
uint8_t* V_3 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
bool L_0 = __this->get__isOpen_11();
if (L_0)
{
goto IL_000d;
}
}
{
__Error_StreamIsClosed_mAD2694451AA25C7099F2FD1C2357D5C3F1969F37(/*hidden argument*/NULL);
}
IL_000d:
{
bool L_1 = VirtFuncInvoker0< bool >::Invoke(9 /* System.Boolean System.IO.Stream::get_CanWrite() */, __this);
if (L_1)
{
goto IL_001a;
}
}
{
__Error_WriteNotSupported_mDC018F02757EB3116B45F9CEE41F83910ED5FC1B(/*hidden argument*/NULL);
}
IL_001a:
{
int64_t* L_2 = __this->get_address_of__position_8();
int64_t L_3 = Interlocked_Read_m6D73F1AA4709D4F871C6323FEBD3EEC45124B8CB((int64_t*)L_2, /*hidden argument*/NULL);
V_0 = L_3;
int64_t* L_4 = __this->get_address_of__length_6();
int64_t L_5 = Interlocked_Read_m6D73F1AA4709D4F871C6323FEBD3EEC45124B8CB((int64_t*)L_4, /*hidden argument*/NULL);
V_1 = L_5;
int64_t L_6 = V_0;
V_2 = ((int64_t)il2cpp_codegen_add((int64_t)L_6, (int64_t)(((int64_t)((int64_t)1)))));
int64_t L_7 = V_0;
int64_t L_8 = V_1;
if ((((int64_t)L_7) < ((int64_t)L_8)))
{
goto IL_0093;
}
}
{
int64_t L_9 = V_2;
if ((((int64_t)L_9) >= ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_0050;
}
}
{
String_t* L_10 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral2BCB5536759D024FC4C84E0F923502D4B9E8B26E, /*hidden argument*/NULL);
IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA * L_11 = (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA *)il2cpp_codegen_object_new(IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var);
IOException__ctor_mB64DEFB376AA8E279A647A3770F913B20EF65175(L_11, L_10, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, NULL, UnmanagedMemoryStream_WriteByte_mEF8DEF7777C9ABCB846D9234073A451717F908B6_RuntimeMethod_var);
}
IL_0050:
{
int64_t L_12 = V_2;
int64_t L_13 = __this->get__capacity_7();
if ((((int64_t)L_12) <= ((int64_t)L_13)))
{
goto IL_0069;
}
}
{
String_t* L_14 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral97E3C8FAF75EBD4A5B79D9632596155B4EB5403F, /*hidden argument*/NULL);
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_15 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_15, L_14, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, NULL, UnmanagedMemoryStream_WriteByte_mEF8DEF7777C9ABCB846D9234073A451717F908B6_RuntimeMethod_var);
}
IL_0069:
{
SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208 * L_16 = __this->get__buffer_4();
if (L_16)
{
goto IL_0093;
}
}
{
int64_t L_17 = V_0;
int64_t L_18 = V_1;
if ((((int64_t)L_17) <= ((int64_t)L_18)))
{
goto IL_0086;
}
}
{
uint8_t* L_19 = __this->get__mem_5();
int64_t L_20 = V_1;
int64_t L_21 = V_0;
int64_t L_22 = V_1;
Buffer_ZeroMemory_mAB17C8C19C2C8DD1F10E232FAE69C2FCBC31CCAC((uint8_t*)(uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_19, (intptr_t)(((intptr_t)L_20)))), ((int64_t)il2cpp_codegen_subtract((int64_t)L_21, (int64_t)L_22)), /*hidden argument*/NULL);
}
IL_0086:
{
int64_t* L_23 = __this->get_address_of__length_6();
int64_t L_24 = V_2;
Interlocked_Exchange_m58CD9F00310C5BEA719E658CD6E7EDD08F09C0BB((int64_t*)L_23, L_24, /*hidden argument*/NULL);
}
IL_0093:
{
SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208 * L_25 = __this->get__buffer_4();
if (!L_25)
{
goto IL_00d1;
}
}
{
V_3 = (uint8_t*)(((uintptr_t)0));
RuntimeHelpers_PrepareConstrainedRegions_m108F0650C70D15D3CC657AFEBA8E69770EDB9027(/*hidden argument*/NULL);
}
IL_00a3:
try
{ // begin try (depth: 1)
SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208 * L_26 = __this->get__buffer_4();
NullCheck(L_26);
SafeBuffer_AcquirePointer_mD2A94F6258AB8805DFE25E1FA39B5B11B544A4E6(L_26, (uint8_t**)(&V_3), /*hidden argument*/NULL);
uint8_t* L_27 = V_3;
int64_t L_28 = V_0;
int64_t L_29 = __this->get__offset_9();
uint8_t L_30 = ___value0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)((uint8_t*)il2cpp_codegen_add((intptr_t)L_27, (intptr_t)(((intptr_t)L_28)))), (intptr_t)(((intptr_t)L_29))))) = (int8_t)L_30;
IL2CPP_LEAVE(0xDC, FINALLY_00c0);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00c0;
}
FINALLY_00c0:
{ // begin finally (depth: 1)
{
uint8_t* L_31 = V_3;
if ((((intptr_t)L_31) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_00d0;
}
}
IL_00c5:
{
SafeBuffer_t9C39972A6152D9B18D97894AF4EB871581B64208 * L_32 = __this->get__buffer_4();
NullCheck(L_32);
SafeBuffer_ReleasePointer_m27C2B7F09E29271161CB2987088305220F3E227D(L_32, /*hidden argument*/NULL);
}
IL_00d0:
{
IL2CPP_RESET_LEAVE(0xDC);
IL2CPP_END_FINALLY(192)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(192)
{
IL2CPP_JUMP_TBL(0xDC, IL_00dc)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00d1:
{
uint8_t* L_33 = __this->get__mem_5();
int64_t L_34 = V_0;
uint8_t L_35 = ___value0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_33, (intptr_t)(((intptr_t)L_34))))) = (int8_t)L_35;
}
IL_00dc:
{
int64_t* L_36 = __this->get_address_of__position_8();
int64_t L_37 = V_2;
Interlocked_Exchange_m58CD9F00310C5BEA719E658CD6E7EDD08F09C0BB((int64_t*)L_36, L_37, /*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 System.IO.__Error::EndOfFile()
extern "C" IL2CPP_METHOD_ATTR void __Error_EndOfFile_m48F4E14C7AD452BCA036E0F7537CC2B196A5A7F5 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (__Error_EndOfFile_m48F4E14C7AD452BCA036E0F7537CC2B196A5A7F5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral2675279F496EAF8EB26AC07B8F1A8E61C759A2A3, /*hidden argument*/NULL);
EndOfStreamException_t1B47BA867EC337F83056C2833A59293754AAC01F * L_1 = (EndOfStreamException_t1B47BA867EC337F83056C2833A59293754AAC01F *)il2cpp_codegen_object_new(EndOfStreamException_t1B47BA867EC337F83056C2833A59293754AAC01F_il2cpp_TypeInfo_var);
EndOfStreamException__ctor_m6C04807A20CAA05C763225A3EC2F79B756FFBAC6(L_1, L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, __Error_EndOfFile_m48F4E14C7AD452BCA036E0F7537CC2B196A5A7F5_RuntimeMethod_var);
}
}
// System.Void System.IO.__Error::FileNotOpen()
extern "C" IL2CPP_METHOD_ATTR void __Error_FileNotOpen_m72E3844C53F9BBA3DA2AB9A113480804F1954633 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (__Error_FileNotOpen_m72E3844C53F9BBA3DA2AB9A113480804F1954633_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralCDC89A30ABEE9559AAC98D6CE0043622D5487F95, /*hidden argument*/NULL);
ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A * L_1 = (ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A *)il2cpp_codegen_object_new(ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A_il2cpp_TypeInfo_var);
ObjectDisposedException__ctor_m303CFD09E4B541C36C60AE7B7CBC8B1B7EED66DC(L_1, (String_t*)NULL, L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, __Error_FileNotOpen_m72E3844C53F9BBA3DA2AB9A113480804F1954633_RuntimeMethod_var);
}
}
// System.Void System.IO.__Error::StreamIsClosed()
extern "C" IL2CPP_METHOD_ATTR void __Error_StreamIsClosed_mAD2694451AA25C7099F2FD1C2357D5C3F1969F37 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (__Error_StreamIsClosed_mAD2694451AA25C7099F2FD1C2357D5C3F1969F37_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral2DE206896014770EA4546008B698FF620310313E, /*hidden argument*/NULL);
ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A * L_1 = (ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A *)il2cpp_codegen_object_new(ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A_il2cpp_TypeInfo_var);
ObjectDisposedException__ctor_m303CFD09E4B541C36C60AE7B7CBC8B1B7EED66DC(L_1, (String_t*)NULL, L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, __Error_StreamIsClosed_mAD2694451AA25C7099F2FD1C2357D5C3F1969F37_RuntimeMethod_var);
}
}
// System.Void System.IO.__Error::MemoryStreamNotExpandable()
extern "C" IL2CPP_METHOD_ATTR void __Error_MemoryStreamNotExpandable_mF68838F1E20B6FD1A292017A734F89534C002F7F (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (__Error_MemoryStreamNotExpandable_mF68838F1E20B6FD1A292017A734F89534C002F7F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralBC112DFA2BA868FD548B5E793DA720F4BA4B7F4A, /*hidden argument*/NULL);
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_1 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_1, L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, __Error_MemoryStreamNotExpandable_mF68838F1E20B6FD1A292017A734F89534C002F7F_RuntimeMethod_var);
}
}
// System.Void System.IO.__Error::ReaderClosed()
extern "C" IL2CPP_METHOD_ATTR void __Error_ReaderClosed_mDEB32103741D23496C28421032CA44B7DB2E0717 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (__Error_ReaderClosed_mDEB32103741D23496C28421032CA44B7DB2E0717_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral104B2949F6F6A59C62E2F1CE4F43D6B3B9B197DF, /*hidden argument*/NULL);
ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A * L_1 = (ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A *)il2cpp_codegen_object_new(ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A_il2cpp_TypeInfo_var);
ObjectDisposedException__ctor_m303CFD09E4B541C36C60AE7B7CBC8B1B7EED66DC(L_1, (String_t*)NULL, L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, __Error_ReaderClosed_mDEB32103741D23496C28421032CA44B7DB2E0717_RuntimeMethod_var);
}
}
// System.Void System.IO.__Error::ReadNotSupported()
extern "C" IL2CPP_METHOD_ATTR void __Error_ReadNotSupported_mE20D002F31774F786CAC01DE88CF2FD9F46C0696 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (__Error_ReadNotSupported_mE20D002F31774F786CAC01DE88CF2FD9F46C0696_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral781C42C8B8E58290D48A10D0FDEF4A87279EF7DA, /*hidden argument*/NULL);
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_1 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_1, L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, __Error_ReadNotSupported_mE20D002F31774F786CAC01DE88CF2FD9F46C0696_RuntimeMethod_var);
}
}
// System.Void System.IO.__Error::WrongAsyncResult()
extern "C" IL2CPP_METHOD_ATTR void __Error_WrongAsyncResult_m612D2B72EAE5B009FFB4DFD0831140EE6819B909 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (__Error_WrongAsyncResult_m612D2B72EAE5B009FFB4DFD0831140EE6819B909_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral06034170A9EFD60729A8166B3398BD58485D6DEE, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_1 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_1, L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, __Error_WrongAsyncResult_m612D2B72EAE5B009FFB4DFD0831140EE6819B909_RuntimeMethod_var);
}
}
// System.Void System.IO.__Error::EndReadCalledTwice()
extern "C" IL2CPP_METHOD_ATTR void __Error_EndReadCalledTwice_mC80DEEBE51D036D4CCC24671947ED863E470A7FA (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (__Error_EndReadCalledTwice_mC80DEEBE51D036D4CCC24671947ED863E470A7FA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral3BCB560C93B84A12D8D29EE915252365391D82AE, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_1 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_1, L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, __Error_EndReadCalledTwice_mC80DEEBE51D036D4CCC24671947ED863E470A7FA_RuntimeMethod_var);
}
}
// System.Void System.IO.__Error::EndWriteCalledTwice()
extern "C" IL2CPP_METHOD_ATTR void __Error_EndWriteCalledTwice_m991D9485115C8EE93569537674B4206DC8EADB2C (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (__Error_EndWriteCalledTwice_m991D9485115C8EE93569537674B4206DC8EADB2C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral0B99FE9B8D9E5DCC187DB9C1DCB067CE403B1FFF, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_1 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_1, L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, __Error_EndWriteCalledTwice_m991D9485115C8EE93569537674B4206DC8EADB2C_RuntimeMethod_var);
}
}
// System.String System.IO.__Error::GetDisplayablePath(System.String,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR String_t* __Error_GetDisplayablePath_m5DC1E0FB5AAE0E7562C60B548E38AD45249D0105 (String_t* ___path0, bool ___isInvalidPath1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (__Error_GetDisplayablePath_m5DC1E0FB5AAE0E7562C60B548E38AD45249D0105_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
String_t* L_0 = ___path0;
bool L_1 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_000e;
}
}
{
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
return L_2;
}
IL_000e:
{
String_t* L_3 = ___path0;
NullCheck(L_3);
int32_t L_4 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_3, /*hidden argument*/NULL);
if ((((int32_t)L_4) >= ((int32_t)2)))
{
goto IL_0019;
}
}
{
String_t* L_5 = ___path0;
return L_5;
}
IL_0019:
{
String_t* L_6 = ___path0;
bool L_7 = PathInternal_IsPartiallyQualified_m04BC87968B46BEDDAB66FA4773F8B146E7F70E68(L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_0026;
}
}
{
bool L_8 = ___isInvalidPath1;
if (L_8)
{
goto IL_0026;
}
}
{
String_t* L_9 = ___path0;
return L_9;
}
IL_0026:
{
V_0 = (bool)0;
}
IL_0028:
try
{ // begin try (depth: 1)
{
bool L_10 = ___isInvalidPath1;
if (L_10)
{
goto IL_002d;
}
}
IL_002b:
{
V_0 = (bool)1;
}
IL_002d:
{
goto IL_0038;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (SecurityException_tBB116BA16A419AB19A4F7DEEF43A3FC2A638E8D5_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_002f;
if(il2cpp_codegen_class_is_assignable_from (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0032;
if(il2cpp_codegen_class_is_assignable_from (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0035;
throw e;
}
CATCH_002f:
{ // begin catch(System.Security.SecurityException)
goto IL_0038;
} // end catch (depth: 1)
CATCH_0032:
{ // begin catch(System.ArgumentException)
goto IL_0038;
} // end catch (depth: 1)
CATCH_0035:
{ // begin catch(System.NotSupportedException)
goto IL_0038;
} // end catch (depth: 1)
IL_0038:
{
bool L_11 = V_0;
if (L_11)
{
goto IL_0066;
}
}
{
String_t* L_12 = ___path0;
String_t* L_13 = ___path0;
NullCheck(L_13);
int32_t L_14 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_13, /*hidden argument*/NULL);
NullCheck(L_12);
Il2CppChar L_15 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_12, ((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)1)), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var);
bool L_16 = Path_IsDirectorySeparator_m12C353D093EE8E9EA5C1B818004DCABB40B6F832(L_15, /*hidden argument*/NULL);
if (!L_16)
{
goto IL_005e;
}
}
{
String_t* L_17 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB877A8E0CC86712F39624B45B20AC74BE887E398, /*hidden argument*/NULL);
___path0 = L_17;
goto IL_0066;
}
IL_005e:
{
String_t* L_18 = ___path0;
IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var);
String_t* L_19 = Path_GetFileName_m2307E8E0B250632002840D9EC27DBABE9C4EB85E(L_18, /*hidden argument*/NULL);
___path0 = L_19;
}
IL_0066:
{
String_t* L_20 = ___path0;
return L_20;
}
}
// System.Void System.IO.__Error::WinIOError(System.Int32,System.String)
extern "C" IL2CPP_METHOD_ATTR void __Error_WinIOError_mDA34FD0DC2ED957492B470B48E69838BB4E68A4B (int32_t ___errorCode0, String_t* ___maybeFullPath1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (__Error_WinIOError_mDA34FD0DC2ED957492B470B48E69838BB4E68A4B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
String_t* V_1 = NULL;
int32_t G_B3_0 = 0;
{
int32_t L_0 = ___errorCode0;
if ((((int32_t)L_0) == ((int32_t)((int32_t)123))))
{
goto IL_000f;
}
}
{
int32_t L_1 = ___errorCode0;
G_B3_0 = ((((int32_t)L_1) == ((int32_t)((int32_t)161)))? 1 : 0);
goto IL_0010;
}
IL_000f:
{
G_B3_0 = 1;
}
IL_0010:
{
V_0 = (bool)G_B3_0;
String_t* L_2 = ___maybeFullPath1;
bool L_3 = V_0;
String_t* L_4 = __Error_GetDisplayablePath_m5DC1E0FB5AAE0E7562C60B548E38AD45249D0105(L_2, L_3, /*hidden argument*/NULL);
V_1 = L_4;
int32_t L_5 = ___errorCode0;
if ((((int32_t)L_5) > ((int32_t)((int32_t)80))))
{
goto IL_005d;
}
}
{
int32_t L_6 = ___errorCode0;
if ((((int32_t)L_6) > ((int32_t)((int32_t)15))))
{
goto IL_0048;
}
}
{
int32_t L_7 = ___errorCode0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)2)))
{
case 0:
{
goto IL_0098;
}
case 1:
{
goto IL_00cb;
}
case 2:
{
goto IL_0207;
}
case 3:
{
goto IL_00fd;
}
}
}
{
int32_t L_8 = ___errorCode0;
if ((((int32_t)L_8) == ((int32_t)((int32_t)15))))
{
goto IL_016b;
}
}
{
goto IL_0207;
}
IL_0048:
{
int32_t L_9 = ___errorCode0;
if ((((int32_t)L_9) == ((int32_t)((int32_t)32))))
{
goto IL_0198;
}
}
{
int32_t L_10 = ___errorCode0;
if ((((int32_t)L_10) == ((int32_t)((int32_t)80))))
{
goto IL_01d8;
}
}
{
goto IL_0207;
}
IL_005d:
{
int32_t L_11 = ___errorCode0;
if ((((int32_t)L_11) > ((int32_t)((int32_t)183))))
{
goto IL_007d;
}
}
{
int32_t L_12 = ___errorCode0;
if ((((int32_t)L_12) == ((int32_t)((int32_t)87))))
{
goto IL_0185;
}
}
{
int32_t L_13 = ___errorCode0;
if ((((int32_t)L_13) == ((int32_t)((int32_t)183))))
{
goto IL_012f;
}
}
{
goto IL_0207;
}
IL_007d:
{
int32_t L_14 = ___errorCode0;
if ((((int32_t)L_14) == ((int32_t)((int32_t)206))))
{
goto IL_015b;
}
}
{
int32_t L_15 = ___errorCode0;
if ((((int32_t)L_15) == ((int32_t)((int32_t)995))))
{
goto IL_0201;
}
}
{
goto IL_0207;
}
IL_0098:
{
String_t* L_16 = V_1;
NullCheck(L_16);
int32_t L_17 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_16, /*hidden argument*/NULL);
if (L_17)
{
goto IL_00b0;
}
}
{
String_t* L_18 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralF05ED8D2787C37C90E1473E7577892374D421A43, /*hidden argument*/NULL);
FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431 * L_19 = (FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431 *)il2cpp_codegen_object_new(FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431_il2cpp_TypeInfo_var);
FileNotFoundException__ctor_mA72DAA77008E903BC162A8D32FDE7F874B27E858(L_19, L_18, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, NULL, __Error_WinIOError_mDA34FD0DC2ED957492B470B48E69838BB4E68A4B_RuntimeMethod_var);
}
IL_00b0:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_20 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_21 = L_20;
String_t* L_22 = V_1;
NullCheck(L_21);
ArrayElementTypeCheck (L_21, L_22);
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_22);
String_t* L_23 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralDD752B29EC066D8D7C811D0D1588EF5458A6FB0E, L_21, /*hidden argument*/NULL);
String_t* L_24 = V_1;
FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431 * L_25 = (FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431 *)il2cpp_codegen_object_new(FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431_il2cpp_TypeInfo_var);
FileNotFoundException__ctor_mB97B07D7D9C7A611842518376C8E11B56AD4CA98(L_25, L_23, L_24, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, NULL, __Error_WinIOError_mDA34FD0DC2ED957492B470B48E69838BB4E68A4B_RuntimeMethod_var);
}
IL_00cb:
{
String_t* L_26 = V_1;
NullCheck(L_26);
int32_t L_27 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_26, /*hidden argument*/NULL);
if (L_27)
{
goto IL_00e3;
}
}
{
String_t* L_28 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralC19E61A380CA7CE4691A9B314627EC2DBF71206E, /*hidden argument*/NULL);
DirectoryNotFoundException_tDD7866E46935FAD8898B4B35A82A354605DADF55 * L_29 = (DirectoryNotFoundException_tDD7866E46935FAD8898B4B35A82A354605DADF55 *)il2cpp_codegen_object_new(DirectoryNotFoundException_tDD7866E46935FAD8898B4B35A82A354605DADF55_il2cpp_TypeInfo_var);
DirectoryNotFoundException__ctor_mFE363B5843BABE6F4801ABC79B7643C5BED4797B(L_29, L_28, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_29, NULL, __Error_WinIOError_mDA34FD0DC2ED957492B470B48E69838BB4E68A4B_RuntimeMethod_var);
}
IL_00e3:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_30 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_31 = L_30;
String_t* L_32 = V_1;
NullCheck(L_31);
ArrayElementTypeCheck (L_31, L_32);
(L_31)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_32);
String_t* L_33 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralD0189667B8E2F597BB375A5DA6046DAD5C52570A, L_31, /*hidden argument*/NULL);
DirectoryNotFoundException_tDD7866E46935FAD8898B4B35A82A354605DADF55 * L_34 = (DirectoryNotFoundException_tDD7866E46935FAD8898B4B35A82A354605DADF55 *)il2cpp_codegen_object_new(DirectoryNotFoundException_tDD7866E46935FAD8898B4B35A82A354605DADF55_il2cpp_TypeInfo_var);
DirectoryNotFoundException__ctor_mFE363B5843BABE6F4801ABC79B7643C5BED4797B(L_34, L_33, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_34, NULL, __Error_WinIOError_mDA34FD0DC2ED957492B470B48E69838BB4E68A4B_RuntimeMethod_var);
}
IL_00fd:
{
String_t* L_35 = V_1;
NullCheck(L_35);
int32_t L_36 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_35, /*hidden argument*/NULL);
if (L_36)
{
goto IL_0115;
}
}
{
String_t* L_37 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral51B23CF776EFF138FA5B4A92E15B0F80DB0CFACA, /*hidden argument*/NULL);
UnauthorizedAccessException_tC2210A745BFDD3AE3559A87A4219E2945EEC9F75 * L_38 = (UnauthorizedAccessException_tC2210A745BFDD3AE3559A87A4219E2945EEC9F75 *)il2cpp_codegen_object_new(UnauthorizedAccessException_tC2210A745BFDD3AE3559A87A4219E2945EEC9F75_il2cpp_TypeInfo_var);
UnauthorizedAccessException__ctor_mFE97E700E2ADBC5A46A6A43642CFA2FCB8C0BA85(L_38, L_37, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_38, NULL, __Error_WinIOError_mDA34FD0DC2ED957492B470B48E69838BB4E68A4B_RuntimeMethod_var);
}
IL_0115:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_39 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_40 = L_39;
String_t* L_41 = V_1;
NullCheck(L_40);
ArrayElementTypeCheck (L_40, L_41);
(L_40)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_41);
String_t* L_42 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteral792ACC91EE5889D8CEE5B2697A416308D546BCB1, L_40, /*hidden argument*/NULL);
UnauthorizedAccessException_tC2210A745BFDD3AE3559A87A4219E2945EEC9F75 * L_43 = (UnauthorizedAccessException_tC2210A745BFDD3AE3559A87A4219E2945EEC9F75 *)il2cpp_codegen_object_new(UnauthorizedAccessException_tC2210A745BFDD3AE3559A87A4219E2945EEC9F75_il2cpp_TypeInfo_var);
UnauthorizedAccessException__ctor_mFE97E700E2ADBC5A46A6A43642CFA2FCB8C0BA85(L_43, L_42, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_43, NULL, __Error_WinIOError_mDA34FD0DC2ED957492B470B48E69838BB4E68A4B_RuntimeMethod_var);
}
IL_012f:
{
String_t* L_44 = V_1;
NullCheck(L_44);
int32_t L_45 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_44, /*hidden argument*/NULL);
if (!L_45)
{
goto IL_0207;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_46 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_47 = L_46;
String_t* L_48 = V_1;
NullCheck(L_47);
ArrayElementTypeCheck (L_47, L_48);
(L_47)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_48);
String_t* L_49 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralB4DCD844520DA1F2BBC77A98F8B314501F8C092D, L_47, /*hidden argument*/NULL);
int32_t L_50 = ___errorCode0;
int32_t L_51 = Win32Native_MakeHRFromErrorCode_m15A49651F9587510FB2BEC6A2EFD40A54E414720(L_50, /*hidden argument*/NULL);
String_t* L_52 = ___maybeFullPath1;
IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA * L_53 = (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA *)il2cpp_codegen_object_new(IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var);
IOException__ctor_mF3652DBA8804D22DB90A135D386C1CCA34D079BC(L_53, L_49, L_51, L_52, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_53, NULL, __Error_WinIOError_mDA34FD0DC2ED957492B470B48E69838BB4E68A4B_RuntimeMethod_var);
}
IL_015b:
{
String_t* L_54 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralBAE1EBEC7E602C6020B7B0FC2AB9BBE7B9F5F915, /*hidden argument*/NULL);
PathTooLongException_t8DFBC40E5D45388A65B3327CF0D1F677C0F923AA * L_55 = (PathTooLongException_t8DFBC40E5D45388A65B3327CF0D1F677C0F923AA *)il2cpp_codegen_object_new(PathTooLongException_t8DFBC40E5D45388A65B3327CF0D1F677C0F923AA_il2cpp_TypeInfo_var);
PathTooLongException__ctor_m245E1CA7C92C2F6406440660F4AF765583E024C8(L_55, L_54, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_55, NULL, __Error_WinIOError_mDA34FD0DC2ED957492B470B48E69838BB4E68A4B_RuntimeMethod_var);
}
IL_016b:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_56 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_57 = L_56;
String_t* L_58 = V_1;
NullCheck(L_57);
ArrayElementTypeCheck (L_57, L_58);
(L_57)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_58);
String_t* L_59 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteral2CF7D6096047D30EF507FB93AC4C208A294D0D2E, L_57, /*hidden argument*/NULL);
DriveNotFoundException_tE24C6582F3C8F9A24BF0BD5BE63BCB2B6983353C * L_60 = (DriveNotFoundException_tE24C6582F3C8F9A24BF0BD5BE63BCB2B6983353C *)il2cpp_codegen_object_new(DriveNotFoundException_tE24C6582F3C8F9A24BF0BD5BE63BCB2B6983353C_il2cpp_TypeInfo_var);
DriveNotFoundException__ctor_m507AB9B313C4AF69DABD394073D0DC9A952EDF1B(L_60, L_59, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_60, NULL, __Error_WinIOError_mDA34FD0DC2ED957492B470B48E69838BB4E68A4B_RuntimeMethod_var);
}
IL_0185:
{
int32_t L_61 = ___errorCode0;
String_t* L_62 = Win32Native_GetMessage_m68D6D40DD33D7F2FF30B7CE600BADBEB4EE41B87(L_61, /*hidden argument*/NULL);
int32_t L_63 = ___errorCode0;
int32_t L_64 = Win32Native_MakeHRFromErrorCode_m15A49651F9587510FB2BEC6A2EFD40A54E414720(L_63, /*hidden argument*/NULL);
String_t* L_65 = ___maybeFullPath1;
IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA * L_66 = (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA *)il2cpp_codegen_object_new(IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var);
IOException__ctor_mF3652DBA8804D22DB90A135D386C1CCA34D079BC(L_66, L_62, L_64, L_65, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_66, NULL, __Error_WinIOError_mDA34FD0DC2ED957492B470B48E69838BB4E68A4B_RuntimeMethod_var);
}
IL_0198:
{
String_t* L_67 = V_1;
NullCheck(L_67);
int32_t L_68 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_67, /*hidden argument*/NULL);
if (L_68)
{
goto IL_01b7;
}
}
{
String_t* L_69 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral6B3F00A5708C6496295B0EDCDEC7AA844B71A6D9, /*hidden argument*/NULL);
int32_t L_70 = ___errorCode0;
int32_t L_71 = Win32Native_MakeHRFromErrorCode_m15A49651F9587510FB2BEC6A2EFD40A54E414720(L_70, /*hidden argument*/NULL);
String_t* L_72 = ___maybeFullPath1;
IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA * L_73 = (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA *)il2cpp_codegen_object_new(IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var);
IOException__ctor_mF3652DBA8804D22DB90A135D386C1CCA34D079BC(L_73, L_69, L_71, L_72, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_73, NULL, __Error_WinIOError_mDA34FD0DC2ED957492B470B48E69838BB4E68A4B_RuntimeMethod_var);
}
IL_01b7:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_74 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_75 = L_74;
String_t* L_76 = V_1;
NullCheck(L_75);
ArrayElementTypeCheck (L_75, L_76);
(L_75)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_76);
String_t* L_77 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralC29FDD9E1725BFBAC261A919AEA0F811B7D7A0A9, L_75, /*hidden argument*/NULL);
int32_t L_78 = ___errorCode0;
int32_t L_79 = Win32Native_MakeHRFromErrorCode_m15A49651F9587510FB2BEC6A2EFD40A54E414720(L_78, /*hidden argument*/NULL);
String_t* L_80 = ___maybeFullPath1;
IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA * L_81 = (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA *)il2cpp_codegen_object_new(IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var);
IOException__ctor_mF3652DBA8804D22DB90A135D386C1CCA34D079BC(L_81, L_77, L_79, L_80, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_81, NULL, __Error_WinIOError_mDA34FD0DC2ED957492B470B48E69838BB4E68A4B_RuntimeMethod_var);
}
IL_01d8:
{
String_t* L_82 = V_1;
NullCheck(L_82);
int32_t L_83 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_82, /*hidden argument*/NULL);
if (!L_83)
{
goto IL_0207;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_84 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_85 = L_84;
String_t* L_86 = V_1;
NullCheck(L_85);
ArrayElementTypeCheck (L_85, L_86);
(L_85)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_86);
String_t* L_87 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteral5D979813AACA82577D6C8D83D57DA0FAA5DE9671, L_85, /*hidden argument*/NULL);
int32_t L_88 = ___errorCode0;
int32_t L_89 = Win32Native_MakeHRFromErrorCode_m15A49651F9587510FB2BEC6A2EFD40A54E414720(L_88, /*hidden argument*/NULL);
String_t* L_90 = ___maybeFullPath1;
IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA * L_91 = (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA *)il2cpp_codegen_object_new(IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var);
IOException__ctor_mF3652DBA8804D22DB90A135D386C1CCA34D079BC(L_91, L_87, L_89, L_90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_91, NULL, __Error_WinIOError_mDA34FD0DC2ED957492B470B48E69838BB4E68A4B_RuntimeMethod_var);
}
IL_0201:
{
OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 * L_92 = (OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 *)il2cpp_codegen_object_new(OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90_il2cpp_TypeInfo_var);
OperationCanceledException__ctor_m2B04DF548109DAA7069F6108990F53588B5C5CA4(L_92, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_92, NULL, __Error_WinIOError_mDA34FD0DC2ED957492B470B48E69838BB4E68A4B_RuntimeMethod_var);
}
IL_0207:
{
int32_t L_93 = ___errorCode0;
String_t* L_94 = Win32Native_GetMessage_m68D6D40DD33D7F2FF30B7CE600BADBEB4EE41B87(L_93, /*hidden argument*/NULL);
int32_t L_95 = ___errorCode0;
int32_t L_96 = Win32Native_MakeHRFromErrorCode_m15A49651F9587510FB2BEC6A2EFD40A54E414720(L_95, /*hidden argument*/NULL);
String_t* L_97 = ___maybeFullPath1;
IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA * L_98 = (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA *)il2cpp_codegen_object_new(IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var);
IOException__ctor_mF3652DBA8804D22DB90A135D386C1CCA34D079BC(L_98, L_94, L_96, L_97, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_98, NULL, __Error_WinIOError_mDA34FD0DC2ED957492B470B48E69838BB4E68A4B_RuntimeMethod_var);
}
}
// System.Void System.IO.__Error::WriteNotSupported()
extern "C" IL2CPP_METHOD_ATTR void __Error_WriteNotSupported_mDC018F02757EB3116B45F9CEE41F83910ED5FC1B (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (__Error_WriteNotSupported_mDC018F02757EB3116B45F9CEE41F83910ED5FC1B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral66D145F9BC4E163069F795822A1EA8BEF2E4E55B, /*hidden argument*/NULL);
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_1 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_1, L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, __Error_WriteNotSupported_mDC018F02757EB3116B45F9CEE41F83910ED5FC1B_RuntimeMethod_var);
}
}
// System.Void System.IO.__Error::WriterClosed()
extern "C" IL2CPP_METHOD_ATTR void __Error_WriterClosed_m0CC83C102ABE14A259F83C3943DC72B372D1CC2F (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (__Error_WriterClosed_m0CC83C102ABE14A259F83C3943DC72B372D1CC2F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral32957566199CF3D8AAF6F91DEC9B58897A18C474, /*hidden argument*/NULL);
ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A * L_1 = (ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A *)il2cpp_codegen_object_new(ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A_il2cpp_TypeInfo_var);
ObjectDisposedException__ctor_m303CFD09E4B541C36C60AE7B7CBC8B1B7EED66DC(L_1, (String_t*)NULL, L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, __Error_WriterClosed_m0CC83C102ABE14A259F83C3943DC72B372D1CC2F_RuntimeMethod_var);
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.IndexOutOfRangeException::.ctor()
extern "C" IL2CPP_METHOD_ATTR void IndexOutOfRangeException__ctor_m17448AB4B27BC9D8AEB4605CDB0EA053626ABEC1 (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IndexOutOfRangeException__ctor_m17448AB4B27BC9D8AEB4605CDB0EA053626ABEC1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral40272C70580D7C109CB89E34D31411747867424C, /*hidden argument*/NULL);
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233080), /*hidden argument*/NULL);
return;
}
}
// System.Void System.IndexOutOfRangeException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void IndexOutOfRangeException__ctor_mCCE2EFF47A0ACB4B2636F63140F94FCEA71A9BCA (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF * __this, String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233080), /*hidden argument*/NULL);
return;
}
}
// System.Void System.IndexOutOfRangeException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
extern "C" IL2CPP_METHOD_ATTR void IndexOutOfRangeException__ctor_m3672AC5A2070B4F6B6C97F101A04E6952E95CA72 (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949(__this, L_0, 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
// Conversion methods for marshalling of: System.InputRecord
extern "C" void InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78_marshal_pinvoke(const InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78& unmarshaled, InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78_marshaled_pinvoke& marshaled)
{
marshaled.___EventType_0 = unmarshaled.get_EventType_0();
marshaled.___KeyDown_1 = static_cast<int32_t>(unmarshaled.get_KeyDown_1());
marshaled.___RepeatCount_2 = unmarshaled.get_RepeatCount_2();
marshaled.___VirtualKeyCode_3 = unmarshaled.get_VirtualKeyCode_3();
marshaled.___VirtualScanCode_4 = unmarshaled.get_VirtualScanCode_4();
marshaled.___Character_5 = static_cast<uint8_t>(unmarshaled.get_Character_5());
marshaled.___ControlKeyState_6 = unmarshaled.get_ControlKeyState_6();
marshaled.___pad1_7 = unmarshaled.get_pad1_7();
marshaled.___pad2_8 = static_cast<int32_t>(unmarshaled.get_pad2_8());
}
extern "C" void InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78_marshal_pinvoke_back(const InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78_marshaled_pinvoke& marshaled, InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78& unmarshaled)
{
int16_t unmarshaled_EventType_temp_0 = 0;
unmarshaled_EventType_temp_0 = marshaled.___EventType_0;
unmarshaled.set_EventType_0(unmarshaled_EventType_temp_0);
bool unmarshaled_KeyDown_temp_1 = false;
unmarshaled_KeyDown_temp_1 = static_cast<bool>(marshaled.___KeyDown_1);
unmarshaled.set_KeyDown_1(unmarshaled_KeyDown_temp_1);
int16_t unmarshaled_RepeatCount_temp_2 = 0;
unmarshaled_RepeatCount_temp_2 = marshaled.___RepeatCount_2;
unmarshaled.set_RepeatCount_2(unmarshaled_RepeatCount_temp_2);
int16_t unmarshaled_VirtualKeyCode_temp_3 = 0;
unmarshaled_VirtualKeyCode_temp_3 = marshaled.___VirtualKeyCode_3;
unmarshaled.set_VirtualKeyCode_3(unmarshaled_VirtualKeyCode_temp_3);
int16_t unmarshaled_VirtualScanCode_temp_4 = 0;
unmarshaled_VirtualScanCode_temp_4 = marshaled.___VirtualScanCode_4;
unmarshaled.set_VirtualScanCode_4(unmarshaled_VirtualScanCode_temp_4);
Il2CppChar unmarshaled_Character_temp_5 = 0x0;
unmarshaled_Character_temp_5 = static_cast<Il2CppChar>(marshaled.___Character_5);
unmarshaled.set_Character_5(unmarshaled_Character_temp_5);
int32_t unmarshaled_ControlKeyState_temp_6 = 0;
unmarshaled_ControlKeyState_temp_6 = marshaled.___ControlKeyState_6;
unmarshaled.set_ControlKeyState_6(unmarshaled_ControlKeyState_temp_6);
int32_t unmarshaled_pad1_temp_7 = 0;
unmarshaled_pad1_temp_7 = marshaled.___pad1_7;
unmarshaled.set_pad1_7(unmarshaled_pad1_temp_7);
bool unmarshaled_pad2_temp_8 = false;
unmarshaled_pad2_temp_8 = static_cast<bool>(marshaled.___pad2_8);
unmarshaled.set_pad2_8(unmarshaled_pad2_temp_8);
}
// Conversion method for clean up from marshalling of: System.InputRecord
extern "C" void InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78_marshal_pinvoke_cleanup(InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: System.InputRecord
extern "C" void InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78_marshal_com(const InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78& unmarshaled, InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78_marshaled_com& marshaled)
{
marshaled.___EventType_0 = unmarshaled.get_EventType_0();
marshaled.___KeyDown_1 = static_cast<int32_t>(unmarshaled.get_KeyDown_1());
marshaled.___RepeatCount_2 = unmarshaled.get_RepeatCount_2();
marshaled.___VirtualKeyCode_3 = unmarshaled.get_VirtualKeyCode_3();
marshaled.___VirtualScanCode_4 = unmarshaled.get_VirtualScanCode_4();
marshaled.___Character_5 = static_cast<uint8_t>(unmarshaled.get_Character_5());
marshaled.___ControlKeyState_6 = unmarshaled.get_ControlKeyState_6();
marshaled.___pad1_7 = unmarshaled.get_pad1_7();
marshaled.___pad2_8 = static_cast<int32_t>(unmarshaled.get_pad2_8());
}
extern "C" void InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78_marshal_com_back(const InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78_marshaled_com& marshaled, InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78& unmarshaled)
{
int16_t unmarshaled_EventType_temp_0 = 0;
unmarshaled_EventType_temp_0 = marshaled.___EventType_0;
unmarshaled.set_EventType_0(unmarshaled_EventType_temp_0);
bool unmarshaled_KeyDown_temp_1 = false;
unmarshaled_KeyDown_temp_1 = static_cast<bool>(marshaled.___KeyDown_1);
unmarshaled.set_KeyDown_1(unmarshaled_KeyDown_temp_1);
int16_t unmarshaled_RepeatCount_temp_2 = 0;
unmarshaled_RepeatCount_temp_2 = marshaled.___RepeatCount_2;
unmarshaled.set_RepeatCount_2(unmarshaled_RepeatCount_temp_2);
int16_t unmarshaled_VirtualKeyCode_temp_3 = 0;
unmarshaled_VirtualKeyCode_temp_3 = marshaled.___VirtualKeyCode_3;
unmarshaled.set_VirtualKeyCode_3(unmarshaled_VirtualKeyCode_temp_3);
int16_t unmarshaled_VirtualScanCode_temp_4 = 0;
unmarshaled_VirtualScanCode_temp_4 = marshaled.___VirtualScanCode_4;
unmarshaled.set_VirtualScanCode_4(unmarshaled_VirtualScanCode_temp_4);
Il2CppChar unmarshaled_Character_temp_5 = 0x0;
unmarshaled_Character_temp_5 = static_cast<Il2CppChar>(marshaled.___Character_5);
unmarshaled.set_Character_5(unmarshaled_Character_temp_5);
int32_t unmarshaled_ControlKeyState_temp_6 = 0;
unmarshaled_ControlKeyState_temp_6 = marshaled.___ControlKeyState_6;
unmarshaled.set_ControlKeyState_6(unmarshaled_ControlKeyState_temp_6);
int32_t unmarshaled_pad1_temp_7 = 0;
unmarshaled_pad1_temp_7 = marshaled.___pad1_7;
unmarshaled.set_pad1_7(unmarshaled_pad1_temp_7);
bool unmarshaled_pad2_temp_8 = false;
unmarshaled_pad2_temp_8 = static_cast<bool>(marshaled.___pad2_8);
unmarshaled.set_pad2_8(unmarshaled_pad2_temp_8);
}
// Conversion method for clean up from marshalling of: System.InputRecord
extern "C" void InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78_marshal_com_cleanup(InputRecord_tAB007C739F339BE208F3C4796B53E9044ADF0A78_marshaled_com& marshaled)
{
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int32 System.Int16::CompareTo(System.Object)
extern "C" IL2CPP_METHOD_ATTR int32_t Int16_CompareTo_m75483243B6AE62C89F02D137A5625051AF41306C (int16_t* __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int16_CompareTo_m75483243B6AE62C89F02D137A5625051AF41306C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0005;
}
}
{
return 1;
}
IL_0005:
{
RuntimeObject * L_1 = ___value0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_1, Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_il2cpp_TypeInfo_var)))
{
goto IL_0017;
}
}
{
int32_t L_2 = *((int16_t*)__this);
RuntimeObject * L_3 = ___value0;
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)((*(int16_t*)((int16_t*)UnBox(L_3, Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_il2cpp_TypeInfo_var))))));
}
IL_0017:
{
String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralF81DB58077C32951A07F4AF53F388BC5335C06AE, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_5 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_5, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Int16_CompareTo_m75483243B6AE62C89F02D137A5625051AF41306C_RuntimeMethod_var);
}
}
extern "C" int32_t Int16_CompareTo_m75483243B6AE62C89F02D137A5625051AF41306C_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + 1);
return Int16_CompareTo_m75483243B6AE62C89F02D137A5625051AF41306C(_thisAdjusted, ___value0, method);
}
// System.Int32 System.Int16::CompareTo(System.Int16)
extern "C" IL2CPP_METHOD_ATTR int32_t Int16_CompareTo_m5CE241F3D922C600E6E9BDDA9610ABCFAAEC68EE (int16_t* __this, int16_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = *((int16_t*)__this);
int16_t L_1 = ___value0;
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1));
}
}
extern "C" int32_t Int16_CompareTo_m5CE241F3D922C600E6E9BDDA9610ABCFAAEC68EE_AdjustorThunk (RuntimeObject * __this, int16_t ___value0, const RuntimeMethod* method)
{
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + 1);
return Int16_CompareTo_m5CE241F3D922C600E6E9BDDA9610ABCFAAEC68EE(_thisAdjusted, ___value0, method);
}
// System.Boolean System.Int16::Equals(System.Object)
extern "C" IL2CPP_METHOD_ATTR bool Int16_Equals_mB1FFCF510D2A74D15014660A0AFA1B5B0AE2F024 (int16_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int16_Equals_mB1FFCF510D2A74D15014660A0AFA1B5B0AE2F024_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_il2cpp_TypeInfo_var)))
{
goto IL_000a;
}
}
{
return (bool)0;
}
IL_000a:
{
int32_t L_1 = *((int16_t*)__this);
RuntimeObject * L_2 = ___obj0;
return (bool)((((int32_t)L_1) == ((int32_t)((*(int16_t*)((int16_t*)UnBox(L_2, Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_il2cpp_TypeInfo_var))))))? 1 : 0);
}
}
extern "C" bool Int16_Equals_mB1FFCF510D2A74D15014660A0AFA1B5B0AE2F024_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + 1);
return Int16_Equals_mB1FFCF510D2A74D15014660A0AFA1B5B0AE2F024(_thisAdjusted, ___obj0, method);
}
// System.Boolean System.Int16::Equals(System.Int16)
extern "C" IL2CPP_METHOD_ATTR bool Int16_Equals_m87F0E70703F6F8BB46882EA7665DA7A7BB44F36B (int16_t* __this, int16_t ___obj0, const RuntimeMethod* method)
{
{
int32_t L_0 = *((int16_t*)__this);
int16_t L_1 = ___obj0;
return (bool)((((int32_t)L_0) == ((int32_t)L_1))? 1 : 0);
}
}
extern "C" bool Int16_Equals_m87F0E70703F6F8BB46882EA7665DA7A7BB44F36B_AdjustorThunk (RuntimeObject * __this, int16_t ___obj0, const RuntimeMethod* method)
{
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + 1);
return Int16_Equals_m87F0E70703F6F8BB46882EA7665DA7A7BB44F36B(_thisAdjusted, ___obj0, method);
}
// System.Int32 System.Int16::GetHashCode()
extern "C" IL2CPP_METHOD_ATTR int32_t Int16_GetHashCode_m5DE8889F965D31CFDE23E2CD58650C85259FD798 (int16_t* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = *((int16_t*)__this);
int32_t L_1 = *((int16_t*)__this);
return ((int32_t)((int32_t)(((int32_t)((uint16_t)L_0)))|(int32_t)((int32_t)((int32_t)L_1<<(int32_t)((int32_t)16)))));
}
}
extern "C" int32_t Int16_GetHashCode_m5DE8889F965D31CFDE23E2CD58650C85259FD798_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + 1);
return Int16_GetHashCode_m5DE8889F965D31CFDE23E2CD58650C85259FD798(_thisAdjusted, method);
}
// System.String System.Int16::ToString()
extern "C" IL2CPP_METHOD_ATTR String_t* Int16_ToString_m9945F0E2E7E6BE9E91203BFFA7125ABFC6843BA5 (int16_t* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = *((int16_t*)__this);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_1 = NumberFormatInfo_get_CurrentInfo_m595DF03E32E0C5B01F1EC45F7264B2BD09BA61C9(/*hidden argument*/NULL);
String_t* L_2 = Number_FormatInt32_mFA98EABDFB7493EF299EB1F0C2B432EAFDFC7984(L_0, (String_t*)NULL, L_1, /*hidden argument*/NULL);
return L_2;
}
}
extern "C" String_t* Int16_ToString_m9945F0E2E7E6BE9E91203BFFA7125ABFC6843BA5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + 1);
return Int16_ToString_m9945F0E2E7E6BE9E91203BFFA7125ABFC6843BA5(_thisAdjusted, method);
}
// System.String System.Int16::ToString(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR String_t* Int16_ToString_m0BB578BBD7255A1F27D8F9E8E5C8BE9F09728E45 (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
{
int32_t L_0 = *((int16_t*)__this);
RuntimeObject* L_1 = ___provider0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A(L_1, /*hidden argument*/NULL);
String_t* L_3 = Number_FormatInt32_mFA98EABDFB7493EF299EB1F0C2B432EAFDFC7984(L_0, (String_t*)NULL, L_2, /*hidden argument*/NULL);
return L_3;
}
}
extern "C" String_t* Int16_ToString_m0BB578BBD7255A1F27D8F9E8E5C8BE9F09728E45_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + 1);
return Int16_ToString_m0BB578BBD7255A1F27D8F9E8E5C8BE9F09728E45(_thisAdjusted, ___provider0, method);
}
// System.String System.Int16::ToString(System.String,System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR String_t* Int16_ToString_m9D8BFF89E90032C2A3332CF5831C38AFD2C9E31A (int16_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___format0;
RuntimeObject* L_1 = ___provider1;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A(L_1, /*hidden argument*/NULL);
String_t* L_3 = Int16_ToString_m357A0121C8D11A1B015C8FBD74CC17B899680420((int16_t*)__this, L_0, L_2, /*hidden argument*/NULL);
return L_3;
}
}
extern "C" String_t* Int16_ToString_m9D8BFF89E90032C2A3332CF5831C38AFD2C9E31A_AdjustorThunk (RuntimeObject * __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + 1);
return Int16_ToString_m9D8BFF89E90032C2A3332CF5831C38AFD2C9E31A(_thisAdjusted, ___format0, ___provider1, method);
}
// System.String System.Int16::ToString(System.String,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR String_t* Int16_ToString_m357A0121C8D11A1B015C8FBD74CC17B899680420 (int16_t* __this, String_t* ___format0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info1, const RuntimeMethod* method)
{
{
int32_t L_0 = *((int16_t*)__this);
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0037;
}
}
{
String_t* L_1 = ___format0;
if (!L_1)
{
goto IL_0037;
}
}
{
String_t* L_2 = ___format0;
NullCheck(L_2);
int32_t L_3 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_2, /*hidden argument*/NULL);
if ((((int32_t)L_3) <= ((int32_t)0)))
{
goto IL_0037;
}
}
{
String_t* L_4 = ___format0;
NullCheck(L_4);
Il2CppChar L_5 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_4, 0, /*hidden argument*/NULL);
if ((((int32_t)L_5) == ((int32_t)((int32_t)88))))
{
goto IL_0027;
}
}
{
String_t* L_6 = ___format0;
NullCheck(L_6);
Il2CppChar L_7 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_6, 0, /*hidden argument*/NULL);
if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)120)))))
{
goto IL_0037;
}
}
IL_0027:
{
int32_t L_8 = *((int16_t*)__this);
String_t* L_9 = ___format0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_10 = ___info1;
String_t* L_11 = Number_FormatUInt32_m585E2571063A256E46836A51BC4A54CFF151BDEE(((int32_t)((int32_t)L_8&(int32_t)((int32_t)65535))), L_9, L_10, /*hidden argument*/NULL);
return L_11;
}
IL_0037:
{
int32_t L_12 = *((int16_t*)__this);
String_t* L_13 = ___format0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_14 = ___info1;
String_t* L_15 = Number_FormatInt32_mFA98EABDFB7493EF299EB1F0C2B432EAFDFC7984(L_12, L_13, L_14, /*hidden argument*/NULL);
return L_15;
}
}
extern "C" String_t* Int16_ToString_m357A0121C8D11A1B015C8FBD74CC17B899680420_AdjustorThunk (RuntimeObject * __this, String_t* ___format0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info1, const RuntimeMethod* method)
{
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + 1);
return Int16_ToString_m357A0121C8D11A1B015C8FBD74CC17B899680420(_thisAdjusted, ___format0, ___info1, method);
}
// System.Int16 System.Int16::Parse(System.String,System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR int16_t Int16_Parse_m1BA1421C8060847322823397FAE590E371B0A92F (String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___s0;
RuntimeObject* L_1 = ___provider1;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A(L_1, /*hidden argument*/NULL);
int16_t L_3 = Int16_Parse_mA406579E2A230A3489048B2140AE2F81E68A5622(L_0, 7, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.Int16 System.Int16::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR int16_t Int16_Parse_m8974BEBECCE6184E1A2CA312D637E40B731F49B2 (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method)
{
{
int32_t L_0 = ___style1;
NumberFormatInfo_ValidateParseStyleInteger_m5BD1C04C26D5589F0DFA5953294B72E1DDC2B7E3(L_0, /*hidden argument*/NULL);
String_t* L_1 = ___s0;
int32_t L_2 = ___style1;
RuntimeObject* L_3 = ___provider2;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_4 = NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A(L_3, /*hidden argument*/NULL);
int16_t L_5 = Int16_Parse_mA406579E2A230A3489048B2140AE2F81E68A5622(L_1, L_2, L_4, /*hidden argument*/NULL);
return L_5;
}
}
// System.Int16 System.Int16::Parse(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR int16_t Int16_Parse_mA406579E2A230A3489048B2140AE2F81E68A5622 (String_t* ___s0, int32_t ___style1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int16_Parse_mA406579E2A230A3489048B2140AE2F81E68A5622_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * 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);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
V_0 = 0;
}
IL_0002:
try
{ // begin try (depth: 1)
String_t* L_0 = ___s0;
int32_t L_1 = ___style1;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = ___info2;
int32_t L_3 = Number_ParseInt32_mF4B8DA28891C736EAC85641489780C2E91F8AECF(L_0, L_1, L_2, /*hidden argument*/NULL);
V_0 = L_3;
goto IL_001f;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_000d;
throw e;
}
CATCH_000d:
{ // begin catch(System.OverflowException)
V_1 = ((OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)__exception_local);
String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB2DFA6C94FCB93E0645DBB6C79D5282340489A50, /*hidden argument*/NULL);
OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_5 = V_1;
OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_6 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var);
OverflowException__ctor_m15CD001EEB2E79D7497E101546B04D9A5520357E(L_6, L_4, L_5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Int16_Parse_mA406579E2A230A3489048B2140AE2F81E68A5622_RuntimeMethod_var);
} // end catch (depth: 1)
IL_001f:
{
int32_t L_7 = ___style1;
if (!((int32_t)((int32_t)L_7&(int32_t)((int32_t)512))))
{
goto IL_0047;
}
}
{
int32_t L_8 = V_0;
if ((((int32_t)L_8) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_9 = V_0;
if ((((int32_t)L_9) <= ((int32_t)((int32_t)65535))))
{
goto IL_0044;
}
}
IL_0034:
{
String_t* L_10 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB2DFA6C94FCB93E0645DBB6C79D5282340489A50, /*hidden argument*/NULL);
OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_11 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var);
OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_11, L_10, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, NULL, Int16_Parse_mA406579E2A230A3489048B2140AE2F81E68A5622_RuntimeMethod_var);
}
IL_0044:
{
int32_t L_12 = V_0;
return (((int16_t)((int16_t)L_12)));
}
IL_0047:
{
int32_t L_13 = V_0;
if ((((int32_t)L_13) < ((int32_t)((int32_t)-32768))))
{
goto IL_0057;
}
}
{
int32_t L_14 = V_0;
if ((((int32_t)L_14) <= ((int32_t)((int32_t)32767))))
{
goto IL_0067;
}
}
IL_0057:
{
String_t* L_15 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB2DFA6C94FCB93E0645DBB6C79D5282340489A50, /*hidden argument*/NULL);
OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_16 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var);
OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_16, L_15, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, NULL, Int16_Parse_mA406579E2A230A3489048B2140AE2F81E68A5622_RuntimeMethod_var);
}
IL_0067:
{
int32_t L_17 = V_0;
return (((int16_t)((int16_t)L_17)));
}
}
// System.TypeCode System.Int16::GetTypeCode()
extern "C" IL2CPP_METHOD_ATTR int32_t Int16_GetTypeCode_m1FABF625BFC2615A7F446E809DFE82700B181585 (int16_t* __this, const RuntimeMethod* method)
{
{
return (int32_t)(7);
}
}
extern "C" int32_t Int16_GetTypeCode_m1FABF625BFC2615A7F446E809DFE82700B181585_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + 1);
return Int16_GetTypeCode_m1FABF625BFC2615A7F446E809DFE82700B181585(_thisAdjusted, method);
}
// System.Boolean System.Int16::System.IConvertible.ToBoolean(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR bool Int16_System_IConvertible_ToBoolean_mAD9C67C2CD06B4C537DBF416474DEABE1C168A02 (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int16_System_IConvertible_ToBoolean_mAD9C67C2CD06B4C537DBF416474DEABE1C168A02_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int16_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
bool L_1 = Convert_ToBoolean_m06007FC94CD66F1273731E389C6C7DC24B02B505((int16_t)L_0, /*hidden argument*/NULL);
return L_1;
}
}
extern "C" bool Int16_System_IConvertible_ToBoolean_mAD9C67C2CD06B4C537DBF416474DEABE1C168A02_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + 1);
return Int16_System_IConvertible_ToBoolean_mAD9C67C2CD06B4C537DBF416474DEABE1C168A02(_thisAdjusted, ___provider0, method);
}
// System.Char System.Int16::System.IConvertible.ToChar(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR Il2CppChar Int16_System_IConvertible_ToChar_m7262DBBB8CE3561D40929E34003790296142BBB9 (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int16_System_IConvertible_ToChar_m7262DBBB8CE3561D40929E34003790296142BBB9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int16_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
Il2CppChar L_1 = Convert_ToChar_m9F32E993218E9D544A9FCC6FE50D6501A838315F((int16_t)L_0, /*hidden argument*/NULL);
return L_1;
}
}
extern "C" Il2CppChar Int16_System_IConvertible_ToChar_m7262DBBB8CE3561D40929E34003790296142BBB9_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + 1);
return Int16_System_IConvertible_ToChar_m7262DBBB8CE3561D40929E34003790296142BBB9(_thisAdjusted, ___provider0, method);
}
// System.SByte System.Int16::System.IConvertible.ToSByte(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR int8_t Int16_System_IConvertible_ToSByte_mEC3DBCD9D04D7E5A396D88031B1E770D11D1DE24 (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int16_System_IConvertible_ToSByte_mEC3DBCD9D04D7E5A396D88031B1E770D11D1DE24_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int16_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
int8_t L_1 = Convert_ToSByte_mCC85C35F01295663A487DDA2C4855C5962ADA2AF((int16_t)L_0, /*hidden argument*/NULL);
return L_1;
}
}
extern "C" int8_t Int16_System_IConvertible_ToSByte_mEC3DBCD9D04D7E5A396D88031B1E770D11D1DE24_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + 1);
return Int16_System_IConvertible_ToSByte_mEC3DBCD9D04D7E5A396D88031B1E770D11D1DE24(_thisAdjusted, ___provider0, method);
}
// System.Byte System.Int16::System.IConvertible.ToByte(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR uint8_t Int16_System_IConvertible_ToByte_mD200B0391F35F2C349843C9B326AB68F435F422E (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int16_System_IConvertible_ToByte_mD200B0391F35F2C349843C9B326AB68F435F422E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int16_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
uint8_t L_1 = Convert_ToByte_m2DDDB2A7442059FE2185B347BB71BF7577781807((int16_t)L_0, /*hidden argument*/NULL);
return L_1;
}
}
extern "C" uint8_t Int16_System_IConvertible_ToByte_mD200B0391F35F2C349843C9B326AB68F435F422E_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + 1);
return Int16_System_IConvertible_ToByte_mD200B0391F35F2C349843C9B326AB68F435F422E(_thisAdjusted, ___provider0, method);
}
// System.Int16 System.Int16::System.IConvertible.ToInt16(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR int16_t Int16_System_IConvertible_ToInt16_mECF742DC36D9825678461CA222750F4A572B5BD0 (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
{
int32_t L_0 = *((int16_t*)__this);
return (int16_t)L_0;
}
}
extern "C" int16_t Int16_System_IConvertible_ToInt16_mECF742DC36D9825678461CA222750F4A572B5BD0_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + 1);
return Int16_System_IConvertible_ToInt16_mECF742DC36D9825678461CA222750F4A572B5BD0(_thisAdjusted, ___provider0, method);
}
// System.UInt16 System.Int16::System.IConvertible.ToUInt16(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR uint16_t Int16_System_IConvertible_ToUInt16_mE08D8131FFDEFCB4AA5FE34CB8C2DC62D5A14B30 (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int16_System_IConvertible_ToUInt16_mE08D8131FFDEFCB4AA5FE34CB8C2DC62D5A14B30_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int16_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
uint16_t L_1 = Convert_ToUInt16_m3BC2069048E0E6C17C6B4C18BFB8FC949739BFFF((int16_t)L_0, /*hidden argument*/NULL);
return L_1;
}
}
extern "C" uint16_t Int16_System_IConvertible_ToUInt16_mE08D8131FFDEFCB4AA5FE34CB8C2DC62D5A14B30_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + 1);
return Int16_System_IConvertible_ToUInt16_mE08D8131FFDEFCB4AA5FE34CB8C2DC62D5A14B30(_thisAdjusted, ___provider0, method);
}
// System.Int32 System.Int16::System.IConvertible.ToInt32(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR int32_t Int16_System_IConvertible_ToInt32_mE41B51DE2ABF8B6ECD413AD83FCD58459437A150 (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int16_System_IConvertible_ToInt32_mE41B51DE2ABF8B6ECD413AD83FCD58459437A150_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int16_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
int32_t L_1 = Convert_ToInt32_mB0AA47EFAB81D1DBA0C2153ECBD0E19DE230BE2C((int16_t)L_0, /*hidden argument*/NULL);
return L_1;
}
}
extern "C" int32_t Int16_System_IConvertible_ToInt32_mE41B51DE2ABF8B6ECD413AD83FCD58459437A150_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + 1);
return Int16_System_IConvertible_ToInt32_mE41B51DE2ABF8B6ECD413AD83FCD58459437A150(_thisAdjusted, ___provider0, method);
}
// System.UInt32 System.Int16::System.IConvertible.ToUInt32(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR uint32_t Int16_System_IConvertible_ToUInt32_m2723ECDC51455D3954F3ADB25F822024010E84C6 (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int16_System_IConvertible_ToUInt32_m2723ECDC51455D3954F3ADB25F822024010E84C6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int16_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
uint32_t L_1 = Convert_ToUInt32_mC305AB953ECDC1EDEC3F76C2ED9C2898A6A2D8A8((int16_t)L_0, /*hidden argument*/NULL);
return L_1;
}
}
extern "C" uint32_t Int16_System_IConvertible_ToUInt32_m2723ECDC51455D3954F3ADB25F822024010E84C6_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + 1);
return Int16_System_IConvertible_ToUInt32_m2723ECDC51455D3954F3ADB25F822024010E84C6(_thisAdjusted, ___provider0, method);
}
// System.Int64 System.Int16::System.IConvertible.ToInt64(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR int64_t Int16_System_IConvertible_ToInt64_mEA23608FC01CA0533C47D984B594C0FF93CEFA51 (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int16_System_IConvertible_ToInt64_mEA23608FC01CA0533C47D984B594C0FF93CEFA51_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int16_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
int64_t L_1 = Convert_ToInt64_m2261BB84FA0B10E657E622163945B4ED9D3C2D11((int16_t)L_0, /*hidden argument*/NULL);
return L_1;
}
}
extern "C" int64_t Int16_System_IConvertible_ToInt64_mEA23608FC01CA0533C47D984B594C0FF93CEFA51_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + 1);
return Int16_System_IConvertible_ToInt64_mEA23608FC01CA0533C47D984B594C0FF93CEFA51(_thisAdjusted, ___provider0, method);
}
// System.UInt64 System.Int16::System.IConvertible.ToUInt64(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR uint64_t Int16_System_IConvertible_ToUInt64_m923F81B1E4E6D28FFEE8362D735E0084C25CE10C (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int16_System_IConvertible_ToUInt64_m923F81B1E4E6D28FFEE8362D735E0084C25CE10C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int16_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
uint64_t L_1 = Convert_ToUInt64_m97F318132CF70D2795CFB709BAB8789803BCC08A((int16_t)L_0, /*hidden argument*/NULL);
return L_1;
}
}
extern "C" uint64_t Int16_System_IConvertible_ToUInt64_m923F81B1E4E6D28FFEE8362D735E0084C25CE10C_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + 1);
return Int16_System_IConvertible_ToUInt64_m923F81B1E4E6D28FFEE8362D735E0084C25CE10C(_thisAdjusted, ___provider0, method);
}
// System.Single System.Int16::System.IConvertible.ToSingle(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR float Int16_System_IConvertible_ToSingle_m0835ED262A97BD626712668A214700986F0506F7 (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int16_System_IConvertible_ToSingle_m0835ED262A97BD626712668A214700986F0506F7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int16_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
float L_1 = Convert_ToSingle_m419FC798EE52D4A39F7719FA060CC198EF94F2B0((int16_t)L_0, /*hidden argument*/NULL);
return L_1;
}
}
extern "C" float Int16_System_IConvertible_ToSingle_m0835ED262A97BD626712668A214700986F0506F7_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + 1);
return Int16_System_IConvertible_ToSingle_m0835ED262A97BD626712668A214700986F0506F7(_thisAdjusted, ___provider0, method);
}
// System.Double System.Int16::System.IConvertible.ToDouble(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR double Int16_System_IConvertible_ToDouble_mA60DE1A6D594144BE9DB9959314D2722064305CA (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int16_System_IConvertible_ToDouble_mA60DE1A6D594144BE9DB9959314D2722064305CA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int16_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
double L_1 = Convert_ToDouble_m9FFE6DC9FE9E17546E9681806ED4613D582A2D6C((int16_t)L_0, /*hidden argument*/NULL);
return L_1;
}
}
extern "C" double Int16_System_IConvertible_ToDouble_mA60DE1A6D594144BE9DB9959314D2722064305CA_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + 1);
return Int16_System_IConvertible_ToDouble_mA60DE1A6D594144BE9DB9959314D2722064305CA(_thisAdjusted, ___provider0, method);
}
// System.Decimal System.Int16::System.IConvertible.ToDecimal(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Int16_System_IConvertible_ToDecimal_mAD89611276C5804EFF4B236032F0DB906355EBF4 (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int16_System_IConvertible_ToDecimal_mAD89611276C5804EFF4B236032F0DB906355EBF4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int16_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = Convert_ToDecimal_mD9355C906353F7E283024449544616979EF4823E((int16_t)L_0, /*hidden argument*/NULL);
return L_1;
}
}
extern "C" Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Int16_System_IConvertible_ToDecimal_mAD89611276C5804EFF4B236032F0DB906355EBF4_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + 1);
return Int16_System_IConvertible_ToDecimal_mAD89611276C5804EFF4B236032F0DB906355EBF4(_thisAdjusted, ___provider0, method);
}
// System.DateTime System.Int16::System.IConvertible.ToDateTime(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Int16_System_IConvertible_ToDateTime_mE67E531150E271467E435831A1397A9309A0F26A (int16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int16_System_IConvertible_ToDateTime_mE67E531150E271467E435831A1397A9309A0F26A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, _stringLiteral7982E8C08D84551A97DDE8C3CC98E03FC2D6082C);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral7982E8C08D84551A97DDE8C3CC98E03FC2D6082C);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1;
NullCheck(L_2);
ArrayElementTypeCheck (L_2, _stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F);
String_t* L_3 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497, L_2, /*hidden argument*/NULL);
InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_4 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var);
InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_4, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Int16_System_IConvertible_ToDateTime_mE67E531150E271467E435831A1397A9309A0F26A_RuntimeMethod_var);
}
}
extern "C" DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Int16_System_IConvertible_ToDateTime_mE67E531150E271467E435831A1397A9309A0F26A_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + 1);
return Int16_System_IConvertible_ToDateTime_mE67E531150E271467E435831A1397A9309A0F26A(_thisAdjusted, ___provider0, method);
}
// System.Object System.Int16::System.IConvertible.ToType(System.Type,System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Int16_System_IConvertible_ToType_m8BE4912BFC63C00B6434A78D045251007E2D31D3 (int16_t* __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int16_System_IConvertible_ToType_m8BE4912BFC63C00B6434A78D045251007E2D31D3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int16_t*)__this);
int16_t L_1 = ((int16_t)L_0);
RuntimeObject * L_2 = Box(Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_il2cpp_TypeInfo_var, &L_1);
Type_t * L_3 = ___type0;
RuntimeObject* L_4 = ___provider1;
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
RuntimeObject * L_5 = Convert_DefaultToType_m899D5F6B9FE3E8B878BC56172C6BFE788B6C1BE3((RuntimeObject*)L_2, L_3, L_4, /*hidden argument*/NULL);
return L_5;
}
}
extern "C" RuntimeObject * Int16_System_IConvertible_ToType_m8BE4912BFC63C00B6434A78D045251007E2D31D3_AdjustorThunk (RuntimeObject * __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
int16_t* _thisAdjusted = reinterpret_cast<int16_t*>(__this + 1);
return Int16_System_IConvertible_ToType_m8BE4912BFC63C00B6434A78D045251007E2D31D3(_thisAdjusted, ___type0, ___provider1, 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
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int32 System.Int32::CompareTo(System.Object)
extern "C" IL2CPP_METHOD_ATTR int32_t Int32_CompareTo_m01C9CAA9D47EB4046F4784603646BD28567D66B2 (int32_t* __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int32_CompareTo_m01C9CAA9D47EB4046F4784603646BD28567D66B2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0005;
}
}
{
return 1;
}
IL_0005:
{
RuntimeObject * L_1 = ___value0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_1, Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var)))
{
goto IL_0024;
}
}
{
RuntimeObject * L_2 = ___value0;
V_0 = ((*(int32_t*)((int32_t*)UnBox(L_2, Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var))));
int32_t L_3 = *((int32_t*)__this);
int32_t L_4 = V_0;
if ((((int32_t)L_3) >= ((int32_t)L_4)))
{
goto IL_001b;
}
}
{
return (-1);
}
IL_001b:
{
int32_t L_5 = *((int32_t*)__this);
int32_t L_6 = V_0;
if ((((int32_t)L_5) <= ((int32_t)L_6)))
{
goto IL_0022;
}
}
{
return 1;
}
IL_0022:
{
return 0;
}
IL_0024:
{
String_t* L_7 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral743B68D46C6B7339FD2325D2DF22FE108889647C, /*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, NULL, Int32_CompareTo_m01C9CAA9D47EB4046F4784603646BD28567D66B2_RuntimeMethod_var);
}
}
extern "C" int32_t Int32_CompareTo_m01C9CAA9D47EB4046F4784603646BD28567D66B2_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + 1);
return Int32_CompareTo_m01C9CAA9D47EB4046F4784603646BD28567D66B2(_thisAdjusted, ___value0, method);
}
// System.Int32 System.Int32::CompareTo(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Int32_CompareTo_m2EB2B72F9095FF3438D830118D57E32E1CC67195 (int32_t* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = *((int32_t*)__this);
int32_t L_1 = ___value0;
if ((((int32_t)L_0) >= ((int32_t)L_1)))
{
goto IL_0007;
}
}
{
return (-1);
}
IL_0007:
{
int32_t L_2 = *((int32_t*)__this);
int32_t L_3 = ___value0;
if ((((int32_t)L_2) <= ((int32_t)L_3)))
{
goto IL_000e;
}
}
{
return 1;
}
IL_000e:
{
return 0;
}
}
extern "C" int32_t Int32_CompareTo_m2EB2B72F9095FF3438D830118D57E32E1CC67195_AdjustorThunk (RuntimeObject * __this, int32_t ___value0, const RuntimeMethod* method)
{
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + 1);
return Int32_CompareTo_m2EB2B72F9095FF3438D830118D57E32E1CC67195(_thisAdjusted, ___value0, method);
}
// System.Boolean System.Int32::Equals(System.Object)
extern "C" IL2CPP_METHOD_ATTR bool Int32_Equals_mBE9097707986D98549AC11E94FB986DA1AB3E16C (int32_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int32_Equals_mBE9097707986D98549AC11E94FB986DA1AB3E16C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var)))
{
goto IL_000a;
}
}
{
return (bool)0;
}
IL_000a:
{
int32_t L_1 = *((int32_t*)__this);
RuntimeObject * L_2 = ___obj0;
return (bool)((((int32_t)L_1) == ((int32_t)((*(int32_t*)((int32_t*)UnBox(L_2, Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var))))))? 1 : 0);
}
}
extern "C" bool Int32_Equals_mBE9097707986D98549AC11E94FB986DA1AB3E16C_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + 1);
return Int32_Equals_mBE9097707986D98549AC11E94FB986DA1AB3E16C(_thisAdjusted, ___obj0, method);
}
// System.Boolean System.Int32::Equals(System.Int32)
extern "C" IL2CPP_METHOD_ATTR bool Int32_Equals_mC8C45B8899F291D55A6152C8FEDB3CFFF181170B (int32_t* __this, int32_t ___obj0, const RuntimeMethod* method)
{
{
int32_t L_0 = *((int32_t*)__this);
int32_t L_1 = ___obj0;
return (bool)((((int32_t)L_0) == ((int32_t)L_1))? 1 : 0);
}
}
extern "C" bool Int32_Equals_mC8C45B8899F291D55A6152C8FEDB3CFFF181170B_AdjustorThunk (RuntimeObject * __this, int32_t ___obj0, const RuntimeMethod* method)
{
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + 1);
return Int32_Equals_mC8C45B8899F291D55A6152C8FEDB3CFFF181170B(_thisAdjusted, ___obj0, method);
}
// System.Int32 System.Int32::GetHashCode()
extern "C" IL2CPP_METHOD_ATTR int32_t Int32_GetHashCode_m245C424ECE351E5FE3277A88EEB02132DAB8C25A (int32_t* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = *((int32_t*)__this);
return L_0;
}
}
extern "C" int32_t Int32_GetHashCode_m245C424ECE351E5FE3277A88EEB02132DAB8C25A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + 1);
return Int32_GetHashCode_m245C424ECE351E5FE3277A88EEB02132DAB8C25A(_thisAdjusted, method);
}
// System.String System.Int32::ToString()
extern "C" IL2CPP_METHOD_ATTR String_t* Int32_ToString_m1863896DE712BF97C031D55B12E1583F1982DC02 (int32_t* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = *((int32_t*)__this);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_1 = NumberFormatInfo_get_CurrentInfo_m595DF03E32E0C5B01F1EC45F7264B2BD09BA61C9(/*hidden argument*/NULL);
String_t* L_2 = Number_FormatInt32_mFA98EABDFB7493EF299EB1F0C2B432EAFDFC7984(L_0, (String_t*)NULL, L_1, /*hidden argument*/NULL);
return L_2;
}
}
extern "C" String_t* Int32_ToString_m1863896DE712BF97C031D55B12E1583F1982DC02_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + 1);
return Int32_ToString_m1863896DE712BF97C031D55B12E1583F1982DC02(_thisAdjusted, method);
}
// System.String System.Int32::ToString(System.String)
extern "C" IL2CPP_METHOD_ATTR String_t* Int32_ToString_m5A125A41C41701E41FA0C4CC52CADBC73C1C96D8 (int32_t* __this, String_t* ___format0, const RuntimeMethod* method)
{
{
int32_t L_0 = *((int32_t*)__this);
String_t* L_1 = ___format0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = NumberFormatInfo_get_CurrentInfo_m595DF03E32E0C5B01F1EC45F7264B2BD09BA61C9(/*hidden argument*/NULL);
String_t* L_3 = Number_FormatInt32_mFA98EABDFB7493EF299EB1F0C2B432EAFDFC7984(L_0, L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
}
extern "C" String_t* Int32_ToString_m5A125A41C41701E41FA0C4CC52CADBC73C1C96D8_AdjustorThunk (RuntimeObject * __this, String_t* ___format0, const RuntimeMethod* method)
{
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + 1);
return Int32_ToString_m5A125A41C41701E41FA0C4CC52CADBC73C1C96D8(_thisAdjusted, ___format0, method);
}
// System.String System.Int32::ToString(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR String_t* Int32_ToString_m1D0AF82BDAB5D4710527DD3FEFA6F01246D128A5 (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
{
int32_t L_0 = *((int32_t*)__this);
RuntimeObject* L_1 = ___provider0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A(L_1, /*hidden argument*/NULL);
String_t* L_3 = Number_FormatInt32_mFA98EABDFB7493EF299EB1F0C2B432EAFDFC7984(L_0, (String_t*)NULL, L_2, /*hidden argument*/NULL);
return L_3;
}
}
extern "C" String_t* Int32_ToString_m1D0AF82BDAB5D4710527DD3FEFA6F01246D128A5_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + 1);
return Int32_ToString_m1D0AF82BDAB5D4710527DD3FEFA6F01246D128A5(_thisAdjusted, ___provider0, method);
}
// System.String System.Int32::ToString(System.String,System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR String_t* Int32_ToString_mE527694B0C55AE14FDCBE1D9C848446C18E22C09 (int32_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
{
int32_t L_0 = *((int32_t*)__this);
String_t* L_1 = ___format0;
RuntimeObject* L_2 = ___provider1;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_3 = NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A(L_2, /*hidden argument*/NULL);
String_t* L_4 = Number_FormatInt32_mFA98EABDFB7493EF299EB1F0C2B432EAFDFC7984(L_0, L_1, L_3, /*hidden argument*/NULL);
return L_4;
}
}
extern "C" String_t* Int32_ToString_mE527694B0C55AE14FDCBE1D9C848446C18E22C09_AdjustorThunk (RuntimeObject * __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + 1);
return Int32_ToString_mE527694B0C55AE14FDCBE1D9C848446C18E22C09(_thisAdjusted, ___format0, ___provider1, method);
}
// System.Int32 System.Int32::Parse(System.String)
extern "C" IL2CPP_METHOD_ATTR int32_t Int32_Parse_m5807B6243415790250FC25168F767C08FC16FDEA (String_t* ___s0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___s0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_1 = NumberFormatInfo_get_CurrentInfo_m595DF03E32E0C5B01F1EC45F7264B2BD09BA61C9(/*hidden argument*/NULL);
int32_t L_2 = Number_ParseInt32_mF4B8DA28891C736EAC85641489780C2E91F8AECF(L_0, 7, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Int32 System.Int32::Parse(System.String,System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR int32_t Int32_Parse_m9FD0A75E9C7A9BFC26070A60A420D77CD629CC58 (String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___s0;
RuntimeObject* L_1 = ___provider1;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A(L_1, /*hidden argument*/NULL);
int32_t L_3 = Number_ParseInt32_mF4B8DA28891C736EAC85641489780C2E91F8AECF(L_0, 7, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.Int32 System.Int32::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR int32_t Int32_Parse_m17BA45CC13A0E08712F2EE60CC1356291D0592AC (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method)
{
{
int32_t L_0 = ___style1;
NumberFormatInfo_ValidateParseStyleInteger_m5BD1C04C26D5589F0DFA5953294B72E1DDC2B7E3(L_0, /*hidden argument*/NULL);
String_t* L_1 = ___s0;
int32_t L_2 = ___style1;
RuntimeObject* L_3 = ___provider2;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_4 = NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A(L_3, /*hidden argument*/NULL);
int32_t L_5 = Number_ParseInt32_mF4B8DA28891C736EAC85641489780C2E91F8AECF(L_1, L_2, L_4, /*hidden argument*/NULL);
return L_5;
}
}
// System.TypeCode System.Int32::GetTypeCode()
extern "C" IL2CPP_METHOD_ATTR int32_t Int32_GetTypeCode_m5649B09956AFBDEE1788BFBEF9D5885DC2DCE601 (int32_t* __this, const RuntimeMethod* method)
{
{
return (int32_t)(((int32_t)9));
}
}
extern "C" int32_t Int32_GetTypeCode_m5649B09956AFBDEE1788BFBEF9D5885DC2DCE601_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + 1);
return Int32_GetTypeCode_m5649B09956AFBDEE1788BFBEF9D5885DC2DCE601(_thisAdjusted, method);
}
// System.Boolean System.Int32::System.IConvertible.ToBoolean(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR bool Int32_System_IConvertible_ToBoolean_mE6733B98A89CEE394F9B2013DBAB3A6CCFDB2D3D (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int32_System_IConvertible_ToBoolean_mE6733B98A89CEE394F9B2013DBAB3A6CCFDB2D3D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int32_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
bool L_1 = Convert_ToBoolean_m30441623AE02A6C619CB77CD91B6A6199B90BC94(L_0, /*hidden argument*/NULL);
return L_1;
}
}
extern "C" bool Int32_System_IConvertible_ToBoolean_mE6733B98A89CEE394F9B2013DBAB3A6CCFDB2D3D_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + 1);
return Int32_System_IConvertible_ToBoolean_mE6733B98A89CEE394F9B2013DBAB3A6CCFDB2D3D(_thisAdjusted, ___provider0, method);
}
// System.Char System.Int32::System.IConvertible.ToChar(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR Il2CppChar Int32_System_IConvertible_ToChar_mB0BF53FFE0642F288E8BBC20EC14D581BF473FE1 (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int32_System_IConvertible_ToChar_mB0BF53FFE0642F288E8BBC20EC14D581BF473FE1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int32_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
Il2CppChar L_1 = Convert_ToChar_m5BD134B72978B879B81A824DFAC8FF29F5300245(L_0, /*hidden argument*/NULL);
return L_1;
}
}
extern "C" Il2CppChar Int32_System_IConvertible_ToChar_mB0BF53FFE0642F288E8BBC20EC14D581BF473FE1_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + 1);
return Int32_System_IConvertible_ToChar_mB0BF53FFE0642F288E8BBC20EC14D581BF473FE1(_thisAdjusted, ___provider0, method);
}
// System.SByte System.Int32::System.IConvertible.ToSByte(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR int8_t Int32_System_IConvertible_ToSByte_m3AE5F790ABB177CAC8C13DCFFFF7114108EB467B (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int32_System_IConvertible_ToSByte_m3AE5F790ABB177CAC8C13DCFFFF7114108EB467B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int32_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
int8_t L_1 = Convert_ToSByte_m65A58DC38CC3A2E7B1D2546EC2FE0803AAB03F34(L_0, /*hidden argument*/NULL);
return L_1;
}
}
extern "C" int8_t Int32_System_IConvertible_ToSByte_m3AE5F790ABB177CAC8C13DCFFFF7114108EB467B_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + 1);
return Int32_System_IConvertible_ToSByte_m3AE5F790ABB177CAC8C13DCFFFF7114108EB467B(_thisAdjusted, ___provider0, method);
}
// System.Byte System.Int32::System.IConvertible.ToByte(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR uint8_t Int32_System_IConvertible_ToByte_m994642D028B0635653E63412AED073E3DE1DE4CA (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int32_System_IConvertible_ToByte_m994642D028B0635653E63412AED073E3DE1DE4CA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int32_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
uint8_t L_1 = Convert_ToByte_mC952E2B42FF6008EF2123228A0BFB9054531EB64(L_0, /*hidden argument*/NULL);
return L_1;
}
}
extern "C" uint8_t Int32_System_IConvertible_ToByte_m994642D028B0635653E63412AED073E3DE1DE4CA_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + 1);
return Int32_System_IConvertible_ToByte_m994642D028B0635653E63412AED073E3DE1DE4CA(_thisAdjusted, ___provider0, method);
}
// System.Int16 System.Int32::System.IConvertible.ToInt16(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR int16_t Int32_System_IConvertible_ToInt16_m294F3466C92E10984CB25DD6DE2019DDD867DA22 (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int32_System_IConvertible_ToInt16_m294F3466C92E10984CB25DD6DE2019DDD867DA22_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int32_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
int16_t L_1 = Convert_ToInt16_m0D8DD7C5E5F85BE27D38E0FBD17411B8682618B3(L_0, /*hidden argument*/NULL);
return L_1;
}
}
extern "C" int16_t Int32_System_IConvertible_ToInt16_m294F3466C92E10984CB25DD6DE2019DDD867DA22_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + 1);
return Int32_System_IConvertible_ToInt16_m294F3466C92E10984CB25DD6DE2019DDD867DA22(_thisAdjusted, ___provider0, method);
}
// System.UInt16 System.Int32::System.IConvertible.ToUInt16(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR uint16_t Int32_System_IConvertible_ToUInt16_m75BCB9F028E5A90A092854436D36986F68901995 (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int32_System_IConvertible_ToUInt16_m75BCB9F028E5A90A092854436D36986F68901995_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int32_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
uint16_t L_1 = Convert_ToUInt16_m926B887258078B9BB42574AA2B3F95DC50460EA7(L_0, /*hidden argument*/NULL);
return L_1;
}
}
extern "C" uint16_t Int32_System_IConvertible_ToUInt16_m75BCB9F028E5A90A092854436D36986F68901995_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + 1);
return Int32_System_IConvertible_ToUInt16_m75BCB9F028E5A90A092854436D36986F68901995(_thisAdjusted, ___provider0, method);
}
// System.Int32 System.Int32::System.IConvertible.ToInt32(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR int32_t Int32_System_IConvertible_ToInt32_m4191129190E57223399981DA5C6C22FDDAC3F5DA (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
{
int32_t L_0 = *((int32_t*)__this);
return L_0;
}
}
extern "C" int32_t Int32_System_IConvertible_ToInt32_m4191129190E57223399981DA5C6C22FDDAC3F5DA_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + 1);
return Int32_System_IConvertible_ToInt32_m4191129190E57223399981DA5C6C22FDDAC3F5DA(_thisAdjusted, ___provider0, method);
}
// System.UInt32 System.Int32::System.IConvertible.ToUInt32(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR uint32_t Int32_System_IConvertible_ToUInt32_mEFA1E74EEA43FA4DBA9B15C4845F110AD727D58A (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int32_System_IConvertible_ToUInt32_mEFA1E74EEA43FA4DBA9B15C4845F110AD727D58A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int32_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
uint32_t L_1 = Convert_ToUInt32_mA22ABF80925CA54B6B4869939964184C7F344B41(L_0, /*hidden argument*/NULL);
return L_1;
}
}
extern "C" uint32_t Int32_System_IConvertible_ToUInt32_mEFA1E74EEA43FA4DBA9B15C4845F110AD727D58A_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + 1);
return Int32_System_IConvertible_ToUInt32_mEFA1E74EEA43FA4DBA9B15C4845F110AD727D58A(_thisAdjusted, ___provider0, method);
}
// System.Int64 System.Int32::System.IConvertible.ToInt64(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR int64_t Int32_System_IConvertible_ToInt64_m0D1DD55099D29C77A7F3DF423CBAD0D9446A8CC1 (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int32_System_IConvertible_ToInt64_m0D1DD55099D29C77A7F3DF423CBAD0D9446A8CC1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int32_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
int64_t L_1 = Convert_ToInt64_m61697621C2BC4FDADFE1742507EBA7B3C1D76475(L_0, /*hidden argument*/NULL);
return L_1;
}
}
extern "C" int64_t Int32_System_IConvertible_ToInt64_m0D1DD55099D29C77A7F3DF423CBAD0D9446A8CC1_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + 1);
return Int32_System_IConvertible_ToInt64_m0D1DD55099D29C77A7F3DF423CBAD0D9446A8CC1(_thisAdjusted, ___provider0, method);
}
// System.UInt64 System.Int32::System.IConvertible.ToUInt64(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR uint64_t Int32_System_IConvertible_ToUInt64_m957A272747A361A7A59C76F4B056B81830345E4E (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int32_System_IConvertible_ToUInt64_m957A272747A361A7A59C76F4B056B81830345E4E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int32_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
uint64_t L_1 = Convert_ToUInt64_m3D60F8111B12E0D8BB538E433065340CF45EB772(L_0, /*hidden argument*/NULL);
return L_1;
}
}
extern "C" uint64_t Int32_System_IConvertible_ToUInt64_m957A272747A361A7A59C76F4B056B81830345E4E_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + 1);
return Int32_System_IConvertible_ToUInt64_m957A272747A361A7A59C76F4B056B81830345E4E(_thisAdjusted, ___provider0, method);
}
// System.Single System.Int32::System.IConvertible.ToSingle(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR float Int32_System_IConvertible_ToSingle_mD0F2590754E9373E5EF9F56DA2772BF9DD2BA7C1 (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int32_System_IConvertible_ToSingle_mD0F2590754E9373E5EF9F56DA2772BF9DD2BA7C1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int32_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
float L_1 = Convert_ToSingle_m4D6202BB2F75526A5E01DA49A35D26007C76A21C(L_0, /*hidden argument*/NULL);
return L_1;
}
}
extern "C" float Int32_System_IConvertible_ToSingle_mD0F2590754E9373E5EF9F56DA2772BF9DD2BA7C1_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + 1);
return Int32_System_IConvertible_ToSingle_mD0F2590754E9373E5EF9F56DA2772BF9DD2BA7C1(_thisAdjusted, ___provider0, method);
}
// System.Double System.Int32::System.IConvertible.ToDouble(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR double Int32_System_IConvertible_ToDouble_mA689675733A81D913A74373B805F68CCA6BEB53E (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int32_System_IConvertible_ToDouble_mA689675733A81D913A74373B805F68CCA6BEB53E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int32_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
double L_1 = Convert_ToDouble_mAE52754212671CD42E2C67BD9ABCE18DAEE443CC(L_0, /*hidden argument*/NULL);
return L_1;
}
}
extern "C" double Int32_System_IConvertible_ToDouble_mA689675733A81D913A74373B805F68CCA6BEB53E_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + 1);
return Int32_System_IConvertible_ToDouble_mA689675733A81D913A74373B805F68CCA6BEB53E(_thisAdjusted, ___provider0, method);
}
// System.Decimal System.Int32::System.IConvertible.ToDecimal(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Int32_System_IConvertible_ToDecimal_m8A2A9D17341AA91D8EC3D9B2F601EBA7B51CD0E1 (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int32_System_IConvertible_ToDecimal_m8A2A9D17341AA91D8EC3D9B2F601EBA7B51CD0E1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int32_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = Convert_ToDecimal_m707FBD6E1B6D6F7F71D1D492C5F5AE981B561DEF(L_0, /*hidden argument*/NULL);
return L_1;
}
}
extern "C" Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Int32_System_IConvertible_ToDecimal_m8A2A9D17341AA91D8EC3D9B2F601EBA7B51CD0E1_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + 1);
return Int32_System_IConvertible_ToDecimal_m8A2A9D17341AA91D8EC3D9B2F601EBA7B51CD0E1(_thisAdjusted, ___provider0, method);
}
// System.DateTime System.Int32::System.IConvertible.ToDateTime(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Int32_System_IConvertible_ToDateTime_mF77E94D74BA940647D099B2639EC019283BEBADD (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int32_System_IConvertible_ToDateTime_mF77E94D74BA940647D099B2639EC019283BEBADD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, _stringLiteralF4753A4DEE54EE10A75B28C6D04EB9EA0D19ACCE);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteralF4753A4DEE54EE10A75B28C6D04EB9EA0D19ACCE);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1;
NullCheck(L_2);
ArrayElementTypeCheck (L_2, _stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F);
String_t* L_3 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497, L_2, /*hidden argument*/NULL);
InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_4 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var);
InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_4, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Int32_System_IConvertible_ToDateTime_mF77E94D74BA940647D099B2639EC019283BEBADD_RuntimeMethod_var);
}
}
extern "C" DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Int32_System_IConvertible_ToDateTime_mF77E94D74BA940647D099B2639EC019283BEBADD_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + 1);
return Int32_System_IConvertible_ToDateTime_mF77E94D74BA940647D099B2639EC019283BEBADD(_thisAdjusted, ___provider0, method);
}
// System.Object System.Int32::System.IConvertible.ToType(System.Type,System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Int32_System_IConvertible_ToType_m4FEECCC81AEEBE645FC073AC87BF9AE58FF57A6C (int32_t* __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int32_System_IConvertible_ToType_m4FEECCC81AEEBE645FC073AC87BF9AE58FF57A6C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((int32_t*)__this);
int32_t L_1 = L_0;
RuntimeObject * L_2 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_1);
Type_t * L_3 = ___type0;
RuntimeObject* L_4 = ___provider1;
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
RuntimeObject * L_5 = Convert_DefaultToType_m899D5F6B9FE3E8B878BC56172C6BFE788B6C1BE3((RuntimeObject*)L_2, L_3, L_4, /*hidden argument*/NULL);
return L_5;
}
}
extern "C" RuntimeObject * Int32_System_IConvertible_ToType_m4FEECCC81AEEBE645FC073AC87BF9AE58FF57A6C_AdjustorThunk (RuntimeObject * __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
int32_t* _thisAdjusted = reinterpret_cast<int32_t*>(__this + 1);
return Int32_System_IConvertible_ToType_m4FEECCC81AEEBE645FC073AC87BF9AE58FF57A6C(_thisAdjusted, ___type0, ___provider1, 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
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int32 System.Int64::CompareTo(System.Object)
extern "C" IL2CPP_METHOD_ATTR int32_t Int64_CompareTo_m8FCB93E6F212C873AD99C264E7F501559AD2C190 (int64_t* __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int64_CompareTo_m8FCB93E6F212C873AD99C264E7F501559AD2C190_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0005;
}
}
{
return 1;
}
IL_0005:
{
RuntimeObject * L_1 = ___value0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_1, Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var)))
{
goto IL_0024;
}
}
{
RuntimeObject * L_2 = ___value0;
V_0 = ((*(int64_t*)((int64_t*)UnBox(L_2, Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var))));
int64_t L_3 = *((int64_t*)__this);
int64_t L_4 = V_0;
if ((((int64_t)L_3) >= ((int64_t)L_4)))
{
goto IL_001b;
}
}
{
return (-1);
}
IL_001b:
{
int64_t L_5 = *((int64_t*)__this);
int64_t L_6 = V_0;
if ((((int64_t)L_5) <= ((int64_t)L_6)))
{
goto IL_0022;
}
}
{
return 1;
}
IL_0022:
{
return 0;
}
IL_0024:
{
String_t* L_7 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral35EFFFE2370AD1E1EBB40B27FB092EFF5D7E1D4C, /*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, NULL, Int64_CompareTo_m8FCB93E6F212C873AD99C264E7F501559AD2C190_RuntimeMethod_var);
}
}
extern "C" int32_t Int64_CompareTo_m8FCB93E6F212C873AD99C264E7F501559AD2C190_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + 1);
return Int64_CompareTo_m8FCB93E6F212C873AD99C264E7F501559AD2C190(_thisAdjusted, ___value0, method);
}
// System.Int32 System.Int64::CompareTo(System.Int64)
extern "C" IL2CPP_METHOD_ATTR int32_t Int64_CompareTo_m21E0F72C677E986977303B18D5472487319DCFD2 (int64_t* __this, int64_t ___value0, const RuntimeMethod* method)
{
{
int64_t L_0 = *((int64_t*)__this);
int64_t L_1 = ___value0;
if ((((int64_t)L_0) >= ((int64_t)L_1)))
{
goto IL_0007;
}
}
{
return (-1);
}
IL_0007:
{
int64_t L_2 = *((int64_t*)__this);
int64_t L_3 = ___value0;
if ((((int64_t)L_2) <= ((int64_t)L_3)))
{
goto IL_000e;
}
}
{
return 1;
}
IL_000e:
{
return 0;
}
}
extern "C" int32_t Int64_CompareTo_m21E0F72C677E986977303B18D5472487319DCFD2_AdjustorThunk (RuntimeObject * __this, int64_t ___value0, const RuntimeMethod* method)
{
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + 1);
return Int64_CompareTo_m21E0F72C677E986977303B18D5472487319DCFD2(_thisAdjusted, ___value0, method);
}
// System.Boolean System.Int64::Equals(System.Object)
extern "C" IL2CPP_METHOD_ATTR bool Int64_Equals_m217A2D6F9F752A690AA8BF039B1DF2091A7FE78C (int64_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int64_Equals_m217A2D6F9F752A690AA8BF039B1DF2091A7FE78C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var)))
{
goto IL_000a;
}
}
{
return (bool)0;
}
IL_000a:
{
int64_t L_1 = *((int64_t*)__this);
RuntimeObject * L_2 = ___obj0;
return (bool)((((int64_t)L_1) == ((int64_t)((*(int64_t*)((int64_t*)UnBox(L_2, Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var))))))? 1 : 0);
}
}
extern "C" bool Int64_Equals_m217A2D6F9F752A690AA8BF039B1DF2091A7FE78C_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + 1);
return Int64_Equals_m217A2D6F9F752A690AA8BF039B1DF2091A7FE78C(_thisAdjusted, ___obj0, method);
}
// System.Boolean System.Int64::Equals(System.Int64)
extern "C" IL2CPP_METHOD_ATTR bool Int64_Equals_mB589D15F558BF8FECBB56EF429EFF5C7A39D9E0F (int64_t* __this, int64_t ___obj0, const RuntimeMethod* method)
{
{
int64_t L_0 = *((int64_t*)__this);
int64_t L_1 = ___obj0;
return (bool)((((int64_t)L_0) == ((int64_t)L_1))? 1 : 0);
}
}
extern "C" bool Int64_Equals_mB589D15F558BF8FECBB56EF429EFF5C7A39D9E0F_AdjustorThunk (RuntimeObject * __this, int64_t ___obj0, const RuntimeMethod* method)
{
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + 1);
return Int64_Equals_mB589D15F558BF8FECBB56EF429EFF5C7A39D9E0F(_thisAdjusted, ___obj0, method);
}
// System.Int32 System.Int64::GetHashCode()
extern "C" IL2CPP_METHOD_ATTR int32_t Int64_GetHashCode_mB5F9D4E16AFBD7C3932709B38AD8C8BF920CC0A4 (int64_t* __this, const RuntimeMethod* method)
{
{
int64_t L_0 = *((int64_t*)__this);
int64_t L_1 = *((int64_t*)__this);
return ((int32_t)((int32_t)(((int32_t)((int32_t)L_0)))^(int32_t)(((int32_t)((int32_t)((int64_t)((int64_t)L_1>>(int32_t)((int32_t)32))))))));
}
}
extern "C" int32_t Int64_GetHashCode_mB5F9D4E16AFBD7C3932709B38AD8C8BF920CC0A4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + 1);
return Int64_GetHashCode_mB5F9D4E16AFBD7C3932709B38AD8C8BF920CC0A4(_thisAdjusted, method);
}
// System.String System.Int64::ToString()
extern "C" IL2CPP_METHOD_ATTR String_t* Int64_ToString_m8210E39355A227AE15DD391EB810AA9B6AB8B26C (int64_t* __this, const RuntimeMethod* method)
{
{
int64_t L_0 = *((int64_t*)__this);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_1 = NumberFormatInfo_get_CurrentInfo_m595DF03E32E0C5B01F1EC45F7264B2BD09BA61C9(/*hidden argument*/NULL);
String_t* L_2 = Number_FormatInt64_m4D4B9098DEEF54C61927074C5471C272A1B64BEB(L_0, (String_t*)NULL, L_1, /*hidden argument*/NULL);
return L_2;
}
}
extern "C" String_t* Int64_ToString_m8210E39355A227AE15DD391EB810AA9B6AB8B26C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + 1);
return Int64_ToString_m8210E39355A227AE15DD391EB810AA9B6AB8B26C(_thisAdjusted, method);
}
// System.String System.Int64::ToString(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR String_t* Int64_ToString_m25F3F61DC30EAF186B76BD91F83083BDDDE82B2A (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
{
int64_t L_0 = *((int64_t*)__this);
RuntimeObject* L_1 = ___provider0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A(L_1, /*hidden argument*/NULL);
String_t* L_3 = Number_FormatInt64_m4D4B9098DEEF54C61927074C5471C272A1B64BEB(L_0, (String_t*)NULL, L_2, /*hidden argument*/NULL);
return L_3;
}
}
extern "C" String_t* Int64_ToString_m25F3F61DC30EAF186B76BD91F83083BDDDE82B2A_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + 1);
return Int64_ToString_m25F3F61DC30EAF186B76BD91F83083BDDDE82B2A(_thisAdjusted, ___provider0, method);
}
// System.String System.Int64::ToString(System.String,System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR String_t* Int64_ToString_mB73201579D1D4BC868EC9BC901B2812AC4B90517 (int64_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
{
int64_t L_0 = *((int64_t*)__this);
String_t* L_1 = ___format0;
RuntimeObject* L_2 = ___provider1;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_3 = NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A(L_2, /*hidden argument*/NULL);
String_t* L_4 = Number_FormatInt64_m4D4B9098DEEF54C61927074C5471C272A1B64BEB(L_0, L_1, L_3, /*hidden argument*/NULL);
return L_4;
}
}
extern "C" String_t* Int64_ToString_mB73201579D1D4BC868EC9BC901B2812AC4B90517_AdjustorThunk (RuntimeObject * __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + 1);
return Int64_ToString_mB73201579D1D4BC868EC9BC901B2812AC4B90517(_thisAdjusted, ___format0, ___provider1, method);
}
// System.Int64 System.Int64::Parse(System.String)
extern "C" IL2CPP_METHOD_ATTR int64_t Int64_Parse_mF23EAF76DFE5560832595FCAC1ACABFB717E3D4D (String_t* ___s0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___s0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_1 = NumberFormatInfo_get_CurrentInfo_m595DF03E32E0C5B01F1EC45F7264B2BD09BA61C9(/*hidden argument*/NULL);
int64_t L_2 = Number_ParseInt64_m33AA7A0F69E575B698C474AA716B508904B92B62(L_0, 7, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Int64 System.Int64::Parse(System.String,System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR int64_t Int64_Parse_m58A1CEB948FDC6C2ECCA27CA9D19CB904BF98FD4 (String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___s0;
RuntimeObject* L_1 = ___provider1;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A(L_1, /*hidden argument*/NULL);
int64_t L_3 = Number_ParseInt64_m33AA7A0F69E575B698C474AA716B508904B92B62(L_0, 7, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.Int64 System.Int64::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR int64_t Int64_Parse_m5113C0CCFB668DBC49D71D9F07CC8A96B8C7773D (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method)
{
{
int32_t L_0 = ___style1;
NumberFormatInfo_ValidateParseStyleInteger_m5BD1C04C26D5589F0DFA5953294B72E1DDC2B7E3(L_0, /*hidden argument*/NULL);
String_t* L_1 = ___s0;
int32_t L_2 = ___style1;
RuntimeObject* L_3 = ___provider2;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_4 = NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A(L_3, /*hidden argument*/NULL);
int64_t L_5 = Number_ParseInt64_m33AA7A0F69E575B698C474AA716B508904B92B62(L_1, L_2, L_4, /*hidden argument*/NULL);
return L_5;
}
}
// System.Boolean System.Int64::TryParse(System.String,System.Int64U26)
extern "C" IL2CPP_METHOD_ATTR bool Int64_TryParse_m5C60567D82BACC7D9C18F7A9A83025FC94AD0E95 (String_t* ___s0, int64_t* ___result1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___s0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_1 = NumberFormatInfo_get_CurrentInfo_m595DF03E32E0C5B01F1EC45F7264B2BD09BA61C9(/*hidden argument*/NULL);
int64_t* L_2 = ___result1;
bool L_3 = Number_TryParseInt64_m62C1C9F9BAC32770297859436DE8E68DF0E1E598(L_0, 7, L_1, (int64_t*)L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.TypeCode System.Int64::GetTypeCode()
extern "C" IL2CPP_METHOD_ATTR int32_t Int64_GetTypeCode_m661AF73541BCCE54598581F75762BA330DE2F911 (int64_t* __this, const RuntimeMethod* method)
{
{
return (int32_t)(((int32_t)11));
}
}
extern "C" int32_t Int64_GetTypeCode_m661AF73541BCCE54598581F75762BA330DE2F911_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + 1);
return Int64_GetTypeCode_m661AF73541BCCE54598581F75762BA330DE2F911(_thisAdjusted, method);
}
// System.Boolean System.Int64::System.IConvertible.ToBoolean(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR bool Int64_System_IConvertible_ToBoolean_m678B7CC49A2836D5E6D5E6ABA81ED0693CD1D0C7 (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int64_System_IConvertible_ToBoolean_m678B7CC49A2836D5E6D5E6ABA81ED0693CD1D0C7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = *((int64_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
bool L_1 = Convert_ToBoolean_m6EB15B3E1D9AC269065DB500E880A81AA42AF5E7(L_0, /*hidden argument*/NULL);
return L_1;
}
}
extern "C" bool Int64_System_IConvertible_ToBoolean_m678B7CC49A2836D5E6D5E6ABA81ED0693CD1D0C7_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + 1);
return Int64_System_IConvertible_ToBoolean_m678B7CC49A2836D5E6D5E6ABA81ED0693CD1D0C7(_thisAdjusted, ___provider0, method);
}
// System.Char System.Int64::System.IConvertible.ToChar(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR Il2CppChar Int64_System_IConvertible_ToChar_m86A13E02736A1D84736DFBCC3DB7FA1A3D1035F4 (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int64_System_IConvertible_ToChar_m86A13E02736A1D84736DFBCC3DB7FA1A3D1035F4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = *((int64_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
Il2CppChar L_1 = Convert_ToChar_m9171D149D77DE0FBB36CB4D91EEBDC06B2DD6F29(L_0, /*hidden argument*/NULL);
return L_1;
}
}
extern "C" Il2CppChar Int64_System_IConvertible_ToChar_m86A13E02736A1D84736DFBCC3DB7FA1A3D1035F4_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + 1);
return Int64_System_IConvertible_ToChar_m86A13E02736A1D84736DFBCC3DB7FA1A3D1035F4(_thisAdjusted, ___provider0, method);
}
// System.SByte System.Int64::System.IConvertible.ToSByte(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR int8_t Int64_System_IConvertible_ToSByte_mABEF3207B39F4C9FD1C21A01581010C67629FC0C (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int64_System_IConvertible_ToSByte_mABEF3207B39F4C9FD1C21A01581010C67629FC0C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = *((int64_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
int8_t L_1 = Convert_ToSByte_m1A4B3CD0081049789B368AE723C5214669A80767(L_0, /*hidden argument*/NULL);
return L_1;
}
}
extern "C" int8_t Int64_System_IConvertible_ToSByte_mABEF3207B39F4C9FD1C21A01581010C67629FC0C_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + 1);
return Int64_System_IConvertible_ToSByte_mABEF3207B39F4C9FD1C21A01581010C67629FC0C(_thisAdjusted, ___provider0, method);
}
// System.Byte System.Int64::System.IConvertible.ToByte(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR uint8_t Int64_System_IConvertible_ToByte_m4EF22DEB0E2F10C70C2E8D6029064CE178714D75 (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int64_System_IConvertible_ToByte_m4EF22DEB0E2F10C70C2E8D6029064CE178714D75_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = *((int64_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
uint8_t L_1 = Convert_ToByte_m645FE381788C101B2BE504F57811E655AD432935(L_0, /*hidden argument*/NULL);
return L_1;
}
}
extern "C" uint8_t Int64_System_IConvertible_ToByte_m4EF22DEB0E2F10C70C2E8D6029064CE178714D75_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + 1);
return Int64_System_IConvertible_ToByte_m4EF22DEB0E2F10C70C2E8D6029064CE178714D75(_thisAdjusted, ___provider0, method);
}
// System.Int16 System.Int64::System.IConvertible.ToInt16(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR int16_t Int64_System_IConvertible_ToInt16_m300B40C5CCB4B0A742603476A6EFE6E4198EE755 (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int64_System_IConvertible_ToInt16_m300B40C5CCB4B0A742603476A6EFE6E4198EE755_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = *((int64_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
int16_t L_1 = Convert_ToInt16_m452BBDF72FBBBF90915F464E0558DA82CE1F7DBF(L_0, /*hidden argument*/NULL);
return L_1;
}
}
extern "C" int16_t Int64_System_IConvertible_ToInt16_m300B40C5CCB4B0A742603476A6EFE6E4198EE755_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + 1);
return Int64_System_IConvertible_ToInt16_m300B40C5CCB4B0A742603476A6EFE6E4198EE755(_thisAdjusted, ___provider0, method);
}
// System.UInt16 System.Int64::System.IConvertible.ToUInt16(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR uint16_t Int64_System_IConvertible_ToUInt16_m969A9B2B7390416D6A28B5E5AF05ED13EEE1E933 (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int64_System_IConvertible_ToUInt16_m969A9B2B7390416D6A28B5E5AF05ED13EEE1E933_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = *((int64_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
uint16_t L_1 = Convert_ToUInt16_mA5386907A6E781E3D4261BDB7D6308FBD5B518F7(L_0, /*hidden argument*/NULL);
return L_1;
}
}
extern "C" uint16_t Int64_System_IConvertible_ToUInt16_m969A9B2B7390416D6A28B5E5AF05ED13EEE1E933_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + 1);
return Int64_System_IConvertible_ToUInt16_m969A9B2B7390416D6A28B5E5AF05ED13EEE1E933(_thisAdjusted, ___provider0, method);
}
// System.Int32 System.Int64::System.IConvertible.ToInt32(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR int32_t Int64_System_IConvertible_ToInt32_mF857699718EF937019CDA97783F80904E77DEAA5 (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int64_System_IConvertible_ToInt32_mF857699718EF937019CDA97783F80904E77DEAA5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = *((int64_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
int32_t L_1 = Convert_ToInt32_m5CE30569A0A5B70CBD85954BEEF436F57D6FAE6B(L_0, /*hidden argument*/NULL);
return L_1;
}
}
extern "C" int32_t Int64_System_IConvertible_ToInt32_mF857699718EF937019CDA97783F80904E77DEAA5_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + 1);
return Int64_System_IConvertible_ToInt32_mF857699718EF937019CDA97783F80904E77DEAA5(_thisAdjusted, ___provider0, method);
}
// System.UInt32 System.Int64::System.IConvertible.ToUInt32(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR uint32_t Int64_System_IConvertible_ToUInt32_m3F6CDD0B28BA8BBC9F0CA38DB5904D7A04F5BF38 (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int64_System_IConvertible_ToUInt32_m3F6CDD0B28BA8BBC9F0CA38DB5904D7A04F5BF38_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = *((int64_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
uint32_t L_1 = Convert_ToUInt32_mD1B91075B4D330E0D2D4600A6D5283C2FA1586E4(L_0, /*hidden argument*/NULL);
return L_1;
}
}
extern "C" uint32_t Int64_System_IConvertible_ToUInt32_m3F6CDD0B28BA8BBC9F0CA38DB5904D7A04F5BF38_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + 1);
return Int64_System_IConvertible_ToUInt32_m3F6CDD0B28BA8BBC9F0CA38DB5904D7A04F5BF38(_thisAdjusted, ___provider0, method);
}
// System.Int64 System.Int64::System.IConvertible.ToInt64(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR int64_t Int64_System_IConvertible_ToInt64_m470CF2051A9BF81279B46FA6431FD3E05002B0C9 (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
{
int64_t L_0 = *((int64_t*)__this);
return L_0;
}
}
extern "C" int64_t Int64_System_IConvertible_ToInt64_m470CF2051A9BF81279B46FA6431FD3E05002B0C9_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + 1);
return Int64_System_IConvertible_ToInt64_m470CF2051A9BF81279B46FA6431FD3E05002B0C9(_thisAdjusted, ___provider0, method);
}
// System.UInt64 System.Int64::System.IConvertible.ToUInt64(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR uint64_t Int64_System_IConvertible_ToUInt64_mA8E1ABEFFF58D3299B47D571ADBDBC9D0F7D7E38 (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int64_System_IConvertible_ToUInt64_mA8E1ABEFFF58D3299B47D571ADBDBC9D0F7D7E38_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = *((int64_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
uint64_t L_1 = Convert_ToUInt64_mE0A19C049B47AC33472017793E0B8FCF5A9CE098(L_0, /*hidden argument*/NULL);
return L_1;
}
}
extern "C" uint64_t Int64_System_IConvertible_ToUInt64_mA8E1ABEFFF58D3299B47D571ADBDBC9D0F7D7E38_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + 1);
return Int64_System_IConvertible_ToUInt64_mA8E1ABEFFF58D3299B47D571ADBDBC9D0F7D7E38(_thisAdjusted, ___provider0, method);
}
// System.Single System.Int64::System.IConvertible.ToSingle(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR float Int64_System_IConvertible_ToSingle_m282A94EF4F2EBA18296B2824CB143B35F4F07A86 (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int64_System_IConvertible_ToSingle_m282A94EF4F2EBA18296B2824CB143B35F4F07A86_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = *((int64_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
float L_1 = Convert_ToSingle_m3A854A75BE60D077E283A444B4EEF3ED6E984F9A(L_0, /*hidden argument*/NULL);
return L_1;
}
}
extern "C" float Int64_System_IConvertible_ToSingle_m282A94EF4F2EBA18296B2824CB143B35F4F07A86_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + 1);
return Int64_System_IConvertible_ToSingle_m282A94EF4F2EBA18296B2824CB143B35F4F07A86(_thisAdjusted, ___provider0, method);
}
// System.Double System.Int64::System.IConvertible.ToDouble(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR double Int64_System_IConvertible_ToDouble_mBF9D431716723F0B8614D0C3C7906D447788431E (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int64_System_IConvertible_ToDouble_mBF9D431716723F0B8614D0C3C7906D447788431E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = *((int64_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
double L_1 = Convert_ToDouble_m5948DF15E5B6EAE3A3D443BB5DAB6D6BF5D4E785(L_0, /*hidden argument*/NULL);
return L_1;
}
}
extern "C" double Int64_System_IConvertible_ToDouble_mBF9D431716723F0B8614D0C3C7906D447788431E_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + 1);
return Int64_System_IConvertible_ToDouble_mBF9D431716723F0B8614D0C3C7906D447788431E(_thisAdjusted, ___provider0, method);
}
// System.Decimal System.Int64::System.IConvertible.ToDecimal(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Int64_System_IConvertible_ToDecimal_m8638C21E67A5D07CE98F13EC2FC76E150E9C9FBB (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int64_System_IConvertible_ToDecimal_m8638C21E67A5D07CE98F13EC2FC76E150E9C9FBB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = *((int64_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = Convert_ToDecimal_mECE2EDC28EBA5F0B88702C15D0A3A1DABEE8D6A1(L_0, /*hidden argument*/NULL);
return L_1;
}
}
extern "C" Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Int64_System_IConvertible_ToDecimal_m8638C21E67A5D07CE98F13EC2FC76E150E9C9FBB_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + 1);
return Int64_System_IConvertible_ToDecimal_m8638C21E67A5D07CE98F13EC2FC76E150E9C9FBB(_thisAdjusted, ___provider0, method);
}
// System.DateTime System.Int64::System.IConvertible.ToDateTime(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Int64_System_IConvertible_ToDateTime_m9885F222F844D272F9C0C5913DB93E0A39A22B1D (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int64_System_IConvertible_ToDateTime_m9885F222F844D272F9C0C5913DB93E0A39A22B1D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, _stringLiteral180FCBE698D0F2C44101A06215C472930BBD0A01);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral180FCBE698D0F2C44101A06215C472930BBD0A01);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1;
NullCheck(L_2);
ArrayElementTypeCheck (L_2, _stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F);
String_t* L_3 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497, L_2, /*hidden argument*/NULL);
InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_4 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var);
InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_4, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Int64_System_IConvertible_ToDateTime_m9885F222F844D272F9C0C5913DB93E0A39A22B1D_RuntimeMethod_var);
}
}
extern "C" DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Int64_System_IConvertible_ToDateTime_m9885F222F844D272F9C0C5913DB93E0A39A22B1D_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + 1);
return Int64_System_IConvertible_ToDateTime_m9885F222F844D272F9C0C5913DB93E0A39A22B1D(_thisAdjusted, ___provider0, method);
}
// System.Object System.Int64::System.IConvertible.ToType(System.Type,System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Int64_System_IConvertible_ToType_m553EB95677AEB0ABAA6CF513BD42EC32D19543B5 (int64_t* __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Int64_System_IConvertible_ToType_m553EB95677AEB0ABAA6CF513BD42EC32D19543B5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = *((int64_t*)__this);
int64_t L_1 = L_0;
RuntimeObject * L_2 = Box(Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var, &L_1);
Type_t * L_3 = ___type0;
RuntimeObject* L_4 = ___provider1;
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
RuntimeObject * L_5 = Convert_DefaultToType_m899D5F6B9FE3E8B878BC56172C6BFE788B6C1BE3((RuntimeObject*)L_2, L_3, L_4, /*hidden argument*/NULL);
return L_5;
}
}
extern "C" RuntimeObject * Int64_System_IConvertible_ToType_m553EB95677AEB0ABAA6CF513BD42EC32D19543B5_AdjustorThunk (RuntimeObject * __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
int64_t* _thisAdjusted = reinterpret_cast<int64_t*>(__this + 1);
return Int64_System_IConvertible_ToType_m553EB95677AEB0ABAA6CF513BD42EC32D19543B5(_thisAdjusted, ___type0, ___provider1, 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
#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 System.IntPtr::.ctor(System.Int32)
extern "C" IL2CPP_METHOD_ATTR void IntPtr__ctor_mA56CC06850BB1156300659D754DDA844E8F755C6 (intptr_t* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
*__this = ((intptr_t)(((intptr_t)L_0)));
return;
}
}
extern "C" void IntPtr__ctor_mA56CC06850BB1156300659D754DDA844E8F755C6_AdjustorThunk (RuntimeObject * __this, int32_t ___value0, const RuntimeMethod* method)
{
intptr_t* _thisAdjusted = reinterpret_cast<intptr_t*>(__this + 1);
IntPtr__ctor_mA56CC06850BB1156300659D754DDA844E8F755C6(_thisAdjusted, ___value0, method);
}
// System.Void System.IntPtr::.ctor(System.Int64)
extern "C" IL2CPP_METHOD_ATTR void IntPtr__ctor_m3C2353A241FD6B18CAE68756977D63B85F14DEBD (intptr_t* __this, int64_t ___value0, const RuntimeMethod* method)
{
{
int64_t L_0 = ___value0;
*__this = ((intptr_t)(((uintptr_t)L_0)));
return;
}
}
extern "C" void IntPtr__ctor_m3C2353A241FD6B18CAE68756977D63B85F14DEBD_AdjustorThunk (RuntimeObject * __this, int64_t ___value0, const RuntimeMethod* method)
{
intptr_t* _thisAdjusted = reinterpret_cast<intptr_t*>(__this + 1);
IntPtr__ctor_m3C2353A241FD6B18CAE68756977D63B85F14DEBD(_thisAdjusted, ___value0, method);
}
// System.Void System.IntPtr::.ctor(System.Void*)
extern "C" IL2CPP_METHOD_ATTR void IntPtr__ctor_m6360250F4B87C6AE2F0389DA0DEE1983EED73FB6 (intptr_t* __this, void* ___value0, const RuntimeMethod* method)
{
{
void* L_0 = ___value0;
*__this = ((intptr_t)L_0);
return;
}
}
extern "C" void IntPtr__ctor_m6360250F4B87C6AE2F0389DA0DEE1983EED73FB6_AdjustorThunk (RuntimeObject * __this, void* ___value0, const RuntimeMethod* method)
{
intptr_t* _thisAdjusted = reinterpret_cast<intptr_t*>(__this + 1);
IntPtr__ctor_m6360250F4B87C6AE2F0389DA0DEE1983EED73FB6(_thisAdjusted, ___value0, method);
}
// System.Void System.IntPtr::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
extern "C" IL2CPP_METHOD_ATTR void IntPtr__ctor_mB9F614446AB7E84C11B210CC4E93696BBE80F50B (intptr_t* __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IntPtr__ctor_mB9F614446AB7E84C11B210CC4E93696BBE80F50B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
NullCheck(L_0);
int64_t L_1 = SerializationInfo_GetInt64_mD9FB62CFBEC90A544B95912AB9FA24377AC17E54(L_0, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL);
V_0 = L_1;
int64_t L_2 = V_0;
*__this = ((intptr_t)(((uintptr_t)L_2)));
return;
}
}
extern "C" void IntPtr__ctor_mB9F614446AB7E84C11B210CC4E93696BBE80F50B_AdjustorThunk (RuntimeObject * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
intptr_t* _thisAdjusted = reinterpret_cast<intptr_t*>(__this + 1);
IntPtr__ctor_mB9F614446AB7E84C11B210CC4E93696BBE80F50B(_thisAdjusted, ___info0, ___context1, method);
}
// System.Int32 System.IntPtr::get_Size()
extern "C" IL2CPP_METHOD_ATTR int32_t IntPtr_get_Size_m1342A61F11766A494F2F90D9B68CADAD62261929 (const RuntimeMethod* method)
{
{
uint32_t L_0 = sizeof(void*);
return L_0;
}
}
// System.Void System.IntPtr::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
extern "C" IL2CPP_METHOD_ATTR void IntPtr_System_Runtime_Serialization_ISerializable_GetObjectData_m5D9D75902BF6B3E73AD7C5BA3E4D964F38ED3816 (intptr_t* __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IntPtr_System_Runtime_Serialization_ISerializable_GetObjectData_m5D9D75902BF6B3E73AD7C5BA3E4D964F38ED3816_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
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, _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, IntPtr_System_Runtime_Serialization_ISerializable_GetObjectData_m5D9D75902BF6B3E73AD7C5BA3E4D964F38ED3816_RuntimeMethod_var);
}
IL_000e:
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0;
int64_t L_3 = IntPtr_ToInt64_mDD00D5F4AD380F40D31B60E9C57843CC3C12BD6B((intptr_t*)__this, /*hidden argument*/NULL);
NullCheck(L_2);
SerializationInfo_AddValue_mCCC2918D05840247B2A72A834940BD36AD7F5DE4(L_2, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, L_3, /*hidden argument*/NULL);
return;
}
}
extern "C" void IntPtr_System_Runtime_Serialization_ISerializable_GetObjectData_m5D9D75902BF6B3E73AD7C5BA3E4D964F38ED3816_AdjustorThunk (RuntimeObject * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
intptr_t* _thisAdjusted = reinterpret_cast<intptr_t*>(__this + 1);
IntPtr_System_Runtime_Serialization_ISerializable_GetObjectData_m5D9D75902BF6B3E73AD7C5BA3E4D964F38ED3816(_thisAdjusted, ___info0, ___context1, method);
}
// System.Boolean System.IntPtr::Equals(System.Object)
extern "C" IL2CPP_METHOD_ATTR bool IntPtr_Equals_m4C1C372B05E29E20EC5E9B48EF8AAEA3E49B874D (intptr_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IntPtr_Equals_m4C1C372B05E29E20EC5E9B48EF8AAEA3E49B874D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, IntPtr_t_il2cpp_TypeInfo_var)))
{
goto IL_000a;
}
}
{
return (bool)0;
}
IL_000a:
{
RuntimeObject * L_1 = ___obj0;
intptr_t L_2 = *((intptr_t*)UnBox(L_1, IntPtr_t_il2cpp_TypeInfo_var));
intptr_t L_3 = *__this;
return (bool)((((intptr_t)L_2) == ((intptr_t)L_3))? 1 : 0);
}
}
extern "C" bool IntPtr_Equals_m4C1C372B05E29E20EC5E9B48EF8AAEA3E49B874D_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
intptr_t* _thisAdjusted = reinterpret_cast<intptr_t*>(__this + 1);
return IntPtr_Equals_m4C1C372B05E29E20EC5E9B48EF8AAEA3E49B874D(_thisAdjusted, ___obj0, method);
}
// System.Int32 System.IntPtr::GetHashCode()
extern "C" IL2CPP_METHOD_ATTR int32_t IntPtr_GetHashCode_m0A6AE0C85A4AEEA127235FB5A32056F630E3749A (intptr_t* __this, const RuntimeMethod* method)
{
{
intptr_t L_0 = *__this;
return (((int32_t)((int32_t)L_0)));
}
}
extern "C" int32_t IntPtr_GetHashCode_m0A6AE0C85A4AEEA127235FB5A32056F630E3749A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
intptr_t* _thisAdjusted = reinterpret_cast<intptr_t*>(__this + 1);
return IntPtr_GetHashCode_m0A6AE0C85A4AEEA127235FB5A32056F630E3749A(_thisAdjusted, method);
}
// System.Int64 System.IntPtr::ToInt64()
extern "C" IL2CPP_METHOD_ATTR int64_t IntPtr_ToInt64_mDD00D5F4AD380F40D31B60E9C57843CC3C12BD6B (intptr_t* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = IntPtr_get_Size_m1342A61F11766A494F2F90D9B68CADAD62261929(/*hidden argument*/NULL);
if ((!(((uint32_t)L_0) == ((uint32_t)4))))
{
goto IL_0011;
}
}
{
intptr_t L_1 = *__this;
return (((int64_t)((int64_t)(((int32_t)((int32_t)L_1))))));
}
IL_0011:
{
intptr_t L_2 = *__this;
return (((int64_t)((uint64_t)L_2)));
}
}
extern "C" int64_t IntPtr_ToInt64_mDD00D5F4AD380F40D31B60E9C57843CC3C12BD6B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
intptr_t* _thisAdjusted = reinterpret_cast<intptr_t*>(__this + 1);
return IntPtr_ToInt64_mDD00D5F4AD380F40D31B60E9C57843CC3C12BD6B(_thisAdjusted, method);
}
// System.Void* System.IntPtr::ToPointer()
extern "C" IL2CPP_METHOD_ATTR void* IntPtr_ToPointer_mC56A17E597E9F767B889DA10DB866F0B96CF0D65 (intptr_t* __this, const RuntimeMethod* method)
{
{
intptr_t L_0 = *__this;
return (void*)(L_0);
}
}
extern "C" void* IntPtr_ToPointer_mC56A17E597E9F767B889DA10DB866F0B96CF0D65_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
intptr_t* _thisAdjusted = reinterpret_cast<intptr_t*>(__this + 1);
return IntPtr_ToPointer_mC56A17E597E9F767B889DA10DB866F0B96CF0D65(_thisAdjusted, method);
}
// System.String System.IntPtr::ToString()
extern "C" IL2CPP_METHOD_ATTR String_t* IntPtr_ToString_m69003637DD38C2850CFD23F50ECBDD777B3C310C (intptr_t* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = IntPtr_ToString_m6ADB8DBD989D878D694B4031CC08461B1E2C51FF((intptr_t*)__this, (String_t*)NULL, /*hidden argument*/NULL);
return L_0;
}
}
extern "C" String_t* IntPtr_ToString_m69003637DD38C2850CFD23F50ECBDD777B3C310C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
intptr_t* _thisAdjusted = reinterpret_cast<intptr_t*>(__this + 1);
return IntPtr_ToString_m69003637DD38C2850CFD23F50ECBDD777B3C310C(_thisAdjusted, method);
}
// System.String System.IntPtr::ToString(System.String)
extern "C" IL2CPP_METHOD_ATTR String_t* IntPtr_ToString_m6ADB8DBD989D878D694B4031CC08461B1E2C51FF (intptr_t* __this, String_t* ___format0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int64_t V_1 = 0;
{
int32_t L_0 = IntPtr_get_Size_m1342A61F11766A494F2F90D9B68CADAD62261929(/*hidden argument*/NULL);
if ((!(((uint32_t)L_0) == ((uint32_t)4))))
{
goto IL_001a;
}
}
{
intptr_t L_1 = *__this;
V_0 = (((int32_t)((int32_t)L_1)));
String_t* L_2 = ___format0;
String_t* L_3 = Int32_ToString_mE527694B0C55AE14FDCBE1D9C848446C18E22C09((int32_t*)(&V_0), L_2, (RuntimeObject*)NULL, /*hidden argument*/NULL);
return L_3;
}
IL_001a:
{
intptr_t L_4 = *__this;
V_1 = (((int64_t)((uint64_t)L_4)));
String_t* L_5 = ___format0;
String_t* L_6 = Int64_ToString_mB73201579D1D4BC868EC9BC901B2812AC4B90517((int64_t*)(&V_1), L_5, (RuntimeObject*)NULL, /*hidden argument*/NULL);
return L_6;
}
}
extern "C" String_t* IntPtr_ToString_m6ADB8DBD989D878D694B4031CC08461B1E2C51FF_AdjustorThunk (RuntimeObject * __this, String_t* ___format0, const RuntimeMethod* method)
{
intptr_t* _thisAdjusted = reinterpret_cast<intptr_t*>(__this + 1);
return IntPtr_ToString_m6ADB8DBD989D878D694B4031CC08461B1E2C51FF(_thisAdjusted, ___format0, method);
}
// System.Boolean System.IntPtr::op_Equality(System.IntPtr,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR bool IntPtr_op_Equality_mEE8D9FD2DFE312BBAA8B4ED3BF7976B3142A5934 (intptr_t ___value10, intptr_t ___value21, const RuntimeMethod* method)
{
{
intptr_t L_0 = ___value10;
intptr_t L_1 = ___value21;
return (bool)((((intptr_t)L_0) == ((intptr_t)L_1))? 1 : 0);
}
}
// System.Boolean System.IntPtr::op_Inequality(System.IntPtr,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR bool IntPtr_op_Inequality_mB4886A806009EA825EFCC60CD2A7F6EB8E273A61 (intptr_t ___value10, intptr_t ___value21, const RuntimeMethod* method)
{
{
intptr_t L_0 = ___value10;
intptr_t L_1 = ___value21;
return (bool)((((int32_t)((((intptr_t)L_0) == ((intptr_t)L_1))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
// System.IntPtr System.IntPtr::op_Explicit(System.Int32)
extern "C" IL2CPP_METHOD_ATTR intptr_t IntPtr_op_Explicit_m62A5ED7757661C8DB6AEF4816829ED92A1929F91 (int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
intptr_t L_1;
memset(&L_1, 0, sizeof(L_1));
IntPtr__ctor_mA56CC06850BB1156300659D754DDA844E8F755C6((&L_1), L_0, /*hidden argument*/NULL);
return (intptr_t)L_1;
}
}
// System.IntPtr System.IntPtr::op_Explicit(System.Int64)
extern "C" IL2CPP_METHOD_ATTR intptr_t IntPtr_op_Explicit_m534152049CE3084CEFA1CD8B1BA74F3C085A2ABF (int64_t ___value0, const RuntimeMethod* method)
{
{
int64_t L_0 = ___value0;
intptr_t L_1;
memset(&L_1, 0, sizeof(L_1));
IntPtr__ctor_m3C2353A241FD6B18CAE68756977D63B85F14DEBD((&L_1), L_0, /*hidden argument*/NULL);
return (intptr_t)L_1;
}
}
// System.IntPtr System.IntPtr::op_Explicit(System.Void*)
extern "C" IL2CPP_METHOD_ATTR intptr_t IntPtr_op_Explicit_m7F0C4B884FFB05BD231154CBDAEBCF1917019C21 (void* ___value0, const RuntimeMethod* method)
{
{
void* L_0 = ___value0;
intptr_t L_1;
memset(&L_1, 0, sizeof(L_1));
IntPtr__ctor_m6360250F4B87C6AE2F0389DA0DEE1983EED73FB6((&L_1), (void*)(void*)L_0, /*hidden argument*/NULL);
return (intptr_t)L_1;
}
}
// System.Int32 System.IntPtr::op_Explicit(System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR int32_t IntPtr_op_Explicit_mD69722A4C61D33FE70E790325C6E0DC690F9494F (intptr_t ___value0, const RuntimeMethod* method)
{
{
intptr_t L_0 = ___value0;
return (((int32_t)((int32_t)L_0)));
}
}
// System.Void* System.IntPtr::op_Explicit(System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void* IntPtr_op_Explicit_mB8A512095BCE1A23B2840310C8A27C928ADAD027 (intptr_t ___value0, const RuntimeMethod* method)
{
{
intptr_t L_0 = ___value0;
return (void*)(L_0);
}
}
// System.Boolean System.IntPtr::IsNull()
extern "C" IL2CPP_METHOD_ATTR bool IntPtr_IsNull_mEB01FA7670F5CA3BE36507B9528EC6F1D5AAC6B4 (intptr_t* __this, const RuntimeMethod* method)
{
{
intptr_t L_0 = *__this;
return (bool)((((intptr_t)L_0) == ((intptr_t)(((uintptr_t)0))))? 1 : 0);
}
}
extern "C" bool IntPtr_IsNull_mEB01FA7670F5CA3BE36507B9528EC6F1D5AAC6B4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
intptr_t* _thisAdjusted = reinterpret_cast<intptr_t*>(__this + 1);
return IntPtr_IsNull_mEB01FA7670F5CA3BE36507B9528EC6F1D5AAC6B4(_thisAdjusted, 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 System.InvalidCastException::.ctor()
extern "C" IL2CPP_METHOD_ATTR void InvalidCastException__ctor_mB14CE363FB346D9BC0C0763CAF0B67AF90902144 (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InvalidCastException__ctor_mB14CE363FB346D9BC0C0763CAF0B67AF90902144_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralCA8EFDD5F0C04A868408904A3C252F0CA567598B, /*hidden argument*/NULL);
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2147467262), /*hidden argument*/NULL);
return;
}
}
// System.Void System.InvalidCastException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812 (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * __this, String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2147467262), /*hidden argument*/NULL);
return;
}
}
// System.Void System.InvalidCastException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
extern "C" IL2CPP_METHOD_ATTR void InvalidCastException__ctor_mA4139C9FAE61C910B9E3F28837FBBCC653D7387C (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949(__this, L_0, 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 System.InvalidOperationException::.ctor()
extern "C" IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_m1F94EA1226068BD1B7EAA1B836A59C99979F579E (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InvalidOperationException__ctor_m1F94EA1226068BD1B7EAA1B836A59C99979F579E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral29A6E802123FF6EA94EC6F96DDA470B3FA755A58, /*hidden argument*/NULL);
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233079), /*hidden argument*/NULL);
return;
}
}
// System.Void System.InvalidOperationException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706 (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * __this, String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233079), /*hidden argument*/NULL);
return;
}
}
// System.Void System.InvalidOperationException::.ctor(System.String,System.Exception)
extern "C" IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mC40AA9579B996C6FBAE023590139C16304D81DC6 (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
Exception_t * L_1 = ___innerException1;
SystemException__ctor_mA18D2EA5642C066F35CB8C965398F9A542C33B0A(__this, L_0, L_1, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233079), /*hidden argument*/NULL);
return;
}
}
// System.Void System.InvalidOperationException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
extern "C" IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mAC8983A2DEE5DB9ECD05C17D3270634236B95FA2 (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949(__this, L_0, 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 System.InvalidProgramException::.ctor()
extern "C" IL2CPP_METHOD_ATTR void InvalidProgramException__ctor_m196DA4095281E02BB54223A57497738B29958D89 (InvalidProgramException_tF3B9678AC1136E8FA85EE6F0069D39578DECB358 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InvalidProgramException__ctor_m196DA4095281E02BB54223A57497738B29958D89_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralC9C545814A86552A9F3ADF0A724DCF384DA46FF6, /*hidden argument*/NULL);
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233030), /*hidden argument*/NULL);
return;
}
}
// System.Void System.InvalidProgramException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void InvalidProgramException__ctor_m0A6EAC90493AED4549F5980E8110BD56A0E32C7F (InvalidProgramException_tF3B9678AC1136E8FA85EE6F0069D39578DECB358 * __this, String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233030), /*hidden argument*/NULL);
return;
}
}
// System.Void System.InvalidProgramException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
extern "C" IL2CPP_METHOD_ATTR void InvalidProgramException__ctor_m18BE86AE367FCF84D4ED3DC35A9472AC918D406C (InvalidProgramException_tF3B9678AC1136E8FA85EE6F0069D39578DECB358 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949(__this, L_0, 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 System.InvalidTimeZoneException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void InvalidTimeZoneException__ctor_m8FFF6B288E617CAA9269D849618C289FC589BE14 (InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 * __this, String_t* ___message0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InvalidTimeZoneException__ctor_m8FFF6B288E617CAA9269D849618C289FC589BE14_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___message0;
IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var);
Exception__ctor_m89BADFF36C3B170013878726E07729D51AA9FBE0(__this, L_0, /*hidden argument*/NULL);
return;
}
}
// System.Void System.InvalidTimeZoneException::.ctor(System.String,System.Exception)
extern "C" IL2CPP_METHOD_ATTR void InvalidTimeZoneException__ctor_m45B9443C467C8D8353DBB6F6E7A6E4E7F96CF591 (InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InvalidTimeZoneException__ctor_m45B9443C467C8D8353DBB6F6E7A6E4E7F96CF591_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___message0;
Exception_t * L_1 = ___innerException1;
IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var);
Exception__ctor_m62590BC1925B7B354EBFD852E162CD170FEB861D(__this, L_0, L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void System.InvalidTimeZoneException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
extern "C" IL2CPP_METHOD_ATTR void InvalidTimeZoneException__ctor_m5CF26CC0EAFEFD50238D8A317644BE84B8A91764 (InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InvalidTimeZoneException__ctor_m5CF26CC0EAFEFD50238D8A317644BE84B8A91764_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var);
Exception__ctor_mBFF5996A1B65FCEEE0054A95A652BA3DD6366618(__this, L_0, L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void System.InvalidTimeZoneException::.ctor()
extern "C" IL2CPP_METHOD_ATTR void InvalidTimeZoneException__ctor_m565DFEFCEFD9DB3E307E643A059B9AC57B2B57DD (InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InvalidTimeZoneException__ctor_m565DFEFCEFD9DB3E307E643A059B9AC57B2B57DD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var);
Exception__ctor_m5FEC89FBFACEEDCEE29CCFD44A85D72FC28EB0D1(__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.Byte[] System.KnownTerminals::get_linux()
extern "C" IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* KnownTerminals_get_linux_m9A34213D8DB968ED3864B4E321BA4B71DB7E8B95 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (KnownTerminals_get_linux_m9A34213D8DB968ED3864B4E321BA4B71DB7E8B95_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)1665));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = L_0;
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_2 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____40981BAA39513E58B28DCF0103CC04DE2A0A0444_31_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_1, L_2, /*hidden argument*/NULL);
return L_1;
}
}
// System.Byte[] System.KnownTerminals::get_xterm()
extern "C" IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* KnownTerminals_get_xterm_mA890BFD590F820BBB23B219E1AD1C8BCD3DFA345 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (KnownTerminals_get_xterm_mA890BFD590F820BBB23B219E1AD1C8BCD3DFA345_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)2100));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = L_0;
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_2 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____8D231DD55FE1AD7631BBD0905A17D5EB616C2154_72_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_1, L_2, /*hidden argument*/NULL);
return L_1;
}
}
// System.Byte[] System.KnownTerminals::get_ansi()
extern "C" IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* KnownTerminals_get_ansi_m2ECEBC902EBB68D9A849ED1B76F8008918BEBB4D (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (KnownTerminals_get_ansi_m2ECEBC902EBB68D9A849ED1B76F8008918BEBB4D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)1450));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = L_0;
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_2 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____379C06C9E702D31469C29033F0DD63931EB349F5_24_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_1, L_2, /*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
// System.Void System.LocalDataStore::.ctor(System.LocalDataStoreMgr,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void LocalDataStore__ctor_m2FDC5D7F0A6331A045F5C5E90C1EE386AF755910 (LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * __this, LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * ___mgr0, int32_t ___InitialCapacity1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LocalDataStore__ctor_m2FDC5D7F0A6331A045F5C5E90C1EE386AF755910_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * L_0 = ___mgr0;
__this->set_m_Manager_1(L_0);
int32_t L_1 = ___InitialCapacity1;
LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* L_2 = (LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0*)SZArrayNew(LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0_il2cpp_TypeInfo_var, (uint32_t)L_1);
__this->set_m_DataTable_0(L_2);
return;
}
}
// System.Void System.LocalDataStore::Dispose()
extern "C" IL2CPP_METHOD_ATTR void LocalDataStore_Dispose_m2B25B7ACE605E5F0366A6063B5B9978C8656D935 (LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * __this, const RuntimeMethod* method)
{
{
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * L_0 = __this->get_m_Manager_1();
NullCheck(L_0);
LocalDataStoreMgr_DeleteLocalDataStore_m943DBF460E197662F6D146A370A3DCD94CBD51A3(L_0, __this, /*hidden argument*/NULL);
return;
}
}
// System.Object System.LocalDataStore::GetData(System.LocalDataStoreSlot)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * LocalDataStore_GetData_mEC1E4E690BDC29818205F9CF24910AA543F0EFF5 (LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * __this, LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * ___slot0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LocalDataStore_GetData_mEC1E4E690BDC29818205F9CF24910AA543F0EFF5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * V_1 = NULL;
{
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * L_0 = __this->get_m_Manager_1();
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_1 = ___slot0;
NullCheck(L_0);
LocalDataStoreMgr_ValidateSlot_m7D28FF28A27A12AB0DD0F029B5A32EEB546B55E9(L_0, L_1, /*hidden argument*/NULL);
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_2 = ___slot0;
NullCheck(L_2);
int32_t L_3 = LocalDataStoreSlot_get_Slot_m921BC8D705F8D4BB4D623B895B3DD6055166DD79(L_2, /*hidden argument*/NULL);
V_0 = L_3;
int32_t L_4 = V_0;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0047;
}
}
{
int32_t L_5 = V_0;
LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* L_6 = __this->get_m_DataTable_0();
NullCheck(L_6);
if ((((int32_t)L_5) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length)))))))
{
goto IL_0024;
}
}
{
return NULL;
}
IL_0024:
{
LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* L_7 = __this->get_m_DataTable_0();
int32_t L_8 = V_0;
NullCheck(L_7);
int32_t L_9 = L_8;
LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
V_1 = L_10;
LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * L_11 = V_1;
if (L_11)
{
goto IL_0032;
}
}
{
return NULL;
}
IL_0032:
{
LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * L_12 = V_1;
NullCheck(L_12);
int64_t L_13 = LocalDataStoreElement_get_Cookie_m4D78FB1C0267C5A71D6DEBFA6CC0E89DC34D2B88(L_12, /*hidden argument*/NULL);
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_14 = ___slot0;
NullCheck(L_14);
int64_t L_15 = LocalDataStoreSlot_get_Cookie_m1D41A9C92E407A3AC6AB015F4663D0F260EBF2C5(L_14, /*hidden argument*/NULL);
if ((!(((uint64_t)L_13) == ((uint64_t)L_15))))
{
goto IL_0047;
}
}
{
LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * L_16 = V_1;
NullCheck(L_16);
RuntimeObject * L_17 = LocalDataStoreElement_get_Value_m5822C535F5DD63A7F1BA4EFA424D82450C972A16(L_16, /*hidden argument*/NULL);
return L_17;
}
IL_0047:
{
String_t* L_18 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralF379853755CB070E42B380890B2D70F78F11E230, /*hidden argument*/NULL);
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_19 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_19, L_18, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, NULL, LocalDataStore_GetData_mEC1E4E690BDC29818205F9CF24910AA543F0EFF5_RuntimeMethod_var);
}
}
// System.Void System.LocalDataStore::SetData(System.LocalDataStoreSlot,System.Object)
extern "C" IL2CPP_METHOD_ATTR void LocalDataStore_SetData_m9F62362E786F82989BF7DE1D08B46F9D40A73C7D (LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * __this, LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * ___slot0, RuntimeObject * ___data1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LocalDataStore_SetData_m9F62362E786F82989BF7DE1D08B46F9D40A73C7D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * V_1 = NULL;
LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * G_B4_0 = NULL;
{
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * L_0 = __this->get_m_Manager_1();
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_1 = ___slot0;
NullCheck(L_0);
LocalDataStoreMgr_ValidateSlot_m7D28FF28A27A12AB0DD0F029B5A32EEB546B55E9(L_0, L_1, /*hidden argument*/NULL);
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_2 = ___slot0;
NullCheck(L_2);
int32_t L_3 = LocalDataStoreSlot_get_Slot_m921BC8D705F8D4BB4D623B895B3DD6055166DD79(L_2, /*hidden argument*/NULL);
V_0 = L_3;
int32_t L_4 = V_0;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_004f;
}
}
{
int32_t L_5 = V_0;
LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* L_6 = __this->get_m_DataTable_0();
NullCheck(L_6);
if ((((int32_t)L_5) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length)))))))
{
goto IL_0025;
}
}
{
G_B4_0 = ((LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA *)(NULL));
goto IL_002d;
}
IL_0025:
{
LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* L_7 = __this->get_m_DataTable_0();
int32_t L_8 = V_0;
NullCheck(L_7);
int32_t L_9 = L_8;
LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
G_B4_0 = L_10;
}
IL_002d:
{
V_1 = G_B4_0;
LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * L_11 = V_1;
if (L_11)
{
goto IL_0039;
}
}
{
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_12 = ___slot0;
LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * L_13 = LocalDataStore_PopulateElement_m16D54E54CB4EA8F2F385B162B3011C8B3EB2568E(__this, L_12, /*hidden argument*/NULL);
V_1 = L_13;
}
IL_0039:
{
LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * L_14 = V_1;
NullCheck(L_14);
int64_t L_15 = LocalDataStoreElement_get_Cookie_m4D78FB1C0267C5A71D6DEBFA6CC0E89DC34D2B88(L_14, /*hidden argument*/NULL);
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_16 = ___slot0;
NullCheck(L_16);
int64_t L_17 = LocalDataStoreSlot_get_Cookie_m1D41A9C92E407A3AC6AB015F4663D0F260EBF2C5(L_16, /*hidden argument*/NULL);
if ((!(((uint64_t)L_15) == ((uint64_t)L_17))))
{
goto IL_004f;
}
}
{
LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * L_18 = V_1;
RuntimeObject * L_19 = ___data1;
NullCheck(L_18);
LocalDataStoreElement_set_Value_mA97C37A5E8F4E76276D025D604DCBAD1400570B3(L_18, L_19, /*hidden argument*/NULL);
return;
}
IL_004f:
{
String_t* L_20 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralF379853755CB070E42B380890B2D70F78F11E230, /*hidden argument*/NULL);
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_21 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_21, L_20, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, NULL, LocalDataStore_SetData_m9F62362E786F82989BF7DE1D08B46F9D40A73C7D_RuntimeMethod_var);
}
}
// System.Void System.LocalDataStore::FreeData(System.Int32,System.Int64)
extern "C" IL2CPP_METHOD_ATTR void LocalDataStore_FreeData_m7DC3DC695D322B7F2ED47F357447D2790821B10C (LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * __this, int32_t ___slot0, int64_t ___cookie1, const RuntimeMethod* method)
{
LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * V_0 = NULL;
{
int32_t L_0 = ___slot0;
LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* L_1 = __this->get_m_DataTable_0();
NullCheck(L_1);
if ((((int32_t)L_0) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_1)->max_length)))))))
{
goto IL_000c;
}
}
{
return;
}
IL_000c:
{
LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* L_2 = __this->get_m_DataTable_0();
int32_t L_3 = ___slot0;
NullCheck(L_2);
int32_t L_4 = L_3;
LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_0 = L_5;
LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * L_6 = V_0;
if (!L_6)
{
goto IL_002a;
}
}
{
LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * L_7 = V_0;
NullCheck(L_7);
int64_t L_8 = LocalDataStoreElement_get_Cookie_m4D78FB1C0267C5A71D6DEBFA6CC0E89DC34D2B88(L_7, /*hidden argument*/NULL);
int64_t L_9 = ___cookie1;
if ((!(((uint64_t)L_8) == ((uint64_t)L_9))))
{
goto IL_002a;
}
}
{
LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* L_10 = __this->get_m_DataTable_0();
int32_t L_11 = ___slot0;
NullCheck(L_10);
ArrayElementTypeCheck (L_10, NULL);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_11), (LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA *)NULL);
}
IL_002a:
{
return;
}
}
// System.LocalDataStoreElement System.LocalDataStore::PopulateElement(System.LocalDataStoreSlot)
extern "C" IL2CPP_METHOD_ATTR LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * LocalDataStore_PopulateElement_m16D54E54CB4EA8F2F385B162B3011C8B3EB2568E (LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * __this, LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * ___slot0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LocalDataStore_PopulateElement_m16D54E54CB4EA8F2F385B162B3011C8B3EB2568E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* V_2 = NULL;
LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * V_3 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
V_0 = (bool)0;
RuntimeHelpers_PrepareConstrainedRegions_m108F0650C70D15D3CC657AFEBA8E69770EDB9027(/*hidden argument*/NULL);
}
IL_0007:
try
{ // begin try (depth: 1)
{
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * L_0 = __this->get_m_Manager_1();
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_0, (bool*)(&V_0), /*hidden argument*/NULL);
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_1 = ___slot0;
NullCheck(L_1);
int32_t L_2 = LocalDataStoreSlot_get_Slot_m921BC8D705F8D4BB4D623B895B3DD6055166DD79(L_1, /*hidden argument*/NULL);
V_1 = L_2;
int32_t L_3 = V_1;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_002f;
}
}
IL_001f:
{
String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralF379853755CB070E42B380890B2D70F78F11E230, /*hidden argument*/NULL);
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_5 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_5, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, LocalDataStore_PopulateElement_m16D54E54CB4EA8F2F385B162B3011C8B3EB2568E_RuntimeMethod_var);
}
IL_002f:
{
int32_t L_6 = V_1;
LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* L_7 = __this->get_m_DataTable_0();
NullCheck(L_7);
if ((((int32_t)L_6) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_7)->max_length)))))))
{
goto IL_0066;
}
}
IL_003a:
{
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * L_8 = __this->get_m_Manager_1();
NullCheck(L_8);
int32_t L_9 = LocalDataStoreMgr_GetSlotTableLength_mE37679FF2EE2BFE95424C5494E5159275D0EE920(L_8, /*hidden argument*/NULL);
LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* L_10 = (LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0*)SZArrayNew(LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0_il2cpp_TypeInfo_var, (uint32_t)L_9);
V_2 = L_10;
LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* L_11 = __this->get_m_DataTable_0();
LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* L_12 = V_2;
LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* L_13 = __this->get_m_DataTable_0();
NullCheck(L_13);
Array_Copy_m2D96731C600DE8A167348CA8BA796344E64F7434((RuntimeArray *)(RuntimeArray *)L_11, (RuntimeArray *)(RuntimeArray *)L_12, (((int32_t)((int32_t)(((RuntimeArray *)L_13)->max_length)))), /*hidden argument*/NULL);
LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* L_14 = V_2;
__this->set_m_DataTable_0(L_14);
}
IL_0066:
{
LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* L_15 = __this->get_m_DataTable_0();
int32_t L_16 = V_1;
NullCheck(L_15);
int32_t L_17 = L_16;
LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * L_18 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_17));
if (L_18)
{
goto IL_0083;
}
}
IL_0070:
{
LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* L_19 = __this->get_m_DataTable_0();
int32_t L_20 = V_1;
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_21 = ___slot0;
NullCheck(L_21);
int64_t L_22 = LocalDataStoreSlot_get_Cookie_m1D41A9C92E407A3AC6AB015F4663D0F260EBF2C5(L_21, /*hidden argument*/NULL);
LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * L_23 = (LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA *)il2cpp_codegen_object_new(LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA_il2cpp_TypeInfo_var);
LocalDataStoreElement__ctor_mA1B8C77848E6785BB0D83054DB673A85DC185034(L_23, L_22, /*hidden argument*/NULL);
NullCheck(L_19);
ArrayElementTypeCheck (L_19, L_23);
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(L_20), (LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA *)L_23);
}
IL_0083:
{
LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* L_24 = __this->get_m_DataTable_0();
int32_t L_25 = V_1;
NullCheck(L_24);
int32_t L_26 = L_25;
LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * L_27 = (L_24)->GetAt(static_cast<il2cpp_array_size_t>(L_26));
V_3 = L_27;
IL2CPP_LEAVE(0x9D, FINALLY_008e);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_008e;
}
FINALLY_008e:
{ // begin finally (depth: 1)
{
bool L_28 = V_0;
if (!L_28)
{
goto IL_009c;
}
}
IL_0091:
{
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * L_29 = __this->get_m_Manager_1();
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_29, /*hidden argument*/NULL);
}
IL_009c:
{
IL2CPP_RESET_LEAVE(0x9D);
IL2CPP_END_FINALLY(142)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(142)
{
IL2CPP_JUMP_TBL(0x9D, IL_009d)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_009d:
{
LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * L_30 = V_3;
return L_30;
}
}
#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 System.LocalDataStoreElement::.ctor(System.Int64)
extern "C" IL2CPP_METHOD_ATTR void LocalDataStoreElement__ctor_mA1B8C77848E6785BB0D83054DB673A85DC185034 (LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * __this, int64_t ___cookie0, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
int64_t L_0 = ___cookie0;
__this->set_m_cookie_1(L_0);
return;
}
}
// System.Object System.LocalDataStoreElement::get_Value()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * LocalDataStoreElement_get_Value_m5822C535F5DD63A7F1BA4EFA424D82450C972A16 (LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = __this->get_m_value_0();
return L_0;
}
}
// System.Void System.LocalDataStoreElement::set_Value(System.Object)
extern "C" IL2CPP_METHOD_ATTR void LocalDataStoreElement_set_Value_mA97C37A5E8F4E76276D025D604DCBAD1400570B3 (LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___value0;
__this->set_m_value_0(L_0);
return;
}
}
// System.Int64 System.LocalDataStoreElement::get_Cookie()
extern "C" IL2CPP_METHOD_ATTR int64_t LocalDataStoreElement_get_Cookie_m4D78FB1C0267C5A71D6DEBFA6CC0E89DC34D2B88 (LocalDataStoreElement_t66BF9A6D3911DE623371332D6F7EC100EC070BFA * __this, const RuntimeMethod* method)
{
{
int64_t L_0 = __this->get_m_cookie_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 System.LocalDataStoreHolder::.ctor(System.LocalDataStore)
extern "C" IL2CPP_METHOD_ATTR void LocalDataStoreHolder__ctor_m87A5B4E0605928E76A804DF75AE5EFBAE417589A (LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * __this, LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * ___store0, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * L_0 = ___store0;
__this->set_m_Store_0(L_0);
return;
}
}
// System.Void System.LocalDataStoreHolder::Finalize()
extern "C" IL2CPP_METHOD_ATTR void LocalDataStoreHolder_Finalize_m67243D9324F739B6B00F9135A0C4BB1556B8A97F (LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * __this, const RuntimeMethod* method)
{
LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * 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);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
IL_0000:
try
{ // begin try (depth: 1)
{
LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * L_0 = __this->get_m_Store_0();
V_0 = L_0;
LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * L_1 = V_0;
if (L_1)
{
goto IL_000c;
}
}
IL_000a:
{
IL2CPP_LEAVE(0x1B, FINALLY_0014);
}
IL_000c:
{
LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * L_2 = V_0;
NullCheck(L_2);
LocalDataStore_Dispose_m2B25B7ACE605E5F0366A6063B5B9978C8656D935(L_2, /*hidden argument*/NULL);
IL2CPP_LEAVE(0x1B, FINALLY_0014);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0014;
}
FINALLY_0014:
{ // begin finally (depth: 1)
Object_Finalize_m4015B7D3A44DE125C5FE34D7276CD4697C06F380(__this, /*hidden argument*/NULL);
IL2CPP_RESET_LEAVE(0x1B);
IL2CPP_END_FINALLY(20)
} // end finally (depth: 1)
IL2CPP_CLEANUP(20)
{
IL2CPP_JUMP_TBL(0x1B, IL_001b)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_001b:
{
return;
}
}
// System.LocalDataStore System.LocalDataStoreHolder::get_Store()
extern "C" IL2CPP_METHOD_ATTR LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * LocalDataStoreHolder_get_Store_m2C6F36680CF6788220C9A3F029576541763FB8B5 (LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * __this, const RuntimeMethod* method)
{
{
LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * L_0 = __this->get_m_Store_0();
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.LocalDataStoreHolder System.LocalDataStoreMgr::CreateLocalDataStore()
extern "C" IL2CPP_METHOD_ATTR LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * LocalDataStoreMgr_CreateLocalDataStore_m5455FCABE10BCFC739E52A0EF6404FF033E93417 (LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LocalDataStoreMgr_CreateLocalDataStore_m5455FCABE10BCFC739E52A0EF6404FF033E93417_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * V_0 = NULL;
LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * V_1 = NULL;
bool V_2 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_0 = __this->get_m_SlotInfoTable_0();
NullCheck(L_0);
LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * L_1 = (LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE *)il2cpp_codegen_object_new(LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE_il2cpp_TypeInfo_var);
LocalDataStore__ctor_m2FDC5D7F0A6331A045F5C5E90C1EE386AF755910(L_1, __this, (((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length)))), /*hidden argument*/NULL);
V_0 = L_1;
LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * L_2 = V_0;
LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * L_3 = (LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 *)il2cpp_codegen_object_new(LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304_il2cpp_TypeInfo_var);
LocalDataStoreHolder__ctor_m87A5B4E0605928E76A804DF75AE5EFBAE417589A(L_3, L_2, /*hidden argument*/NULL);
V_1 = L_3;
V_2 = (bool)0;
RuntimeHelpers_PrepareConstrainedRegions_m108F0650C70D15D3CC657AFEBA8E69770EDB9027(/*hidden argument*/NULL);
}
IL_001d:
try
{ // begin try (depth: 1)
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(__this, (bool*)(&V_2), /*hidden argument*/NULL);
List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D * L_4 = __this->get_m_ManagedLocalDataStores_2();
LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * L_5 = V_0;
NullCheck(L_4);
List_1_Add_mE9BF53EC826B27040A078E87C78E46CBE5793760(L_4, L_5, /*hidden argument*/List_1_Add_mE9BF53EC826B27040A078E87C78E46CBE5793760_RuntimeMethod_var);
IL2CPP_LEAVE(0x3D, FINALLY_0033);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0033;
}
FINALLY_0033:
{ // begin finally (depth: 1)
{
bool L_6 = V_2;
if (!L_6)
{
goto IL_003c;
}
}
IL_0036:
{
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(__this, /*hidden argument*/NULL);
}
IL_003c:
{
IL2CPP_RESET_LEAVE(0x3D);
IL2CPP_END_FINALLY(51)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(51)
{
IL2CPP_JUMP_TBL(0x3D, IL_003d)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_003d:
{
LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * L_7 = V_1;
return L_7;
}
}
// System.Void System.LocalDataStoreMgr::DeleteLocalDataStore(System.LocalDataStore)
extern "C" IL2CPP_METHOD_ATTR void LocalDataStoreMgr_DeleteLocalDataStore_m943DBF460E197662F6D146A370A3DCD94CBD51A3 (LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * __this, LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * ___store0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LocalDataStoreMgr_DeleteLocalDataStore_m943DBF460E197662F6D146A370A3DCD94CBD51A3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
V_0 = (bool)0;
RuntimeHelpers_PrepareConstrainedRegions_m108F0650C70D15D3CC657AFEBA8E69770EDB9027(/*hidden argument*/NULL);
}
IL_0007:
try
{ // begin try (depth: 1)
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(__this, (bool*)(&V_0), /*hidden argument*/NULL);
List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D * L_0 = __this->get_m_ManagedLocalDataStores_2();
LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * L_1 = ___store0;
NullCheck(L_0);
List_1_Remove_mA8778E00C87CE50D5466C24C94239B38DAC85F94(L_0, L_1, /*hidden argument*/List_1_Remove_mA8778E00C87CE50D5466C24C94239B38DAC85F94_RuntimeMethod_var);
IL2CPP_LEAVE(0x28, FINALLY_001e);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_001e;
}
FINALLY_001e:
{ // begin finally (depth: 1)
{
bool L_2 = V_0;
if (!L_2)
{
goto IL_0027;
}
}
IL_0021:
{
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(__this, /*hidden argument*/NULL);
}
IL_0027:
{
IL2CPP_RESET_LEAVE(0x28);
IL2CPP_END_FINALLY(30)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(30)
{
IL2CPP_JUMP_TBL(0x28, IL_0028)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0028:
{
return;
}
}
// System.LocalDataStoreSlot System.LocalDataStoreMgr::AllocateDataSlot()
extern "C" IL2CPP_METHOD_ATTR LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * LocalDataStoreMgr_AllocateDataSlot_m879EF0F47F1E07F1B0F905EB2F964E875CF7E036 (LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LocalDataStoreMgr_AllocateDataSlot_m879EF0F47F1E07F1B0F905EB2F964E875CF7E036_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* V_4 = NULL;
int64_t V_5 = 0;
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * V_6 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
V_0 = (bool)0;
RuntimeHelpers_PrepareConstrainedRegions_m108F0650C70D15D3CC657AFEBA8E69770EDB9027(/*hidden argument*/NULL);
}
IL_0007:
try
{ // begin try (depth: 1)
{
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(__this, (bool*)(&V_0), /*hidden argument*/NULL);
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_0 = __this->get_m_SlotInfoTable_0();
NullCheck(L_0);
V_1 = (((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length))));
int32_t L_1 = __this->get_m_FirstAvailableSlot_1();
V_2 = L_1;
goto IL_002f;
}
IL_0021:
{
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_2 = __this->get_m_SlotInfoTable_0();
int32_t L_3 = V_2;
NullCheck(L_2);
int32_t L_4 = L_3;
uint8_t L_5 = (uint8_t)(L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
if (!L_5)
{
goto IL_0033;
}
}
IL_002b:
{
int32_t L_6 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1));
}
IL_002f:
{
int32_t L_7 = V_2;
int32_t L_8 = V_1;
if ((((int32_t)L_7) < ((int32_t)L_8)))
{
goto IL_0021;
}
}
IL_0033:
{
int32_t L_9 = V_2;
int32_t L_10 = V_1;
if ((((int32_t)L_9) < ((int32_t)L_10)))
{
goto IL_006b;
}
}
IL_0037:
{
int32_t L_11 = V_1;
if ((((int32_t)L_11) >= ((int32_t)((int32_t)512))))
{
goto IL_0045;
}
}
IL_003f:
{
int32_t L_12 = V_1;
V_3 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_12, (int32_t)2));
goto IL_004d;
}
IL_0045:
{
int32_t L_13 = V_1;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)((int32_t)128)));
}
IL_004d:
{
int32_t L_14 = V_3;
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_15 = (BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040*)SZArrayNew(BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040_il2cpp_TypeInfo_var, (uint32_t)L_14);
V_4 = L_15;
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_16 = __this->get_m_SlotInfoTable_0();
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_17 = V_4;
int32_t L_18 = V_1;
Array_Copy_m2D96731C600DE8A167348CA8BA796344E64F7434((RuntimeArray *)(RuntimeArray *)L_16, (RuntimeArray *)(RuntimeArray *)L_17, L_18, /*hidden argument*/NULL);
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_19 = V_4;
__this->set_m_SlotInfoTable_0(L_19);
}
IL_006b:
{
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_20 = __this->get_m_SlotInfoTable_0();
int32_t L_21 = V_2;
NullCheck(L_20);
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(L_21), (bool)1);
int32_t L_22 = V_2;
int64_t L_23 = __this->get_m_CookieGenerator_4();
V_5 = L_23;
int64_t L_24 = V_5;
if (il2cpp_codegen_check_add_overflow((int64_t)L_24, (int64_t)(((int64_t)((int64_t)1)))))
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, LocalDataStoreMgr_AllocateDataSlot_m879EF0F47F1E07F1B0F905EB2F964E875CF7E036_RuntimeMethod_var);
__this->set_m_CookieGenerator_4(((int64_t)il2cpp_codegen_add((int64_t)L_24, (int64_t)(((int64_t)((int64_t)1))))));
int64_t L_25 = V_5;
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_26 = (LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E *)il2cpp_codegen_object_new(LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E_il2cpp_TypeInfo_var);
LocalDataStoreSlot__ctor_mB1C1592C2941720C53B2F21CBBB875667FF23D89(L_26, __this, L_22, L_25, /*hidden argument*/NULL);
int32_t L_27 = V_2;
__this->set_m_FirstAvailableSlot_1(((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1)));
V_6 = L_26;
IL2CPP_LEAVE(0xA7, FINALLY_009d);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_009d;
}
FINALLY_009d:
{ // begin finally (depth: 1)
{
bool L_28 = V_0;
if (!L_28)
{
goto IL_00a6;
}
}
IL_00a0:
{
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(__this, /*hidden argument*/NULL);
}
IL_00a6:
{
IL2CPP_RESET_LEAVE(0xA7);
IL2CPP_END_FINALLY(157)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(157)
{
IL2CPP_JUMP_TBL(0xA7, IL_00a7)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00a7:
{
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_29 = V_6;
return L_29;
}
}
// System.LocalDataStoreSlot System.LocalDataStoreMgr::AllocateNamedDataSlot(System.String)
extern "C" IL2CPP_METHOD_ATTR LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * LocalDataStoreMgr_AllocateNamedDataSlot_mAD7738795BC4FF13631C2993592F6256FC309FF2 (LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * __this, String_t* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LocalDataStoreMgr_AllocateNamedDataSlot_mAD7738795BC4FF13631C2993592F6256FC309FF2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * V_1 = NULL;
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
V_0 = (bool)0;
RuntimeHelpers_PrepareConstrainedRegions_m108F0650C70D15D3CC657AFEBA8E69770EDB9027(/*hidden argument*/NULL);
}
IL_0007:
try
{ // begin try (depth: 1)
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(__this, (bool*)(&V_0), /*hidden argument*/NULL);
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_0 = LocalDataStoreMgr_AllocateDataSlot_m879EF0F47F1E07F1B0F905EB2F964E875CF7E036(__this, /*hidden argument*/NULL);
V_1 = L_0;
Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08 * L_1 = __this->get_m_KeyToSlotMap_3();
String_t* L_2 = ___name0;
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_3 = V_1;
NullCheck(L_1);
Dictionary_2_Add_m6DC5880D3A3E5230394E72108396862B76ACE31C(L_1, L_2, L_3, /*hidden argument*/Dictionary_2_Add_m6DC5880D3A3E5230394E72108396862B76ACE31C_RuntimeMethod_var);
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_4 = V_1;
V_2 = L_4;
IL2CPP_LEAVE(0x31, FINALLY_0027);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0027;
}
FINALLY_0027:
{ // begin finally (depth: 1)
{
bool L_5 = V_0;
if (!L_5)
{
goto IL_0030;
}
}
IL_002a:
{
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(__this, /*hidden argument*/NULL);
}
IL_0030:
{
IL2CPP_RESET_LEAVE(0x31);
IL2CPP_END_FINALLY(39)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(39)
{
IL2CPP_JUMP_TBL(0x31, IL_0031)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0031:
{
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_6 = V_2;
return L_6;
}
}
// System.LocalDataStoreSlot System.LocalDataStoreMgr::GetNamedDataSlot(System.String)
extern "C" IL2CPP_METHOD_ATTR LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * LocalDataStoreMgr_GetNamedDataSlot_m71CB7DDCB5F93DBE1DDBCD5FCE756083E50CF199 (LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * __this, String_t* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LocalDataStoreMgr_GetNamedDataSlot_m71CB7DDCB5F93DBE1DDBCD5FCE756083E50CF199_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * V_1 = NULL;
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
V_0 = (bool)0;
RuntimeHelpers_PrepareConstrainedRegions_m108F0650C70D15D3CC657AFEBA8E69770EDB9027(/*hidden argument*/NULL);
}
IL_0007:
try
{ // begin try (depth: 1)
{
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(__this, (bool*)(&V_0), /*hidden argument*/NULL);
Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08 * L_0 = __this->get_m_KeyToSlotMap_3();
String_t* L_1 = ___name0;
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_2 = CollectionExtensions_GetValueOrDefault_TisString_t_TisLocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E_mCC4662D48DF2FE54F66A984047EA92CE774363AE(L_0, L_1, /*hidden argument*/CollectionExtensions_GetValueOrDefault_TisString_t_TisLocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E_mCC4662D48DF2FE54F66A984047EA92CE774363AE_RuntimeMethod_var);
V_1 = L_2;
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_3 = V_1;
if (L_3)
{
goto IL_0029;
}
}
IL_001f:
{
String_t* L_4 = ___name0;
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_5 = LocalDataStoreMgr_AllocateNamedDataSlot_mAD7738795BC4FF13631C2993592F6256FC309FF2(__this, L_4, /*hidden argument*/NULL);
V_2 = L_5;
IL2CPP_LEAVE(0x37, FINALLY_002d);
}
IL_0029:
{
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_6 = V_1;
V_2 = L_6;
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)
{
bool L_7 = V_0;
if (!L_7)
{
goto IL_0036;
}
}
IL_0030:
{
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(__this, /*hidden argument*/NULL);
}
IL_0036:
{
IL2CPP_RESET_LEAVE(0x37);
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:
{
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_8 = V_2;
return L_8;
}
}
// System.Void System.LocalDataStoreMgr::FreeNamedDataSlot(System.String)
extern "C" IL2CPP_METHOD_ATTR void LocalDataStoreMgr_FreeNamedDataSlot_mBCCD17FD544CEA1AA4777AE367B20DA4F8F3C03D (LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * __this, String_t* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LocalDataStoreMgr_FreeNamedDataSlot_mBCCD17FD544CEA1AA4777AE367B20DA4F8F3C03D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
V_0 = (bool)0;
RuntimeHelpers_PrepareConstrainedRegions_m108F0650C70D15D3CC657AFEBA8E69770EDB9027(/*hidden argument*/NULL);
}
IL_0007:
try
{ // begin try (depth: 1)
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(__this, (bool*)(&V_0), /*hidden argument*/NULL);
Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08 * L_0 = __this->get_m_KeyToSlotMap_3();
String_t* L_1 = ___name0;
NullCheck(L_0);
Dictionary_2_Remove_mC54306ED55A13BB48ACE4E0796F308D460A27CC1(L_0, L_1, /*hidden argument*/Dictionary_2_Remove_mC54306ED55A13BB48ACE4E0796F308D460A27CC1_RuntimeMethod_var);
IL2CPP_LEAVE(0x28, FINALLY_001e);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_001e;
}
FINALLY_001e:
{ // begin finally (depth: 1)
{
bool L_2 = V_0;
if (!L_2)
{
goto IL_0027;
}
}
IL_0021:
{
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(__this, /*hidden argument*/NULL);
}
IL_0027:
{
IL2CPP_RESET_LEAVE(0x28);
IL2CPP_END_FINALLY(30)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(30)
{
IL2CPP_JUMP_TBL(0x28, IL_0028)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0028:
{
return;
}
}
// System.Void System.LocalDataStoreMgr::FreeDataSlot(System.Int32,System.Int64)
extern "C" IL2CPP_METHOD_ATTR void LocalDataStoreMgr_FreeDataSlot_mD32D43F69A116AAE4F0233FD8DE999D81B3643FA (LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * __this, int32_t ___slot0, int64_t ___cookie1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LocalDataStoreMgr_FreeDataSlot_mD32D43F69A116AAE4F0233FD8DE999D81B3643FA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
V_0 = (bool)0;
RuntimeHelpers_PrepareConstrainedRegions_m108F0650C70D15D3CC657AFEBA8E69770EDB9027(/*hidden argument*/NULL);
}
IL_0007:
try
{ // begin try (depth: 1)
{
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(__this, (bool*)(&V_0), /*hidden argument*/NULL);
V_1 = 0;
goto IL_002a;
}
IL_0013:
{
List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D * L_0 = __this->get_m_ManagedLocalDataStores_2();
int32_t L_1 = V_1;
NullCheck(L_0);
LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * L_2 = List_1_get_Item_mD27D84BD9B6ABB638EB1C85C37CEA1DBC7EB3537(L_0, L_1, /*hidden argument*/List_1_get_Item_mD27D84BD9B6ABB638EB1C85C37CEA1DBC7EB3537_RuntimeMethod_var);
int32_t L_3 = ___slot0;
int64_t L_4 = ___cookie1;
NullCheck(L_2);
LocalDataStore_FreeData_m7DC3DC695D322B7F2ED47F357447D2790821B10C(L_2, L_3, L_4, /*hidden argument*/NULL);
int32_t L_5 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1));
}
IL_002a:
{
int32_t L_6 = V_1;
List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D * L_7 = __this->get_m_ManagedLocalDataStores_2();
NullCheck(L_7);
int32_t L_8 = List_1_get_Count_m417EECDB01F2D358551281253CC9E5A408B01572(L_7, /*hidden argument*/List_1_get_Count_m417EECDB01F2D358551281253CC9E5A408B01572_RuntimeMethod_var);
if ((((int32_t)L_6) < ((int32_t)L_8)))
{
goto IL_0013;
}
}
IL_0038:
{
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_9 = __this->get_m_SlotInfoTable_0();
int32_t L_10 = ___slot0;
NullCheck(L_9);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(L_10), (bool)0);
int32_t L_11 = ___slot0;
int32_t L_12 = __this->get_m_FirstAvailableSlot_1();
if ((((int32_t)L_11) >= ((int32_t)L_12)))
{
goto IL_0051;
}
}
IL_004a:
{
int32_t L_13 = ___slot0;
__this->set_m_FirstAvailableSlot_1(L_13);
}
IL_0051:
{
IL2CPP_LEAVE(0x5D, FINALLY_0053);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0053;
}
FINALLY_0053:
{ // begin finally (depth: 1)
{
bool L_14 = V_0;
if (!L_14)
{
goto IL_005c;
}
}
IL_0056:
{
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(__this, /*hidden argument*/NULL);
}
IL_005c:
{
IL2CPP_RESET_LEAVE(0x5D);
IL2CPP_END_FINALLY(83)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(83)
{
IL2CPP_JUMP_TBL(0x5D, IL_005d)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_005d:
{
return;
}
}
// System.Void System.LocalDataStoreMgr::ValidateSlot(System.LocalDataStoreSlot)
extern "C" IL2CPP_METHOD_ATTR void LocalDataStoreMgr_ValidateSlot_m7D28FF28A27A12AB0DD0F029B5A32EEB546B55E9 (LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * __this, LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * ___slot0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LocalDataStoreMgr_ValidateSlot_m7D28FF28A27A12AB0DD0F029B5A32EEB546B55E9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_0 = ___slot0;
if (!L_0)
{
goto IL_000c;
}
}
{
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_1 = ___slot0;
NullCheck(L_1);
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * L_2 = LocalDataStoreSlot_get_Manager_m75417D224C02173EC33CFD9BF494E82A70B21EDD(L_1, /*hidden argument*/NULL);
if ((((RuntimeObject*)(LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 *)L_2) == ((RuntimeObject*)(LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 *)__this)))
{
goto IL_001c;
}
}
IL_000c:
{
String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral83266F61D5BE5A1B8CFE1DFE7E2B83410F5A6CE2, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_4 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_4, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, LocalDataStoreMgr_ValidateSlot_m7D28FF28A27A12AB0DD0F029B5A32EEB546B55E9_RuntimeMethod_var);
}
IL_001c:
{
return;
}
}
// System.Int32 System.LocalDataStoreMgr::GetSlotTableLength()
extern "C" IL2CPP_METHOD_ATTR int32_t LocalDataStoreMgr_GetSlotTableLength_mE37679FF2EE2BFE95424C5494E5159275D0EE920 (LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * __this, const RuntimeMethod* method)
{
{
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_0 = __this->get_m_SlotInfoTable_0();
NullCheck(L_0);
return (((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length))));
}
}
// System.Void System.LocalDataStoreMgr::.ctor()
extern "C" IL2CPP_METHOD_ATTR void LocalDataStoreMgr__ctor_m8AB872E90E987DD5268F7484DE1DA726960073EB (LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LocalDataStoreMgr__ctor_m8AB872E90E987DD5268F7484DE1DA726960073EB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_0 = (BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040*)SZArrayNew(BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040_il2cpp_TypeInfo_var, (uint32_t)((int32_t)64));
__this->set_m_SlotInfoTable_0(L_0);
List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D * L_1 = (List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D *)il2cpp_codegen_object_new(List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D_il2cpp_TypeInfo_var);
List_1__ctor_mE9560E61EBE0949DDA139866213E36AB1F51D535(L_1, /*hidden argument*/List_1__ctor_mE9560E61EBE0949DDA139866213E36AB1F51D535_RuntimeMethod_var);
__this->set_m_ManagedLocalDataStores_2(L_1);
Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08 * L_2 = (Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08 *)il2cpp_codegen_object_new(Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08_il2cpp_TypeInfo_var);
Dictionary_2__ctor_mF0DECB37208B782E5DC487657101B9FBFA2491C8(L_2, /*hidden argument*/Dictionary_2__ctor_mF0DECB37208B782E5DC487657101B9FBFA2491C8_RuntimeMethod_var);
__this->set_m_KeyToSlotMap_3(L_2);
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 System.LocalDataStoreSlot::.ctor(System.LocalDataStoreMgr,System.Int32,System.Int64)
extern "C" IL2CPP_METHOD_ATTR void LocalDataStoreSlot__ctor_mB1C1592C2941720C53B2F21CBBB875667FF23D89 (LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * __this, LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * ___mgr0, int32_t ___slot1, int64_t ___cookie2, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * L_0 = ___mgr0;
__this->set_m_mgr_0(L_0);
int32_t L_1 = ___slot1;
__this->set_m_slot_1(L_1);
int64_t L_2 = ___cookie2;
__this->set_m_cookie_2(L_2);
return;
}
}
// System.LocalDataStoreMgr System.LocalDataStoreSlot::get_Manager()
extern "C" IL2CPP_METHOD_ATTR LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * LocalDataStoreSlot_get_Manager_m75417D224C02173EC33CFD9BF494E82A70B21EDD (LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * __this, const RuntimeMethod* method)
{
{
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * L_0 = __this->get_m_mgr_0();
return L_0;
}
}
// System.Int32 System.LocalDataStoreSlot::get_Slot()
extern "C" IL2CPP_METHOD_ATTR int32_t LocalDataStoreSlot_get_Slot_m921BC8D705F8D4BB4D623B895B3DD6055166DD79 (LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_m_slot_1();
return L_0;
}
}
// System.Int64 System.LocalDataStoreSlot::get_Cookie()
extern "C" IL2CPP_METHOD_ATTR int64_t LocalDataStoreSlot_get_Cookie_m1D41A9C92E407A3AC6AB015F4663D0F260EBF2C5 (LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * __this, const RuntimeMethod* method)
{
{
int64_t L_0 = __this->get_m_cookie_2();
return L_0;
}
}
// System.Void System.LocalDataStoreSlot::Finalize()
extern "C" IL2CPP_METHOD_ATTR void LocalDataStoreSlot_Finalize_m47EF70E9DF2C22893FBA4150F8A94F8B23590DD7 (LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * __this, const RuntimeMethod* method)
{
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * V_0 = NULL;
int32_t V_1 = 0;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
IL_0000:
try
{ // begin try (depth: 1)
{
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * L_0 = __this->get_m_mgr_0();
V_0 = L_0;
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * L_1 = V_0;
if (L_1)
{
goto IL_000c;
}
}
IL_000a:
{
IL2CPP_LEAVE(0x30, FINALLY_0029);
}
IL_000c:
{
int32_t L_2 = __this->get_m_slot_1();
V_1 = L_2;
__this->set_m_slot_1((-1));
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * L_3 = V_0;
int32_t L_4 = V_1;
int64_t L_5 = __this->get_m_cookie_2();
NullCheck(L_3);
LocalDataStoreMgr_FreeDataSlot_mD32D43F69A116AAE4F0233FD8DE999D81B3643FA(L_3, L_4, L_5, /*hidden argument*/NULL);
IL2CPP_LEAVE(0x30, FINALLY_0029);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0029;
}
FINALLY_0029:
{ // begin finally (depth: 1)
Object_Finalize_m4015B7D3A44DE125C5FE34D7276CD4697C06F380(__this, /*hidden argument*/NULL);
IL2CPP_RESET_LEAVE(0x30);
IL2CPP_END_FINALLY(41)
} // end finally (depth: 1)
IL2CPP_CLEANUP(41)
{
IL2CPP_JUMP_TBL(0x30, IL_0030)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0030:
{
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: System.MarshalByRefObject
extern "C" void MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshal_pinvoke(const MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF& unmarshaled, MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_pinvoke& marshaled)
{
if (unmarshaled.get__identity_0() != NULL)
{
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get__identity_0()))
{
il2cpp_hresult_t hr = ((Il2CppComObject *)unmarshaled.get__identity_0())->identity->QueryInterface(Il2CppIUnknown::IID, reinterpret_cast<void**>(&marshaled.____identity_0));
il2cpp_codegen_com_raise_exception_if_failed(hr, false);
}
else
{
marshaled.____identity_0 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get__identity_0());
}
}
else
{
marshaled.____identity_0 = NULL;
}
}
extern "C" void MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshal_pinvoke_back(const MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_pinvoke& marshaled, MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF& unmarshaled)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_pinvoke_FromNativeMethodDefinition_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
if (marshaled.____identity_0 != NULL)
{
unmarshaled.set__identity_0(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.____identity_0, Il2CppComObject_il2cpp_TypeInfo_var));
}
else
{
unmarshaled.set__identity_0(NULL);
}
}
// Conversion method for clean up from marshalling of: System.MarshalByRefObject
extern "C" void MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshal_pinvoke_cleanup(MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_pinvoke& marshaled)
{
if (marshaled.____identity_0 != NULL)
{
(marshaled.____identity_0)->Release();
marshaled.____identity_0 = NULL;
}
}
// Conversion methods for marshalling of: System.MarshalByRefObject
extern "C" void MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshal_com(const MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF& unmarshaled, MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_com& marshaled)
{
if (unmarshaled.get__identity_0() != NULL)
{
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get__identity_0()))
{
il2cpp_hresult_t hr = ((Il2CppComObject *)unmarshaled.get__identity_0())->identity->QueryInterface(Il2CppIUnknown::IID, reinterpret_cast<void**>(&marshaled.____identity_0));
il2cpp_codegen_com_raise_exception_if_failed(hr, true);
}
else
{
marshaled.____identity_0 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get__identity_0());
}
}
else
{
marshaled.____identity_0 = NULL;
}
}
extern "C" void MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshal_com_back(const MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_com& marshaled, MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF& unmarshaled)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_com_FromNativeMethodDefinition_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
if (marshaled.____identity_0 != NULL)
{
unmarshaled.set__identity_0(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.____identity_0, Il2CppComObject_il2cpp_TypeInfo_var));
}
else
{
unmarshaled.set__identity_0(NULL);
}
}
// Conversion method for clean up from marshalling of: System.MarshalByRefObject
extern "C" void MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshal_com_cleanup(MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_com& marshaled)
{
if (marshaled.____identity_0 != NULL)
{
(marshaled.____identity_0)->Release();
marshaled.____identity_0 = NULL;
}
}
// System.Void System.MarshalByRefObject::.ctor()
extern "C" IL2CPP_METHOD_ATTR void MarshalByRefObject__ctor_mD1C6F1D191B1A50DC93E8B214BCCA9BD93FDE850 (MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
// System.Runtime.Remoting.ServerIdentity System.MarshalByRefObject::get_ObjectIdentity()
extern "C" IL2CPP_METHOD_ATTR ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * MarshalByRefObject_get_ObjectIdentity_m7416B44A5332EFEB874C4E6A8100F22511D3997C (MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MarshalByRefObject_get_ObjectIdentity_m7416B44A5332EFEB874C4E6A8100F22511D3997C_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, NULL, MarshalByRefObject_get_ObjectIdentity_m7416B44A5332EFEB874C4E6A8100F22511D3997C_RuntimeMethod_var);
}
}
// System.Void System.MarshalByRefObject::set_ObjectIdentity(System.Runtime.Remoting.ServerIdentity)
extern "C" IL2CPP_METHOD_ATTR void MarshalByRefObject_set_ObjectIdentity_mE1E420865553E02EA38D821EF08642EC35E891B2 (MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * __this, ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MarshalByRefObject_set_ObjectIdentity_mE1E420865553E02EA38D821EF08642EC35E891B2_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, NULL, MarshalByRefObject_set_ObjectIdentity_mE1E420865553E02EA38D821EF08642EC35E891B2_RuntimeMethod_var);
}
}
// System.Runtime.Remoting.ObjRef System.MarshalByRefObject::CreateObjRef(System.Type)
extern "C" IL2CPP_METHOD_ATTR ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * MarshalByRefObject_CreateObjRef_m5710DD1277B24CE674482A6672D8DF1CA7AE0C16 (MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * __this, Type_t * ___requestedType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MarshalByRefObject_CreateObjRef_m5710DD1277B24CE674482A6672D8DF1CA7AE0C16_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, NULL, MarshalByRefObject_CreateObjRef_m5710DD1277B24CE674482A6672D8DF1CA7AE0C16_RuntimeMethod_var);
}
}
// System.Object System.MarshalByRefObject::InitializeLifetimeService()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * MarshalByRefObject_InitializeLifetimeService_m9DA40CE045D04935ED21EA83D2AF57CD1EBF6B9D (MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MarshalByRefObject_InitializeLifetimeService_m9DA40CE045D04935ED21EA83D2AF57CD1EBF6B9D_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, NULL, MarshalByRefObject_InitializeLifetimeService_m9DA40CE045D04935ED21EA83D2AF57CD1EBF6B9D_RuntimeMethod_var);
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Double System.Math::Ceiling(System.Double)
extern "C" IL2CPP_METHOD_ATTR double Math_Ceiling_m379E37FEB7C1DC30F53CBFA8896E0DD0804C44C7 (double ___a0, const RuntimeMethod* method)
{
return ceil(___a0);
}
// System.Double System.Math::Cos(System.Double)
extern "C" IL2CPP_METHOD_ATTR double Math_Cos_m2A56736FA0ADF035FA2F54813C6C6E21D6C05F4C (double ___d0, const RuntimeMethod* method)
{
return cos(___d0);
}
// System.Double System.Math::Floor(System.Double)
extern "C" IL2CPP_METHOD_ATTR double Math_Floor_mC3101A845FDA61AA1E9D4AC3C613F2A3F54332D8 (double ___d0, const RuntimeMethod* method)
{
return floor(___d0);
}
// System.Double System.Math::Sin(System.Double)
extern "C" IL2CPP_METHOD_ATTR double Math_Sin_m70D30E020E871902B8610553CD000D7826B8B1DF (double ___a0, const RuntimeMethod* method)
{
return sin(___a0);
}
// System.Double System.Math::Round(System.Double)
extern "C" IL2CPP_METHOD_ATTR double Math_Round_m92CC19B936A3FC72826AD3950A90E5D9EB7513FE (double ___a0, const RuntimeMethod* method)
{
return bankers_round(___a0);
}
// System.Double System.Math::Sqrt(System.Double)
extern "C" IL2CPP_METHOD_ATTR double Math_Sqrt_mB2008A97F28A0FC333E8DA31C6B1731D015BF5D2 (double ___d0, const RuntimeMethod* method)
{
return sqrt(___d0);
}
// System.Double System.Math::Log(System.Double)
extern "C" IL2CPP_METHOD_ATTR double Math_Log_mD51F54D254E1380E2317F19403E67DFB15008CD9 (double ___d0, const RuntimeMethod* method)
{
return log(___d0);
}
// System.Double System.Math::Pow(System.Double,System.Double)
extern "C" IL2CPP_METHOD_ATTR double Math_Pow_m9CD842663B1A2FA4C66EEFFC6F0D705B40BE46F1 (double ___x0, double ___y1, const RuntimeMethod* method)
{
return pow(___x0, ___y1);
}
// System.Int32 System.Math::Abs(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Math_Abs_m7F5374AE27F11C3FFBB648DA0EE075317C37C097 (int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Math_Abs_m7F5374AE27F11C3FFBB648DA0EE075317C37C097_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___value0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_0006;
}
}
{
int32_t L_1 = ___value0;
return L_1;
}
IL_0006:
{
int32_t L_2 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var);
int32_t L_3 = Math_AbsHelper_mBB53E92A37FF9A4AD65D354BBAC103F935C20802(L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.Int32 System.Math::AbsHelper(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Math_AbsHelper_mBB53E92A37FF9A4AD65D354BBAC103F935C20802 (int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Math_AbsHelper_mBB53E92A37FF9A4AD65D354BBAC103F935C20802_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___value0;
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2147483648LL)))))
{
goto IL_0018;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral6CB021F4DE5A59C914CE2FD45BD52E5CA6A397FC, /*hidden argument*/NULL);
OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_2 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var);
OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Math_AbsHelper_mBB53E92A37FF9A4AD65D354BBAC103F935C20802_RuntimeMethod_var);
}
IL_0018:
{
int32_t L_3 = ___value0;
return ((-L_3));
}
}
// System.Single System.Math::Abs(System.Single)
extern "C" IL2CPP_METHOD_ATTR float Math_Abs_mF0B5B265075406BE063F1D0E561DC17779EC5174 (float ___value0, const RuntimeMethod* method)
{
return fabsf(___value0);
}
// System.Int32 System.Math::Max(System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Math_Max_mA99E48BB021F2E4B62D4EA9F52EA6928EED618A2 (int32_t ___val10, int32_t ___val21, const RuntimeMethod* method)
{
{
int32_t L_0 = ___val10;
int32_t L_1 = ___val21;
if ((((int32_t)L_0) >= ((int32_t)L_1)))
{
goto IL_0006;
}
}
{
int32_t L_2 = ___val21;
return L_2;
}
IL_0006:
{
int32_t L_3 = ___val10;
return L_3;
}
}
// System.Single System.Math::Max(System.Single,System.Single)
extern "C" IL2CPP_METHOD_ATTR float Math_Max_m545895C37C1F738BBB653CA1F65E50FF1D197675 (float ___val10, float ___val21, const RuntimeMethod* method)
{
{
float L_0 = ___val10;
float L_1 = ___val21;
if ((!(((float)L_0) > ((float)L_1))))
{
goto IL_0006;
}
}
{
float L_2 = ___val10;
return L_2;
}
IL_0006:
{
float L_3 = ___val10;
bool L_4 = Single_IsNaN_m1ACB82FA5DC805F0F5015A1DA6B3DC447C963AFB(L_3, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_0010;
}
}
{
float L_5 = ___val10;
return L_5;
}
IL_0010:
{
float L_6 = ___val21;
return L_6;
}
}
// System.Int32 System.Math::Min(System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Math_Min_mC950438198519FB2B0260FCB91220847EE4BB525 (int32_t ___val10, int32_t ___val21, const RuntimeMethod* method)
{
{
int32_t L_0 = ___val10;
int32_t L_1 = ___val21;
if ((((int32_t)L_0) <= ((int32_t)L_1)))
{
goto IL_0006;
}
}
{
int32_t L_2 = ___val21;
return L_2;
}
IL_0006:
{
int32_t L_3 = ___val10;
return L_3;
}
}
// System.Single System.Math::Min(System.Single,System.Single)
extern "C" IL2CPP_METHOD_ATTR float Math_Min_mB77A95F6A1FE3B8E7CD784F20AF4E1C908B5E9CD (float ___val10, float ___val21, const RuntimeMethod* method)
{
{
float L_0 = ___val10;
float L_1 = ___val21;
if ((!(((float)L_0) < ((float)L_1))))
{
goto IL_0006;
}
}
{
float L_2 = ___val10;
return L_2;
}
IL_0006:
{
float L_3 = ___val10;
bool L_4 = Single_IsNaN_m1ACB82FA5DC805F0F5015A1DA6B3DC447C963AFB(L_3, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_0010;
}
}
{
float L_5 = ___val10;
return L_5;
}
IL_0010:
{
float L_6 = ___val21;
return L_6;
}
}
// System.Double System.Math::Log(System.Double,System.Double)
extern "C" IL2CPP_METHOD_ATTR double Math_Log_m5C457D6A666677B3E260C571049528D5BE93B7AF (double ___a0, double ___newBase1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Math_Log_m5C457D6A666677B3E260C571049528D5BE93B7AF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
double L_0 = ___a0;
IL2CPP_RUNTIME_CLASS_INIT(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var);
bool L_1 = Double_IsNaN_m5DFBBD58036879B687FEC248C50EACBABE205AB3(L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_000a;
}
}
{
double L_2 = ___a0;
return L_2;
}
IL_000a:
{
double L_3 = ___newBase1;
IL2CPP_RUNTIME_CLASS_INIT(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var);
bool L_4 = Double_IsNaN_m5DFBBD58036879B687FEC248C50EACBABE205AB3(L_3, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_0014;
}
}
{
double L_5 = ___newBase1;
return L_5;
}
IL_0014:
{
double L_6 = ___newBase1;
if ((!(((double)L_6) == ((double)(1.0)))))
{
goto IL_002a;
}
}
{
return (std::numeric_limits<double>::quiet_NaN());
}
IL_002a:
{
double L_7 = ___a0;
if ((((double)L_7) == ((double)(1.0))))
{
goto IL_0054;
}
}
{
double L_8 = ___newBase1;
if ((((double)L_8) == ((double)(0.0))))
{
goto IL_004a;
}
}
{
double L_9 = ___newBase1;
IL2CPP_RUNTIME_CLASS_INIT(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var);
bool L_10 = Double_IsPositiveInfinity_m45537C58204CD5AA96F39D42F4CB8DADA128C77B(L_9, /*hidden argument*/NULL);
if (!L_10)
{
goto IL_0054;
}
}
IL_004a:
{
return (std::numeric_limits<double>::quiet_NaN());
}
IL_0054:
{
double L_11 = ___a0;
IL2CPP_RUNTIME_CLASS_INIT(Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var);
double L_12 = log(L_11);
double L_13 = ___newBase1;
double L_14 = log(L_13);
return ((double)((double)L_12/(double)L_14));
}
}
// System.Void System.Math::.cctor()
extern "C" IL2CPP_METHOD_ATTR void Math__cctor_m74DAC117CAF47A5126D22880C729D8B4991DC62E (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Math__cctor_m74DAC117CAF47A5126D22880C729D8B4991DC62E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
((Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_StaticFields*)il2cpp_codegen_static_fields_for(Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var))->set_doubleRoundLimit_0((1.0E+16));
DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* L_0 = (DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D*)SZArrayNew(DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D_il2cpp_TypeInfo_var, (uint32_t)((int32_t)16));
DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* L_1 = L_0;
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_2 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____609C0E8D8DA86A09D6013D301C86BA8782C16B8C_47_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_1, L_2, /*hidden argument*/NULL);
((Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_StaticFields*)il2cpp_codegen_static_fields_for(Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var))->set_roundPower10Double_2(L_1);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.MemberAccessException::.ctor()
extern "C" IL2CPP_METHOD_ATTR void MemberAccessException__ctor_mDD27777FCB5B591E3A785846CB00EC52CBDEA4D7 (MemberAccessException_tDA869AFFB4FC1EA0EEF3143D85999710AC4774F0 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MemberAccessException__ctor_mDD27777FCB5B591E3A785846CB00EC52CBDEA4D7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral71071FE5B0CC6568A7A21FDD842333F6D6361758, /*hidden argument*/NULL);
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233062), /*hidden argument*/NULL);
return;
}
}
// System.Void System.MemberAccessException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void MemberAccessException__ctor_m9190C2717422BB9A0C877B8C1493A75521AB8101 (MemberAccessException_tDA869AFFB4FC1EA0EEF3143D85999710AC4774F0 * __this, String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233062), /*hidden argument*/NULL);
return;
}
}
// System.Void System.MemberAccessException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
extern "C" IL2CPP_METHOD_ATTR void MemberAccessException__ctor_m8D560A4375A75BBD6631BE42402BC4B41B8F7E5F (MemberAccessException_tDA869AFFB4FC1EA0EEF3143D85999710AC4774F0 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949(__this, L_0, 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 System.MethodAccessException::.ctor()
extern "C" IL2CPP_METHOD_ATTR void MethodAccessException__ctor_mA04BCF385465A563D2B65C08391624EAE14C33C8 (MethodAccessException_tD507764699290F19BF6AF6DEE1E0068927E428EB * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MethodAccessException__ctor_mA04BCF385465A563D2B65C08391624EAE14C33C8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralAF7D82A0090AC7ECC269B2EBAD304900F101A823, /*hidden argument*/NULL);
MemberAccessException__ctor_m9190C2717422BB9A0C877B8C1493A75521AB8101(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233072), /*hidden argument*/NULL);
return;
}
}
// System.Void System.MethodAccessException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void MethodAccessException__ctor_mBC54C2BEC46E52E74AE9DF3B3D41819AEA2FA714 (MethodAccessException_tD507764699290F19BF6AF6DEE1E0068927E428EB * __this, String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
MemberAccessException__ctor_m9190C2717422BB9A0C877B8C1493A75521AB8101(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233072), /*hidden argument*/NULL);
return;
}
}
// System.Void System.MethodAccessException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
extern "C" IL2CPP_METHOD_ATTR void MethodAccessException__ctor_m7F24FEEE2E046704E26BC49032DFF0F0A5626C57 (MethodAccessException_tD507764699290F19BF6AF6DEE1E0068927E428EB * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
MemberAccessException__ctor_m8D560A4375A75BBD6631BE42402BC4B41B8F7E5F(__this, L_0, 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 System.MissingFieldException::.ctor()
extern "C" IL2CPP_METHOD_ATTR void MissingFieldException__ctor_m61B031B5A45BA495D873FBFFD8481A95489A54A4 (MissingFieldException_tDDE5A10CB4AC8418D5507B2A00B8C55C8B053D37 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MissingFieldException__ctor_m61B031B5A45BA495D873FBFFD8481A95489A54A4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral854D8C35482A3B8FFE553FACB75F29D1167E941B, /*hidden argument*/NULL);
MissingMemberException__ctor_m2F8C7F0015B6EFEC5BD07F8240D53C2AEE4649DC(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233071), /*hidden argument*/NULL);
return;
}
}
// System.Void System.MissingFieldException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void MissingFieldException__ctor_mC6E169055FBC76AE0C760DD5B47433E7039B5100 (MissingFieldException_tDDE5A10CB4AC8418D5507B2A00B8C55C8B053D37 * __this, String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
MissingMemberException__ctor_m2F8C7F0015B6EFEC5BD07F8240D53C2AEE4649DC(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233071), /*hidden argument*/NULL);
return;
}
}
// System.Void System.MissingFieldException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
extern "C" IL2CPP_METHOD_ATTR void MissingFieldException__ctor_mAFD85CDF48A80CCFDA078ADA416D50DA12A0A4DA (MissingFieldException_tDDE5A10CB4AC8418D5507B2A00B8C55C8B053D37 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
MissingMemberException__ctor_mE928DEDD684F9B56B2D739CC7C0D36F189B9BC13(__this, L_0, L_1, /*hidden argument*/NULL);
return;
}
}
// System.String System.MissingFieldException::get_Message()
extern "C" IL2CPP_METHOD_ATTR String_t* MissingFieldException_get_Message_m43F026B46192C9A79B507F6D1E69C163C07B1254 (MissingFieldException_tDDE5A10CB4AC8418D5507B2A00B8C55C8B053D37 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MissingFieldException_get_Message_m43F026B46192C9A79B507F6D1E69C163C07B1254_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t G_B4_0 = 0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B4_1 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B4_2 = NULL;
String_t* G_B4_3 = NULL;
int32_t G_B3_0 = 0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B3_1 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B3_2 = NULL;
String_t* G_B3_3 = NULL;
String_t* G_B5_0 = NULL;
int32_t G_B5_1 = 0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B5_2 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B5_3 = NULL;
String_t* G_B5_4 = NULL;
{
String_t* L_0 = ((MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD *)__this)->get_ClassName_17();
if (L_0)
{
goto IL_000f;
}
}
{
String_t* L_1 = MissingMemberException_get_Message_m3995693C813787B7034776FC6F82C0DF7BDBC619(__this, /*hidden argument*/NULL);
return L_1;
}
IL_000f:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = L_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ((MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD *)__this)->get_Signature_19();
G_B3_0 = 0;
G_B3_1 = L_3;
G_B3_2 = L_3;
G_B3_3 = _stringLiteralA3F4A5587A5729C3EFB8474E3AAA2722613DD4DB;
if (L_4)
{
G_B4_0 = 0;
G_B4_1 = L_3;
G_B4_2 = L_3;
G_B4_3 = _stringLiteralA3F4A5587A5729C3EFB8474E3AAA2722613DD4DB;
goto IL_002b;
}
}
{
G_B5_0 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
G_B5_1 = G_B3_0;
G_B5_2 = G_B3_1;
G_B5_3 = G_B3_2;
G_B5_4 = G_B3_3;
goto IL_0040;
}
IL_002b:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = ((MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD *)__this)->get_Signature_19();
String_t* L_6 = MissingMemberException_FormatSignature_m3C89B3C272FB5A8C115D418C36E8F24CD38D1B41(L_5, /*hidden argument*/NULL);
String_t* L_7 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_6, _stringLiteralB858CB282617FB0956D960215C8E84D1CCF909C6, /*hidden argument*/NULL);
G_B5_0 = L_7;
G_B5_1 = G_B4_0;
G_B5_2 = G_B4_1;
G_B5_3 = G_B4_2;
G_B5_4 = G_B4_3;
}
IL_0040:
{
String_t* L_8 = ((MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD *)__this)->get_ClassName_17();
String_t* L_9 = ((MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD *)__this)->get_MemberName_18();
String_t* L_10 = String_Concat_mDD2E38332DED3A8C088D38D78A0E0BEB5091DA64(G_B5_0, L_8, _stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727, L_9, /*hidden argument*/NULL);
NullCheck(G_B5_2);
ArrayElementTypeCheck (G_B5_2, L_10);
(G_B5_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B5_1), (RuntimeObject *)L_10);
String_t* L_11 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(G_B5_4, G_B5_3, /*hidden argument*/NULL);
return L_11;
}
}
// System.Void System.MissingFieldException::.ctor(System.String,System.String)
extern "C" IL2CPP_METHOD_ATTR void MissingFieldException__ctor_mF260FD0D1BE406C65C594B5D91E62788A7AD649E (MissingFieldException_tDDE5A10CB4AC8418D5507B2A00B8C55C8B053D37 * __this, String_t* ___className0, String_t* ___fieldName1, const RuntimeMethod* method)
{
{
MissingMemberException__ctor_m0E998DF25E681F352D27BD1575F45AD78788F481(__this, /*hidden argument*/NULL);
String_t* L_0 = ___className0;
((MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD *)__this)->set_ClassName_17(L_0);
String_t* L_1 = ___fieldName1;
((MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD *)__this)->set_MemberName_18(L_1);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.MissingMemberException::.ctor()
extern "C" IL2CPP_METHOD_ATTR void MissingMemberException__ctor_m0E998DF25E681F352D27BD1575F45AD78788F481 (MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MissingMemberException__ctor_m0E998DF25E681F352D27BD1575F45AD78788F481_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralE823D95FC8DE056EA2DD064AAB872C4F18B15938, /*hidden argument*/NULL);
MemberAccessException__ctor_m9190C2717422BB9A0C877B8C1493A75521AB8101(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233070), /*hidden argument*/NULL);
return;
}
}
// System.Void System.MissingMemberException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void MissingMemberException__ctor_m2F8C7F0015B6EFEC5BD07F8240D53C2AEE4649DC (MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD * __this, String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
MemberAccessException__ctor_m9190C2717422BB9A0C877B8C1493A75521AB8101(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233070), /*hidden argument*/NULL);
return;
}
}
// System.Void System.MissingMemberException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
extern "C" IL2CPP_METHOD_ATTR void MissingMemberException__ctor_mE928DEDD684F9B56B2D739CC7C0D36F189B9BC13 (MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MissingMemberException__ctor_mE928DEDD684F9B56B2D739CC7C0D36F189B9BC13_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
MemberAccessException__ctor_m8D560A4375A75BBD6631BE42402BC4B41B8F7E5F(__this, L_0, L_1, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0;
NullCheck(L_2);
String_t* L_3 = SerializationInfo_GetString_m06805A4E368E0B98D5FA70A9333B277CBDD84CF4(L_2, _stringLiteral0547FFE19A268F683E119C580E67B2822ECB1CA8, /*hidden argument*/NULL);
__this->set_ClassName_17(L_3);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = ___info0;
NullCheck(L_4);
String_t* L_5 = SerializationInfo_GetString_m06805A4E368E0B98D5FA70A9333B277CBDD84CF4(L_4, _stringLiteralF21F90700909B9F6000A5EDC822B69CE57F0FC2B, /*hidden argument*/NULL);
__this->set_MemberName_18(L_5);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_6 = ___info0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_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);
RuntimeObject * L_9 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF(L_6, _stringLiteral6EB197EFF2520A15200111CB1E6DCAAF5ADB14E4, L_8, /*hidden argument*/NULL);
__this->set_Signature_19(((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)Castclass((RuntimeObject*)L_9, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var)));
return;
}
}
// System.String System.MissingMemberException::get_Message()
extern "C" IL2CPP_METHOD_ATTR String_t* MissingMemberException_get_Message_m3995693C813787B7034776FC6F82C0DF7BDBC619 (MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MissingMemberException_get_Message_m3995693C813787B7034776FC6F82C0DF7BDBC619_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B4_0 = NULL;
String_t* G_B4_1 = NULL;
String_t* G_B4_2 = NULL;
int32_t G_B4_3 = 0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B4_4 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B4_5 = NULL;
String_t* G_B4_6 = NULL;
String_t* G_B3_0 = NULL;
String_t* G_B3_1 = NULL;
String_t* G_B3_2 = NULL;
int32_t G_B3_3 = 0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B3_4 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B3_5 = NULL;
String_t* G_B3_6 = NULL;
String_t* G_B5_0 = NULL;
String_t* G_B5_1 = NULL;
String_t* G_B5_2 = NULL;
String_t* G_B5_3 = NULL;
int32_t G_B5_4 = 0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B5_5 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B5_6 = NULL;
String_t* G_B5_7 = NULL;
{
String_t* L_0 = __this->get_ClassName_17();
if (L_0)
{
goto IL_000f;
}
}
{
String_t* L_1 = Exception_get_Message_m4315B19A04019652708F20C1B855805157F23CFD(__this, /*hidden argument*/NULL);
return L_1;
}
IL_000f:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = L_2;
String_t* L_4 = __this->get_ClassName_17();
String_t* L_5 = __this->get_MemberName_18();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = __this->get_Signature_19();
G_B3_0 = L_5;
G_B3_1 = _stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727;
G_B3_2 = L_4;
G_B3_3 = 0;
G_B3_4 = L_3;
G_B3_5 = L_3;
G_B3_6 = _stringLiteralE1E79CC3983700F455A4D5F772D7BDA5995AB2F8;
if (L_6)
{
G_B4_0 = L_5;
G_B4_1 = _stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727;
G_B4_2 = L_4;
G_B4_3 = 0;
G_B4_4 = L_3;
G_B4_5 = L_3;
G_B4_6 = _stringLiteralE1E79CC3983700F455A4D5F772D7BDA5995AB2F8;
goto IL_003c;
}
}
{
G_B5_0 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
G_B5_1 = G_B3_0;
G_B5_2 = G_B3_1;
G_B5_3 = G_B3_2;
G_B5_4 = G_B3_3;
G_B5_5 = G_B3_4;
G_B5_6 = G_B3_5;
G_B5_7 = G_B3_6;
goto IL_0051;
}
IL_003c:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = __this->get_Signature_19();
String_t* L_8 = MissingMemberException_FormatSignature_m3C89B3C272FB5A8C115D418C36E8F24CD38D1B41(L_7, /*hidden argument*/NULL);
String_t* L_9 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteralB858CB282617FB0956D960215C8E84D1CCF909C6, L_8, /*hidden argument*/NULL);
G_B5_0 = L_9;
G_B5_1 = G_B4_0;
G_B5_2 = G_B4_1;
G_B5_3 = G_B4_2;
G_B5_4 = G_B4_3;
G_B5_5 = G_B4_4;
G_B5_6 = G_B4_5;
G_B5_7 = G_B4_6;
}
IL_0051:
{
String_t* L_10 = String_Concat_mDD2E38332DED3A8C088D38D78A0E0BEB5091DA64(G_B5_3, G_B5_2, G_B5_1, G_B5_0, /*hidden argument*/NULL);
NullCheck(G_B5_5);
ArrayElementTypeCheck (G_B5_5, L_10);
(G_B5_5)->SetAt(static_cast<il2cpp_array_size_t>(G_B5_4), (RuntimeObject *)L_10);
String_t* L_11 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(G_B5_7, G_B5_6, /*hidden argument*/NULL);
return L_11;
}
}
// System.String System.MissingMemberException::FormatSignature(System.Byte[])
extern "C" IL2CPP_METHOD_ATTR String_t* MissingMemberException_FormatSignature_m3C89B3C272FB5A8C115D418C36E8F24CD38D1B41 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___signature0, const RuntimeMethod* method)
{
typedef String_t* (*MissingMemberException_FormatSignature_m3C89B3C272FB5A8C115D418C36E8F24CD38D1B41_ftn) (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*);
using namespace il2cpp::icalls;
return ((MissingMemberException_FormatSignature_m3C89B3C272FB5A8C115D418C36E8F24CD38D1B41_ftn)mscorlib::System::MissingMemberException::FormatSignature) (___signature0);
}
// System.Void System.MissingMemberException::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
extern "C" IL2CPP_METHOD_ATTR void MissingMemberException_GetObjectData_m8C3183FC543A5EFC6C43E57C4EFD46003B2A09BA (MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MissingMemberException_GetObjectData_m8C3183FC543A5EFC6C43E57C4EFD46003B2A09BA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
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, _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, MissingMemberException_GetObjectData_m8C3183FC543A5EFC6C43E57C4EFD46003B2A09BA_RuntimeMethod_var);
}
IL_000e:
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_3 = ___context1;
Exception_GetObjectData_m76F759ED00FA218FFC522C32626B851FDE849AD6(__this, L_2, L_3, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = ___info0;
String_t* L_5 = __this->get_ClassName_17();
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (String_t_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);
NullCheck(L_4);
SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC(L_4, _stringLiteral0547FFE19A268F683E119C580E67B2822ECB1CA8, L_5, L_7, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_8 = ___info0;
String_t* L_9 = __this->get_MemberName_18();
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_10 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
Type_t * L_11 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_10, /*hidden argument*/NULL);
NullCheck(L_8);
SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC(L_8, _stringLiteralF21F90700909B9F6000A5EDC822B69CE57F0FC2B, L_9, L_11, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_12 = ___info0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = __this->get_Signature_19();
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_0_0_0_var) };
Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_14, /*hidden argument*/NULL);
NullCheck(L_12);
SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC(L_12, _stringLiteral6EB197EFF2520A15200111CB1E6DCAAF5ADB14E4, (RuntimeObject *)(RuntimeObject *)L_13, L_15, /*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 System.MissingMethodException::.ctor()
extern "C" IL2CPP_METHOD_ATTR void MissingMethodException__ctor_m1DF6EAD8AE77C7C77D64E7FAE249FE024C56EB71 (MissingMethodException_t7D33DFD3009E4F19BE4DD0967F04D3878F348498 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MissingMethodException__ctor_m1DF6EAD8AE77C7C77D64E7FAE249FE024C56EB71_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral933E9DEDE3C0119BCED3AEE351569D160C28BC18, /*hidden argument*/NULL);
MissingMemberException__ctor_m2F8C7F0015B6EFEC5BD07F8240D53C2AEE4649DC(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233069), /*hidden argument*/NULL);
return;
}
}
// System.Void System.MissingMethodException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void MissingMethodException__ctor_m44F1A1E3C426F8902FFAB4DA991DA1650FA14EE9 (MissingMethodException_t7D33DFD3009E4F19BE4DD0967F04D3878F348498 * __this, String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
MissingMemberException__ctor_m2F8C7F0015B6EFEC5BD07F8240D53C2AEE4649DC(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233069), /*hidden argument*/NULL);
return;
}
}
// System.Void System.MissingMethodException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
extern "C" IL2CPP_METHOD_ATTR void MissingMethodException__ctor_m453CCCA39C8DE671F2CD3E0ECB1378091CE777F5 (MissingMethodException_t7D33DFD3009E4F19BE4DD0967F04D3878F348498 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
MissingMemberException__ctor_mE928DEDD684F9B56B2D739CC7C0D36F189B9BC13(__this, L_0, L_1, /*hidden argument*/NULL);
return;
}
}
// System.String System.MissingMethodException::get_Message()
extern "C" IL2CPP_METHOD_ATTR String_t* MissingMethodException_get_Message_mD35DBB99C4AC01DB84CEABD0A4C84877C85DF7BA (MissingMethodException_t7D33DFD3009E4F19BE4DD0967F04D3878F348498 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MissingMethodException_get_Message_mD35DBB99C4AC01DB84CEABD0A4C84877C85DF7BA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
String_t* L_0 = ((MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD *)__this)->get_ClassName_17();
if (L_0)
{
goto IL_000f;
}
}
{
String_t* L_1 = MissingMemberException_get_Message_m3995693C813787B7034776FC6F82C0DF7BDBC619(__this, /*hidden argument*/NULL);
return L_1;
}
IL_000f:
{
String_t* L_2 = ((MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD *)__this)->get_ClassName_17();
String_t* L_3 = ((MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD *)__this)->get_MemberName_18();
String_t* L_4 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(L_2, _stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727, L_3, /*hidden argument*/NULL);
V_0 = L_4;
String_t* L_5 = __this->get_signature_20();
bool L_6 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_5, /*hidden argument*/NULL);
if (L_6)
{
goto IL_0045;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_7 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
String_t* L_8 = __this->get_signature_20();
String_t* L_9 = V_0;
String_t* L_10 = String_Format_m30892041DA5F50D7B8CFD82FFC0F55B5B97A2B7F(L_7, L_8, L_9, /*hidden argument*/NULL);
V_0 = L_10;
}
IL_0045:
{
String_t* L_11 = ((Exception_t *)__this)->get__message_2();
bool L_12 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_11, /*hidden argument*/NULL);
if (L_12)
{
goto IL_0064;
}
}
{
String_t* L_13 = V_0;
String_t* L_14 = ((Exception_t *)__this)->get__message_2();
String_t* L_15 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(L_13, _stringLiteral8FF423F750EAB821AF9F4C9C956D5052DFEF62AF, L_14, /*hidden argument*/NULL);
V_0 = L_15;
}
IL_0064:
{
String_t* L_16 = V_0;
return L_16;
}
}
// System.Void System.MissingMethodException::.ctor(System.String,System.String)
extern "C" IL2CPP_METHOD_ATTR void MissingMethodException__ctor_mEE8869A7C1042B1286DCD4D91DA67BF0D06E0452 (MissingMethodException_t7D33DFD3009E4F19BE4DD0967F04D3878F348498 * __this, String_t* ___className0, String_t* ___methodName1, const RuntimeMethod* method)
{
{
MissingMemberException__ctor_m0E998DF25E681F352D27BD1575F45AD78788F481(__this, /*hidden argument*/NULL);
String_t* L_0 = ___className0;
((MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD *)__this)->set_ClassName_17(L_0);
String_t* L_1 = ___methodName1;
((MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD *)__this)->set_MemberName_18(L_1);
return;
}
}
// System.Void System.MissingMethodException::.ctor(System.String,System.String,System.String,System.String)
extern "C" IL2CPP_METHOD_ATTR void MissingMethodException__ctor_m1A9B0ECE72376B35C4670DEB73B93ED64D46B3D5 (MissingMethodException_t7D33DFD3009E4F19BE4DD0967F04D3878F348498 * __this, String_t* ___className0, String_t* ___methodName1, String_t* ___signature2, String_t* ___message3, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message3;
MissingMemberException__ctor_m2F8C7F0015B6EFEC5BD07F8240D53C2AEE4649DC(__this, L_0, /*hidden argument*/NULL);
String_t* L_1 = ___className0;
((MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD *)__this)->set_ClassName_17(L_1);
String_t* L_2 = ___methodName1;
((MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD *)__this)->set_MemberName_18(L_2);
String_t* L_3 = ___signature2;
__this->set_signature_20(L_3);
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: System.MonoAsyncCall
extern "C" void MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD_marshal_pinvoke(const MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD& unmarshaled, MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD_marshaled_pinvoke& marshaled)
{
if (unmarshaled.get_msg_0() != NULL)
{
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_msg_0()))
{
il2cpp_hresult_t hr = ((Il2CppComObject *)unmarshaled.get_msg_0())->identity->QueryInterface(Il2CppIUnknown::IID, reinterpret_cast<void**>(&marshaled.___msg_0));
il2cpp_codegen_com_raise_exception_if_failed(hr, false);
}
else
{
marshaled.___msg_0 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get_msg_0());
}
}
else
{
marshaled.___msg_0 = NULL;
}
marshaled.___cb_method_1 = unmarshaled.get_cb_method_1();
if (unmarshaled.get_cb_target_2() != NULL)
{
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_cb_target_2()))
{
il2cpp_hresult_t hr = ((Il2CppComObject *)unmarshaled.get_cb_target_2())->identity->QueryInterface(Il2CppIUnknown::IID, reinterpret_cast<void**>(&marshaled.___cb_target_2));
il2cpp_codegen_com_raise_exception_if_failed(hr, false);
}
else
{
marshaled.___cb_target_2 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get_cb_target_2());
}
}
else
{
marshaled.___cb_target_2 = NULL;
}
if (unmarshaled.get_state_3() != NULL)
{
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_state_3()))
{
il2cpp_hresult_t hr = ((Il2CppComObject *)unmarshaled.get_state_3())->identity->QueryInterface(Il2CppIUnknown::IID, reinterpret_cast<void**>(&marshaled.___state_3));
il2cpp_codegen_com_raise_exception_if_failed(hr, false);
}
else
{
marshaled.___state_3 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get_state_3());
}
}
else
{
marshaled.___state_3 = NULL;
}
if (unmarshaled.get_res_4() != NULL)
{
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_res_4()))
{
il2cpp_hresult_t hr = ((Il2CppComObject *)unmarshaled.get_res_4())->identity->QueryInterface(Il2CppIUnknown::IID, reinterpret_cast<void**>(&marshaled.___res_4));
il2cpp_codegen_com_raise_exception_if_failed(hr, false);
}
else
{
marshaled.___res_4 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get_res_4());
}
}
else
{
marshaled.___res_4 = NULL;
}
if (unmarshaled.get_out_args_5() != NULL)
{
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_out_args_5()))
{
il2cpp_hresult_t hr = ((Il2CppComObject *)unmarshaled.get_out_args_5())->identity->QueryInterface(Il2CppIUnknown::IID, reinterpret_cast<void**>(&marshaled.___out_args_5));
il2cpp_codegen_com_raise_exception_if_failed(hr, false);
}
else
{
marshaled.___out_args_5 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get_out_args_5());
}
}
else
{
marshaled.___out_args_5 = NULL;
}
}
extern "C" void MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD_marshal_pinvoke_back(const MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD_marshaled_pinvoke& marshaled, MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD& unmarshaled)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD_pinvoke_FromNativeMethodDefinition_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
if (marshaled.___msg_0 != NULL)
{
unmarshaled.set_msg_0(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___msg_0, Il2CppComObject_il2cpp_TypeInfo_var));
}
else
{
unmarshaled.set_msg_0(NULL);
}
intptr_t unmarshaled_cb_method_temp_1;
memset(&unmarshaled_cb_method_temp_1, 0, sizeof(unmarshaled_cb_method_temp_1));
unmarshaled_cb_method_temp_1 = marshaled.___cb_method_1;
unmarshaled.set_cb_method_1(unmarshaled_cb_method_temp_1);
if (marshaled.___cb_target_2 != NULL)
{
unmarshaled.set_cb_target_2(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___cb_target_2, Il2CppComObject_il2cpp_TypeInfo_var));
}
else
{
unmarshaled.set_cb_target_2(NULL);
}
if (marshaled.___state_3 != NULL)
{
unmarshaled.set_state_3(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___state_3, Il2CppComObject_il2cpp_TypeInfo_var));
}
else
{
unmarshaled.set_state_3(NULL);
}
if (marshaled.___res_4 != NULL)
{
unmarshaled.set_res_4(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___res_4, Il2CppComObject_il2cpp_TypeInfo_var));
}
else
{
unmarshaled.set_res_4(NULL);
}
if (marshaled.___out_args_5 != NULL)
{
unmarshaled.set_out_args_5(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___out_args_5, Il2CppComObject_il2cpp_TypeInfo_var));
}
else
{
unmarshaled.set_out_args_5(NULL);
}
}
// Conversion method for clean up from marshalling of: System.MonoAsyncCall
extern "C" void MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD_marshal_pinvoke_cleanup(MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD_marshaled_pinvoke& marshaled)
{
if (marshaled.___msg_0 != NULL)
{
(marshaled.___msg_0)->Release();
marshaled.___msg_0 = NULL;
}
if (marshaled.___cb_target_2 != NULL)
{
(marshaled.___cb_target_2)->Release();
marshaled.___cb_target_2 = NULL;
}
if (marshaled.___state_3 != NULL)
{
(marshaled.___state_3)->Release();
marshaled.___state_3 = NULL;
}
if (marshaled.___res_4 != NULL)
{
(marshaled.___res_4)->Release();
marshaled.___res_4 = NULL;
}
if (marshaled.___out_args_5 != NULL)
{
(marshaled.___out_args_5)->Release();
marshaled.___out_args_5 = NULL;
}
}
// Conversion methods for marshalling of: System.MonoAsyncCall
extern "C" void MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD_marshal_com(const MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD& unmarshaled, MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD_marshaled_com& marshaled)
{
if (unmarshaled.get_msg_0() != NULL)
{
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_msg_0()))
{
il2cpp_hresult_t hr = ((Il2CppComObject *)unmarshaled.get_msg_0())->identity->QueryInterface(Il2CppIUnknown::IID, reinterpret_cast<void**>(&marshaled.___msg_0));
il2cpp_codegen_com_raise_exception_if_failed(hr, true);
}
else
{
marshaled.___msg_0 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get_msg_0());
}
}
else
{
marshaled.___msg_0 = NULL;
}
marshaled.___cb_method_1 = unmarshaled.get_cb_method_1();
if (unmarshaled.get_cb_target_2() != NULL)
{
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_cb_target_2()))
{
il2cpp_hresult_t hr = ((Il2CppComObject *)unmarshaled.get_cb_target_2())->identity->QueryInterface(Il2CppIUnknown::IID, reinterpret_cast<void**>(&marshaled.___cb_target_2));
il2cpp_codegen_com_raise_exception_if_failed(hr, true);
}
else
{
marshaled.___cb_target_2 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get_cb_target_2());
}
}
else
{
marshaled.___cb_target_2 = NULL;
}
if (unmarshaled.get_state_3() != NULL)
{
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_state_3()))
{
il2cpp_hresult_t hr = ((Il2CppComObject *)unmarshaled.get_state_3())->identity->QueryInterface(Il2CppIUnknown::IID, reinterpret_cast<void**>(&marshaled.___state_3));
il2cpp_codegen_com_raise_exception_if_failed(hr, true);
}
else
{
marshaled.___state_3 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get_state_3());
}
}
else
{
marshaled.___state_3 = NULL;
}
if (unmarshaled.get_res_4() != NULL)
{
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_res_4()))
{
il2cpp_hresult_t hr = ((Il2CppComObject *)unmarshaled.get_res_4())->identity->QueryInterface(Il2CppIUnknown::IID, reinterpret_cast<void**>(&marshaled.___res_4));
il2cpp_codegen_com_raise_exception_if_failed(hr, true);
}
else
{
marshaled.___res_4 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get_res_4());
}
}
else
{
marshaled.___res_4 = NULL;
}
if (unmarshaled.get_out_args_5() != NULL)
{
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_out_args_5()))
{
il2cpp_hresult_t hr = ((Il2CppComObject *)unmarshaled.get_out_args_5())->identity->QueryInterface(Il2CppIUnknown::IID, reinterpret_cast<void**>(&marshaled.___out_args_5));
il2cpp_codegen_com_raise_exception_if_failed(hr, true);
}
else
{
marshaled.___out_args_5 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get_out_args_5());
}
}
else
{
marshaled.___out_args_5 = NULL;
}
}
extern "C" void MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD_marshal_com_back(const MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD_marshaled_com& marshaled, MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD& unmarshaled)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD_com_FromNativeMethodDefinition_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
if (marshaled.___msg_0 != NULL)
{
unmarshaled.set_msg_0(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___msg_0, Il2CppComObject_il2cpp_TypeInfo_var));
}
else
{
unmarshaled.set_msg_0(NULL);
}
intptr_t unmarshaled_cb_method_temp_1;
memset(&unmarshaled_cb_method_temp_1, 0, sizeof(unmarshaled_cb_method_temp_1));
unmarshaled_cb_method_temp_1 = marshaled.___cb_method_1;
unmarshaled.set_cb_method_1(unmarshaled_cb_method_temp_1);
if (marshaled.___cb_target_2 != NULL)
{
unmarshaled.set_cb_target_2(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___cb_target_2, Il2CppComObject_il2cpp_TypeInfo_var));
}
else
{
unmarshaled.set_cb_target_2(NULL);
}
if (marshaled.___state_3 != NULL)
{
unmarshaled.set_state_3(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___state_3, Il2CppComObject_il2cpp_TypeInfo_var));
}
else
{
unmarshaled.set_state_3(NULL);
}
if (marshaled.___res_4 != NULL)
{
unmarshaled.set_res_4(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___res_4, Il2CppComObject_il2cpp_TypeInfo_var));
}
else
{
unmarshaled.set_res_4(NULL);
}
if (marshaled.___out_args_5 != NULL)
{
unmarshaled.set_out_args_5(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___out_args_5, Il2CppComObject_il2cpp_TypeInfo_var));
}
else
{
unmarshaled.set_out_args_5(NULL);
}
}
// Conversion method for clean up from marshalling of: System.MonoAsyncCall
extern "C" void MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD_marshal_com_cleanup(MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD_marshaled_com& marshaled)
{
if (marshaled.___msg_0 != NULL)
{
(marshaled.___msg_0)->Release();
marshaled.___msg_0 = NULL;
}
if (marshaled.___cb_target_2 != NULL)
{
(marshaled.___cb_target_2)->Release();
marshaled.___cb_target_2 = NULL;
}
if (marshaled.___state_3 != NULL)
{
(marshaled.___state_3)->Release();
marshaled.___state_3 = NULL;
}
if (marshaled.___res_4 != NULL)
{
(marshaled.___res_4)->Release();
marshaled.___res_4 = NULL;
}
if (marshaled.___out_args_5 != NULL)
{
(marshaled.___out_args_5)->Release();
marshaled.___out_args_5 = NULL;
}
}
// System.Void System.MonoAsyncCall::.ctor()
extern "C" IL2CPP_METHOD_ATTR void MonoAsyncCall__ctor_m1FB07E7294A663C855884FEDB344A5F70F414F12 (MonoAsyncCall_t5D4F895C7FEF7A36A60AFD3C64078A86BAF681FD * __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.Boolean System.MonoCustomAttrs::IsUserCattrProvider(System.Object)
extern "C" IL2CPP_METHOD_ATTR bool MonoCustomAttrs_IsUserCattrProvider_m9B868B5F0A99FE40FD0CC0387036A0E9BBB75932 (RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoCustomAttrs_IsUserCattrProvider_m9B868B5F0A99FE40FD0CC0387036A0E9BBB75932_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)IsInstClass((RuntimeObject*)((Type_t *)IsInstClass((RuntimeObject*)L_0, Type_t_il2cpp_TypeInfo_var)), RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)))
{
goto IL_000f;
}
}
{
return (bool)0;
}
IL_000f:
{
RuntimeObject * L_1 = ___obj0;
if (!((Type_t *)IsInstClass((RuntimeObject*)L_1, Type_t_il2cpp_TypeInfo_var)))
{
goto IL_0019;
}
}
{
return (bool)1;
}
IL_0019:
{
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
Assembly_t * L_2 = ((MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_StaticFields*)il2cpp_codegen_static_fields_for(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var))->get_corlib_0();
bool L_3 = Assembly_op_Equality_m4B6A318CE4104781ABF30A2BBBCCCFB0FE342316(L_2, (Assembly_t *)NULL, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_003a;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_4 = { reinterpret_cast<intptr_t> (Int32_t585191389E07734F19F3156FF88FB3EF4800D102_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);
NullCheck(L_5);
Assembly_t * L_6 = VirtFuncInvoker0< Assembly_t * >::Invoke(23 /* System.Reflection.Assembly System.Type::get_Assembly() */, L_5);
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
((MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_StaticFields*)il2cpp_codegen_static_fields_for(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var))->set_corlib_0(L_6);
}
IL_003a:
{
RuntimeObject * L_7 = ___obj0;
NullCheck(L_7);
Type_t * L_8 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_7, /*hidden argument*/NULL);
NullCheck(L_8);
Assembly_t * L_9 = VirtFuncInvoker0< Assembly_t * >::Invoke(23 /* System.Reflection.Assembly System.Type::get_Assembly() */, L_8);
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
Assembly_t * L_10 = ((MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_StaticFields*)il2cpp_codegen_static_fields_for(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var))->get_corlib_0();
bool L_11 = Assembly_op_Inequality_m6949ED5777CC2840BF1EBD907C35A20E25F22F7B(L_9, L_10, /*hidden argument*/NULL);
return L_11;
}
}
// System.Object[] System.MonoCustomAttrs::GetCustomAttributesInternal(System.Reflection.ICustomAttributeProvider,System.Type,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* MonoCustomAttrs_GetCustomAttributesInternal_m3F958BFAAAE4332BBF02F37419B0735C3BB5A772 (RuntimeObject* ___obj0, Type_t * ___attributeType1, bool ___pseudoAttrs2, const RuntimeMethod* method)
{
typedef ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* (*MonoCustomAttrs_GetCustomAttributesInternal_m3F958BFAAAE4332BBF02F37419B0735C3BB5A772_ftn) (RuntimeObject*, Type_t *, bool);
using namespace il2cpp::icalls;
return ((MonoCustomAttrs_GetCustomAttributesInternal_m3F958BFAAAE4332BBF02F37419B0735C3BB5A772_ftn)mscorlib::System::MonoCustomAttrs::GetCustomAttributesInternal) (___obj0, ___attributeType1, ___pseudoAttrs2);
}
// System.Object[] System.MonoCustomAttrs::GetPseudoCustomAttributes(System.Reflection.ICustomAttributeProvider,System.Type)
extern "C" IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* MonoCustomAttrs_GetPseudoCustomAttributes_m0D01BF6CDDC677D096E44DC0F32136E4D3812DE9 (RuntimeObject* ___obj0, Type_t * ___attributeType1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoCustomAttrs_GetPseudoCustomAttributes_m0D01BF6CDDC677D096E44DC0F32136E4D3812DE9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
int32_t V_1 = 0;
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)NULL;
RuntimeObject* L_0 = ___obj0;
if (!((MonoMethod_t *)IsInstClass((RuntimeObject*)L_0, MonoMethod_t_il2cpp_TypeInfo_var)))
{
goto IL_0018;
}
}
{
RuntimeObject* L_1 = ___obj0;
NullCheck(((MonoMethod_t *)CastclassClass((RuntimeObject*)L_1, MonoMethod_t_il2cpp_TypeInfo_var)));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = MonoMethod_GetPseudoCustomAttributes_mE46E69D39791BDF9B87A893B6EEB17B75754DE31(((MonoMethod_t *)CastclassClass((RuntimeObject*)L_1, MonoMethod_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
V_0 = L_2;
goto IL_0058;
}
IL_0018:
{
RuntimeObject* L_3 = ___obj0;
if (!((FieldInfo_t *)IsInstClass((RuntimeObject*)L_3, FieldInfo_t_il2cpp_TypeInfo_var)))
{
goto IL_002e;
}
}
{
RuntimeObject* L_4 = ___obj0;
NullCheck(((FieldInfo_t *)CastclassClass((RuntimeObject*)L_4, FieldInfo_t_il2cpp_TypeInfo_var)));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = FieldInfo_GetPseudoCustomAttributes_m54546ADF590198164EE361638CFBDA4CFC733994(((FieldInfo_t *)CastclassClass((RuntimeObject*)L_4, FieldInfo_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
V_0 = L_5;
goto IL_0058;
}
IL_002e:
{
RuntimeObject* L_6 = ___obj0;
if (!((ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB *)IsInstClass((RuntimeObject*)L_6, ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_il2cpp_TypeInfo_var)))
{
goto IL_0044;
}
}
{
RuntimeObject* L_7 = ___obj0;
NullCheck(((ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB *)CastclassClass((RuntimeObject*)L_7, ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_il2cpp_TypeInfo_var)));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = ParameterInfo_GetPseudoCustomAttributes_m6A16386472EB8A4B1448EB11CC4B987F06281E22(((ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB *)CastclassClass((RuntimeObject*)L_7, ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
V_0 = L_8;
goto IL_0058;
}
IL_0044:
{
RuntimeObject* L_9 = ___obj0;
if (!((Type_t *)IsInstClass((RuntimeObject*)L_9, Type_t_il2cpp_TypeInfo_var)))
{
goto IL_0058;
}
}
{
RuntimeObject* L_10 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = MonoCustomAttrs_GetPseudoCustomAttributes_m7598697AAF50EA30FF6E03C8F9F510FC60434988(((Type_t *)CastclassClass((RuntimeObject*)L_10, Type_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
V_0 = L_11;
}
IL_0058:
{
Type_t * L_12 = ___attributeType1;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_13 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_12, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_13)
{
goto IL_009d;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_14 = V_0;
if (!L_14)
{
goto IL_009d;
}
}
{
V_1 = 0;
goto IL_0091;
}
IL_0068:
{
Type_t * L_15 = ___attributeType1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_16 = V_0;
int32_t L_17 = V_1;
NullCheck(L_16);
int32_t L_18 = L_17;
RuntimeObject * L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18));
NullCheck(L_19);
Type_t * L_20 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_19, /*hidden argument*/NULL);
NullCheck(L_15);
bool L_21 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_15, L_20);
if (!L_21)
{
goto IL_008d;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_22 = V_0;
NullCheck(L_22);
if ((!(((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_22)->max_length))))) == ((uint32_t)1))))
{
goto IL_0080;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_23 = V_0;
return L_23;
}
IL_0080:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_24 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_25 = L_24;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_26 = V_0;
int32_t L_27 = V_1;
NullCheck(L_26);
int32_t L_28 = L_27;
RuntimeObject * L_29 = (L_26)->GetAt(static_cast<il2cpp_array_size_t>(L_28));
NullCheck(L_25);
ArrayElementTypeCheck (L_25, L_29);
(L_25)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_29);
return L_25;
}
IL_008d:
{
int32_t L_30 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)1));
}
IL_0091:
{
int32_t L_31 = V_1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_32 = V_0;
NullCheck(L_32);
if ((((int32_t)L_31) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_32)->max_length)))))))
{
goto IL_0068;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(EmptyArray_1_tCF137C88A5824F413EFB5A2F31664D8207E61D26_il2cpp_TypeInfo_var);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_33 = ((EmptyArray_1_tCF137C88A5824F413EFB5A2F31664D8207E61D26_StaticFields*)il2cpp_codegen_static_fields_for(EmptyArray_1_tCF137C88A5824F413EFB5A2F31664D8207E61D26_il2cpp_TypeInfo_var))->get_Value_0();
return L_33;
}
IL_009d:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_34 = V_0;
return L_34;
}
}
// System.Object[] System.MonoCustomAttrs::GetPseudoCustomAttributes(System.Type)
extern "C" IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* MonoCustomAttrs_GetPseudoCustomAttributes_m7598697AAF50EA30FF6E03C8F9F510FC60434988 (Type_t * ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoCustomAttrs_GetPseudoCustomAttributes_m7598697AAF50EA30FF6E03C8F9F510FC60434988_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_2 = NULL;
{
V_0 = 0;
Type_t * L_0 = ___type0;
NullCheck(L_0);
int32_t L_1 = Type_get_Attributes_m8B229CC7A4DDE25E0EEB1A9F09FC61C499A72163(L_0, /*hidden argument*/NULL);
V_1 = L_1;
int32_t L_2 = V_1;
if (!((int32_t)((int32_t)L_2&(int32_t)((int32_t)8192))))
{
goto IL_0016;
}
}
{
int32_t L_3 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1));
}
IL_0016:
{
int32_t L_4 = V_1;
if (!((int32_t)((int32_t)L_4&(int32_t)((int32_t)4096))))
{
goto IL_0023;
}
}
{
int32_t L_5 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1));
}
IL_0023:
{
int32_t L_6 = V_0;
if (L_6)
{
goto IL_0028;
}
}
{
return (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)NULL;
}
IL_0028:
{
int32_t L_7 = V_0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)L_7);
V_2 = L_8;
V_0 = 0;
int32_t L_9 = V_1;
if (!((int32_t)((int32_t)L_9&(int32_t)((int32_t)8192))))
{
goto IL_0046;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = V_2;
int32_t L_11 = V_0;
int32_t L_12 = L_11;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1));
SerializableAttribute_t2522EA746802F84F4805F489ECE9CFAC1A817F0F * L_13 = (SerializableAttribute_t2522EA746802F84F4805F489ECE9CFAC1A817F0F *)il2cpp_codegen_object_new(SerializableAttribute_t2522EA746802F84F4805F489ECE9CFAC1A817F0F_il2cpp_TypeInfo_var);
SerializableAttribute__ctor_m2EEE0A59C8AE32A075D806DDBB0D41EB85F049E8(L_13, /*hidden argument*/NULL);
NullCheck(L_10);
ArrayElementTypeCheck (L_10, L_13);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_12), (RuntimeObject *)L_13);
}
IL_0046:
{
int32_t L_14 = V_1;
if (!((int32_t)((int32_t)L_14&(int32_t)((int32_t)4096))))
{
goto IL_005b;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_15 = V_2;
int32_t L_16 = V_0;
int32_t L_17 = L_16;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1));
ComImportAttribute_t274D44BA1076F587D6AC97C2AFBA0A7B25EFDF40 * L_18 = (ComImportAttribute_t274D44BA1076F587D6AC97C2AFBA0A7B25EFDF40 *)il2cpp_codegen_object_new(ComImportAttribute_t274D44BA1076F587D6AC97C2AFBA0A7B25EFDF40_il2cpp_TypeInfo_var);
ComImportAttribute__ctor_m372EC8A68CB0323D4453D465DD612CDE9B595678(L_18, /*hidden argument*/NULL);
NullCheck(L_15);
ArrayElementTypeCheck (L_15, L_18);
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(L_17), (RuntimeObject *)L_18);
}
IL_005b:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_19 = V_2;
return L_19;
}
}
// System.Object[] System.MonoCustomAttrs::GetCustomAttributesBase(System.Reflection.ICustomAttributeProvider,System.Type,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* MonoCustomAttrs_GetCustomAttributesBase_mBF75044E83593AAD9DA29F0C19056B1FB1D98673 (RuntimeObject* ___obj0, Type_t * ___attributeType1, bool ___inheritedOnly2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoCustomAttrs_GetCustomAttributesBase_mBF75044E83593AAD9DA29F0C19056B1FB1D98673_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_1 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_2 = NULL;
{
RuntimeObject* L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
bool L_1 = MonoCustomAttrs_IsUserCattrProvider_m9B868B5F0A99FE40FD0CC0387036A0E9BBB75932(L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0013;
}
}
{
RuntimeObject* L_2 = ___obj0;
Type_t * L_3 = ___attributeType1;
NullCheck(L_2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = InterfaceFuncInvoker2< ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, Type_t *, bool >::Invoke(0 /* System.Object[] System.Reflection.ICustomAttributeProvider::GetCustomAttributes(System.Type,System.Boolean) */, ICustomAttributeProvider_tA83E69D2C560A6EF8DDA8C438BD4C80C2EA03D55_il2cpp_TypeInfo_var, L_2, L_3, (bool)1);
V_0 = L_4;
goto IL_001c;
}
IL_0013:
{
RuntimeObject* L_5 = ___obj0;
Type_t * L_6 = ___attributeType1;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = MonoCustomAttrs_GetCustomAttributesInternal_m3F958BFAAAE4332BBF02F37419B0735C3BB5A772(L_5, L_6, (bool)0, /*hidden argument*/NULL);
V_0 = L_7;
}
IL_001c:
{
bool L_8 = ___inheritedOnly2;
if (L_8)
{
goto IL_0051;
}
}
{
RuntimeObject* L_9 = ___obj0;
Type_t * L_10 = ___attributeType1;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = MonoCustomAttrs_GetPseudoCustomAttributes_m0D01BF6CDDC677D096E44DC0F32136E4D3812DE9(L_9, L_10, /*hidden argument*/NULL);
V_1 = L_11;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = V_1;
if (!L_12)
{
goto IL_0051;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_13 = V_0;
NullCheck(L_13);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_14 = V_1;
NullCheck(L_14);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_15 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_13)->max_length)))), (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_14)->max_length)))))));
V_2 = L_15;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_16 = V_0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_17 = V_2;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_18 = V_0;
NullCheck(L_18);
Array_Copy_m2D96731C600DE8A167348CA8BA796344E64F7434((RuntimeArray *)(RuntimeArray *)L_16, (RuntimeArray *)(RuntimeArray *)L_17, (((int32_t)((int32_t)(((RuntimeArray *)L_18)->max_length)))), /*hidden argument*/NULL);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_19 = V_1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_20 = V_2;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_21 = V_0;
NullCheck(L_21);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_22 = V_1;
NullCheck(L_22);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_19, 0, (RuntimeArray *)(RuntimeArray *)L_20, (((int32_t)((int32_t)(((RuntimeArray *)L_21)->max_length)))), (((int32_t)((int32_t)(((RuntimeArray *)L_22)->max_length)))), /*hidden argument*/NULL);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_23 = V_2;
return L_23;
}
IL_0051:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_24 = V_0;
return L_24;
}
}
// System.Object[] System.MonoCustomAttrs::GetCustomAttributes(System.Reflection.ICustomAttributeProvider,System.Type,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* MonoCustomAttrs_GetCustomAttributes_m1FD79FB099EEB9D47077C17F9496F4E17AD97115 (RuntimeObject* ___obj0, Type_t * ___attributeType1, bool ___inherit2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoCustomAttrs_GetCustomAttributes_m1FD79FB099EEB9D47077C17F9496F4E17AD97115_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_1 = NULL;
int32_t V_2 = 0;
List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * V_3 = NULL;
RuntimeObject* V_4 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_5 = NULL;
Dictionary_2_t772861296417691DD84C8A9E8D84AAC7F39FD992 * V_6 = NULL;
int32_t V_7 = 0;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* V_8 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_9 = NULL;
int32_t V_10 = 0;
RuntimeObject * V_11 = NULL;
Type_t * V_12 = NULL;
RuntimeObject * V_13 = NULL;
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * V_14 = NULL;
Type_t * V_15 = NULL;
AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A * V_16 = NULL;
int32_t G_B22_0 = 0;
{
RuntimeObject* L_0 = ___obj0;
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, _stringLiteral9B5C0B859FABA061DD60FD8070FCE74FCEE29D0B, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, MonoCustomAttrs_GetCustomAttributes_m1FD79FB099EEB9D47077C17F9496F4E17AD97115_RuntimeMethod_var);
}
IL_000e:
{
Type_t * L_2 = ___attributeType1;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_3 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_2, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0022;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_4, _stringLiteralEF46D75152852B41CC6121A161522C9643FFF123, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, MonoCustomAttrs_GetCustomAttributes_m1FD79FB099EEB9D47077C17F9496F4E17AD97115_RuntimeMethod_var);
}
IL_0022:
{
Type_t * L_5 = ___attributeType1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_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);
bool L_8 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_5, L_7, /*hidden argument*/NULL);
if (!L_8)
{
goto IL_0037;
}
}
{
___attributeType1 = (Type_t *)NULL;
}
IL_0037:
{
RuntimeObject* L_9 = ___obj0;
Type_t * L_10 = ___attributeType1;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = MonoCustomAttrs_GetCustomAttributesBase_mBF75044E83593AAD9DA29F0C19056B1FB1D98673(L_9, L_10, (bool)0, /*hidden argument*/NULL);
V_1 = L_11;
bool L_12 = ___inherit2;
if (L_12)
{
goto IL_00b2;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_13 = V_1;
NullCheck(L_13);
if ((!(((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_13)->max_length))))) == ((uint32_t)1))))
{
goto IL_00b2;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_14 = V_1;
NullCheck(L_14);
int32_t L_15 = 0;
RuntimeObject * L_16 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
if (L_16)
{
goto IL_0059;
}
}
{
CustomAttributeFormatException_tE63CB0CF2AB9605E56F823E2F32B41C5E24E705D * L_17 = (CustomAttributeFormatException_tE63CB0CF2AB9605E56F823E2F32B41C5E24E705D *)il2cpp_codegen_object_new(CustomAttributeFormatException_tE63CB0CF2AB9605E56F823E2F32B41C5E24E705D_il2cpp_TypeInfo_var);
CustomAttributeFormatException__ctor_mD45240130392F4AE30163D4585E8062EB886236B(L_17, _stringLiteralE015438306ACF3FAB184DF1F0062CFCF7CC11917, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, NULL, MonoCustomAttrs_GetCustomAttributes_m1FD79FB099EEB9D47077C17F9496F4E17AD97115_RuntimeMethod_var);
}
IL_0059:
{
Type_t * L_18 = ___attributeType1;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_19 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_18, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_19)
{
goto IL_0096;
}
}
{
Type_t * L_20 = ___attributeType1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_21 = V_1;
NullCheck(L_21);
int32_t L_22 = 0;
RuntimeObject * L_23 = (L_21)->GetAt(static_cast<il2cpp_array_size_t>(L_22));
NullCheck(L_23);
Type_t * L_24 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_23, /*hidden argument*/NULL);
NullCheck(L_20);
bool L_25 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_20, L_24);
if (!L_25)
{
goto IL_0087;
}
}
{
Type_t * L_26 = ___attributeType1;
RuntimeArray * L_27 = Array_CreateInstance_mE3FF1559BCD06302A7DA79FCE32232941AC38F3F(L_26, 1, /*hidden argument*/NULL);
V_0 = ((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)Castclass((RuntimeObject*)L_27, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_28 = V_0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_29 = V_1;
NullCheck(L_29);
int32_t L_30 = 0;
RuntimeObject * L_31 = (L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_30));
NullCheck(L_28);
ArrayElementTypeCheck (L_28, L_31);
(L_28)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_31);
goto IL_00b0;
}
IL_0087:
{
Type_t * L_32 = ___attributeType1;
RuntimeArray * L_33 = Array_CreateInstance_mE3FF1559BCD06302A7DA79FCE32232941AC38F3F(L_32, 0, /*hidden argument*/NULL);
V_0 = ((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)Castclass((RuntimeObject*)L_33, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
goto IL_00b0;
}
IL_0096:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_34 = V_1;
NullCheck(L_34);
int32_t L_35 = 0;
RuntimeObject * L_36 = (L_34)->GetAt(static_cast<il2cpp_array_size_t>(L_35));
NullCheck(L_36);
Type_t * L_37 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_36, /*hidden argument*/NULL);
RuntimeArray * L_38 = Array_CreateInstance_mE3FF1559BCD06302A7DA79FCE32232941AC38F3F(L_37, 1, /*hidden argument*/NULL);
V_0 = ((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)Castclass((RuntimeObject*)L_38, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_39 = V_0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_40 = V_1;
NullCheck(L_40);
int32_t L_41 = 0;
RuntimeObject * L_42 = (L_40)->GetAt(static_cast<il2cpp_array_size_t>(L_41));
NullCheck(L_39);
ArrayElementTypeCheck (L_39, L_42);
(L_39)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_42);
}
IL_00b0:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_43 = V_0;
return L_43;
}
IL_00b2:
{
bool L_44 = ___inherit2;
if (!L_44)
{
goto IL_00c0;
}
}
{
RuntimeObject* L_45 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
RuntimeObject* L_46 = MonoCustomAttrs_GetBase_m14B26004C94018740FB8627C7FE3383E16E3BD5F(L_45, /*hidden argument*/NULL);
if (L_46)
{
goto IL_00c0;
}
}
{
___inherit2 = (bool)0;
}
IL_00c0:
{
Type_t * L_47 = ___attributeType1;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_48 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_47, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_48)
{
goto IL_00d1;
}
}
{
Type_t * L_49 = ___attributeType1;
NullCheck(L_49);
bool L_50 = Type_get_IsSealed_mC42D173AFAF7802291DEA2C3D691340F2375FD9A(L_49, /*hidden argument*/NULL);
G_B22_0 = ((int32_t)(L_50));
goto IL_00d2;
}
IL_00d1:
{
G_B22_0 = 0;
}
IL_00d2:
{
bool L_51 = ___inherit2;
if (!((int32_t)((int32_t)G_B22_0&(int32_t)L_51)))
{
goto IL_00e6;
}
}
{
Type_t * L_52 = ___attributeType1;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_53 = MonoCustomAttrs_RetrieveAttributeUsage_m229824E6B6B43362F51318A23656CCA20729B39F(L_52, /*hidden argument*/NULL);
NullCheck(L_53);
bool L_54 = AttributeUsageAttribute_get_Inherited_mE46032EFECAED37FA15BCEE3384DFA4E9868024F(L_53, /*hidden argument*/NULL);
if (L_54)
{
goto IL_00e6;
}
}
{
___inherit2 = (bool)0;
}
IL_00e6:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_55 = V_1;
NullCheck(L_55);
IL2CPP_RUNTIME_CLASS_INIT(Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var);
int32_t L_56 = Math_Max_mA99E48BB021F2E4B62D4EA9F52EA6928EED618A2((((int32_t)((int32_t)(((RuntimeArray *)L_55)->max_length)))), ((int32_t)16), /*hidden argument*/NULL);
V_2 = L_56;
V_3 = (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D *)NULL;
RuntimeObject* L_57 = ___obj0;
V_4 = L_57;
bool L_58 = ___inherit2;
if (L_58)
{
goto IL_01d9;
}
}
{
Type_t * L_59 = ___attributeType1;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_60 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_59, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_60)
{
goto IL_0143;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_61 = V_1;
V_9 = L_61;
V_10 = 0;
goto IL_0125;
}
IL_010d:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_62 = V_9;
int32_t L_63 = V_10;
NullCheck(L_62);
int32_t L_64 = L_63;
RuntimeObject * L_65 = (L_62)->GetAt(static_cast<il2cpp_array_size_t>(L_64));
if (L_65)
{
goto IL_011f;
}
}
{
CustomAttributeFormatException_tE63CB0CF2AB9605E56F823E2F32B41C5E24E705D * L_66 = (CustomAttributeFormatException_tE63CB0CF2AB9605E56F823E2F32B41C5E24E705D *)il2cpp_codegen_object_new(CustomAttributeFormatException_tE63CB0CF2AB9605E56F823E2F32B41C5E24E705D_il2cpp_TypeInfo_var);
CustomAttributeFormatException__ctor_mD45240130392F4AE30163D4585E8062EB886236B(L_66, _stringLiteralE015438306ACF3FAB184DF1F0062CFCF7CC11917, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_66, NULL, MonoCustomAttrs_GetCustomAttributes_m1FD79FB099EEB9D47077C17F9496F4E17AD97115_RuntimeMethod_var);
}
IL_011f:
{
int32_t L_67 = V_10;
V_10 = ((int32_t)il2cpp_codegen_add((int32_t)L_67, (int32_t)1));
}
IL_0125:
{
int32_t L_68 = V_10;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_69 = V_9;
NullCheck(L_69);
if ((((int32_t)L_68) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_69)->max_length)))))))
{
goto IL_010d;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_70 = V_1;
NullCheck(L_70);
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_71 = (AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)SZArrayNew(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_70)->max_length)))));
V_8 = L_71;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_72 = V_1;
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_73 = V_8;
NullCheck((RuntimeArray *)(RuntimeArray *)L_72);
Array_CopyTo_m455300D414FFB0EBFE53EA4E8BBD31532006EBB7((RuntimeArray *)(RuntimeArray *)L_72, (RuntimeArray *)(RuntimeArray *)L_73, 0, /*hidden argument*/NULL);
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_74 = V_8;
return (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_74;
}
IL_0143:
{
int32_t L_75 = V_2;
List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * L_76 = (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D *)il2cpp_codegen_object_new(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D_il2cpp_TypeInfo_var);
List_1__ctor_mEE468B81D8E7C140F567D10FF7F5894A50EEEA57(L_76, L_75, /*hidden argument*/List_1__ctor_mEE468B81D8E7C140F567D10FF7F5894A50EEEA57_RuntimeMethod_var);
V_3 = L_76;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_77 = V_1;
V_9 = L_77;
V_10 = 0;
goto IL_0192;
}
IL_0152:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_78 = V_9;
int32_t L_79 = V_10;
NullCheck(L_78);
int32_t L_80 = L_79;
RuntimeObject * L_81 = (L_78)->GetAt(static_cast<il2cpp_array_size_t>(L_80));
V_11 = L_81;
RuntimeObject * L_82 = V_11;
if (L_82)
{
goto IL_0168;
}
}
{
CustomAttributeFormatException_tE63CB0CF2AB9605E56F823E2F32B41C5E24E705D * L_83 = (CustomAttributeFormatException_tE63CB0CF2AB9605E56F823E2F32B41C5E24E705D *)il2cpp_codegen_object_new(CustomAttributeFormatException_tE63CB0CF2AB9605E56F823E2F32B41C5E24E705D_il2cpp_TypeInfo_var);
CustomAttributeFormatException__ctor_mD45240130392F4AE30163D4585E8062EB886236B(L_83, _stringLiteralE015438306ACF3FAB184DF1F0062CFCF7CC11917, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_83, NULL, MonoCustomAttrs_GetCustomAttributes_m1FD79FB099EEB9D47077C17F9496F4E17AD97115_RuntimeMethod_var);
}
IL_0168:
{
RuntimeObject * L_84 = V_11;
NullCheck(L_84);
Type_t * L_85 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_84, /*hidden argument*/NULL);
V_12 = L_85;
Type_t * L_86 = ___attributeType1;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_87 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_86, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_87)
{
goto IL_0184;
}
}
{
Type_t * L_88 = ___attributeType1;
Type_t * L_89 = V_12;
NullCheck(L_88);
bool L_90 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_88, L_89);
if (!L_90)
{
goto IL_018c;
}
}
IL_0184:
{
List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * L_91 = V_3;
RuntimeObject * L_92 = V_11;
NullCheck(L_91);
List_1_Add_m6930161974C7504C80F52EC379EF012387D43138(L_91, L_92, /*hidden argument*/List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_RuntimeMethod_var);
}
IL_018c:
{
int32_t L_93 = V_10;
V_10 = ((int32_t)il2cpp_codegen_add((int32_t)L_93, (int32_t)1));
}
IL_0192:
{
int32_t L_94 = V_10;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_95 = V_9;
NullCheck(L_95);
if ((((int32_t)L_94) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_95)->max_length)))))))
{
goto IL_0152;
}
}
{
Type_t * L_96 = ___attributeType1;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_97 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_96, (Type_t *)NULL, /*hidden argument*/NULL);
if (L_97)
{
goto IL_01ab;
}
}
{
Type_t * L_98 = ___attributeType1;
NullCheck(L_98);
bool L_99 = Type_get_IsValueType_mDDCCBAE9B59A483CBC3E5C02E3D68CEBEB2E41A8(L_98, /*hidden argument*/NULL);
if (!L_99)
{
goto IL_01ba;
}
}
IL_01ab:
{
List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * L_100 = V_3;
NullCheck(L_100);
int32_t L_101 = List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22(L_100, /*hidden argument*/List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_RuntimeMethod_var);
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_102 = (AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)SZArrayNew(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17_il2cpp_TypeInfo_var, (uint32_t)L_101);
V_5 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_102;
goto IL_01cd;
}
IL_01ba:
{
Type_t * L_103 = ___attributeType1;
List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * L_104 = V_3;
NullCheck(L_104);
int32_t L_105 = List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22(L_104, /*hidden argument*/List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_RuntimeMethod_var);
RuntimeArray * L_106 = Array_CreateInstance_mE3FF1559BCD06302A7DA79FCE32232941AC38F3F(L_103, L_105, /*hidden argument*/NULL);
V_5 = ((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)L_106, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
}
IL_01cd:
{
List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * L_107 = V_3;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_108 = V_5;
NullCheck(L_107);
List_1_CopyTo_mBC8DEE264FD7E346D098E28FB1D5096B0F9132FB(L_107, L_108, 0, /*hidden argument*/List_1_CopyTo_mBC8DEE264FD7E346D098E28FB1D5096B0F9132FB_RuntimeMethod_var);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_109 = V_5;
return L_109;
}
IL_01d9:
{
int32_t L_110 = V_2;
Dictionary_2_t772861296417691DD84C8A9E8D84AAC7F39FD992 * L_111 = (Dictionary_2_t772861296417691DD84C8A9E8D84AAC7F39FD992 *)il2cpp_codegen_object_new(Dictionary_2_t772861296417691DD84C8A9E8D84AAC7F39FD992_il2cpp_TypeInfo_var);
Dictionary_2__ctor_mEE3657EA369C703F44E13F63138E65536EC62533(L_111, L_110, /*hidden argument*/Dictionary_2__ctor_mEE3657EA369C703F44E13F63138E65536EC62533_RuntimeMethod_var);
V_6 = L_111;
V_7 = 0;
int32_t L_112 = V_2;
List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * L_113 = (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D *)il2cpp_codegen_object_new(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D_il2cpp_TypeInfo_var);
List_1__ctor_mEE468B81D8E7C140F567D10FF7F5894A50EEEA57(L_113, L_112, /*hidden argument*/List_1__ctor_mEE468B81D8E7C140F567D10FF7F5894A50EEEA57_RuntimeMethod_var);
V_3 = L_113;
}
IL_01eb:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_114 = V_1;
V_9 = L_114;
V_10 = 0;
goto IL_0296;
}
IL_01f6:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_115 = V_9;
int32_t L_116 = V_10;
NullCheck(L_115);
int32_t L_117 = L_116;
RuntimeObject * L_118 = (L_115)->GetAt(static_cast<il2cpp_array_size_t>(L_117));
V_13 = L_118;
RuntimeObject * L_119 = V_13;
if (L_119)
{
goto IL_020c;
}
}
{
CustomAttributeFormatException_tE63CB0CF2AB9605E56F823E2F32B41C5E24E705D * L_120 = (CustomAttributeFormatException_tE63CB0CF2AB9605E56F823E2F32B41C5E24E705D *)il2cpp_codegen_object_new(CustomAttributeFormatException_tE63CB0CF2AB9605E56F823E2F32B41C5E24E705D_il2cpp_TypeInfo_var);
CustomAttributeFormatException__ctor_mD45240130392F4AE30163D4585E8062EB886236B(L_120, _stringLiteralE015438306ACF3FAB184DF1F0062CFCF7CC11917, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_120, NULL, MonoCustomAttrs_GetCustomAttributes_m1FD79FB099EEB9D47077C17F9496F4E17AD97115_RuntimeMethod_var);
}
IL_020c:
{
RuntimeObject * L_121 = V_13;
NullCheck(L_121);
Type_t * L_122 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_121, /*hidden argument*/NULL);
V_15 = L_122;
Type_t * L_123 = ___attributeType1;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_124 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_123, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_124)
{
goto IL_0228;
}
}
{
Type_t * L_125 = ___attributeType1;
Type_t * L_126 = V_15;
NullCheck(L_125);
bool L_127 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_125, L_126);
if (!L_127)
{
goto IL_0290;
}
}
IL_0228:
{
Dictionary_2_t772861296417691DD84C8A9E8D84AAC7F39FD992 * L_128 = V_6;
Type_t * L_129 = V_15;
NullCheck(L_128);
bool L_130 = Dictionary_2_TryGetValue_m0F44FDB3488E44FD0A1C8D1D1490DFA483E3BC73(L_128, L_129, (AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A **)(&V_16), /*hidden argument*/Dictionary_2_TryGetValue_m0F44FDB3488E44FD0A1C8D1D1490DFA483E3BC73_RuntimeMethod_var);
if (!L_130)
{
goto IL_0240;
}
}
{
AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A * L_131 = V_16;
NullCheck(L_131);
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_132 = AttributeInfo_get_Usage_mC0CA19AEB050A11C3E89E5A015E204AB9D51F4A0(L_131, /*hidden argument*/NULL);
V_14 = L_132;
goto IL_0249;
}
IL_0240:
{
Type_t * L_133 = V_15;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_134 = MonoCustomAttrs_RetrieveAttributeUsage_m229824E6B6B43362F51318A23656CCA20729B39F(L_133, /*hidden argument*/NULL);
V_14 = L_134;
}
IL_0249:
{
int32_t L_135 = V_7;
if (!L_135)
{
goto IL_0256;
}
}
{
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_136 = V_14;
NullCheck(L_136);
bool L_137 = AttributeUsageAttribute_get_Inherited_mE46032EFECAED37FA15BCEE3384DFA4E9868024F(L_136, /*hidden argument*/NULL);
if (!L_137)
{
goto IL_027a;
}
}
IL_0256:
{
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_138 = V_14;
NullCheck(L_138);
bool L_139 = AttributeUsageAttribute_get_AllowMultiple_mF910B0B16B485A8F02C54854FC9A9604B8810FF7(L_138, /*hidden argument*/NULL);
if (L_139)
{
goto IL_0272;
}
}
{
AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A * L_140 = V_16;
if (!L_140)
{
goto IL_0272;
}
}
{
AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A * L_141 = V_16;
if (!L_141)
{
goto IL_027a;
}
}
{
AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A * L_142 = V_16;
NullCheck(L_142);
int32_t L_143 = AttributeInfo_get_InheritanceLevel_mDC293DDDC43F613FBBA304C3A5FDC63AB3961AAD(L_142, /*hidden argument*/NULL);
int32_t L_144 = V_7;
if ((!(((uint32_t)L_143) == ((uint32_t)L_144))))
{
goto IL_027a;
}
}
IL_0272:
{
List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * L_145 = V_3;
RuntimeObject * L_146 = V_13;
NullCheck(L_145);
List_1_Add_m6930161974C7504C80F52EC379EF012387D43138(L_145, L_146, /*hidden argument*/List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_RuntimeMethod_var);
}
IL_027a:
{
AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A * L_147 = V_16;
if (L_147)
{
goto IL_0290;
}
}
{
Dictionary_2_t772861296417691DD84C8A9E8D84AAC7F39FD992 * L_148 = V_6;
Type_t * L_149 = V_15;
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_150 = V_14;
int32_t L_151 = V_7;
AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A * L_152 = (AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A *)il2cpp_codegen_object_new(AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A_il2cpp_TypeInfo_var);
AttributeInfo__ctor_mB43DF2481E1EE03052137FEB5EADDDF71F935BFF(L_152, L_150, L_151, /*hidden argument*/NULL);
NullCheck(L_148);
Dictionary_2_Add_m3DFDBF11129C60DC0ECECB033EC05774E050982A(L_148, L_149, L_152, /*hidden argument*/Dictionary_2_Add_m3DFDBF11129C60DC0ECECB033EC05774E050982A_RuntimeMethod_var);
}
IL_0290:
{
int32_t L_153 = V_10;
V_10 = ((int32_t)il2cpp_codegen_add((int32_t)L_153, (int32_t)1));
}
IL_0296:
{
int32_t L_154 = V_10;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_155 = V_9;
NullCheck(L_155);
if ((((int32_t)L_154) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_155)->max_length)))))))
{
goto IL_01f6;
}
}
{
RuntimeObject* L_156 = V_4;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
RuntimeObject* L_157 = MonoCustomAttrs_GetBase_m14B26004C94018740FB8627C7FE3383E16E3BD5F(L_156, /*hidden argument*/NULL);
RuntimeObject* L_158 = L_157;
V_4 = L_158;
if (!L_158)
{
goto IL_02bd;
}
}
{
int32_t L_159 = V_7;
V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_159, (int32_t)1));
RuntimeObject* L_160 = V_4;
Type_t * L_161 = ___attributeType1;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_162 = MonoCustomAttrs_GetCustomAttributesBase_mBF75044E83593AAD9DA29F0C19056B1FB1D98673(L_160, L_161, (bool)1, /*hidden argument*/NULL);
V_1 = L_162;
}
IL_02bd:
{
bool L_163 = ___inherit2;
if (!L_163)
{
goto IL_02c7;
}
}
{
RuntimeObject* L_164 = V_4;
if (L_164)
{
goto IL_01eb;
}
}
IL_02c7:
{
Type_t * L_165 = ___attributeType1;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_166 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_165, (Type_t *)NULL, /*hidden argument*/NULL);
if (L_166)
{
goto IL_02d8;
}
}
{
Type_t * L_167 = ___attributeType1;
NullCheck(L_167);
bool L_168 = Type_get_IsValueType_mDDCCBAE9B59A483CBC3E5C02E3D68CEBEB2E41A8(L_167, /*hidden argument*/NULL);
if (!L_168)
{
goto IL_02e7;
}
}
IL_02d8:
{
List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * L_169 = V_3;
NullCheck(L_169);
int32_t L_170 = List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22(L_169, /*hidden argument*/List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_RuntimeMethod_var);
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_171 = (AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)SZArrayNew(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17_il2cpp_TypeInfo_var, (uint32_t)L_170);
V_5 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_171;
goto IL_02fa;
}
IL_02e7:
{
Type_t * L_172 = ___attributeType1;
List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * L_173 = V_3;
NullCheck(L_173);
int32_t L_174 = List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22(L_173, /*hidden argument*/List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_RuntimeMethod_var);
RuntimeArray * L_175 = Array_CreateInstance_mE3FF1559BCD06302A7DA79FCE32232941AC38F3F(L_172, L_174, /*hidden argument*/NULL);
V_5 = ((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)L_175, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
}
IL_02fa:
{
List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * L_176 = V_3;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_177 = V_5;
NullCheck(L_176);
List_1_CopyTo_mBC8DEE264FD7E346D098E28FB1D5096B0F9132FB(L_176, L_177, 0, /*hidden argument*/List_1_CopyTo_mBC8DEE264FD7E346D098E28FB1D5096B0F9132FB_RuntimeMethod_var);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_178 = V_5;
return L_178;
}
}
// System.Object[] System.MonoCustomAttrs::GetCustomAttributes(System.Reflection.ICustomAttributeProvider,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* MonoCustomAttrs_GetCustomAttributes_m6CA0C6509BA75EC908CC1D8B8D66ABAE6B7D6B03 (RuntimeObject* ___obj0, bool ___inherit1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoCustomAttrs_GetCustomAttributes_m6CA0C6509BA75EC908CC1D8B8D66ABAE6B7D6B03_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___obj0;
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, _stringLiteral9B5C0B859FABA061DD60FD8070FCE74FCEE29D0B, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, MonoCustomAttrs_GetCustomAttributes_m6CA0C6509BA75EC908CC1D8B8D66ABAE6B7D6B03_RuntimeMethod_var);
}
IL_000e:
{
bool L_2 = ___inherit1;
if (L_2)
{
goto IL_0024;
}
}
{
RuntimeObject* L_3 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = MonoCustomAttrs_GetCustomAttributesBase_mBF75044E83593AAD9DA29F0C19056B1FB1D98673(L_3, (Type_t *)NULL, (bool)0, /*hidden argument*/NULL);
NullCheck((RuntimeArray *)(RuntimeArray *)L_4);
RuntimeObject * L_5 = Array_Clone_mE8C710213E323617A6F46F2B36DCDDD4C7CF5176((RuntimeArray *)(RuntimeArray *)L_4, /*hidden argument*/NULL);
return ((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)Castclass((RuntimeObject*)L_5, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
}
IL_0024:
{
RuntimeObject* L_6 = ___obj0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_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);
bool L_9 = ___inherit1;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = MonoCustomAttrs_GetCustomAttributes_m1FD79FB099EEB9D47077C17F9496F4E17AD97115(L_6, L_8, L_9, /*hidden argument*/NULL);
return L_10;
}
}
// System.Reflection.CustomAttributeData[] System.MonoCustomAttrs::GetCustomAttributesDataInternal(System.Reflection.ICustomAttributeProvider)
extern "C" IL2CPP_METHOD_ATTR CustomAttributeDataU5BU5D_tE5B7BD0F5BF214F2158089D8B3FDA19FE1834BEB* MonoCustomAttrs_GetCustomAttributesDataInternal_mA4D57D5AF94FF74220D85C27DEAD3C6A7B522500 (RuntimeObject* ___obj0, const RuntimeMethod* method)
{
typedef CustomAttributeDataU5BU5D_tE5B7BD0F5BF214F2158089D8B3FDA19FE1834BEB* (*MonoCustomAttrs_GetCustomAttributesDataInternal_mA4D57D5AF94FF74220D85C27DEAD3C6A7B522500_ftn) (RuntimeObject*);
using namespace il2cpp::icalls;
return ((MonoCustomAttrs_GetCustomAttributesDataInternal_mA4D57D5AF94FF74220D85C27DEAD3C6A7B522500_ftn)mscorlib::System::MonoCustomAttrs::GetCustomAttributesDataInternal) (___obj0);
}
// System.Collections.Generic.IList`1<System.Reflection.CustomAttributeData> System.MonoCustomAttrs::GetCustomAttributesData(System.Reflection.ICustomAttributeProvider)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* MonoCustomAttrs_GetCustomAttributesData_mAB4CAB0551B8FBEC9877A3093A379242C54D8632 (RuntimeObject* ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoCustomAttrs_GetCustomAttributesData_mAB4CAB0551B8FBEC9877A3093A379242C54D8632_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___obj0;
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, _stringLiteral9B5C0B859FABA061DD60FD8070FCE74FCEE29D0B, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, MonoCustomAttrs_GetCustomAttributesData_mAB4CAB0551B8FBEC9877A3093A379242C54D8632_RuntimeMethod_var);
}
IL_000e:
{
RuntimeObject* L_2 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
CustomAttributeDataU5BU5D_tE5B7BD0F5BF214F2158089D8B3FDA19FE1834BEB* L_3 = MonoCustomAttrs_GetCustomAttributesDataInternal_mA4D57D5AF94FF74220D85C27DEAD3C6A7B522500(L_2, /*hidden argument*/NULL);
ReadOnlyCollection_1_tDD4D93FFE40A14E74D1B366764AABCE0121ED99F * L_4 = Array_AsReadOnly_TisCustomAttributeData_t2CD9D78F97B6517D5DEE35DEE97159B02C078F88_m30364FCF20CF26279523189E6647C3D40B0BBB7E(L_3, /*hidden argument*/Array_AsReadOnly_TisCustomAttributeData_t2CD9D78F97B6517D5DEE35DEE97159B02C078F88_m30364FCF20CF26279523189E6647C3D40B0BBB7E_RuntimeMethod_var);
return L_4;
}
}
// System.Boolean System.MonoCustomAttrs::IsDefined(System.Reflection.ICustomAttributeProvider,System.Type,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR bool MonoCustomAttrs_IsDefined_m9AFDDAF3585947E9D03C1AB992DF1011D7CB0CF4 (RuntimeObject* ___obj0, Type_t * ___attributeType1, bool ___inherit2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoCustomAttrs_IsDefined_m9AFDDAF3585947E9D03C1AB992DF1011D7CB0CF4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * V_0 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_1 = NULL;
int32_t V_2 = 0;
{
Type_t * L_0 = ___attributeType1;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0014;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteralEF46D75152852B41CC6121A161522C9643FFF123, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, MonoCustomAttrs_IsDefined_m9AFDDAF3585947E9D03C1AB992DF1011D7CB0CF4_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 *)NULL;
}
IL_0016:
{
RuntimeObject* L_3 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
bool L_4 = MonoCustomAttrs_IsUserCattrProvider_m9B868B5F0A99FE40FD0CC0387036A0E9BBB75932(L_3, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_0027;
}
}
{
RuntimeObject* L_5 = ___obj0;
Type_t * L_6 = ___attributeType1;
bool L_7 = ___inherit2;
NullCheck(L_5);
bool L_8 = InterfaceFuncInvoker2< bool, Type_t *, bool >::Invoke(1 /* System.Boolean System.Reflection.ICustomAttributeProvider::IsDefined(System.Type,System.Boolean) */, ICustomAttributeProvider_tA83E69D2C560A6EF8DDA8C438BD4C80C2EA03D55_il2cpp_TypeInfo_var, L_5, L_6, L_7);
return L_8;
}
IL_0027:
{
RuntimeObject* L_9 = ___obj0;
Type_t * L_10 = ___attributeType1;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
bool L_11 = MonoCustomAttrs_IsDefinedInternal_mCAD7B5C69738393BD3509E8CBFDC8D37AE540700(L_9, L_10, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_0032;
}
}
{
return (bool)1;
}
IL_0032:
{
RuntimeObject* L_12 = ___obj0;
Type_t * L_13 = ___attributeType1;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_14 = MonoCustomAttrs_GetPseudoCustomAttributes_m0D01BF6CDDC677D096E44DC0F32136E4D3812DE9(L_12, L_13, /*hidden argument*/NULL);
V_1 = L_14;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_15 = V_1;
if (!L_15)
{
goto IL_005d;
}
}
{
V_2 = 0;
goto IL_0057;
}
IL_0041:
{
Type_t * L_16 = ___attributeType1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_17 = V_1;
int32_t L_18 = V_2;
NullCheck(L_17);
int32_t L_19 = L_18;
RuntimeObject * L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
NullCheck(L_20);
Type_t * L_21 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_20, /*hidden argument*/NULL);
NullCheck(L_16);
bool L_22 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_16, L_21);
if (!L_22)
{
goto IL_0053;
}
}
{
return (bool)1;
}
IL_0053:
{
int32_t L_23 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1));
}
IL_0057:
{
int32_t L_24 = V_2;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_25 = V_1;
NullCheck(L_25);
if ((((int32_t)L_24) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_25)->max_length)))))))
{
goto IL_0041;
}
}
IL_005d:
{
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_26 = V_0;
if (L_26)
{
goto IL_0076;
}
}
{
bool L_27 = ___inherit2;
if (L_27)
{
goto IL_0065;
}
}
{
return (bool)0;
}
IL_0065:
{
Type_t * L_28 = ___attributeType1;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_29 = MonoCustomAttrs_RetrieveAttributeUsage_m229824E6B6B43362F51318A23656CCA20729B39F(L_28, /*hidden argument*/NULL);
V_0 = L_29;
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_30 = V_0;
NullCheck(L_30);
bool L_31 = AttributeUsageAttribute_get_Inherited_mE46032EFECAED37FA15BCEE3384DFA4E9868024F(L_30, /*hidden argument*/NULL);
if (L_31)
{
goto IL_0076;
}
}
{
return (bool)0;
}
IL_0076:
{
RuntimeObject* L_32 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
RuntimeObject* L_33 = MonoCustomAttrs_GetBase_m14B26004C94018740FB8627C7FE3383E16E3BD5F(L_32, /*hidden argument*/NULL);
___obj0 = L_33;
RuntimeObject* L_34 = ___obj0;
if (L_34)
{
goto IL_0016;
}
}
{
return (bool)0;
}
}
// System.Boolean System.MonoCustomAttrs::IsDefinedInternal(System.Reflection.ICustomAttributeProvider,System.Type)
extern "C" IL2CPP_METHOD_ATTR bool MonoCustomAttrs_IsDefinedInternal_mCAD7B5C69738393BD3509E8CBFDC8D37AE540700 (RuntimeObject* ___obj0, Type_t * ___AttributeType1, const RuntimeMethod* method)
{
typedef bool (*MonoCustomAttrs_IsDefinedInternal_mCAD7B5C69738393BD3509E8CBFDC8D37AE540700_ftn) (RuntimeObject*, Type_t *);
using namespace il2cpp::icalls;
return ((MonoCustomAttrs_IsDefinedInternal_mCAD7B5C69738393BD3509E8CBFDC8D37AE540700_ftn)mscorlib::System::MonoCustomAttrs::IsDefinedInternal) (___obj0, ___AttributeType1);
}
// System.Reflection.PropertyInfo System.MonoCustomAttrs::GetBasePropertyDefinition(System.Reflection.MonoProperty)
extern "C" IL2CPP_METHOD_ATTR PropertyInfo_t * MonoCustomAttrs_GetBasePropertyDefinition_mE4F385A4AAB21725646424F839451ACE328562D8 (MonoProperty_t * ___property0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoCustomAttrs_GetBasePropertyDefinition_mE4F385A4AAB21725646424F839451ACE328562D8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MethodInfo_t * V_0 = NULL;
MethodInfo_t * V_1 = NULL;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* V_2 = NULL;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_3 = NULL;
int32_t V_4 = 0;
{
MonoProperty_t * L_0 = ___property0;
NullCheck(L_0);
MethodInfo_t * L_1 = VirtFuncInvoker1< MethodInfo_t *, bool >::Invoke(21 /* System.Reflection.MethodInfo System.Reflection.PropertyInfo::GetGetMethod(System.Boolean) */, L_0, (bool)1);
V_0 = L_1;
MethodInfo_t * L_2 = V_0;
bool L_3 = MethodInfo_op_Equality_m1E51FB51169B9B8FB3120ED5F9B454785932C5D0(L_2, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (L_3)
{
goto IL_0019;
}
}
{
MethodInfo_t * L_4 = V_0;
NullCheck(L_4);
bool L_5 = MethodBase_get_IsVirtual_m60B52F086B75D675CAB423C351C3B0CA062675F4(L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0021;
}
}
IL_0019:
{
MonoProperty_t * L_6 = ___property0;
NullCheck(L_6);
MethodInfo_t * L_7 = VirtFuncInvoker1< MethodInfo_t *, bool >::Invoke(23 /* System.Reflection.MethodInfo System.Reflection.PropertyInfo::GetSetMethod(System.Boolean) */, L_6, (bool)1);
V_0 = L_7;
}
IL_0021:
{
MethodInfo_t * L_8 = V_0;
bool L_9 = MethodInfo_op_Equality_m1E51FB51169B9B8FB3120ED5F9B454785932C5D0(L_8, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (L_9)
{
goto IL_0032;
}
}
{
MethodInfo_t * L_10 = V_0;
NullCheck(L_10);
bool L_11 = MethodBase_get_IsVirtual_m60B52F086B75D675CAB423C351C3B0CA062675F4(L_10, /*hidden argument*/NULL);
if (L_11)
{
goto IL_0034;
}
}
IL_0032:
{
return (PropertyInfo_t *)NULL;
}
IL_0034:
{
MethodInfo_t * L_12 = V_0;
NullCheck(L_12);
MethodInfo_t * L_13 = VirtFuncInvoker0< MethodInfo_t * >::Invoke(41 /* System.Reflection.MethodInfo System.Reflection.MethodInfo::GetBaseMethod() */, L_12);
V_1 = L_13;
MethodInfo_t * L_14 = V_1;
bool L_15 = MethodInfo_op_Inequality_m76AC38C8B8FB8F28C21E6F9A3F0268FF8E4CC237(L_14, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_00b4;
}
}
{
MethodInfo_t * L_16 = V_1;
MethodInfo_t * L_17 = V_0;
bool L_18 = MethodInfo_op_Inequality_m76AC38C8B8FB8F28C21E6F9A3F0268FF8E4CC237(L_16, L_17, /*hidden argument*/NULL);
if (!L_18)
{
goto IL_00b4;
}
}
{
MonoProperty_t * L_19 = ___property0;
NullCheck(L_19);
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_20 = VirtFuncInvoker0< ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* >::Invoke(22 /* System.Reflection.ParameterInfo[] System.Reflection.PropertyInfo::GetIndexParameters() */, L_19);
V_2 = L_20;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_21 = V_2;
if (!L_21)
{
goto IL_009c;
}
}
{
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_22 = V_2;
NullCheck(L_22);
if (!(((RuntimeArray *)L_22)->max_length))
{
goto IL_009c;
}
}
{
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_23 = V_2;
NullCheck(L_23);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_24 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_23)->max_length)))));
V_3 = L_24;
V_4 = 0;
goto IL_007c;
}
IL_0069:
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_25 = V_3;
int32_t L_26 = V_4;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_27 = V_2;
int32_t L_28 = V_4;
NullCheck(L_27);
int32_t L_29 = L_28;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_30 = (L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_29));
NullCheck(L_30);
Type_t * L_31 = VirtFuncInvoker0< Type_t * >::Invoke(7 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_30);
NullCheck(L_25);
ArrayElementTypeCheck (L_25, L_31);
(L_25)->SetAt(static_cast<il2cpp_array_size_t>(L_26), (Type_t *)L_31);
int32_t L_32 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)1));
}
IL_007c:
{
int32_t L_33 = V_4;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_34 = V_3;
NullCheck(L_34);
if ((((int32_t)L_33) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_34)->max_length)))))))
{
goto IL_0069;
}
}
{
MethodInfo_t * L_35 = V_1;
NullCheck(L_35);
Type_t * L_36 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_35);
MonoProperty_t * L_37 = ___property0;
NullCheck(L_37);
String_t* L_38 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_37);
MonoProperty_t * L_39 = ___property0;
NullCheck(L_39);
Type_t * L_40 = VirtFuncInvoker0< Type_t * >::Invoke(19 /* System.Type System.Reflection.PropertyInfo::get_PropertyType() */, L_39);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_41 = V_3;
NullCheck(L_36);
PropertyInfo_t * L_42 = Type_GetProperty_m6F2C962FDCCD4966698E40A631F8DD9F4BF5A1C0(L_36, L_38, L_40, L_41, /*hidden argument*/NULL);
return L_42;
}
IL_009c:
{
MethodInfo_t * L_43 = V_1;
NullCheck(L_43);
Type_t * L_44 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_43);
MonoProperty_t * L_45 = ___property0;
NullCheck(L_45);
String_t* L_46 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_45);
MonoProperty_t * L_47 = ___property0;
NullCheck(L_47);
Type_t * L_48 = VirtFuncInvoker0< Type_t * >::Invoke(19 /* System.Type System.Reflection.PropertyInfo::get_PropertyType() */, L_47);
NullCheck(L_44);
PropertyInfo_t * L_49 = Type_GetProperty_mB92E711C0B593302FC700804ECB78B45932E12B3(L_44, L_46, L_48, /*hidden argument*/NULL);
return L_49;
}
IL_00b4:
{
return (PropertyInfo_t *)NULL;
}
}
// System.Reflection.EventInfo System.MonoCustomAttrs::GetBaseEventDefinition(System.Reflection.MonoEvent)
extern "C" IL2CPP_METHOD_ATTR EventInfo_t * MonoCustomAttrs_GetBaseEventDefinition_mB663428AC56D3B5530449230B5060FC157F25F2D (MonoEvent_t * ___evt0, const RuntimeMethod* method)
{
MethodInfo_t * V_0 = NULL;
MethodInfo_t * V_1 = NULL;
int32_t V_2 = 0;
int32_t G_B14_0 = 0;
int32_t G_B16_0 = 0;
int32_t G_B15_0 = 0;
int32_t G_B17_0 = 0;
int32_t G_B17_1 = 0;
{
MonoEvent_t * L_0 = ___evt0;
NullCheck(L_0);
MethodInfo_t * L_1 = VirtFuncInvoker1< MethodInfo_t *, bool >::Invoke(17 /* System.Reflection.MethodInfo System.Reflection.EventInfo::GetAddMethod(System.Boolean) */, L_0, (bool)1);
V_0 = L_1;
MethodInfo_t * L_2 = V_0;
bool L_3 = MethodInfo_op_Equality_m1E51FB51169B9B8FB3120ED5F9B454785932C5D0(L_2, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (L_3)
{
goto IL_0019;
}
}
{
MethodInfo_t * L_4 = V_0;
NullCheck(L_4);
bool L_5 = MethodBase_get_IsVirtual_m60B52F086B75D675CAB423C351C3B0CA062675F4(L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0021;
}
}
IL_0019:
{
MonoEvent_t * L_6 = ___evt0;
NullCheck(L_6);
MethodInfo_t * L_7 = VirtFuncInvoker1< MethodInfo_t *, bool >::Invoke(18 /* System.Reflection.MethodInfo System.Reflection.EventInfo::GetRaiseMethod(System.Boolean) */, L_6, (bool)1);
V_0 = L_7;
}
IL_0021:
{
MethodInfo_t * L_8 = V_0;
bool L_9 = MethodInfo_op_Equality_m1E51FB51169B9B8FB3120ED5F9B454785932C5D0(L_8, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (L_9)
{
goto IL_0032;
}
}
{
MethodInfo_t * L_10 = V_0;
NullCheck(L_10);
bool L_11 = MethodBase_get_IsVirtual_m60B52F086B75D675CAB423C351C3B0CA062675F4(L_10, /*hidden argument*/NULL);
if (L_11)
{
goto IL_003a;
}
}
IL_0032:
{
MonoEvent_t * L_12 = ___evt0;
NullCheck(L_12);
MethodInfo_t * L_13 = VirtFuncInvoker1< MethodInfo_t *, bool >::Invoke(19 /* System.Reflection.MethodInfo System.Reflection.EventInfo::GetRemoveMethod(System.Boolean) */, L_12, (bool)1);
V_0 = L_13;
}
IL_003a:
{
MethodInfo_t * L_14 = V_0;
bool L_15 = MethodInfo_op_Equality_m1E51FB51169B9B8FB3120ED5F9B454785932C5D0(L_14, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (L_15)
{
goto IL_004b;
}
}
{
MethodInfo_t * L_16 = V_0;
NullCheck(L_16);
bool L_17 = MethodBase_get_IsVirtual_m60B52F086B75D675CAB423C351C3B0CA062675F4(L_16, /*hidden argument*/NULL);
if (L_17)
{
goto IL_004d;
}
}
IL_004b:
{
return (EventInfo_t *)NULL;
}
IL_004d:
{
MethodInfo_t * L_18 = V_0;
NullCheck(L_18);
MethodInfo_t * L_19 = VirtFuncInvoker0< MethodInfo_t * >::Invoke(41 /* System.Reflection.MethodInfo System.Reflection.MethodInfo::GetBaseMethod() */, L_18);
V_1 = L_19;
MethodInfo_t * L_20 = V_1;
bool L_21 = MethodInfo_op_Inequality_m76AC38C8B8FB8F28C21E6F9A3F0268FF8E4CC237(L_20, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (!L_21)
{
goto IL_0097;
}
}
{
MethodInfo_t * L_22 = V_1;
MethodInfo_t * L_23 = V_0;
bool L_24 = MethodInfo_op_Inequality_m76AC38C8B8FB8F28C21E6F9A3F0268FF8E4CC237(L_22, L_23, /*hidden argument*/NULL);
if (!L_24)
{
goto IL_0097;
}
}
{
MethodInfo_t * L_25 = V_0;
NullCheck(L_25);
bool L_26 = MethodBase_get_IsPublic_m9DCA641DBE6F06D0DC4A4B2828641A6DEA97F88B(L_25, /*hidden argument*/NULL);
if (L_26)
{
goto IL_0072;
}
}
{
G_B14_0 = ((int32_t)32);
goto IL_0074;
}
IL_0072:
{
G_B14_0 = ((int32_t)16);
}
IL_0074:
{
V_2 = G_B14_0;
int32_t L_27 = V_2;
MethodInfo_t * L_28 = V_0;
NullCheck(L_28);
bool L_29 = MethodBase_get_IsStatic_m745A9BDA4869DB7CC4886436C52D34855C1270A5(L_28, /*hidden argument*/NULL);
G_B15_0 = L_27;
if (L_29)
{
G_B16_0 = L_27;
goto IL_0081;
}
}
{
G_B17_0 = 4;
G_B17_1 = G_B15_0;
goto IL_0082;
}
IL_0081:
{
G_B17_0 = 8;
G_B17_1 = G_B16_0;
}
IL_0082:
{
V_2 = ((int32_t)((int32_t)G_B17_1|(int32_t)G_B17_0));
MethodInfo_t * L_30 = V_1;
NullCheck(L_30);
Type_t * L_31 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_30);
MonoEvent_t * L_32 = ___evt0;
NullCheck(L_32);
String_t* L_33 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_32);
int32_t L_34 = V_2;
NullCheck(L_31);
EventInfo_t * L_35 = VirtFuncInvoker2< EventInfo_t *, String_t*, int32_t >::Invoke(45 /* System.Reflection.EventInfo System.Type::GetEvent(System.String,System.Reflection.BindingFlags) */, L_31, L_33, L_34);
return L_35;
}
IL_0097:
{
return (EventInfo_t *)NULL;
}
}
// System.Reflection.ICustomAttributeProvider System.MonoCustomAttrs::GetBase(System.Reflection.ICustomAttributeProvider)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* MonoCustomAttrs_GetBase_m14B26004C94018740FB8627C7FE3383E16E3BD5F (RuntimeObject* ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoCustomAttrs_GetBase_m14B26004C94018740FB8627C7FE3383E16E3BD5F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MethodInfo_t * V_0 = NULL;
MethodInfo_t * V_1 = NULL;
{
RuntimeObject* L_0 = ___obj0;
if (L_0)
{
goto IL_0005;
}
}
{
return (RuntimeObject*)NULL;
}
IL_0005:
{
RuntimeObject* L_1 = ___obj0;
if (!((Type_t *)IsInstClass((RuntimeObject*)L_1, Type_t_il2cpp_TypeInfo_var)))
{
goto IL_0019;
}
}
{
RuntimeObject* L_2 = ___obj0;
NullCheck(((Type_t *)CastclassClass((RuntimeObject*)L_2, Type_t_il2cpp_TypeInfo_var)));
Type_t * L_3 = VirtFuncInvoker0< Type_t * >::Invoke(29 /* System.Type System.Type::get_BaseType() */, ((Type_t *)CastclassClass((RuntimeObject*)L_2, Type_t_il2cpp_TypeInfo_var)));
return L_3;
}
IL_0019:
{
V_0 = (MethodInfo_t *)NULL;
RuntimeObject* L_4 = ___obj0;
if (!((MonoProperty_t *)IsInstClass((RuntimeObject*)L_4, MonoProperty_t_il2cpp_TypeInfo_var)))
{
goto IL_002f;
}
}
{
RuntimeObject* L_5 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
PropertyInfo_t * L_6 = MonoCustomAttrs_GetBasePropertyDefinition_mE4F385A4AAB21725646424F839451ACE328562D8(((MonoProperty_t *)CastclassClass((RuntimeObject*)L_5, MonoProperty_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
return L_6;
}
IL_002f:
{
RuntimeObject* L_7 = ___obj0;
if (!((MonoEvent_t *)IsInstSealed((RuntimeObject*)L_7, MonoEvent_t_il2cpp_TypeInfo_var)))
{
goto IL_0043;
}
}
{
RuntimeObject* L_8 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
EventInfo_t * L_9 = MonoCustomAttrs_GetBaseEventDefinition_mB663428AC56D3B5530449230B5060FC157F25F2D(((MonoEvent_t *)CastclassSealed((RuntimeObject*)L_8, MonoEvent_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
return L_9;
}
IL_0043:
{
RuntimeObject* L_10 = ___obj0;
if (!((MonoMethod_t *)IsInstClass((RuntimeObject*)L_10, MonoMethod_t_il2cpp_TypeInfo_var)))
{
goto IL_0052;
}
}
{
RuntimeObject* L_11 = ___obj0;
V_0 = ((MethodInfo_t *)CastclassClass((RuntimeObject*)L_11, MethodInfo_t_il2cpp_TypeInfo_var));
}
IL_0052:
{
MethodInfo_t * L_12 = V_0;
bool L_13 = MethodInfo_op_Equality_m1E51FB51169B9B8FB3120ED5F9B454785932C5D0(L_12, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
if (L_13)
{
goto IL_0063;
}
}
{
MethodInfo_t * L_14 = V_0;
NullCheck(L_14);
bool L_15 = MethodBase_get_IsVirtual_m60B52F086B75D675CAB423C351C3B0CA062675F4(L_14, /*hidden argument*/NULL);
if (L_15)
{
goto IL_0065;
}
}
IL_0063:
{
return (RuntimeObject*)NULL;
}
IL_0065:
{
MethodInfo_t * L_16 = V_0;
NullCheck(L_16);
MethodInfo_t * L_17 = VirtFuncInvoker0< MethodInfo_t * >::Invoke(41 /* System.Reflection.MethodInfo System.Reflection.MethodInfo::GetBaseMethod() */, L_16);
V_1 = L_17;
MethodInfo_t * L_18 = V_1;
MethodInfo_t * L_19 = V_0;
bool L_20 = MethodInfo_op_Equality_m1E51FB51169B9B8FB3120ED5F9B454785932C5D0(L_18, L_19, /*hidden argument*/NULL);
if (!L_20)
{
goto IL_0077;
}
}
{
return (RuntimeObject*)NULL;
}
IL_0077:
{
MethodInfo_t * L_21 = V_1;
return L_21;
}
}
// System.AttributeUsageAttribute System.MonoCustomAttrs::RetrieveAttributeUsageNoCache(System.Type)
extern "C" IL2CPP_METHOD_ATTR AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * MonoCustomAttrs_RetrieveAttributeUsageNoCache_m1218D6C313469F040577C11FCCAB830B29806949 (Type_t * ___attributeType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoCustomAttrs_RetrieveAttributeUsageNoCache_m1218D6C313469F040577C11FCCAB830B29806949_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * V_0 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_1 = NULL;
{
Type_t * L_0 = ___attributeType0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388_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);
bool L_3 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0019;
}
}
{
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_4 = (AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 *)il2cpp_codegen_object_new(AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388_il2cpp_TypeInfo_var);
AttributeUsageAttribute__ctor_mC429C14AB95A0097160F40CE859CC1894C406051(L_4, 4, /*hidden argument*/NULL);
return L_4;
}
IL_0019:
{
V_0 = (AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 *)NULL;
Type_t * L_5 = ___attributeType0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388_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);
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = MonoCustomAttrs_GetCustomAttributes_m1FD79FB099EEB9D47077C17F9496F4E17AD97115(L_5, L_7, (bool)0, /*hidden argument*/NULL);
V_1 = L_8;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = V_1;
NullCheck(L_9);
if ((((RuntimeArray *)L_9)->max_length))
{
goto IL_0056;
}
}
{
Type_t * L_10 = ___attributeType0;
NullCheck(L_10);
Type_t * L_11 = VirtFuncInvoker0< Type_t * >::Invoke(29 /* System.Type System.Type::get_BaseType() */, L_10);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_12 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_11, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_004b;
}
}
{
Type_t * L_13 = ___attributeType0;
NullCheck(L_13);
Type_t * L_14 = VirtFuncInvoker0< Type_t * >::Invoke(29 /* System.Type System.Type::get_BaseType() */, L_13);
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_15 = MonoCustomAttrs_RetrieveAttributeUsage_m229824E6B6B43362F51318A23656CCA20729B39F(L_14, /*hidden argument*/NULL);
V_0 = L_15;
}
IL_004b:
{
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_16 = V_0;
if (!L_16)
{
goto IL_0050;
}
}
{
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_17 = V_0;
return L_17;
}
IL_0050:
{
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_18 = ((MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_StaticFields*)il2cpp_codegen_static_fields_for(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var))->get_DefaultAttributeUsage_2();
return L_18;
}
IL_0056:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_19 = V_1;
NullCheck(L_19);
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_19)->max_length))))) <= ((int32_t)1)))
{
goto IL_0067;
}
}
{
FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * L_20 = (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC *)il2cpp_codegen_object_new(FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var);
FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14(L_20, _stringLiteral106347FA01CECDD3F27627F13CD2F8689DDAEB49, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, NULL, MonoCustomAttrs_RetrieveAttributeUsageNoCache_m1218D6C313469F040577C11FCCAB830B29806949_RuntimeMethod_var);
}
IL_0067:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_21 = V_1;
NullCheck(L_21);
int32_t L_22 = 0;
RuntimeObject * L_23 = (L_21)->GetAt(static_cast<il2cpp_array_size_t>(L_22));
return ((AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 *)CastclassSealed((RuntimeObject*)L_23, AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388_il2cpp_TypeInfo_var));
}
}
// System.AttributeUsageAttribute System.MonoCustomAttrs::RetrieveAttributeUsage(System.Type)
extern "C" IL2CPP_METHOD_ATTR AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * MonoCustomAttrs_RetrieveAttributeUsage_m229824E6B6B43362F51318A23656CCA20729B39F (Type_t * ___attributeType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoCustomAttrs_RetrieveAttributeUsage_m229824E6B6B43362F51318A23656CCA20729B39F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * V_0 = NULL;
{
V_0 = (AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 *)NULL;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236 * L_0 = ((MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var))->get_usage_cache_1();
if (L_0)
{
goto IL_0013;
}
}
{
Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236 * L_1 = (Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236 *)il2cpp_codegen_object_new(Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236_il2cpp_TypeInfo_var);
Dictionary_2__ctor_m75E41D2EE0C3109FBF9ACDBB01D255B7BB0A5C4E(L_1, /*hidden argument*/Dictionary_2__ctor_m75E41D2EE0C3109FBF9ACDBB01D255B7BB0A5C4E_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
((MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var))->set_usage_cache_1(L_1);
}
IL_0013:
{
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236 * L_2 = ((MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var))->get_usage_cache_1();
Type_t * L_3 = ___attributeType0;
NullCheck(L_2);
bool L_4 = Dictionary_2_TryGetValue_mCF45E61BB80AB25D2060B3C4F73161D47C8CEE56(L_2, L_3, (AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 **)(&V_0), /*hidden argument*/Dictionary_2_TryGetValue_mCF45E61BB80AB25D2060B3C4F73161D47C8CEE56_RuntimeMethod_var);
if (!L_4)
{
goto IL_0024;
}
}
{
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_5 = V_0;
return L_5;
}
IL_0024:
{
Type_t * L_6 = ___attributeType0;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var);
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_7 = MonoCustomAttrs_RetrieveAttributeUsageNoCache_m1218D6C313469F040577C11FCCAB830B29806949(L_6, /*hidden argument*/NULL);
V_0 = L_7;
Dictionary_2_t10ABF562FF47B327563169FBB750047BF1341236 * L_8 = ((MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var))->get_usage_cache_1();
Type_t * L_9 = ___attributeType0;
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_10 = V_0;
NullCheck(L_8);
Dictionary_2_set_Item_mD180D4FC3F0C1345E889F4BDC76AE4AE4F7D3D2F(L_8, L_9, L_10, /*hidden argument*/Dictionary_2_set_Item_mD180D4FC3F0C1345E889F4BDC76AE4AE4F7D3D2F_RuntimeMethod_var);
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_11 = V_0;
return L_11;
}
}
// System.Void System.MonoCustomAttrs::.cctor()
extern "C" IL2CPP_METHOD_ATTR void MonoCustomAttrs__cctor_m095035BF9D3044644C6BB85C3FE34E186A7A779C (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoCustomAttrs__cctor_m095035BF9D3044644C6BB85C3FE34E186A7A779C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_0 = (AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 *)il2cpp_codegen_object_new(AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388_il2cpp_TypeInfo_var);
AttributeUsageAttribute__ctor_mC429C14AB95A0097160F40CE859CC1894C406051(L_0, ((int32_t)32767), /*hidden argument*/NULL);
((MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_StaticFields*)il2cpp_codegen_static_fields_for(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var))->set_DefaultAttributeUsage_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 System.MonoCustomAttrs_AttributeInfo::.ctor(System.AttributeUsageAttribute,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void AttributeInfo__ctor_mB43DF2481E1EE03052137FEB5EADDDF71F935BFF (AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A * __this, AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * ___usage0, int32_t ___inheritanceLevel1, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_0 = ___usage0;
__this->set__usage_0(L_0);
int32_t L_1 = ___inheritanceLevel1;
__this->set__inheritanceLevel_1(L_1);
return;
}
}
// System.AttributeUsageAttribute System.MonoCustomAttrs_AttributeInfo::get_Usage()
extern "C" IL2CPP_METHOD_ATTR AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * AttributeInfo_get_Usage_mC0CA19AEB050A11C3E89E5A015E204AB9D51F4A0 (AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A * __this, const RuntimeMethod* method)
{
{
AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_0 = __this->get__usage_0();
return L_0;
}
}
// System.Int32 System.MonoCustomAttrs_AttributeInfo::get_InheritanceLevel()
extern "C" IL2CPP_METHOD_ATTR int32_t AttributeInfo_get_InheritanceLevel_mDC293DDDC43F613FBBA304C3A5FDC63AB3961AAD (AttributeInfo_t03612660D52EF536A548174E3C1CC246B848E91A * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__inheritanceLevel_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 System.MonoLimitationAttribute::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void MonoLimitationAttribute__ctor_m75D47CA8274696C7FF8A791918CF21A307CB2181 (MonoLimitationAttribute_t60914056F9C7FD1017B4187D3C41E5D199C362E4 * __this, String_t* ___comment0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___comment0;
MonoTODOAttribute__ctor_mC199F774DE64B70BD4A1611D55857310A3D7E9E9(__this, L_0, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.MonoTODOAttribute::.ctor()
extern "C" IL2CPP_METHOD_ATTR void MonoTODOAttribute__ctor_mFA81611291B4A07FF5D55700C914A81D674B881D (MonoTODOAttribute_t0D37CE020492CC4F1A620F173C52E5780E2A9666 * __this, const RuntimeMethod* method)
{
{
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.MonoTODOAttribute::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void MonoTODOAttribute__ctor_mC199F774DE64B70BD4A1611D55857310A3D7E9E9 (MonoTODOAttribute_t0D37CE020492CC4F1A620F173C52E5780E2A9666 * __this, String_t* ___comment0, const RuntimeMethod* method)
{
{
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
String_t* L_0 = ___comment0;
__this->set_comment_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
#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: System.MonoTypeInfo
extern "C" void MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D_marshal_pinvoke(const MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D& unmarshaled, MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D_marshaled_pinvoke& marshaled)
{
Exception_t* ___default_ctor_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'default_ctor' of type 'MonoTypeInfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___default_ctor_1Exception, NULL, NULL);
}
extern "C" void MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D_marshal_pinvoke_back(const MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D_marshaled_pinvoke& marshaled, MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D& unmarshaled)
{
Exception_t* ___default_ctor_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'default_ctor' of type 'MonoTypeInfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___default_ctor_1Exception, NULL, NULL);
}
// Conversion method for clean up from marshalling of: System.MonoTypeInfo
extern "C" void MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D_marshal_pinvoke_cleanup(MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: System.MonoTypeInfo
extern "C" void MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D_marshal_com(const MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D& unmarshaled, MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D_marshaled_com& marshaled)
{
Exception_t* ___default_ctor_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'default_ctor' of type 'MonoTypeInfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___default_ctor_1Exception, NULL, NULL);
}
extern "C" void MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D_marshal_com_back(const MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D_marshaled_com& marshaled, MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D& unmarshaled)
{
Exception_t* ___default_ctor_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'default_ctor' of type 'MonoTypeInfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___default_ctor_1Exception, NULL, NULL);
}
// Conversion method for clean up from marshalling of: System.MonoTypeInfo
extern "C" void MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D_marshal_com_cleanup(MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D_marshaled_com& marshaled)
{
}
// System.Void System.MonoTypeInfo::.ctor()
extern "C" IL2CPP_METHOD_ATTR void MonoTypeInfo__ctor_mB3C8C989BCE5AA95EFF2C6ED45C8ACB28ABF3A46 (MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D * __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
// Conversion methods for marshalling of: System.MulticastDelegate
extern "C" void MulticastDelegate_t_marshal_pinvoke(const MulticastDelegate_t& unmarshaled, MulticastDelegate_t_marshaled_pinvoke& marshaled)
{
Exception_t* ___delegates_11Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'delegates' of type 'MulticastDelegate': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___delegates_11Exception, NULL, NULL);
}
extern "C" void MulticastDelegate_t_marshal_pinvoke_back(const MulticastDelegate_t_marshaled_pinvoke& marshaled, MulticastDelegate_t& unmarshaled)
{
Exception_t* ___delegates_11Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'delegates' of type 'MulticastDelegate': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___delegates_11Exception, NULL, NULL);
}
// Conversion method for clean up from marshalling of: System.MulticastDelegate
extern "C" void MulticastDelegate_t_marshal_pinvoke_cleanup(MulticastDelegate_t_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: System.MulticastDelegate
extern "C" void MulticastDelegate_t_marshal_com(const MulticastDelegate_t& unmarshaled, MulticastDelegate_t_marshaled_com& marshaled)
{
Exception_t* ___delegates_11Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'delegates' of type 'MulticastDelegate': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___delegates_11Exception, NULL, NULL);
}
extern "C" void MulticastDelegate_t_marshal_com_back(const MulticastDelegate_t_marshaled_com& marshaled, MulticastDelegate_t& unmarshaled)
{
Exception_t* ___delegates_11Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'delegates' of type 'MulticastDelegate': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___delegates_11Exception, NULL, NULL);
}
// Conversion method for clean up from marshalling of: System.MulticastDelegate
extern "C" void MulticastDelegate_t_marshal_com_cleanup(MulticastDelegate_t_marshaled_com& marshaled)
{
}
// System.Void System.MulticastDelegate::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
extern "C" IL2CPP_METHOD_ATTR void MulticastDelegate_GetObjectData_m37D67A6B6D200EFF1019834A247B31FEB3E1F2ED (MulticastDelegate_t * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
Delegate_GetObjectData_m4471B2DAE39E8F41977BAD88E2CDCA01217B2D71(__this, L_0, L_1, /*hidden argument*/NULL);
return;
}
}
// System.Boolean System.MulticastDelegate::Equals(System.Object)
extern "C" IL2CPP_METHOD_ATTR bool MulticastDelegate_Equals_mCC476453B26687950C1623E6944CA786A2DC9C49 (MulticastDelegate_t * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MulticastDelegate_Equals_mCC476453B26687950C1623E6944CA786A2DC9C49_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MulticastDelegate_t * V_0 = NULL;
int32_t V_1 = 0;
{
RuntimeObject * L_0 = ___obj0;
bool L_1 = Delegate_Equals_m3256FBF115534E4E8D5B83350AA95EC60D84899D(__this, L_0, /*hidden argument*/NULL);
if (L_1)
{
goto IL_000b;
}
}
{
return (bool)0;
}
IL_000b:
{
RuntimeObject * L_2 = ___obj0;
V_0 = ((MulticastDelegate_t *)IsInstClass((RuntimeObject*)L_2, MulticastDelegate_t_il2cpp_TypeInfo_var));
MulticastDelegate_t * L_3 = V_0;
if (L_3)
{
goto IL_0017;
}
}
{
return (bool)0;
}
IL_0017:
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_4 = __this->get_delegates_11();
if (L_4)
{
goto IL_0029;
}
}
{
MulticastDelegate_t * L_5 = V_0;
NullCheck(L_5);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_6 = L_5->get_delegates_11();
if (L_6)
{
goto IL_0029;
}
}
{
return (bool)1;
}
IL_0029:
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_7 = __this->get_delegates_11();
MulticastDelegate_t * L_8 = V_0;
NullCheck(L_8);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_9 = L_8->get_delegates_11();
if (!((int32_t)((int32_t)((((RuntimeObject*)(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86*)L_7) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0)^(int32_t)((((RuntimeObject*)(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86*)L_9) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0))))
{
goto IL_0040;
}
}
{
return (bool)0;
}
IL_0040:
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_10 = __this->get_delegates_11();
NullCheck(L_10);
MulticastDelegate_t * L_11 = V_0;
NullCheck(L_11);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_12 = L_11->get_delegates_11();
NullCheck(L_12);
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_10)->max_length))))) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_12)->max_length)))))))
{
goto IL_0054;
}
}
{
return (bool)0;
}
IL_0054:
{
V_1 = 0;
goto IL_0075;
}
IL_0058:
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_13 = __this->get_delegates_11();
int32_t L_14 = V_1;
NullCheck(L_13);
int32_t L_15 = L_14;
Delegate_t * L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
MulticastDelegate_t * L_17 = V_0;
NullCheck(L_17);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_18 = L_17->get_delegates_11();
int32_t L_19 = V_1;
NullCheck(L_18);
int32_t L_20 = L_19;
Delegate_t * L_21 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_20));
NullCheck(L_16);
bool L_22 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_16, L_21);
if (L_22)
{
goto IL_0071;
}
}
{
return (bool)0;
}
IL_0071:
{
int32_t L_23 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1));
}
IL_0075:
{
int32_t L_24 = V_1;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_25 = __this->get_delegates_11();
NullCheck(L_25);
if ((((int32_t)L_24) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_25)->max_length)))))))
{
goto IL_0058;
}
}
{
return (bool)1;
}
}
// System.Int32 System.MulticastDelegate::GetHashCode()
extern "C" IL2CPP_METHOD_ATTR int32_t MulticastDelegate_GetHashCode_m400B35977D895EA5CF640084595336635797FDCB (MulticastDelegate_t * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = Delegate_GetHashCode_m8FBCC6E42228A161DA710A330981B8E19BC6FABC(__this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Reflection.MethodInfo System.MulticastDelegate::GetMethodImpl()
extern "C" IL2CPP_METHOD_ATTR MethodInfo_t * MulticastDelegate_GetMethodImpl_m378AA9BDED60861F70D5CCFDF464046246008F53 (MulticastDelegate_t * __this, const RuntimeMethod* method)
{
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_0 = __this->get_delegates_11();
if (!L_0)
{
goto IL_001f;
}
}
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_1 = __this->get_delegates_11();
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_2 = __this->get_delegates_11();
NullCheck(L_2);
NullCheck(L_1);
int32_t L_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_2)->max_length)))), (int32_t)1));
Delegate_t * L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
NullCheck(L_4);
MethodInfo_t * L_5 = Delegate_get_Method_m0AC85D2B0C4CA63C471BC37FFDC3A5EA1E8ED048(L_4, /*hidden argument*/NULL);
return L_5;
}
IL_001f:
{
MethodInfo_t * L_6 = Delegate_GetMethodImpl_m804444FE22E0481DDB8A41E0E25114E744D76921(__this, /*hidden argument*/NULL);
return L_6;
}
}
// System.Delegate[] System.MulticastDelegate::GetInvocationList()
extern "C" IL2CPP_METHOD_ATTR DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* MulticastDelegate_GetInvocationList_m3B9C8F9FA6E7721D588ED947018372A96871EB97 (MulticastDelegate_t * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MulticastDelegate_GetInvocationList_m3B9C8F9FA6E7721D588ED947018372A96871EB97_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_0 = __this->get_delegates_11();
if (!L_0)
{
goto IL_0019;
}
}
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_1 = __this->get_delegates_11();
NullCheck((RuntimeArray *)(RuntimeArray *)L_1);
RuntimeObject * L_2 = Array_Clone_mE8C710213E323617A6F46F2B36DCDDD4C7CF5176((RuntimeArray *)(RuntimeArray *)L_1, /*hidden argument*/NULL);
return ((DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86*)Castclass((RuntimeObject*)L_2, DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86_il2cpp_TypeInfo_var));
}
IL_0019:
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_3 = (DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86*)SZArrayNew(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86_il2cpp_TypeInfo_var, (uint32_t)1);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_4 = L_3;
NullCheck(L_4);
ArrayElementTypeCheck (L_4, __this);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(0), (Delegate_t *)__this);
return L_4;
}
}
// System.Delegate System.MulticastDelegate::CombineImpl(System.Delegate)
extern "C" IL2CPP_METHOD_ATTR Delegate_t * MulticastDelegate_CombineImpl_m722E5D3AD0B2C04F4EDAD82FAFB0733CACAF28B9 (MulticastDelegate_t * __this, Delegate_t * ___follow0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MulticastDelegate_CombineImpl_m722E5D3AD0B2C04F4EDAD82FAFB0733CACAF28B9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MulticastDelegate_t * V_0 = NULL;
MulticastDelegate_t * V_1 = NULL;
{
Delegate_t * L_0 = ___follow0;
if (L_0)
{
goto IL_0005;
}
}
{
return __this;
}
IL_0005:
{
Delegate_t * L_1 = ___follow0;
V_0 = ((MulticastDelegate_t *)CastclassClass((RuntimeObject*)L_1, MulticastDelegate_t_il2cpp_TypeInfo_var));
MulticastDelegate_t * L_2 = Delegate_AllocDelegateLike_internal_m44C2E3D4E421F3F19058E691FEEB6EC054A92B3F(__this, /*hidden argument*/NULL);
V_1 = L_2;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_3 = __this->get_delegates_11();
if (L_3)
{
goto IL_003c;
}
}
{
MulticastDelegate_t * L_4 = V_0;
NullCheck(L_4);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_5 = L_4->get_delegates_11();
if (L_5)
{
goto IL_003c;
}
}
{
MulticastDelegate_t * L_6 = V_1;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_7 = (DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86*)SZArrayNew(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86_il2cpp_TypeInfo_var, (uint32_t)2);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_8 = L_7;
NullCheck(L_8);
ArrayElementTypeCheck (L_8, __this);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(0), (Delegate_t *)__this);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_9 = L_8;
MulticastDelegate_t * L_10 = V_0;
NullCheck(L_9);
ArrayElementTypeCheck (L_9, L_10);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(1), (Delegate_t *)L_10);
NullCheck(L_6);
L_6->set_delegates_11(L_9);
goto IL_0127;
}
IL_003c:
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_11 = __this->get_delegates_11();
if (L_11)
{
goto IL_0082;
}
}
{
MulticastDelegate_t * L_12 = V_1;
MulticastDelegate_t * L_13 = V_0;
NullCheck(L_13);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_14 = L_13->get_delegates_11();
NullCheck(L_14);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_15 = (DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86*)SZArrayNew(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add((int32_t)1, (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_14)->max_length)))))));
NullCheck(L_12);
L_12->set_delegates_11(L_15);
MulticastDelegate_t * L_16 = V_1;
NullCheck(L_16);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_17 = L_16->get_delegates_11();
NullCheck(L_17);
ArrayElementTypeCheck (L_17, __this);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(0), (Delegate_t *)__this);
MulticastDelegate_t * L_18 = V_0;
NullCheck(L_18);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_19 = L_18->get_delegates_11();
MulticastDelegate_t * L_20 = V_1;
NullCheck(L_20);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_21 = L_20->get_delegates_11();
MulticastDelegate_t * L_22 = V_0;
NullCheck(L_22);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_23 = L_22->get_delegates_11();
NullCheck(L_23);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_19, 0, (RuntimeArray *)(RuntimeArray *)L_21, 1, (((int32_t)((int32_t)(((RuntimeArray *)L_23)->max_length)))), /*hidden argument*/NULL);
goto IL_0127;
}
IL_0082:
{
MulticastDelegate_t * L_24 = V_0;
NullCheck(L_24);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_25 = L_24->get_delegates_11();
if (L_25)
{
goto IL_00ce;
}
}
{
MulticastDelegate_t * L_26 = V_1;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_27 = __this->get_delegates_11();
NullCheck(L_27);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_28 = (DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86*)SZArrayNew(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_27)->max_length)))), (int32_t)1)));
NullCheck(L_26);
L_26->set_delegates_11(L_28);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_29 = __this->get_delegates_11();
MulticastDelegate_t * L_30 = V_1;
NullCheck(L_30);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_31 = L_30->get_delegates_11();
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_32 = __this->get_delegates_11();
NullCheck(L_32);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_29, 0, (RuntimeArray *)(RuntimeArray *)L_31, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_32)->max_length)))), /*hidden argument*/NULL);
MulticastDelegate_t * L_33 = V_1;
NullCheck(L_33);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_34 = L_33->get_delegates_11();
MulticastDelegate_t * L_35 = V_1;
NullCheck(L_35);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_36 = L_35->get_delegates_11();
NullCheck(L_36);
MulticastDelegate_t * L_37 = V_0;
NullCheck(L_34);
ArrayElementTypeCheck (L_34, L_37);
(L_34)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_36)->max_length)))), (int32_t)1))), (Delegate_t *)L_37);
goto IL_0127;
}
IL_00ce:
{
MulticastDelegate_t * L_38 = V_1;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_39 = __this->get_delegates_11();
NullCheck(L_39);
MulticastDelegate_t * L_40 = V_0;
NullCheck(L_40);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_41 = L_40->get_delegates_11();
NullCheck(L_41);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_42 = (DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86*)SZArrayNew(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_39)->max_length)))), (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_41)->max_length)))))));
NullCheck(L_38);
L_38->set_delegates_11(L_42);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_43 = __this->get_delegates_11();
MulticastDelegate_t * L_44 = V_1;
NullCheck(L_44);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_45 = L_44->get_delegates_11();
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_46 = __this->get_delegates_11();
NullCheck(L_46);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_43, 0, (RuntimeArray *)(RuntimeArray *)L_45, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_46)->max_length)))), /*hidden argument*/NULL);
MulticastDelegate_t * L_47 = V_0;
NullCheck(L_47);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_48 = L_47->get_delegates_11();
MulticastDelegate_t * L_49 = V_1;
NullCheck(L_49);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_50 = L_49->get_delegates_11();
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_51 = __this->get_delegates_11();
NullCheck(L_51);
MulticastDelegate_t * L_52 = V_0;
NullCheck(L_52);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_53 = L_52->get_delegates_11();
NullCheck(L_53);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_48, 0, (RuntimeArray *)(RuntimeArray *)L_50, (((int32_t)((int32_t)(((RuntimeArray *)L_51)->max_length)))), (((int32_t)((int32_t)(((RuntimeArray *)L_53)->max_length)))), /*hidden argument*/NULL);
}
IL_0127:
{
MulticastDelegate_t * L_54 = V_1;
return L_54;
}
}
// System.Int32 System.MulticastDelegate::LastIndexOf(System.Delegate[],System.Delegate[])
extern "C" IL2CPP_METHOD_ATTR int32_t MulticastDelegate_LastIndexOf_mC8608A9B5AD9B47651893C1F9FD4EE93E883230D (MulticastDelegate_t * __this, DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* ___haystack0, DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* ___needle1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_0 = ___haystack0;
NullCheck(L_0);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_1 = ___needle1;
NullCheck(L_1);
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length))))) >= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_1)->max_length)))))))
{
goto IL_000a;
}
}
{
return (-1);
}
IL_000a:
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_2 = ___haystack0;
NullCheck(L_2);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_3 = ___needle1;
NullCheck(L_3);
if ((!(((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_2)->max_length))))) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_3)->max_length))))))))
{
goto IL_0031;
}
}
{
V_0 = 0;
goto IL_0029;
}
IL_0016:
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_4 = ___haystack0;
int32_t L_5 = V_0;
NullCheck(L_4);
int32_t L_6 = L_5;
Delegate_t * L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_8 = ___needle1;
int32_t L_9 = V_0;
NullCheck(L_8);
int32_t L_10 = L_9;
Delegate_t * L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
NullCheck(L_7);
bool L_12 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_7, L_11);
if (L_12)
{
goto IL_0025;
}
}
{
return (-1);
}
IL_0025:
{
int32_t L_13 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1));
}
IL_0029:
{
int32_t L_14 = V_0;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_15 = ___haystack0;
NullCheck(L_15);
if ((((int32_t)L_14) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_15)->max_length)))))))
{
goto IL_0016;
}
}
{
return 0;
}
IL_0031:
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_16 = ___haystack0;
NullCheck(L_16);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_17 = ___needle1;
NullCheck(L_17);
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_16)->max_length)))), (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_17)->max_length))))));
goto IL_0066;
}
IL_003b:
{
V_2 = 0;
goto IL_0053;
}
IL_003f:
{
int32_t L_18 = V_2;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_19 = ___needle1;
NullCheck(L_19);
if ((!(((uint32_t)L_18) == ((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_19)->max_length)))), (int32_t)1))))))
{
goto IL_004b;
}
}
{
int32_t L_20 = V_1;
int32_t L_21 = V_2;
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_20, (int32_t)L_21));
}
IL_004b:
{
int32_t L_22 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)1));
int32_t L_23 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1));
}
IL_0053:
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_24 = ___needle1;
int32_t L_25 = V_2;
NullCheck(L_24);
int32_t L_26 = L_25;
Delegate_t * L_27 = (L_24)->GetAt(static_cast<il2cpp_array_size_t>(L_26));
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_28 = ___haystack0;
int32_t L_29 = V_1;
NullCheck(L_28);
int32_t L_30 = L_29;
Delegate_t * L_31 = (L_28)->GetAt(static_cast<il2cpp_array_size_t>(L_30));
NullCheck(L_27);
bool L_32 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_27, L_31);
if (L_32)
{
goto IL_003f;
}
}
{
int32_t L_33 = V_1;
int32_t L_34 = V_2;
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_33, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_34, (int32_t)1))));
}
IL_0066:
{
int32_t L_35 = V_1;
if ((((int32_t)L_35) >= ((int32_t)0)))
{
goto IL_003b;
}
}
{
return (-1);
}
}
// System.Delegate System.MulticastDelegate::RemoveImpl(System.Delegate)
extern "C" IL2CPP_METHOD_ATTR Delegate_t * MulticastDelegate_RemoveImpl_mEC70774A4A3E151E86CE936D0A06829B79FCB547 (MulticastDelegate_t * __this, Delegate_t * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MulticastDelegate_RemoveImpl_mEC70774A4A3E151E86CE936D0A06829B79FCB547_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MulticastDelegate_t * V_0 = NULL;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* V_1 = NULL;
int32_t V_2 = 0;
Delegate_t * V_3 = NULL;
int32_t V_4 = 0;
MulticastDelegate_t * V_5 = NULL;
int32_t V_6 = 0;
MulticastDelegate_t * V_7 = NULL;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* G_B22_0 = NULL;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* G_B21_0 = NULL;
int32_t G_B23_0 = 0;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* G_B23_1 = NULL;
{
Delegate_t * L_0 = ___value0;
if (L_0)
{
goto IL_0005;
}
}
{
return __this;
}
IL_0005:
{
Delegate_t * L_1 = ___value0;
V_0 = ((MulticastDelegate_t *)CastclassClass((RuntimeObject*)L_1, MulticastDelegate_t_il2cpp_TypeInfo_var));
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_2 = __this->get_delegates_11();
if (L_2)
{
goto IL_0029;
}
}
{
MulticastDelegate_t * L_3 = V_0;
NullCheck(L_3);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_4 = L_3->get_delegates_11();
if (L_4)
{
goto IL_0029;
}
}
{
MulticastDelegate_t * L_5 = V_0;
bool L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, __this, L_5);
if (L_6)
{
goto IL_0027;
}
}
{
return __this;
}
IL_0027:
{
return (Delegate_t *)NULL;
}
IL_0029:
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_7 = __this->get_delegates_11();
if (L_7)
{
goto IL_0057;
}
}
{
MulticastDelegate_t * L_8 = V_0;
NullCheck(L_8);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_9 = L_8->get_delegates_11();
V_1 = L_9;
V_2 = 0;
goto IL_004f;
}
IL_003c:
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_10 = V_1;
int32_t L_11 = V_2;
NullCheck(L_10);
int32_t L_12 = L_11;
Delegate_t * L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
V_3 = L_13;
Delegate_t * L_14 = V_3;
bool L_15 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, __this, L_14);
if (!L_15)
{
goto IL_004b;
}
}
{
return (Delegate_t *)NULL;
}
IL_004b:
{
int32_t L_16 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_004f:
{
int32_t L_17 = V_2;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_18 = V_1;
NullCheck(L_18);
if ((((int32_t)L_17) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_18)->max_length)))))))
{
goto IL_003c;
}
}
{
return __this;
}
IL_0057:
{
MulticastDelegate_t * L_19 = V_0;
NullCheck(L_19);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_20 = L_19->get_delegates_11();
if (L_20)
{
goto IL_00fd;
}
}
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_21 = __this->get_delegates_11();
MulticastDelegate_t * L_22 = V_0;
int32_t L_23 = Array_LastIndexOf_TisDelegate_t_mEF3643667769C5E754C0DF7DD1B0C9D54E493C45(L_21, L_22, /*hidden argument*/Array_LastIndexOf_TisDelegate_t_mEF3643667769C5E754C0DF7DD1B0C9D54E493C45_RuntimeMethod_var);
V_4 = L_23;
int32_t L_24 = V_4;
if ((!(((uint32_t)L_24) == ((uint32_t)(-1)))))
{
goto IL_0077;
}
}
{
return __this;
}
IL_0077:
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_25 = __this->get_delegates_11();
NullCheck(L_25);
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_25)->max_length))))) > ((int32_t)1)))
{
goto IL_0088;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_26 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1F94EA1226068BD1B7EAA1B836A59C99979F579E(L_26, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_26, NULL, MulticastDelegate_RemoveImpl_mEC70774A4A3E151E86CE936D0A06829B79FCB547_RuntimeMethod_var);
}
IL_0088:
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_27 = __this->get_delegates_11();
NullCheck(L_27);
if ((!(((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_27)->max_length))))) == ((uint32_t)2))))
{
goto IL_00a3;
}
}
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_28 = __this->get_delegates_11();
int32_t L_29 = V_4;
G_B21_0 = L_28;
if (!L_29)
{
G_B22_0 = L_28;
goto IL_00a0;
}
}
{
G_B23_0 = 0;
G_B23_1 = G_B21_0;
goto IL_00a1;
}
IL_00a0:
{
G_B23_0 = 1;
G_B23_1 = G_B22_0;
}
IL_00a1:
{
NullCheck(G_B23_1);
int32_t L_30 = G_B23_0;
Delegate_t * L_31 = (G_B23_1)->GetAt(static_cast<il2cpp_array_size_t>(L_30));
return L_31;
}
IL_00a3:
{
MulticastDelegate_t * L_32 = Delegate_AllocDelegateLike_internal_m44C2E3D4E421F3F19058E691FEEB6EC054A92B3F(__this, /*hidden argument*/NULL);
V_5 = L_32;
MulticastDelegate_t * L_33 = V_5;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_34 = __this->get_delegates_11();
NullCheck(L_34);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_35 = (DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86*)SZArrayNew(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_34)->max_length)))), (int32_t)1)));
NullCheck(L_33);
L_33->set_delegates_11(L_35);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_36 = __this->get_delegates_11();
MulticastDelegate_t * L_37 = V_5;
NullCheck(L_37);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_38 = L_37->get_delegates_11();
int32_t L_39 = V_4;
Array_Copy_m2D96731C600DE8A167348CA8BA796344E64F7434((RuntimeArray *)(RuntimeArray *)L_36, (RuntimeArray *)(RuntimeArray *)L_38, L_39, /*hidden argument*/NULL);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_40 = __this->get_delegates_11();
int32_t L_41 = V_4;
MulticastDelegate_t * L_42 = V_5;
NullCheck(L_42);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_43 = L_42->get_delegates_11();
int32_t L_44 = V_4;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_45 = __this->get_delegates_11();
NullCheck(L_45);
int32_t L_46 = V_4;
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_40, ((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)1)), (RuntimeArray *)(RuntimeArray *)L_43, L_44, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_45)->max_length)))), (int32_t)L_46)), (int32_t)1)), /*hidden argument*/NULL);
MulticastDelegate_t * L_47 = V_5;
return L_47;
}
IL_00fd:
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_48 = __this->get_delegates_11();
MulticastDelegate_t * L_49 = V_0;
NullCheck(L_49);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_50 = L_49->get_delegates_11();
NullCheck((RuntimeObject *)(RuntimeObject *)L_48);
bool L_51 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)(RuntimeObject *)L_48, (RuntimeObject *)(RuntimeObject *)L_50);
if (!L_51)
{
goto IL_0112;
}
}
{
return (Delegate_t *)NULL;
}
IL_0112:
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_52 = __this->get_delegates_11();
MulticastDelegate_t * L_53 = V_0;
NullCheck(L_53);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_54 = L_53->get_delegates_11();
int32_t L_55 = MulticastDelegate_LastIndexOf_mC8608A9B5AD9B47651893C1F9FD4EE93E883230D(__this, L_52, L_54, /*hidden argument*/NULL);
V_6 = L_55;
int32_t L_56 = V_6;
if ((!(((uint32_t)L_56) == ((uint32_t)(-1)))))
{
goto IL_012d;
}
}
{
return __this;
}
IL_012d:
{
MulticastDelegate_t * L_57 = Delegate_AllocDelegateLike_internal_m44C2E3D4E421F3F19058E691FEEB6EC054A92B3F(__this, /*hidden argument*/NULL);
V_7 = L_57;
MulticastDelegate_t * L_58 = V_7;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_59 = __this->get_delegates_11();
NullCheck(L_59);
MulticastDelegate_t * L_60 = V_0;
NullCheck(L_60);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_61 = L_60->get_delegates_11();
NullCheck(L_61);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_62 = (DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86*)SZArrayNew(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_59)->max_length)))), (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_61)->max_length)))))));
NullCheck(L_58);
L_58->set_delegates_11(L_62);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_63 = __this->get_delegates_11();
MulticastDelegate_t * L_64 = V_7;
NullCheck(L_64);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_65 = L_64->get_delegates_11();
int32_t L_66 = V_6;
Array_Copy_m2D96731C600DE8A167348CA8BA796344E64F7434((RuntimeArray *)(RuntimeArray *)L_63, (RuntimeArray *)(RuntimeArray *)L_65, L_66, /*hidden argument*/NULL);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_67 = __this->get_delegates_11();
int32_t L_68 = V_6;
MulticastDelegate_t * L_69 = V_0;
NullCheck(L_69);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_70 = L_69->get_delegates_11();
NullCheck(L_70);
MulticastDelegate_t * L_71 = V_7;
NullCheck(L_71);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_72 = L_71->get_delegates_11();
int32_t L_73 = V_6;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_74 = __this->get_delegates_11();
NullCheck(L_74);
int32_t L_75 = V_6;
MulticastDelegate_t * L_76 = V_0;
NullCheck(L_76);
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_77 = L_76->get_delegates_11();
NullCheck(L_77);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_67, ((int32_t)il2cpp_codegen_add((int32_t)L_68, (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_70)->max_length)))))), (RuntimeArray *)(RuntimeArray *)L_72, L_73, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_74)->max_length)))), (int32_t)L_75)), (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_77)->max_length)))))), /*hidden argument*/NULL);
MulticastDelegate_t * L_78 = V_7;
return L_78;
}
}
#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 System.MulticastNotSupportedException::.ctor()
extern "C" IL2CPP_METHOD_ATTR void MulticastNotSupportedException__ctor_m4E7EEFC6E42FEAB6FA8D775E2CC71A0C3B970CD2 (MulticastNotSupportedException_tDAC3C31B20ACDAE95C396052199B385C00C41211 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MulticastNotSupportedException__ctor_m4E7EEFC6E42FEAB6FA8D775E2CC71A0C3B970CD2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralAE2D86CD2BE6BF988588077152DC43D7030A504A, /*hidden argument*/NULL);
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233068), /*hidden argument*/NULL);
return;
}
}
// System.Void System.MulticastNotSupportedException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void MulticastNotSupportedException__ctor_m9B26D80EE301004DB6AD6753C997AA2723092B65 (MulticastNotSupportedException_tDAC3C31B20ACDAE95C396052199B385C00C41211 * __this, String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233068), /*hidden argument*/NULL);
return;
}
}
// System.Void System.MulticastNotSupportedException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
extern "C" IL2CPP_METHOD_ATTR void MulticastNotSupportedException__ctor_mB91B7A630F7A2067A58D34B2180ED59249CB2221 (MulticastNotSupportedException_tDAC3C31B20ACDAE95C396052199B385C00C41211 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949(__this, L_0, 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 System.NonSerializedAttribute::.ctor()
extern "C" IL2CPP_METHOD_ATTR void NonSerializedAttribute__ctor_mE1558BDEF20C2A2D08703549040E56970CC767B0 (NonSerializedAttribute_t1D1C4A9662B6C2FAC28237FCDFA49FA4747BC3BA * __this, const RuntimeMethod* method)
{
{
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__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 System.NotImplementedException::.ctor()
extern "C" IL2CPP_METHOD_ATTR void NotImplementedException__ctor_m8BEA657E260FC05F0C6D2C43A6E9BC08040F59C4 (NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NotImplementedException__ctor_m8BEA657E260FC05F0C6D2C43A6E9BC08040F59C4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral376A1C1EC35E50EC842B660B9E346C386ABA78C1, /*hidden argument*/NULL);
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2147467263), /*hidden argument*/NULL);
return;
}
}
// System.Void System.NotImplementedException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void NotImplementedException__ctor_mEBAED0FCA8B8CCE7E96492474350BA35D14CF59C (NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 * __this, String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2147467263), /*hidden argument*/NULL);
return;
}
}
// System.Void System.NotImplementedException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
extern "C" IL2CPP_METHOD_ATTR void NotImplementedException__ctor_mFF1238AF9C34A2EA800C8AA62ABACBC395BCAB44 (NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949(__this, L_0, 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 System.NotSupportedException::.ctor()
extern "C" IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33 (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralBEE42D2FC435CCAA88B02E953C7318706D195EE9, /*hidden argument*/NULL);
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233067), /*hidden argument*/NULL);
return;
}
}
// System.Void System.NotSupportedException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * __this, String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233067), /*hidden argument*/NULL);
return;
}
}
// System.Void System.NotSupportedException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
extern "C" IL2CPP_METHOD_ATTR void NotSupportedException__ctor_m1F2AAA51372307FB5B4ED59C9F89A0BBFC94C768 (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949(__this, L_0, 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.ConsoleKeyInfo System.NullConsoleDriver::ReadKey(System.Boolean)
extern "C" IL2CPP_METHOD_ATTR ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 NullConsoleDriver_ReadKey_mD8783671CC38E7E2BA8949C9C2631BB90D5A0317 (NullConsoleDriver_t4608D1A2E1195946C2945E3459E15364CF4EC43D * __this, bool ___intercept0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NullConsoleDriver_ReadKey_mD8783671CC38E7E2BA8949C9C2631BB90D5A0317_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(NullConsoleDriver_t4608D1A2E1195946C2945E3459E15364CF4EC43D_il2cpp_TypeInfo_var);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_0 = ((NullConsoleDriver_t4608D1A2E1195946C2945E3459E15364CF4EC43D_StaticFields*)il2cpp_codegen_static_fields_for(NullConsoleDriver_t4608D1A2E1195946C2945E3459E15364CF4EC43D_il2cpp_TypeInfo_var))->get_EmptyConsoleKeyInfo_0();
return L_0;
}
}
// System.Void System.NullConsoleDriver::.ctor()
extern "C" IL2CPP_METHOD_ATTR void NullConsoleDriver__ctor_mEF6695F8B8CEE021CD5EC693237034A53D484CB2 (NullConsoleDriver_t4608D1A2E1195946C2945E3459E15364CF4EC43D * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.NullConsoleDriver::.cctor()
extern "C" IL2CPP_METHOD_ATTR void NullConsoleDriver__cctor_m0B892457EA9435B6B2E8483E8F7588290E9573D0 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NullConsoleDriver__cctor_m0B892457EA9435B6B2E8483E8F7588290E9573D0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_0;
memset(&L_0, 0, sizeof(L_0));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_0), 0, 0, (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
((NullConsoleDriver_t4608D1A2E1195946C2945E3459E15364CF4EC43D_StaticFields*)il2cpp_codegen_static_fields_for(NullConsoleDriver_t4608D1A2E1195946C2945E3459E15364CF4EC43D_il2cpp_TypeInfo_var))->set_EmptyConsoleKeyInfo_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
// System.Void System.NullReferenceException::.ctor()
extern "C" IL2CPP_METHOD_ATTR void NullReferenceException__ctor_m7D46E331C349DD29CBA488C9B6A950A3E7DD5CAE (NullReferenceException_t204B194BC4DDA3259AF5A8633EA248AE5977ABDC * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NullReferenceException__ctor_m7D46E331C349DD29CBA488C9B6A950A3E7DD5CAE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralDFEFBEE8FA51C19A77377FDC99C6D1E91AC2EBB8, /*hidden argument*/NULL);
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2147467261), /*hidden argument*/NULL);
return;
}
}
// System.Void System.NullReferenceException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void NullReferenceException__ctor_mAD32CA6CD05808ED531D14BA18B7AA1E99B8D349 (NullReferenceException_t204B194BC4DDA3259AF5A8633EA248AE5977ABDC * __this, String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2147467261), /*hidden argument*/NULL);
return;
}
}
// System.Void System.NullReferenceException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
extern "C" IL2CPP_METHOD_ATTR void NullReferenceException__ctor_m30DB93B2976C4F659BDFEE6B4A801C79DC898E00 (NullReferenceException_t204B194BC4DDA3259AF5A8633EA248AE5977ABDC * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949(__this, L_0, 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.Type System.Nullable::GetUnderlyingType(System.Type)
extern "C" IL2CPP_METHOD_ATTR Type_t * Nullable_GetUnderlyingType_m038B195642BF738026196B1629997705B6317D04 (Type_t * ___nullableType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Nullable_GetUnderlyingType_m038B195642BF738026196B1629997705B6317D04_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___nullableType0;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0014;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteralAAD19283FC942FFC547E9D76151FC155278475DF, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Nullable_GetUnderlyingType_m038B195642BF738026196B1629997705B6317D04_RuntimeMethod_var);
}
IL_0014:
{
Type_t * L_3 = ___nullableType0;
NullCheck(L_3);
bool L_4 = VirtFuncInvoker0< bool >::Invoke(69 /* System.Boolean System.Type::get_IsGenericType() */, L_3);
if (!L_4)
{
goto IL_003b;
}
}
{
Type_t * L_5 = ___nullableType0;
NullCheck(L_5);
bool L_6 = VirtFuncInvoker0< bool >::Invoke(70 /* System.Boolean System.Type::get_IsGenericTypeDefinition() */, L_5);
if (L_6)
{
goto IL_003b;
}
}
{
Type_t * L_7 = ___nullableType0;
NullCheck(L_7);
Type_t * L_8 = VirtFuncInvoker0< Type_t * >::Invoke(94 /* System.Type System.Type::GetGenericTypeDefinition() */, L_7);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_9 = { reinterpret_cast<intptr_t> (Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_10 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_9, /*hidden argument*/NULL);
bool L_11 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_8, L_10, /*hidden argument*/NULL);
if (L_11)
{
goto IL_003d;
}
}
IL_003b:
{
return (Type_t *)NULL;
}
IL_003d:
{
Type_t * L_12 = ___nullableType0;
NullCheck(L_12);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_13 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(93 /* System.Type[] System.Type::GetGenericArguments() */, L_12);
NullCheck(L_13);
int32_t L_14 = 0;
Type_t * L_15 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
return L_15;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean System.Number::NumberBufferToDecimal(System.Byte*,System.DecimalU26)
extern "C" IL2CPP_METHOD_ATTR bool Number_NumberBufferToDecimal_m0C4AC5B6FF9A6FCC8BF29288793B11CB09AB38C7 (uint8_t* ___number0, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * ___value1, const RuntimeMethod* method)
{
typedef bool (*Number_NumberBufferToDecimal_m0C4AC5B6FF9A6FCC8BF29288793B11CB09AB38C7_ftn) (uint8_t*, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *);
using namespace il2cpp::icalls;
return ((Number_NumberBufferToDecimal_m0C4AC5B6FF9A6FCC8BF29288793B11CB09AB38C7_ftn)mscorlib::System::Number::NumberBufferToDecimal) (___number0, ___value1);
}
// System.Boolean System.Number::NumberBufferToDouble(System.Byte*,System.DoubleU26)
extern "C" IL2CPP_METHOD_ATTR bool Number_NumberBufferToDouble_mE27725FD73DD8B9F85044B850CBA7356C5A9082D (uint8_t* ___number0, double* ___value1, const RuntimeMethod* method)
{
typedef bool (*Number_NumberBufferToDouble_mE27725FD73DD8B9F85044B850CBA7356C5A9082D_ftn) (uint8_t*, double*);
using namespace il2cpp::icalls;
return ((Number_NumberBufferToDouble_mE27725FD73DD8B9F85044B850CBA7356C5A9082D_ftn)mscorlib::System::Number::NumberBufferToDouble) (___number0, ___value1);
}
// System.String System.Number::FormatDecimal(System.Decimal,System.String,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR String_t* Number_FormatDecimal_mD9017BCCC840DA365FF4BE687382AB95D22CF562 (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value0, String_t* ___format1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Number_FormatDecimal_mD9017BCCC840DA365FF4BE687382AB95D22CF562_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___format1;
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = ___value0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = ___info2;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
String_t* L_3 = NumberFormatter_NumberToString_mB2192DEA3E3EFE9F8799E9D931F21586823E61D9(L_0, L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.String System.Number::FormatDouble(System.Double,System.String,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR String_t* Number_FormatDouble_m75CA311327BBDA4F918A84B0C0B689B5C4F84EC2 (double ___value0, String_t* ___format1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Number_FormatDouble_m75CA311327BBDA4F918A84B0C0B689B5C4F84EC2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___format1;
double L_1 = ___value0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = ___info2;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
String_t* L_3 = NumberFormatter_NumberToString_m52F79BE9C6B6531191AE27454C6DEBA1C09A4717(L_0, L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.String System.Number::FormatInt32(System.Int32,System.String,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR String_t* Number_FormatInt32_mFA98EABDFB7493EF299EB1F0C2B432EAFDFC7984 (int32_t ___value0, String_t* ___format1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Number_FormatInt32_mFA98EABDFB7493EF299EB1F0C2B432EAFDFC7984_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___format1;
int32_t L_1 = ___value0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = ___info2;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
String_t* L_3 = NumberFormatter_NumberToString_mD13D145869D2857BFDAEDD127A04E68A6B929950(L_0, L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.String System.Number::FormatUInt32(System.UInt32,System.String,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR String_t* Number_FormatUInt32_m585E2571063A256E46836A51BC4A54CFF151BDEE (uint32_t ___value0, String_t* ___format1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Number_FormatUInt32_m585E2571063A256E46836A51BC4A54CFF151BDEE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___format1;
uint32_t L_1 = ___value0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = ___info2;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
String_t* L_3 = NumberFormatter_NumberToString_mBA9C9AB4809ADB1CEDAC880569E1F4EC2ADB547C(L_0, L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.String System.Number::FormatInt64(System.Int64,System.String,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR String_t* Number_FormatInt64_m4D4B9098DEEF54C61927074C5471C272A1B64BEB (int64_t ___value0, String_t* ___format1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Number_FormatInt64_m4D4B9098DEEF54C61927074C5471C272A1B64BEB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___format1;
int64_t L_1 = ___value0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = ___info2;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
String_t* L_3 = NumberFormatter_NumberToString_mF2FEDF5FC0B3511F8BE51DC6C6FF1B6326BDDA05(L_0, L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.String System.Number::FormatUInt64(System.UInt64,System.String,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR String_t* Number_FormatUInt64_m04004F09D1913C13C59635153D0F45AF37F8248A (uint64_t ___value0, String_t* ___format1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Number_FormatUInt64_m04004F09D1913C13C59635153D0F45AF37F8248A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___format1;
uint64_t L_1 = ___value0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = ___info2;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
String_t* L_3 = NumberFormatter_NumberToString_mB04F03382B99D07E7DDEE769E704C823EC6EF201(L_0, L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.String System.Number::FormatSingle(System.Single,System.String,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR String_t* Number_FormatSingle_m323E2B56236A6DAA51251B75618122C0A58F5256 (float ___value0, String_t* ___format1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Number_FormatSingle_m323E2B56236A6DAA51251B75618122C0A58F5256_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___format1;
float L_1 = ___value0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = ___info2;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
String_t* L_3 = NumberFormatter_NumberToString_m2BCC98CB4910CBDA506DD64B026DB3C66A66A657(L_0, L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.Boolean System.Number::HexNumberToInt32(System.Number_NumberBufferU26,System.Int32U26)
extern "C" IL2CPP_METHOD_ATTR bool Number_HexNumberToInt32_m9229BEC2774D0AC4211B2D01CDD18EB1FB5DDDD7 (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number0, int32_t* ___value1, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
{
V_0 = 0;
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_0 = ___number0;
bool L_1 = Number_HexNumberToUInt32_mCF1D424CBE49EEA9B5D2546B705C79519A41195F((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)L_0, (uint32_t*)(&V_0), /*hidden argument*/NULL);
int32_t* L_2 = ___value1;
uint32_t L_3 = V_0;
*((int32_t*)L_2) = (int32_t)L_3;
return L_1;
}
}
// System.Boolean System.Number::HexNumberToInt64(System.Number_NumberBufferU26,System.Int64U26)
extern "C" IL2CPP_METHOD_ATTR bool Number_HexNumberToInt64_m378430BD3E19ACC499999BE305850B0AFD292313 (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number0, int64_t* ___value1, const RuntimeMethod* method)
{
uint64_t V_0 = 0;
{
V_0 = (((int64_t)((int64_t)0)));
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_0 = ___number0;
bool L_1 = Number_HexNumberToUInt64_mD5003F23674F5CF4D681066993ECC3F4DD9D4252((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)L_0, (uint64_t*)(&V_0), /*hidden argument*/NULL);
int64_t* L_2 = ___value1;
uint64_t L_3 = V_0;
*((int64_t*)L_2) = (int64_t)L_3;
return L_1;
}
}
// System.Boolean System.Number::HexNumberToUInt32(System.Number_NumberBufferU26,System.UInt32U26)
extern "C" IL2CPP_METHOD_ATTR bool Number_HexNumberToUInt32_mCF1D424CBE49EEA9B5D2546B705C79519A41195F (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number0, uint32_t* ___value1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
Il2CppChar* V_1 = NULL;
uint32_t V_2 = 0;
uint32_t V_3 = 0;
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_0 = ___number0;
int32_t L_1 = L_0->get_scale_4();
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) > ((int32_t)((int32_t)10))))
{
goto IL_0015;
}
}
{
int32_t L_3 = V_0;
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_4 = ___number0;
int32_t L_5 = L_4->get_precision_3();
if ((((int32_t)L_3) >= ((int32_t)L_5)))
{
goto IL_0017;
}
}
IL_0015:
{
return (bool)0;
}
IL_0017:
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_6 = ___number0;
Il2CppChar* L_7 = L_6->get_digits_2();
V_1 = (Il2CppChar*)L_7;
V_2 = 0;
goto IL_0081;
}
IL_0022:
{
uint32_t L_8 = V_2;
if ((!(((uint32_t)L_8) > ((uint32_t)((int32_t)268435455)))))
{
goto IL_002c;
}
}
{
return (bool)0;
}
IL_002c:
{
uint32_t L_9 = V_2;
V_2 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_9, (int32_t)((int32_t)16)));
Il2CppChar* L_10 = V_1;
int32_t L_11 = *((uint16_t*)L_10);
if (!L_11)
{
goto IL_0081;
}
}
{
uint32_t L_12 = V_2;
V_3 = L_12;
Il2CppChar* L_13 = V_1;
int32_t L_14 = *((uint16_t*)L_13);
if (!L_14)
{
goto IL_0079;
}
}
{
Il2CppChar* L_15 = V_1;
int32_t L_16 = *((uint16_t*)L_15);
if ((((int32_t)L_16) < ((int32_t)((int32_t)48))))
{
goto IL_0051;
}
}
{
Il2CppChar* L_17 = V_1;
int32_t L_18 = *((uint16_t*)L_17);
if ((((int32_t)L_18) > ((int32_t)((int32_t)57))))
{
goto IL_0051;
}
}
{
uint32_t L_19 = V_3;
Il2CppChar* L_20 = V_1;
int32_t L_21 = *((uint16_t*)L_20);
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_21, (int32_t)((int32_t)48)))));
goto IL_0075;
}
IL_0051:
{
Il2CppChar* L_22 = V_1;
int32_t L_23 = *((uint16_t*)L_22);
if ((((int32_t)L_23) < ((int32_t)((int32_t)65))))
{
goto IL_006a;
}
}
{
Il2CppChar* L_24 = V_1;
int32_t L_25 = *((uint16_t*)L_24);
if ((((int32_t)L_25) > ((int32_t)((int32_t)70))))
{
goto IL_006a;
}
}
{
uint32_t L_26 = V_3;
Il2CppChar* L_27 = V_1;
int32_t L_28 = *((uint16_t*)L_27);
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_28, (int32_t)((int32_t)65))), (int32_t)((int32_t)10)))));
goto IL_0075;
}
IL_006a:
{
uint32_t L_29 = V_3;
Il2CppChar* L_30 = V_1;
int32_t L_31 = *((uint16_t*)L_30);
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_29, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_31, (int32_t)((int32_t)97))), (int32_t)((int32_t)10)))));
}
IL_0075:
{
Il2CppChar* L_32 = V_1;
V_1 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_32, (int32_t)2));
}
IL_0079:
{
uint32_t L_33 = V_3;
uint32_t L_34 = V_2;
if ((!(((uint32_t)L_33) < ((uint32_t)L_34))))
{
goto IL_007f;
}
}
{
return (bool)0;
}
IL_007f:
{
uint32_t L_35 = V_3;
V_2 = L_35;
}
IL_0081:
{
int32_t L_36 = V_0;
int32_t L_37 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_36, (int32_t)1));
V_0 = L_37;
if ((((int32_t)L_37) >= ((int32_t)0)))
{
goto IL_0022;
}
}
{
uint32_t* L_38 = ___value1;
uint32_t L_39 = V_2;
*((int32_t*)L_38) = (int32_t)L_39;
return (bool)1;
}
}
// System.Boolean System.Number::HexNumberToUInt64(System.Number_NumberBufferU26,System.UInt64U26)
extern "C" IL2CPP_METHOD_ATTR bool Number_HexNumberToUInt64_mD5003F23674F5CF4D681066993ECC3F4DD9D4252 (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number0, uint64_t* ___value1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
Il2CppChar* V_1 = NULL;
uint64_t V_2 = 0;
uint64_t V_3 = 0;
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_0 = ___number0;
int32_t L_1 = L_0->get_scale_4();
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) > ((int32_t)((int32_t)20))))
{
goto IL_0015;
}
}
{
int32_t L_3 = V_0;
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_4 = ___number0;
int32_t L_5 = L_4->get_precision_3();
if ((((int32_t)L_3) >= ((int32_t)L_5)))
{
goto IL_0017;
}
}
IL_0015:
{
return (bool)0;
}
IL_0017:
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_6 = ___number0;
Il2CppChar* L_7 = L_6->get_digits_2();
V_1 = (Il2CppChar*)L_7;
V_2 = (((int64_t)((int64_t)0)));
goto IL_008a;
}
IL_0023:
{
uint64_t L_8 = V_2;
if ((!(((uint64_t)L_8) > ((uint64_t)((int64_t)1152921504606846975LL)))))
{
goto IL_0031;
}
}
{
return (bool)0;
}
IL_0031:
{
uint64_t L_9 = V_2;
V_2 = ((int64_t)il2cpp_codegen_multiply((int64_t)L_9, (int64_t)(((int64_t)((int64_t)((int32_t)16))))));
Il2CppChar* L_10 = V_1;
int32_t L_11 = *((uint16_t*)L_10);
if (!L_11)
{
goto IL_008a;
}
}
{
uint64_t L_12 = V_2;
V_3 = L_12;
Il2CppChar* L_13 = V_1;
int32_t L_14 = *((uint16_t*)L_13);
if (!L_14)
{
goto IL_0082;
}
}
{
Il2CppChar* L_15 = V_1;
int32_t L_16 = *((uint16_t*)L_15);
if ((((int32_t)L_16) < ((int32_t)((int32_t)48))))
{
goto IL_0058;
}
}
{
Il2CppChar* L_17 = V_1;
int32_t L_18 = *((uint16_t*)L_17);
if ((((int32_t)L_18) > ((int32_t)((int32_t)57))))
{
goto IL_0058;
}
}
{
uint64_t L_19 = V_3;
Il2CppChar* L_20 = V_1;
int32_t L_21 = *((uint16_t*)L_20);
V_3 = ((int64_t)il2cpp_codegen_add((int64_t)L_19, (int64_t)(((int64_t)((int64_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_21, (int32_t)((int32_t)48))))))));
goto IL_007e;
}
IL_0058:
{
Il2CppChar* L_22 = V_1;
int32_t L_23 = *((uint16_t*)L_22);
if ((((int32_t)L_23) < ((int32_t)((int32_t)65))))
{
goto IL_0072;
}
}
{
Il2CppChar* L_24 = V_1;
int32_t L_25 = *((uint16_t*)L_24);
if ((((int32_t)L_25) > ((int32_t)((int32_t)70))))
{
goto IL_0072;
}
}
{
uint64_t L_26 = V_3;
Il2CppChar* L_27 = V_1;
int32_t L_28 = *((uint16_t*)L_27);
V_3 = ((int64_t)il2cpp_codegen_add((int64_t)L_26, (int64_t)(((int64_t)((int64_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_28, (int32_t)((int32_t)65))), (int32_t)((int32_t)10))))))));
goto IL_007e;
}
IL_0072:
{
uint64_t L_29 = V_3;
Il2CppChar* L_30 = V_1;
int32_t L_31 = *((uint16_t*)L_30);
V_3 = ((int64_t)il2cpp_codegen_add((int64_t)L_29, (int64_t)(((int64_t)((int64_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_31, (int32_t)((int32_t)97))), (int32_t)((int32_t)10))))))));
}
IL_007e:
{
Il2CppChar* L_32 = V_1;
V_1 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_32, (int32_t)2));
}
IL_0082:
{
uint64_t L_33 = V_3;
uint64_t L_34 = V_2;
if ((!(((uint64_t)L_33) < ((uint64_t)L_34))))
{
goto IL_0088;
}
}
{
return (bool)0;
}
IL_0088:
{
uint64_t L_35 = V_3;
V_2 = L_35;
}
IL_008a:
{
int32_t L_36 = V_0;
int32_t L_37 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_36, (int32_t)1));
V_0 = L_37;
if ((((int32_t)L_37) >= ((int32_t)0)))
{
goto IL_0023;
}
}
{
uint64_t* L_38 = ___value1;
uint64_t L_39 = V_2;
*((int64_t*)L_38) = (int64_t)L_39;
return (bool)1;
}
}
// System.Boolean System.Number::IsWhite(System.Char)
extern "C" IL2CPP_METHOD_ATTR bool Number_IsWhite_m2FBD10D7315E0E9771F98FA00CA7787699C03700 (Il2CppChar ___ch0, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = ___ch0;
if ((((int32_t)L_0) == ((int32_t)((int32_t)32))))
{
goto IL_0015;
}
}
{
Il2CppChar L_1 = ___ch0;
if ((((int32_t)L_1) < ((int32_t)((int32_t)9))))
{
goto IL_0013;
}
}
{
Il2CppChar L_2 = ___ch0;
return (bool)((((int32_t)((((int32_t)L_2) > ((int32_t)((int32_t)13)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_0013:
{
return (bool)0;
}
IL_0015:
{
return (bool)1;
}
}
// System.Boolean System.Number::NumberToInt32(System.Number_NumberBufferU26,System.Int32U26)
extern "C" IL2CPP_METHOD_ATTR bool Number_NumberToInt32_m21C6C8AB448D962C7658840F3C511835089D26E6 (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number0, int32_t* ___value1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
Il2CppChar* V_1 = NULL;
int32_t V_2 = 0;
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_0 = ___number0;
int32_t L_1 = L_0->get_scale_4();
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) > ((int32_t)((int32_t)10))))
{
goto IL_0015;
}
}
{
int32_t L_3 = V_0;
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_4 = ___number0;
int32_t L_5 = L_4->get_precision_3();
if ((((int32_t)L_3) >= ((int32_t)L_5)))
{
goto IL_0017;
}
}
IL_0015:
{
return (bool)0;
}
IL_0017:
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_6 = ___number0;
Il2CppChar* L_7 = L_6->get_digits_2();
V_1 = (Il2CppChar*)L_7;
V_2 = 0;
goto IL_0041;
}
IL_0022:
{
int32_t L_8 = V_2;
if ((!(((uint32_t)L_8) > ((uint32_t)((int32_t)214748364)))))
{
goto IL_002c;
}
}
{
return (bool)0;
}
IL_002c:
{
int32_t L_9 = V_2;
V_2 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_9, (int32_t)((int32_t)10)));
Il2CppChar* L_10 = V_1;
int32_t L_11 = *((uint16_t*)L_10);
if (!L_11)
{
goto IL_0041;
}
}
{
int32_t L_12 = V_2;
Il2CppChar* L_13 = V_1;
Il2CppChar* L_14 = (Il2CppChar*)L_13;
V_1 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_14, (int32_t)2));
int32_t L_15 = *((uint16_t*)L_14);
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)((int32_t)48)))));
}
IL_0041:
{
int32_t L_16 = V_0;
int32_t L_17 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)1));
V_0 = L_17;
if ((((int32_t)L_17) >= ((int32_t)0)))
{
goto IL_0022;
}
}
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_18 = ___number0;
bool L_19 = L_18->get_sign_5();
if (!L_19)
{
goto IL_005a;
}
}
{
int32_t L_20 = V_2;
V_2 = ((-L_20));
int32_t L_21 = V_2;
if ((((int32_t)L_21) <= ((int32_t)0)))
{
goto IL_0060;
}
}
{
return (bool)0;
}
IL_005a:
{
int32_t L_22 = V_2;
if ((((int32_t)L_22) >= ((int32_t)0)))
{
goto IL_0060;
}
}
{
return (bool)0;
}
IL_0060:
{
int32_t* L_23 = ___value1;
int32_t L_24 = V_2;
*((int32_t*)L_23) = (int32_t)L_24;
return (bool)1;
}
}
// System.Boolean System.Number::NumberToInt64(System.Number_NumberBufferU26,System.Int64U26)
extern "C" IL2CPP_METHOD_ATTR bool Number_NumberToInt64_mC59DFAEF3C78A77FFFFA66937DD8109E747F4EE0 (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number0, int64_t* ___value1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
Il2CppChar* V_1 = NULL;
int64_t V_2 = 0;
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_0 = ___number0;
int32_t L_1 = L_0->get_scale_4();
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) > ((int32_t)((int32_t)19))))
{
goto IL_0015;
}
}
{
int32_t L_3 = V_0;
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_4 = ___number0;
int32_t L_5 = L_4->get_precision_3();
if ((((int32_t)L_3) >= ((int32_t)L_5)))
{
goto IL_0017;
}
}
IL_0015:
{
return (bool)0;
}
IL_0017:
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_6 = ___number0;
Il2CppChar* L_7 = L_6->get_digits_2();
V_1 = (Il2CppChar*)L_7;
V_2 = (((int64_t)((int64_t)0)));
goto IL_0048;
}
IL_0023:
{
int64_t L_8 = V_2;
if ((!(((uint64_t)L_8) > ((uint64_t)((int64_t)922337203685477580LL)))))
{
goto IL_0031;
}
}
{
return (bool)0;
}
IL_0031:
{
int64_t L_9 = V_2;
V_2 = ((int64_t)il2cpp_codegen_multiply((int64_t)L_9, (int64_t)(((int64_t)((int64_t)((int32_t)10))))));
Il2CppChar* L_10 = V_1;
int32_t L_11 = *((uint16_t*)L_10);
if (!L_11)
{
goto IL_0048;
}
}
{
int64_t L_12 = V_2;
Il2CppChar* L_13 = V_1;
Il2CppChar* L_14 = (Il2CppChar*)L_13;
V_1 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_14, (int32_t)2));
int32_t L_15 = *((uint16_t*)L_14);
V_2 = ((int64_t)il2cpp_codegen_add((int64_t)L_12, (int64_t)(((int64_t)((int64_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)((int32_t)48))))))));
}
IL_0048:
{
int32_t L_16 = V_0;
int32_t L_17 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)1));
V_0 = L_17;
if ((((int32_t)L_17) >= ((int32_t)0)))
{
goto IL_0023;
}
}
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_18 = ___number0;
bool L_19 = L_18->get_sign_5();
if (!L_19)
{
goto IL_0062;
}
}
{
int64_t L_20 = V_2;
V_2 = ((-L_20));
int64_t L_21 = V_2;
if ((((int64_t)L_21) <= ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_0069;
}
}
{
return (bool)0;
}
IL_0062:
{
int64_t L_22 = V_2;
if ((((int64_t)L_22) >= ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_0069;
}
}
{
return (bool)0;
}
IL_0069:
{
int64_t* L_23 = ___value1;
int64_t L_24 = V_2;
*((int64_t*)L_23) = (int64_t)L_24;
return (bool)1;
}
}
// System.Boolean System.Number::NumberToUInt32(System.Number_NumberBufferU26,System.UInt32U26)
extern "C" IL2CPP_METHOD_ATTR bool Number_NumberToUInt32_m60BDF4513A1673F8F993CAA12CA865FD4294308F (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number0, uint32_t* ___value1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
Il2CppChar* V_1 = NULL;
uint32_t V_2 = 0;
uint32_t V_3 = 0;
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_0 = ___number0;
int32_t L_1 = L_0->get_scale_4();
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) > ((int32_t)((int32_t)10))))
{
goto IL_001d;
}
}
{
int32_t L_3 = V_0;
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_4 = ___number0;
int32_t L_5 = L_4->get_precision_3();
if ((((int32_t)L_3) < ((int32_t)L_5)))
{
goto IL_001d;
}
}
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_6 = ___number0;
bool L_7 = L_6->get_sign_5();
if (!L_7)
{
goto IL_001f;
}
}
IL_001d:
{
return (bool)0;
}
IL_001f:
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_8 = ___number0;
Il2CppChar* L_9 = L_8->get_digits_2();
V_1 = (Il2CppChar*)L_9;
V_2 = 0;
goto IL_0051;
}
IL_002a:
{
uint32_t L_10 = V_2;
if ((!(((uint32_t)L_10) > ((uint32_t)((int32_t)429496729)))))
{
goto IL_0034;
}
}
{
return (bool)0;
}
IL_0034:
{
uint32_t L_11 = V_2;
V_2 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_11, (int32_t)((int32_t)10)));
Il2CppChar* L_12 = V_1;
int32_t L_13 = *((uint16_t*)L_12);
if (!L_13)
{
goto IL_0051;
}
}
{
uint32_t L_14 = V_2;
Il2CppChar* L_15 = V_1;
Il2CppChar* L_16 = (Il2CppChar*)L_15;
V_1 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_16, (int32_t)2));
int32_t L_17 = *((uint16_t*)L_16);
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)((int32_t)48)))));
uint32_t L_18 = V_3;
uint32_t L_19 = V_2;
if ((!(((uint32_t)L_18) < ((uint32_t)L_19))))
{
goto IL_004f;
}
}
{
return (bool)0;
}
IL_004f:
{
uint32_t L_20 = V_3;
V_2 = L_20;
}
IL_0051:
{
int32_t L_21 = V_0;
int32_t L_22 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_21, (int32_t)1));
V_0 = L_22;
if ((((int32_t)L_22) >= ((int32_t)0)))
{
goto IL_002a;
}
}
{
uint32_t* L_23 = ___value1;
uint32_t L_24 = V_2;
*((int32_t*)L_23) = (int32_t)L_24;
return (bool)1;
}
}
// System.Boolean System.Number::NumberToUInt64(System.Number_NumberBufferU26,System.UInt64U26)
extern "C" IL2CPP_METHOD_ATTR bool Number_NumberToUInt64_m4F1E853E52800DA97846B99A6989596F310501C0 (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number0, uint64_t* ___value1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
Il2CppChar* V_1 = NULL;
uint64_t V_2 = 0;
uint64_t V_3 = 0;
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_0 = ___number0;
int32_t L_1 = L_0->get_scale_4();
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) > ((int32_t)((int32_t)20))))
{
goto IL_001d;
}
}
{
int32_t L_3 = V_0;
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_4 = ___number0;
int32_t L_5 = L_4->get_precision_3();
if ((((int32_t)L_3) < ((int32_t)L_5)))
{
goto IL_001d;
}
}
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_6 = ___number0;
bool L_7 = L_6->get_sign_5();
if (!L_7)
{
goto IL_001f;
}
}
IL_001d:
{
return (bool)0;
}
IL_001f:
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_8 = ___number0;
Il2CppChar* L_9 = L_8->get_digits_2();
V_1 = (Il2CppChar*)L_9;
V_2 = (((int64_t)((int64_t)0)));
goto IL_0058;
}
IL_002b:
{
uint64_t L_10 = V_2;
if ((!(((uint64_t)L_10) > ((uint64_t)((int64_t)1844674407370955161LL)))))
{
goto IL_0039;
}
}
{
return (bool)0;
}
IL_0039:
{
uint64_t L_11 = V_2;
V_2 = ((int64_t)il2cpp_codegen_multiply((int64_t)L_11, (int64_t)(((int64_t)((int64_t)((int32_t)10))))));
Il2CppChar* L_12 = V_1;
int32_t L_13 = *((uint16_t*)L_12);
if (!L_13)
{
goto IL_0058;
}
}
{
uint64_t L_14 = V_2;
Il2CppChar* L_15 = V_1;
Il2CppChar* L_16 = (Il2CppChar*)L_15;
V_1 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_16, (int32_t)2));
int32_t L_17 = *((uint16_t*)L_16);
V_3 = ((int64_t)il2cpp_codegen_add((int64_t)L_14, (int64_t)(((int64_t)((int64_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)((int32_t)48))))))));
uint64_t L_18 = V_3;
uint64_t L_19 = V_2;
if ((!(((uint64_t)L_18) < ((uint64_t)L_19))))
{
goto IL_0056;
}
}
{
return (bool)0;
}
IL_0056:
{
uint64_t L_20 = V_3;
V_2 = L_20;
}
IL_0058:
{
int32_t L_21 = V_0;
int32_t L_22 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_21, (int32_t)1));
V_0 = L_22;
if ((((int32_t)L_22) >= ((int32_t)0)))
{
goto IL_002b;
}
}
{
uint64_t* L_23 = ___value1;
uint64_t L_24 = V_2;
*((int64_t*)L_23) = (int64_t)L_24;
return (bool)1;
}
}
// System.Char* System.Number::MatchChars(System.Char*,System.String)
extern "C" IL2CPP_METHOD_ATTR Il2CppChar* Number_MatchChars_mB3DAD884D42368A0428DACB98B14EAF4E223FAEA (Il2CppChar* ___p0, String_t* ___str1, const RuntimeMethod* method)
{
Il2CppChar* V_0 = NULL;
String_t* V_1 = NULL;
{
String_t* L_0 = ___str1;
V_1 = L_0;
String_t* L_1 = V_1;
V_0 = (Il2CppChar*)(((uintptr_t)L_1));
Il2CppChar* L_2 = V_0;
if (!L_2)
{
goto IL_0010;
}
}
{
Il2CppChar* L_3 = V_0;
int32_t L_4 = RuntimeHelpers_get_OffsetToStringData_mF3B79A906181F1A2734590DA161E2AF183853F8B(/*hidden argument*/NULL);
V_0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_3, (int32_t)L_4));
}
IL_0010:
{
Il2CppChar* L_5 = ___p0;
Il2CppChar* L_6 = V_0;
Il2CppChar* L_7 = Number_MatchChars_m7EE86D2BE9EC4117EE64EF821DB270C0A717ACAC((Il2CppChar*)(Il2CppChar*)L_5, (Il2CppChar*)(Il2CppChar*)L_6, /*hidden argument*/NULL);
return (Il2CppChar*)(L_7);
}
}
// System.Char* System.Number::MatchChars(System.Char*,System.Char*)
extern "C" IL2CPP_METHOD_ATTR Il2CppChar* Number_MatchChars_m7EE86D2BE9EC4117EE64EF821DB270C0A717ACAC (Il2CppChar* ___p0, Il2CppChar* ___str1, const RuntimeMethod* method)
{
{
Il2CppChar* L_0 = ___str1;
int32_t L_1 = *((uint16_t*)L_0);
if (L_1)
{
goto IL_0029;
}
}
{
return (Il2CppChar*)((((uintptr_t)0)));
}
IL_0007:
{
Il2CppChar* L_2 = ___p0;
int32_t L_3 = *((uint16_t*)L_2);
Il2CppChar* L_4 = ___str1;
int32_t L_5 = *((uint16_t*)L_4);
if ((((int32_t)L_3) == ((int32_t)L_5)))
{
goto IL_001f;
}
}
{
Il2CppChar* L_6 = ___str1;
int32_t L_7 = *((uint16_t*)L_6);
if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)160)))))
{
goto IL_001c;
}
}
{
Il2CppChar* L_8 = ___p0;
int32_t L_9 = *((uint16_t*)L_8);
if ((((int32_t)L_9) == ((int32_t)((int32_t)32))))
{
goto IL_001f;
}
}
IL_001c:
{
return (Il2CppChar*)((((uintptr_t)0)));
}
IL_001f:
{
Il2CppChar* L_10 = ___p0;
___p0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_10, (int32_t)2));
Il2CppChar* L_11 = ___str1;
___str1 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_11, (int32_t)2));
}
IL_0029:
{
Il2CppChar* L_12 = ___str1;
int32_t L_13 = *((uint16_t*)L_12);
if (L_13)
{
goto IL_0007;
}
}
{
Il2CppChar* L_14 = ___p0;
return (Il2CppChar*)(L_14);
}
}
// System.Decimal System.Number::ParseDecimal(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Number_ParseDecimal_m0D2FF289F648F210AB219D617813E954769B7CCE (String_t* ___value0, int32_t ___options1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numfmt2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Number_ParseDecimal_m0D2FF289F648F210AB219D617813E954769B7CCE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint8_t* V_0 = NULL;
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 V_1;
memset(&V_1, 0, sizeof(V_1));
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 V_2;
memset(&V_2, 0, sizeof(V_2));
{
IL2CPP_RUNTIME_CLASS_INIT(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_il2cpp_TypeInfo_var);
int32_t L_0 = ((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_StaticFields*)il2cpp_codegen_static_fields_for(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_il2cpp_TypeInfo_var))->get_NumberBufferBytes_0();
int8_t* L_1 = (int8_t*) alloca((((uintptr_t)L_0)));
memset(L_1,0,(((uintptr_t)L_0)));
V_0 = (uint8_t*)(L_1);
uint8_t* L_2 = V_0;
NumberBuffer__ctor_m3CC10B06A100FC612C5BD24BBC5A20C2BCDCD68E((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), (uint8_t*)(uint8_t*)L_2, /*hidden argument*/NULL);
il2cpp_codegen_initobj((&V_2), sizeof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ));
String_t* L_3 = ___value0;
int32_t L_4 = ___options1;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_5 = ___numfmt2;
Number_StringToNumber_m430FD04F901D7715B727832A85D4D8DCD6EB4BED(L_3, L_4, (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), L_5, (bool)1, /*hidden argument*/NULL);
uint8_t* L_6 = NumberBuffer_PackForNative_m7790B7A255562FC1823BACABA471AF133A86D640((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), /*hidden argument*/NULL);
bool L_7 = Number_NumberBufferToDecimal_m0C4AC5B6FF9A6FCC8BF29288793B11CB09AB38C7((uint8_t*)(uint8_t*)L_6, (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)(&V_2), /*hidden argument*/NULL);
if (L_7)
{
goto IL_0044;
}
}
{
String_t* L_8 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral6976E9D2306260A73687B281AF880C13AB05F910, /*hidden argument*/NULL);
OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_9 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var);
OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_9, L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Number_ParseDecimal_m0D2FF289F648F210AB219D617813E954769B7CCE_RuntimeMethod_var);
}
IL_0044:
{
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_10 = V_2;
return L_10;
}
}
// System.Double System.Number::ParseDouble(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR double Number_ParseDouble_m1114DFDF930B69AB3222044E9818855F131B5672 (String_t* ___value0, int32_t ___options1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numfmt2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Number_ParseDouble_m1114DFDF930B69AB3222044E9818855F131B5672_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint8_t* V_0 = NULL;
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 V_1;
memset(&V_1, 0, sizeof(V_1));
double V_2 = 0.0;
String_t* V_3 = NULL;
{
String_t* 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, NULL, Number_ParseDouble_m1114DFDF930B69AB3222044E9818855F131B5672_RuntimeMethod_var);
}
IL_000e:
{
IL2CPP_RUNTIME_CLASS_INIT(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_il2cpp_TypeInfo_var);
int32_t L_2 = ((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_StaticFields*)il2cpp_codegen_static_fields_for(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_il2cpp_TypeInfo_var))->get_NumberBufferBytes_0();
int8_t* L_3 = (int8_t*) alloca((((uintptr_t)L_2)));
memset(L_3,0,(((uintptr_t)L_2)));
V_0 = (uint8_t*)(L_3);
uint8_t* L_4 = V_0;
NumberBuffer__ctor_m3CC10B06A100FC612C5BD24BBC5A20C2BCDCD68E((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), (uint8_t*)(uint8_t*)L_4, /*hidden argument*/NULL);
V_2 = (0.0);
String_t* L_5 = ___value0;
int32_t L_6 = ___options1;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_7 = ___numfmt2;
bool L_8 = Number_TryStringToNumber_mDA7F326F742680FF01ACA545ED511EE80A3248D7(L_5, L_6, (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), L_7, (bool)0, /*hidden argument*/NULL);
if (L_8)
{
goto IL_0095;
}
}
{
String_t* L_9 = ___value0;
NullCheck(L_9);
String_t* L_10 = String_Trim_mB52EB7876C7132358B76B7DC95DEACA20722EF4D(L_9, /*hidden argument*/NULL);
V_3 = L_10;
String_t* L_11 = V_3;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_12 = ___numfmt2;
NullCheck(L_12);
String_t* L_13 = NumberFormatInfo_get_PositiveInfinitySymbol_m7602CB28ED33148275C2ED9CF8395241BF8E0F0A(L_12, /*hidden argument*/NULL);
NullCheck(L_11);
bool L_14 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_11, L_13, /*hidden argument*/NULL);
if (!L_14)
{
goto IL_0055;
}
}
{
return (std::numeric_limits<double>::infinity());
}
IL_0055:
{
String_t* L_15 = V_3;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_16 = ___numfmt2;
NullCheck(L_16);
String_t* L_17 = NumberFormatInfo_get_NegativeInfinitySymbol_m8C1DDF6E543F2193CD0BE65F67175E4DECED1DB8(L_16, /*hidden argument*/NULL);
NullCheck(L_15);
bool L_18 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_15, L_17, /*hidden argument*/NULL);
if (!L_18)
{
goto IL_006d;
}
}
{
return (-std::numeric_limits<double>::infinity());
}
IL_006d:
{
String_t* L_19 = V_3;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_20 = ___numfmt2;
NullCheck(L_20);
String_t* L_21 = NumberFormatInfo_get_NaNSymbol_m82326D3E16F9834D5138685A6956EE154944891E(L_20, /*hidden argument*/NULL);
NullCheck(L_19);
bool L_22 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_19, L_21, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_0085;
}
}
{
return (std::numeric_limits<double>::quiet_NaN());
}
IL_0085:
{
String_t* L_23 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD2F0257C42607F2773F4B8AAB0C017A3B8949322, /*hidden argument*/NULL);
FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * L_24 = (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC *)il2cpp_codegen_object_new(FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var);
FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14(L_24, L_23, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, NULL, Number_ParseDouble_m1114DFDF930B69AB3222044E9818855F131B5672_RuntimeMethod_var);
}
IL_0095:
{
uint8_t* L_25 = NumberBuffer_PackForNative_m7790B7A255562FC1823BACABA471AF133A86D640((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), /*hidden argument*/NULL);
bool L_26 = Number_NumberBufferToDouble_mE27725FD73DD8B9F85044B850CBA7356C5A9082D((uint8_t*)(uint8_t*)L_25, (double*)(&V_2), /*hidden argument*/NULL);
if (L_26)
{
goto IL_00b5;
}
}
{
String_t* L_27 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral00C75FBF9FDF37741287FE5138D60B6AEC257FF6, /*hidden argument*/NULL);
OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_28 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var);
OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_28, L_27, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, NULL, Number_ParseDouble_m1114DFDF930B69AB3222044E9818855F131B5672_RuntimeMethod_var);
}
IL_00b5:
{
double L_29 = V_2;
return L_29;
}
}
// System.Int32 System.Number::ParseInt32(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR int32_t Number_ParseInt32_mF4B8DA28891C736EAC85641489780C2E91F8AECF (String_t* ___s0, int32_t ___style1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Number_ParseInt32_mF4B8DA28891C736EAC85641489780C2E91F8AECF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint8_t* V_0 = NULL;
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 V_1;
memset(&V_1, 0, sizeof(V_1));
int32_t V_2 = 0;
{
IL2CPP_RUNTIME_CLASS_INIT(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_il2cpp_TypeInfo_var);
int32_t L_0 = ((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_StaticFields*)il2cpp_codegen_static_fields_for(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_il2cpp_TypeInfo_var))->get_NumberBufferBytes_0();
int8_t* L_1 = (int8_t*) alloca((((uintptr_t)L_0)));
memset(L_1,0,(((uintptr_t)L_0)));
V_0 = (uint8_t*)(L_1);
uint8_t* L_2 = V_0;
NumberBuffer__ctor_m3CC10B06A100FC612C5BD24BBC5A20C2BCDCD68E((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), (uint8_t*)(uint8_t*)L_2, /*hidden argument*/NULL);
V_2 = 0;
String_t* L_3 = ___s0;
int32_t L_4 = ___style1;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_5 = ___info2;
Number_StringToNumber_m430FD04F901D7715B727832A85D4D8DCD6EB4BED(L_3, L_4, (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), L_5, (bool)0, /*hidden argument*/NULL);
int32_t L_6 = ___style1;
if (!((int32_t)((int32_t)L_6&(int32_t)((int32_t)512))))
{
goto IL_0042;
}
}
{
bool L_7 = Number_HexNumberToInt32_m9229BEC2774D0AC4211B2D01CDD18EB1FB5DDDD7((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), (int32_t*)(&V_2), /*hidden argument*/NULL);
if (L_7)
{
goto IL_005d;
}
}
{
String_t* L_8 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral858B28677610CF07E111998CCE040F14F5256455, /*hidden argument*/NULL);
OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_9 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var);
OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_9, L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Number_ParseInt32_mF4B8DA28891C736EAC85641489780C2E91F8AECF_RuntimeMethod_var);
}
IL_0042:
{
bool L_10 = Number_NumberToInt32_m21C6C8AB448D962C7658840F3C511835089D26E6((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), (int32_t*)(&V_2), /*hidden argument*/NULL);
if (L_10)
{
goto IL_005d;
}
}
{
String_t* L_11 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral858B28677610CF07E111998CCE040F14F5256455, /*hidden argument*/NULL);
OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_12 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var);
OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_12, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Number_ParseInt32_mF4B8DA28891C736EAC85641489780C2E91F8AECF_RuntimeMethod_var);
}
IL_005d:
{
int32_t L_13 = V_2;
return L_13;
}
}
// System.Int64 System.Number::ParseInt64(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR int64_t Number_ParseInt64_m33AA7A0F69E575B698C474AA716B508904B92B62 (String_t* ___value0, int32_t ___options1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numfmt2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Number_ParseInt64_m33AA7A0F69E575B698C474AA716B508904B92B62_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint8_t* V_0 = NULL;
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 V_1;
memset(&V_1, 0, sizeof(V_1));
int64_t V_2 = 0;
{
IL2CPP_RUNTIME_CLASS_INIT(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_il2cpp_TypeInfo_var);
int32_t L_0 = ((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_StaticFields*)il2cpp_codegen_static_fields_for(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_il2cpp_TypeInfo_var))->get_NumberBufferBytes_0();
int8_t* L_1 = (int8_t*) alloca((((uintptr_t)L_0)));
memset(L_1,0,(((uintptr_t)L_0)));
V_0 = (uint8_t*)(L_1);
uint8_t* L_2 = V_0;
NumberBuffer__ctor_m3CC10B06A100FC612C5BD24BBC5A20C2BCDCD68E((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), (uint8_t*)(uint8_t*)L_2, /*hidden argument*/NULL);
V_2 = (((int64_t)((int64_t)0)));
String_t* L_3 = ___value0;
int32_t L_4 = ___options1;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_5 = ___numfmt2;
Number_StringToNumber_m430FD04F901D7715B727832A85D4D8DCD6EB4BED(L_3, L_4, (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), L_5, (bool)0, /*hidden argument*/NULL);
int32_t L_6 = ___options1;
if (!((int32_t)((int32_t)L_6&(int32_t)((int32_t)512))))
{
goto IL_0043;
}
}
{
bool L_7 = Number_HexNumberToInt64_m378430BD3E19ACC499999BE305850B0AFD292313((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), (int64_t*)(&V_2), /*hidden argument*/NULL);
if (L_7)
{
goto IL_005e;
}
}
{
String_t* L_8 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral952604412082661142BB4448D6792E048E0317FC, /*hidden argument*/NULL);
OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_9 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var);
OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_9, L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Number_ParseInt64_m33AA7A0F69E575B698C474AA716B508904B92B62_RuntimeMethod_var);
}
IL_0043:
{
bool L_10 = Number_NumberToInt64_mC59DFAEF3C78A77FFFFA66937DD8109E747F4EE0((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), (int64_t*)(&V_2), /*hidden argument*/NULL);
if (L_10)
{
goto IL_005e;
}
}
{
String_t* L_11 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral952604412082661142BB4448D6792E048E0317FC, /*hidden argument*/NULL);
OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_12 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var);
OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_12, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Number_ParseInt64_m33AA7A0F69E575B698C474AA716B508904B92B62_RuntimeMethod_var);
}
IL_005e:
{
int64_t L_13 = V_2;
return L_13;
}
}
// System.Boolean System.Number::ParseNumber(System.Char*U26,System.Globalization.NumberStyles,System.Number_NumberBufferU26,System.Text.StringBuilder,System.Globalization.NumberFormatInfo,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR bool Number_ParseNumber_m17629D8063D3403750ED6ACEE47F9F3F3C682241 (Il2CppChar** ___str0, int32_t ___options1, NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number2, StringBuilder_t * ___sb3, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numfmt4, bool ___parseDecimal5, const RuntimeMethod* method)
{
String_t* V_0 = NULL;
String_t* V_1 = NULL;
String_t* V_2 = NULL;
String_t* V_3 = NULL;
String_t* V_4 = NULL;
String_t* V_5 = NULL;
bool V_6 = false;
int32_t V_7 = 0;
bool V_8 = false;
bool V_9 = false;
bool V_10 = false;
int32_t V_11 = 0;
Il2CppChar* V_12 = NULL;
Il2CppChar V_13 = 0x0;
Il2CppChar* V_14 = NULL;
int32_t V_15 = 0;
int32_t V_16 = 0;
bool V_17 = false;
Il2CppChar* V_18 = NULL;
int32_t V_19 = 0;
int32_t G_B8_0 = 0;
int32_t G_B11_0 = 0;
int32_t G_B21_0 = 0;
int32_t G_B48_0 = 0;
int32_t G_B106_0 = 0;
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_0 = ___number2;
L_0->set_scale_4(0);
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_1 = ___number2;
L_1->set_sign_5((bool)0);
V_2 = (String_t*)NULL;
V_3 = (String_t*)NULL;
V_4 = (String_t*)NULL;
V_5 = (String_t*)NULL;
V_6 = (bool)0;
int32_t L_2 = ___options1;
if (!((int32_t)((int32_t)L_2&(int32_t)((int32_t)256))))
{
goto IL_0064;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_3 = ___numfmt4;
NullCheck(L_3);
String_t* L_4 = NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16(L_3, /*hidden argument*/NULL);
V_2 = L_4;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_5 = ___numfmt4;
NullCheck(L_5);
String_t* L_6 = L_5->get_ansiCurrencySymbol_11();
if (!L_6)
{
goto IL_003d;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_7 = ___numfmt4;
NullCheck(L_7);
String_t* L_8 = L_7->get_ansiCurrencySymbol_11();
V_3 = L_8;
}
IL_003d:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_9 = ___numfmt4;
NullCheck(L_9);
String_t* L_10 = NumberFormatInfo_get_NumberDecimalSeparator_m1A9F946D267B5C2FC5982D34AF97D9AEB9C24A6E(L_9, /*hidden argument*/NULL);
V_4 = L_10;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_11 = ___numfmt4;
NullCheck(L_11);
String_t* L_12 = NumberFormatInfo_get_NumberGroupSeparator_mD995708E10C4CC55A19E7126E7A6C256A2DD1A35(L_11, /*hidden argument*/NULL);
V_5 = L_12;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_13 = ___numfmt4;
NullCheck(L_13);
String_t* L_14 = NumberFormatInfo_get_CurrencyDecimalSeparator_mB1EE2B6EA5D9F58355F26F071B9A08435378214D(L_13, /*hidden argument*/NULL);
V_0 = L_14;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_15 = ___numfmt4;
NullCheck(L_15);
String_t* L_16 = NumberFormatInfo_get_CurrencyGroupSeparator_m5AC1CA2A478284D1D059459951C8208168A20130(L_15, /*hidden argument*/NULL);
V_1 = L_16;
V_6 = (bool)1;
goto IL_0074;
}
IL_0064:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_17 = ___numfmt4;
NullCheck(L_17);
String_t* L_18 = NumberFormatInfo_get_NumberDecimalSeparator_m1A9F946D267B5C2FC5982D34AF97D9AEB9C24A6E(L_17, /*hidden argument*/NULL);
V_0 = L_18;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_19 = ___numfmt4;
NullCheck(L_19);
String_t* L_20 = NumberFormatInfo_get_NumberGroupSeparator_mD995708E10C4CC55A19E7126E7A6C256A2DD1A35(L_19, /*hidden argument*/NULL);
V_1 = L_20;
}
IL_0074:
{
V_7 = 0;
V_8 = (bool)0;
StringBuilder_t * L_21 = ___sb3;
V_9 = (bool)((!(((RuntimeObject*)(StringBuilder_t *)L_21) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_22 = V_9;
if (!L_22)
{
goto IL_0090;
}
}
{
int32_t L_23 = ___options1;
G_B8_0 = ((!(((uint32_t)((int32_t)((int32_t)L_23&(int32_t)((int32_t)512)))) <= ((uint32_t)0)))? 1 : 0);
goto IL_0091;
}
IL_0090:
{
G_B8_0 = 0;
}
IL_0091:
{
V_10 = (bool)G_B8_0;
bool L_24 = V_9;
if (L_24)
{
goto IL_009b;
}
}
{
G_B11_0 = ((int32_t)50);
goto IL_00a0;
}
IL_009b:
{
G_B11_0 = ((int32_t)2147483647LL);
}
IL_00a0:
{
V_11 = G_B11_0;
Il2CppChar** L_25 = ___str0;
V_12 = (Il2CppChar*)(*((intptr_t*)L_25));
Il2CppChar* L_26 = V_12;
int32_t L_27 = *((uint16_t*)L_26);
V_13 = L_27;
}
IL_00ab:
{
Il2CppChar L_28 = V_13;
bool L_29 = Number_IsWhite_m2FBD10D7315E0E9771F98FA00CA7787699C03700(L_28, /*hidden argument*/NULL);
if (!L_29)
{
goto IL_00df;
}
}
{
int32_t L_30 = ___options1;
if (!((int32_t)((int32_t)L_30&(int32_t)1)))
{
goto IL_00df;
}
}
{
int32_t L_31 = V_7;
if (!((int32_t)((int32_t)L_31&(int32_t)1)))
{
goto IL_019d;
}
}
{
int32_t L_32 = V_7;
if (!((int32_t)((int32_t)L_32&(int32_t)1)))
{
goto IL_00df;
}
}
{
int32_t L_33 = V_7;
if (((int32_t)((int32_t)L_33&(int32_t)((int32_t)32))))
{
goto IL_019d;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_34 = ___numfmt4;
NullCheck(L_34);
int32_t L_35 = NumberFormatInfo_get_NumberNegativePattern_mF41D38C78ED74CB2F365ECE09BFB386434F2B017(L_34, /*hidden argument*/NULL);
if ((((int32_t)L_35) == ((int32_t)2)))
{
goto IL_019d;
}
}
IL_00df:
{
int32_t L_36 = ___options1;
if (!((int32_t)((int32_t)L_36&(int32_t)4)))
{
goto IL_00ed;
}
}
{
int32_t L_37 = V_7;
G_B21_0 = ((((int32_t)((int32_t)((int32_t)L_37&(int32_t)1))) == ((int32_t)0))? 1 : 0);
goto IL_00ee;
}
IL_00ed:
{
G_B21_0 = 0;
}
IL_00ee:
{
int32_t L_38 = G_B21_0;
V_8 = (bool)L_38;
if (!L_38)
{
goto IL_0119;
}
}
{
Il2CppChar* L_39 = V_12;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_40 = ___numfmt4;
NullCheck(L_40);
String_t* L_41 = NumberFormatInfo_get_PositiveSign_m268EA84CDC3A03566ACDC10208E165DB74948747(L_40, /*hidden argument*/NULL);
Il2CppChar* L_42 = Number_MatchChars_mB3DAD884D42368A0428DACB98B14EAF4E223FAEA((Il2CppChar*)(Il2CppChar*)L_39, L_41, /*hidden argument*/NULL);
Il2CppChar* L_43 = (Il2CppChar*)L_42;
V_14 = (Il2CppChar*)L_43;
if ((((intptr_t)L_43) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_0119;
}
}
{
int32_t L_44 = V_7;
V_7 = ((int32_t)((int32_t)L_44|(int32_t)1));
Il2CppChar* L_45 = V_14;
V_12 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_45, (int32_t)2));
goto IL_019d;
}
IL_0119:
{
bool L_46 = V_8;
if (!L_46)
{
goto IL_0147;
}
}
{
Il2CppChar* L_47 = V_12;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_48 = ___numfmt4;
NullCheck(L_48);
String_t* L_49 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA(L_48, /*hidden argument*/NULL);
Il2CppChar* L_50 = Number_MatchChars_mB3DAD884D42368A0428DACB98B14EAF4E223FAEA((Il2CppChar*)(Il2CppChar*)L_47, L_49, /*hidden argument*/NULL);
Il2CppChar* L_51 = (Il2CppChar*)L_50;
V_14 = (Il2CppChar*)L_51;
if ((((intptr_t)L_51) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_0147;
}
}
{
int32_t L_52 = V_7;
V_7 = ((int32_t)((int32_t)L_52|(int32_t)1));
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_53 = ___number2;
L_53->set_sign_5((bool)1);
Il2CppChar* L_54 = V_14;
V_12 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_54, (int32_t)2));
goto IL_019d;
}
IL_0147:
{
Il2CppChar L_55 = V_13;
if ((!(((uint32_t)L_55) == ((uint32_t)((int32_t)40)))))
{
goto IL_0168;
}
}
{
int32_t L_56 = ___options1;
if (!((int32_t)((int32_t)L_56&(int32_t)((int32_t)16))))
{
goto IL_0168;
}
}
{
int32_t L_57 = V_7;
if (((int32_t)((int32_t)L_57&(int32_t)1)))
{
goto IL_0168;
}
}
{
int32_t L_58 = V_7;
V_7 = ((int32_t)((int32_t)L_58|(int32_t)3));
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_59 = ___number2;
L_59->set_sign_5((bool)1);
goto IL_019d;
}
IL_0168:
{
String_t* L_60 = V_2;
if (!L_60)
{
goto IL_017a;
}
}
{
Il2CppChar* L_61 = V_12;
String_t* L_62 = V_2;
Il2CppChar* L_63 = Number_MatchChars_mB3DAD884D42368A0428DACB98B14EAF4E223FAEA((Il2CppChar*)(Il2CppChar*)L_61, L_62, /*hidden argument*/NULL);
Il2CppChar* L_64 = (Il2CppChar*)L_63;
V_14 = (Il2CppChar*)L_64;
if ((!(((uintptr_t)L_64) == ((uintptr_t)(((uintptr_t)0))))))
{
goto IL_018c;
}
}
IL_017a:
{
String_t* L_65 = V_3;
if (!L_65)
{
goto IL_01ac;
}
}
{
Il2CppChar* L_66 = V_12;
String_t* L_67 = V_3;
Il2CppChar* L_68 = Number_MatchChars_mB3DAD884D42368A0428DACB98B14EAF4E223FAEA((Il2CppChar*)(Il2CppChar*)L_66, L_67, /*hidden argument*/NULL);
Il2CppChar* L_69 = (Il2CppChar*)L_68;
V_14 = (Il2CppChar*)L_69;
if ((((intptr_t)L_69) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_01ac;
}
}
IL_018c:
{
int32_t L_70 = V_7;
V_7 = ((int32_t)((int32_t)L_70|(int32_t)((int32_t)32)));
V_2 = (String_t*)NULL;
V_3 = (String_t*)NULL;
Il2CppChar* L_71 = V_14;
V_12 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_71, (int32_t)2));
}
IL_019d:
{
Il2CppChar* L_72 = V_12;
Il2CppChar* L_73 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_72, (int32_t)2));
V_12 = (Il2CppChar*)L_73;
int32_t L_74 = *((uint16_t*)L_73);
V_13 = L_74;
goto IL_00ab;
}
IL_01ac:
{
V_15 = 0;
V_16 = 0;
}
IL_01b2:
{
Il2CppChar L_75 = V_13;
if ((((int32_t)L_75) < ((int32_t)((int32_t)48))))
{
goto IL_01be;
}
}
{
Il2CppChar L_76 = V_13;
if ((((int32_t)L_76) <= ((int32_t)((int32_t)57))))
{
goto IL_01e8;
}
}
IL_01be:
{
int32_t L_77 = ___options1;
if (!((int32_t)((int32_t)L_77&(int32_t)((int32_t)512))))
{
goto IL_0275;
}
}
{
Il2CppChar L_78 = V_13;
if ((((int32_t)L_78) < ((int32_t)((int32_t)97))))
{
goto IL_01d6;
}
}
{
Il2CppChar L_79 = V_13;
if ((((int32_t)L_79) <= ((int32_t)((int32_t)102))))
{
goto IL_01e8;
}
}
IL_01d6:
{
Il2CppChar L_80 = V_13;
if ((((int32_t)L_80) < ((int32_t)((int32_t)65))))
{
goto IL_0275;
}
}
{
Il2CppChar L_81 = V_13;
if ((((int32_t)L_81) > ((int32_t)((int32_t)70))))
{
goto IL_0275;
}
}
IL_01e8:
{
int32_t L_82 = V_7;
V_7 = ((int32_t)((int32_t)L_82|(int32_t)4));
Il2CppChar L_83 = V_13;
if ((!(((uint32_t)L_83) == ((uint32_t)((int32_t)48)))))
{
goto IL_01fd;
}
}
{
int32_t L_84 = V_7;
G_B48_0 = ((!(((uint32_t)((int32_t)((int32_t)L_84&(int32_t)8))) <= ((uint32_t)0)))? 1 : 0);
goto IL_01fe;
}
IL_01fd:
{
G_B48_0 = 1;
}
IL_01fe:
{
bool L_85 = V_10;
if (!((int32_t)((int32_t)G_B48_0|(int32_t)L_85)))
{
goto IL_025b;
}
}
{
int32_t L_86 = V_15;
int32_t L_87 = V_11;
if ((((int32_t)L_86) >= ((int32_t)L_87)))
{
goto IL_023e;
}
}
{
bool L_88 = V_9;
if (!L_88)
{
goto IL_0218;
}
}
{
StringBuilder_t * L_89 = ___sb3;
Il2CppChar L_90 = V_13;
NullCheck(L_89);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_89, L_90, /*hidden argument*/NULL);
goto IL_022c;
}
IL_0218:
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_91 = ___number2;
Il2CppChar* L_92 = L_91->get_digits_2();
int32_t L_93 = V_15;
int32_t L_94 = L_93;
V_15 = ((int32_t)il2cpp_codegen_add((int32_t)L_94, (int32_t)1));
Il2CppChar L_95 = V_13;
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_92, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_94)), (int32_t)2))))) = (int16_t)L_95;
}
IL_022c:
{
Il2CppChar L_96 = V_13;
bool L_97 = ___parseDecimal5;
if (!((int32_t)((int32_t)((((int32_t)((((int32_t)L_96) == ((int32_t)((int32_t)48)))? 1 : 0)) == ((int32_t)0))? 1 : 0)|(int32_t)L_97)))
{
goto IL_023e;
}
}
{
int32_t L_98 = V_15;
V_16 = L_98;
}
IL_023e:
{
int32_t L_99 = V_7;
if (((int32_t)((int32_t)L_99&(int32_t)((int32_t)16))))
{
goto IL_0250;
}
}
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_100 = ___number2;
int32_t* L_101 = L_100->get_address_of_scale_4();
int32_t* L_102 = L_101;
int32_t L_103 = *((int32_t*)L_102);
*((int32_t*)L_102) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_103, (int32_t)1));
}
IL_0250:
{
int32_t L_104 = V_7;
V_7 = ((int32_t)((int32_t)L_104|(int32_t)8));
goto IL_02fe;
}
IL_025b:
{
int32_t L_105 = V_7;
if (!((int32_t)((int32_t)L_105&(int32_t)((int32_t)16))))
{
goto IL_02fe;
}
}
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_106 = ___number2;
int32_t* L_107 = L_106->get_address_of_scale_4();
int32_t* L_108 = L_107;
int32_t L_109 = *((int32_t*)L_108);
*((int32_t*)L_108) = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_109, (int32_t)1));
goto IL_02fe;
}
IL_0275:
{
int32_t L_110 = ___options1;
if (!((int32_t)((int32_t)L_110&(int32_t)((int32_t)32))))
{
goto IL_02bb;
}
}
{
int32_t L_111 = V_7;
if (((int32_t)((int32_t)L_111&(int32_t)((int32_t)16))))
{
goto IL_02bb;
}
}
{
Il2CppChar* L_112 = V_12;
String_t* L_113 = V_0;
Il2CppChar* L_114 = Number_MatchChars_mB3DAD884D42368A0428DACB98B14EAF4E223FAEA((Il2CppChar*)(Il2CppChar*)L_112, L_113, /*hidden argument*/NULL);
Il2CppChar* L_115 = (Il2CppChar*)L_114;
V_14 = (Il2CppChar*)L_115;
if ((!(((uintptr_t)L_115) == ((uintptr_t)(((uintptr_t)0))))))
{
goto IL_02ac;
}
}
{
bool L_116 = V_6;
if (!L_116)
{
goto IL_02bb;
}
}
{
int32_t L_117 = V_7;
if (((int32_t)((int32_t)L_117&(int32_t)((int32_t)32))))
{
goto IL_02bb;
}
}
{
Il2CppChar* L_118 = V_12;
String_t* L_119 = V_4;
Il2CppChar* L_120 = Number_MatchChars_mB3DAD884D42368A0428DACB98B14EAF4E223FAEA((Il2CppChar*)(Il2CppChar*)L_118, L_119, /*hidden argument*/NULL);
Il2CppChar* L_121 = (Il2CppChar*)L_120;
V_14 = (Il2CppChar*)L_121;
if ((((intptr_t)L_121) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_02bb;
}
}
IL_02ac:
{
int32_t L_122 = V_7;
V_7 = ((int32_t)((int32_t)L_122|(int32_t)((int32_t)16)));
Il2CppChar* L_123 = V_14;
V_12 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_123, (int32_t)2));
goto IL_02fe;
}
IL_02bb:
{
int32_t L_124 = ___options1;
if (!((int32_t)((int32_t)L_124&(int32_t)((int32_t)64))))
{
goto IL_030d;
}
}
{
int32_t L_125 = V_7;
if (!((int32_t)((int32_t)L_125&(int32_t)4)))
{
goto IL_030d;
}
}
{
int32_t L_126 = V_7;
if (((int32_t)((int32_t)L_126&(int32_t)((int32_t)16))))
{
goto IL_030d;
}
}
{
Il2CppChar* L_127 = V_12;
String_t* L_128 = V_1;
Il2CppChar* L_129 = Number_MatchChars_mB3DAD884D42368A0428DACB98B14EAF4E223FAEA((Il2CppChar*)(Il2CppChar*)L_127, L_128, /*hidden argument*/NULL);
Il2CppChar* L_130 = (Il2CppChar*)L_129;
V_14 = (Il2CppChar*)L_130;
if ((!(((uintptr_t)L_130) == ((uintptr_t)(((uintptr_t)0))))))
{
goto IL_02f8;
}
}
{
bool L_131 = V_6;
if (!L_131)
{
goto IL_030d;
}
}
{
int32_t L_132 = V_7;
if (((int32_t)((int32_t)L_132&(int32_t)((int32_t)32))))
{
goto IL_030d;
}
}
{
Il2CppChar* L_133 = V_12;
String_t* L_134 = V_5;
Il2CppChar* L_135 = Number_MatchChars_mB3DAD884D42368A0428DACB98B14EAF4E223FAEA((Il2CppChar*)(Il2CppChar*)L_133, L_134, /*hidden argument*/NULL);
Il2CppChar* L_136 = (Il2CppChar*)L_135;
V_14 = (Il2CppChar*)L_136;
if ((((intptr_t)L_136) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_030d;
}
}
IL_02f8:
{
Il2CppChar* L_137 = V_14;
V_12 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_137, (int32_t)2));
}
IL_02fe:
{
Il2CppChar* L_138 = V_12;
Il2CppChar* L_139 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_138, (int32_t)2));
V_12 = (Il2CppChar*)L_139;
int32_t L_140 = *((uint16_t*)L_139);
V_13 = L_140;
goto IL_01b2;
}
IL_030d:
{
V_17 = (bool)0;
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_141 = ___number2;
int32_t L_142 = V_16;
L_141->set_precision_3(L_142);
bool L_143 = V_9;
if (!L_143)
{
goto IL_0326;
}
}
{
StringBuilder_t * L_144 = ___sb3;
NullCheck(L_144);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_144, 0, /*hidden argument*/NULL);
goto IL_0334;
}
IL_0326:
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_145 = ___number2;
Il2CppChar* L_146 = L_145->get_digits_2();
int32_t L_147 = V_16;
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_146, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_147)), (int32_t)2))))) = (int16_t)0;
}
IL_0334:
{
int32_t L_148 = V_7;
if (!((int32_t)((int32_t)L_148&(int32_t)4)))
{
goto IL_0512;
}
}
{
Il2CppChar L_149 = V_13;
if ((((int32_t)L_149) == ((int32_t)((int32_t)69))))
{
goto IL_034c;
}
}
{
Il2CppChar L_150 = V_13;
if ((!(((uint32_t)L_150) == ((uint32_t)((int32_t)101)))))
{
goto IL_041f;
}
}
IL_034c:
{
int32_t L_151 = ___options1;
if (!((int32_t)((int32_t)L_151&(int32_t)((int32_t)128))))
{
goto IL_041f;
}
}
{
Il2CppChar* L_152 = V_12;
V_18 = (Il2CppChar*)L_152;
Il2CppChar* L_153 = V_12;
Il2CppChar* L_154 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_153, (int32_t)2));
V_12 = (Il2CppChar*)L_154;
int32_t L_155 = *((uint16_t*)L_154);
V_13 = L_155;
Il2CppChar* L_156 = V_12;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_157 = ___numfmt4;
NullCheck(L_157);
String_t* L_158 = NumberFormatInfo_get_PositiveSign_m268EA84CDC3A03566ACDC10208E165DB74948747(L_157, /*hidden argument*/NULL);
Il2CppChar* L_159 = Number_MatchChars_mB3DAD884D42368A0428DACB98B14EAF4E223FAEA((Il2CppChar*)(Il2CppChar*)L_156, L_158, /*hidden argument*/NULL);
Il2CppChar* L_160 = (Il2CppChar*)L_159;
V_14 = (Il2CppChar*)L_160;
if ((((intptr_t)L_160) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_0385;
}
}
{
Il2CppChar* L_161 = V_14;
Il2CppChar* L_162 = (Il2CppChar*)L_161;
V_12 = (Il2CppChar*)L_162;
int32_t L_163 = *((uint16_t*)L_162);
V_13 = L_163;
goto IL_03a5;
}
IL_0385:
{
Il2CppChar* L_164 = V_12;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_165 = ___numfmt4;
NullCheck(L_165);
String_t* L_166 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA(L_165, /*hidden argument*/NULL);
Il2CppChar* L_167 = Number_MatchChars_mB3DAD884D42368A0428DACB98B14EAF4E223FAEA((Il2CppChar*)(Il2CppChar*)L_164, L_166, /*hidden argument*/NULL);
Il2CppChar* L_168 = (Il2CppChar*)L_167;
V_14 = (Il2CppChar*)L_168;
if ((((intptr_t)L_168) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_03a5;
}
}
{
Il2CppChar* L_169 = V_14;
Il2CppChar* L_170 = (Il2CppChar*)L_169;
V_12 = (Il2CppChar*)L_170;
int32_t L_171 = *((uint16_t*)L_170);
V_13 = L_171;
V_17 = (bool)1;
}
IL_03a5:
{
Il2CppChar L_172 = V_13;
if ((((int32_t)L_172) < ((int32_t)((int32_t)48))))
{
goto IL_0416;
}
}
{
Il2CppChar L_173 = V_13;
if ((((int32_t)L_173) > ((int32_t)((int32_t)57))))
{
goto IL_0416;
}
}
{
V_19 = 0;
}
IL_03b4:
{
int32_t L_174 = V_19;
Il2CppChar L_175 = V_13;
V_19 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_174, (int32_t)((int32_t)10))), (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_175, (int32_t)((int32_t)48)))));
Il2CppChar* L_176 = V_12;
Il2CppChar* L_177 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_176, (int32_t)2));
V_12 = (Il2CppChar*)L_177;
int32_t L_178 = *((uint16_t*)L_177);
V_13 = L_178;
int32_t L_179 = V_19;
if ((((int32_t)L_179) <= ((int32_t)((int32_t)1000))))
{
goto IL_03f3;
}
}
{
V_19 = ((int32_t)9999);
goto IL_03e7;
}
IL_03dd:
{
Il2CppChar* L_180 = V_12;
Il2CppChar* L_181 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_180, (int32_t)2));
V_12 = (Il2CppChar*)L_181;
int32_t L_182 = *((uint16_t*)L_181);
V_13 = L_182;
}
IL_03e7:
{
Il2CppChar L_183 = V_13;
if ((((int32_t)L_183) < ((int32_t)((int32_t)48))))
{
goto IL_03f3;
}
}
{
Il2CppChar L_184 = V_13;
if ((((int32_t)L_184) <= ((int32_t)((int32_t)57))))
{
goto IL_03dd;
}
}
IL_03f3:
{
Il2CppChar L_185 = V_13;
if ((((int32_t)L_185) < ((int32_t)((int32_t)48))))
{
goto IL_03ff;
}
}
{
Il2CppChar L_186 = V_13;
if ((((int32_t)L_186) <= ((int32_t)((int32_t)57))))
{
goto IL_03b4;
}
}
IL_03ff:
{
bool L_187 = V_17;
if (!L_187)
{
goto IL_0408;
}
}
{
int32_t L_188 = V_19;
V_19 = ((-L_188));
}
IL_0408:
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_189 = ___number2;
int32_t* L_190 = L_189->get_address_of_scale_4();
int32_t* L_191 = L_190;
int32_t L_192 = *((int32_t*)L_191);
int32_t L_193 = V_19;
*((int32_t*)L_191) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_192, (int32_t)L_193));
goto IL_041f;
}
IL_0416:
{
Il2CppChar* L_194 = V_18;
V_12 = (Il2CppChar*)L_194;
Il2CppChar* L_195 = V_12;
int32_t L_196 = *((uint16_t*)L_195);
V_13 = L_196;
}
IL_041f:
{
Il2CppChar L_197 = V_13;
bool L_198 = Number_IsWhite_m2FBD10D7315E0E9771F98FA00CA7787699C03700(L_197, /*hidden argument*/NULL);
if (!L_198)
{
goto IL_0430;
}
}
{
int32_t L_199 = ___options1;
if (((int32_t)((int32_t)L_199&(int32_t)2)))
{
goto IL_04d8;
}
}
IL_0430:
{
int32_t L_200 = ___options1;
if (!((int32_t)((int32_t)L_200&(int32_t)8)))
{
goto IL_043e;
}
}
{
int32_t L_201 = V_7;
G_B106_0 = ((((int32_t)((int32_t)((int32_t)L_201&(int32_t)1))) == ((int32_t)0))? 1 : 0);
goto IL_043f;
}
IL_043e:
{
G_B106_0 = 0;
}
IL_043f:
{
int32_t L_202 = G_B106_0;
V_8 = (bool)L_202;
if (!L_202)
{
goto IL_0467;
}
}
{
Il2CppChar* L_203 = V_12;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_204 = ___numfmt4;
NullCheck(L_204);
String_t* L_205 = NumberFormatInfo_get_PositiveSign_m268EA84CDC3A03566ACDC10208E165DB74948747(L_204, /*hidden argument*/NULL);
Il2CppChar* L_206 = Number_MatchChars_mB3DAD884D42368A0428DACB98B14EAF4E223FAEA((Il2CppChar*)(Il2CppChar*)L_203, L_205, /*hidden argument*/NULL);
Il2CppChar* L_207 = (Il2CppChar*)L_206;
V_14 = (Il2CppChar*)L_207;
if ((((intptr_t)L_207) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_0467;
}
}
{
int32_t L_208 = V_7;
V_7 = ((int32_t)((int32_t)L_208|(int32_t)1));
Il2CppChar* L_209 = V_14;
V_12 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_209, (int32_t)2));
goto IL_04d8;
}
IL_0467:
{
bool L_210 = V_8;
if (!L_210)
{
goto IL_0495;
}
}
{
Il2CppChar* L_211 = V_12;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_212 = ___numfmt4;
NullCheck(L_212);
String_t* L_213 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA(L_212, /*hidden argument*/NULL);
Il2CppChar* L_214 = Number_MatchChars_mB3DAD884D42368A0428DACB98B14EAF4E223FAEA((Il2CppChar*)(Il2CppChar*)L_211, L_213, /*hidden argument*/NULL);
Il2CppChar* L_215 = (Il2CppChar*)L_214;
V_14 = (Il2CppChar*)L_215;
if ((((intptr_t)L_215) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_0495;
}
}
{
int32_t L_216 = V_7;
V_7 = ((int32_t)((int32_t)L_216|(int32_t)1));
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_217 = ___number2;
L_217->set_sign_5((bool)1);
Il2CppChar* L_218 = V_14;
V_12 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_218, (int32_t)2));
goto IL_04d8;
}
IL_0495:
{
Il2CppChar L_219 = V_13;
if ((!(((uint32_t)L_219) == ((uint32_t)((int32_t)41)))))
{
goto IL_04aa;
}
}
{
int32_t L_220 = V_7;
if (!((int32_t)((int32_t)L_220&(int32_t)2)))
{
goto IL_04aa;
}
}
{
int32_t L_221 = V_7;
V_7 = ((int32_t)((int32_t)L_221&(int32_t)((int32_t)-3)));
goto IL_04d8;
}
IL_04aa:
{
String_t* L_222 = V_2;
if (!L_222)
{
goto IL_04bc;
}
}
{
Il2CppChar* L_223 = V_12;
String_t* L_224 = V_2;
Il2CppChar* L_225 = Number_MatchChars_mB3DAD884D42368A0428DACB98B14EAF4E223FAEA((Il2CppChar*)(Il2CppChar*)L_223, L_224, /*hidden argument*/NULL);
Il2CppChar* L_226 = (Il2CppChar*)L_225;
V_14 = (Il2CppChar*)L_226;
if ((!(((uintptr_t)L_226) == ((uintptr_t)(((uintptr_t)0))))))
{
goto IL_04ce;
}
}
IL_04bc:
{
String_t* L_227 = V_3;
if (!L_227)
{
goto IL_04e7;
}
}
{
Il2CppChar* L_228 = V_12;
String_t* L_229 = V_3;
Il2CppChar* L_230 = Number_MatchChars_mB3DAD884D42368A0428DACB98B14EAF4E223FAEA((Il2CppChar*)(Il2CppChar*)L_228, L_229, /*hidden argument*/NULL);
Il2CppChar* L_231 = (Il2CppChar*)L_230;
V_14 = (Il2CppChar*)L_231;
if ((((intptr_t)L_231) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_04e7;
}
}
IL_04ce:
{
V_2 = (String_t*)NULL;
V_3 = (String_t*)NULL;
Il2CppChar* L_232 = V_14;
V_12 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_232, (int32_t)2));
}
IL_04d8:
{
Il2CppChar* L_233 = V_12;
Il2CppChar* L_234 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_233, (int32_t)2));
V_12 = (Il2CppChar*)L_234;
int32_t L_235 = *((uint16_t*)L_234);
V_13 = L_235;
goto IL_041f;
}
IL_04e7:
{
int32_t L_236 = V_7;
if (((int32_t)((int32_t)L_236&(int32_t)2)))
{
goto IL_0512;
}
}
{
int32_t L_237 = V_7;
if (((int32_t)((int32_t)L_237&(int32_t)8)))
{
goto IL_050c;
}
}
{
bool L_238 = ___parseDecimal5;
if (L_238)
{
goto IL_04fe;
}
}
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_239 = ___number2;
L_239->set_scale_4(0);
}
IL_04fe:
{
int32_t L_240 = V_7;
if (((int32_t)((int32_t)L_240&(int32_t)((int32_t)16))))
{
goto IL_050c;
}
}
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_241 = ___number2;
L_241->set_sign_5((bool)0);
}
IL_050c:
{
Il2CppChar** L_242 = ___str0;
Il2CppChar* L_243 = V_12;
*((intptr_t*)L_242) = (intptr_t)L_243;
return (bool)1;
}
IL_0512:
{
Il2CppChar** L_244 = ___str0;
Il2CppChar* L_245 = V_12;
*((intptr_t*)L_244) = (intptr_t)L_245;
return (bool)0;
}
}
// System.Single System.Number::ParseSingle(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR float Number_ParseSingle_mF8DD4A8C88973C759A7700C1A9B126566AFAFC4B (String_t* ___value0, int32_t ___options1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numfmt2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Number_ParseSingle_mF8DD4A8C88973C759A7700C1A9B126566AFAFC4B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint8_t* V_0 = NULL;
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 V_1;
memset(&V_1, 0, sizeof(V_1));
double V_2 = 0.0;
String_t* V_3 = NULL;
float G_B14_0 = 0.0f;
float G_B13_0 = 0.0f;
{
String_t* 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, NULL, Number_ParseSingle_mF8DD4A8C88973C759A7700C1A9B126566AFAFC4B_RuntimeMethod_var);
}
IL_000e:
{
IL2CPP_RUNTIME_CLASS_INIT(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_il2cpp_TypeInfo_var);
int32_t L_2 = ((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_StaticFields*)il2cpp_codegen_static_fields_for(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_il2cpp_TypeInfo_var))->get_NumberBufferBytes_0();
int8_t* L_3 = (int8_t*) alloca((((uintptr_t)L_2)));
memset(L_3,0,(((uintptr_t)L_2)));
V_0 = (uint8_t*)(L_3);
uint8_t* L_4 = V_0;
NumberBuffer__ctor_m3CC10B06A100FC612C5BD24BBC5A20C2BCDCD68E((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), (uint8_t*)(uint8_t*)L_4, /*hidden argument*/NULL);
V_2 = (0.0);
String_t* L_5 = ___value0;
int32_t L_6 = ___options1;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_7 = ___numfmt2;
bool L_8 = Number_TryStringToNumber_mDA7F326F742680FF01ACA545ED511EE80A3248D7(L_5, L_6, (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), L_7, (bool)0, /*hidden argument*/NULL);
if (L_8)
{
goto IL_0089;
}
}
{
String_t* L_9 = ___value0;
NullCheck(L_9);
String_t* L_10 = String_Trim_mB52EB7876C7132358B76B7DC95DEACA20722EF4D(L_9, /*hidden argument*/NULL);
V_3 = L_10;
String_t* L_11 = V_3;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_12 = ___numfmt2;
NullCheck(L_12);
String_t* L_13 = NumberFormatInfo_get_PositiveInfinitySymbol_m7602CB28ED33148275C2ED9CF8395241BF8E0F0A(L_12, /*hidden argument*/NULL);
NullCheck(L_11);
bool L_14 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_11, L_13, /*hidden argument*/NULL);
if (!L_14)
{
goto IL_0051;
}
}
{
return (std::numeric_limits<float>::infinity());
}
IL_0051:
{
String_t* L_15 = V_3;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_16 = ___numfmt2;
NullCheck(L_16);
String_t* L_17 = NumberFormatInfo_get_NegativeInfinitySymbol_m8C1DDF6E543F2193CD0BE65F67175E4DECED1DB8(L_16, /*hidden argument*/NULL);
NullCheck(L_15);
bool L_18 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_15, L_17, /*hidden argument*/NULL);
if (!L_18)
{
goto IL_0065;
}
}
{
return (-std::numeric_limits<float>::infinity());
}
IL_0065:
{
String_t* L_19 = V_3;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_20 = ___numfmt2;
NullCheck(L_20);
String_t* L_21 = NumberFormatInfo_get_NaNSymbol_m82326D3E16F9834D5138685A6956EE154944891E(L_20, /*hidden argument*/NULL);
NullCheck(L_19);
bool L_22 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_19, L_21, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_0079;
}
}
{
return (std::numeric_limits<float>::quiet_NaN());
}
IL_0079:
{
String_t* L_23 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD2F0257C42607F2773F4B8AAB0C017A3B8949322, /*hidden argument*/NULL);
FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * L_24 = (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC *)il2cpp_codegen_object_new(FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var);
FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14(L_24, L_23, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, NULL, Number_ParseSingle_mF8DD4A8C88973C759A7700C1A9B126566AFAFC4B_RuntimeMethod_var);
}
IL_0089:
{
uint8_t* L_25 = NumberBuffer_PackForNative_m7790B7A255562FC1823BACABA471AF133A86D640((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), /*hidden argument*/NULL);
bool L_26 = Number_NumberBufferToDouble_mE27725FD73DD8B9F85044B850CBA7356C5A9082D((uint8_t*)(uint8_t*)L_25, (double*)(&V_2), /*hidden argument*/NULL);
if (L_26)
{
goto IL_00a9;
}
}
{
String_t* L_27 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralAC231C16BB6DC0735FDE11475AE90E9439B40BC1, /*hidden argument*/NULL);
OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_28 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var);
OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_28, L_27, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, NULL, Number_ParseSingle_mF8DD4A8C88973C759A7700C1A9B126566AFAFC4B_RuntimeMethod_var);
}
IL_00a9:
{
double L_29 = V_2;
float L_30 = (((float)((float)L_29)));
bool L_31 = Single_IsInfinity_m811B198540AB538C4FE145F7C0303C4AD772988B(L_30, /*hidden argument*/NULL);
G_B13_0 = L_30;
if (!L_31)
{
G_B14_0 = L_30;
goto IL_00c3;
}
}
{
String_t* L_32 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralAC231C16BB6DC0735FDE11475AE90E9439B40BC1, /*hidden argument*/NULL);
OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_33 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var);
OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_33, L_32, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_33, NULL, Number_ParseSingle_mF8DD4A8C88973C759A7700C1A9B126566AFAFC4B_RuntimeMethod_var);
}
IL_00c3:
{
return G_B14_0;
}
}
// System.UInt32 System.Number::ParseUInt32(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR uint32_t Number_ParseUInt32_mF280A62925FED84E23D64DC6B86BC50AD96896FB (String_t* ___value0, int32_t ___options1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numfmt2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Number_ParseUInt32_mF280A62925FED84E23D64DC6B86BC50AD96896FB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint8_t* V_0 = NULL;
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 V_1;
memset(&V_1, 0, sizeof(V_1));
uint32_t V_2 = 0;
{
IL2CPP_RUNTIME_CLASS_INIT(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_il2cpp_TypeInfo_var);
int32_t L_0 = ((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_StaticFields*)il2cpp_codegen_static_fields_for(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_il2cpp_TypeInfo_var))->get_NumberBufferBytes_0();
int8_t* L_1 = (int8_t*) alloca((((uintptr_t)L_0)));
memset(L_1,0,(((uintptr_t)L_0)));
V_0 = (uint8_t*)(L_1);
uint8_t* L_2 = V_0;
NumberBuffer__ctor_m3CC10B06A100FC612C5BD24BBC5A20C2BCDCD68E((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), (uint8_t*)(uint8_t*)L_2, /*hidden argument*/NULL);
V_2 = 0;
String_t* L_3 = ___value0;
int32_t L_4 = ___options1;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_5 = ___numfmt2;
Number_StringToNumber_m430FD04F901D7715B727832A85D4D8DCD6EB4BED(L_3, L_4, (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), L_5, (bool)0, /*hidden argument*/NULL);
int32_t L_6 = ___options1;
if (!((int32_t)((int32_t)L_6&(int32_t)((int32_t)512))))
{
goto IL_0042;
}
}
{
bool L_7 = Number_HexNumberToUInt32_mCF1D424CBE49EEA9B5D2546B705C79519A41195F((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), (uint32_t*)(&V_2), /*hidden argument*/NULL);
if (L_7)
{
goto IL_005d;
}
}
{
String_t* L_8 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral2E2FC55ECA0F95E74B3E4F4CEB108D4486D3F1A6, /*hidden argument*/NULL);
OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_9 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var);
OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_9, L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Number_ParseUInt32_mF280A62925FED84E23D64DC6B86BC50AD96896FB_RuntimeMethod_var);
}
IL_0042:
{
bool L_10 = Number_NumberToUInt32_m60BDF4513A1673F8F993CAA12CA865FD4294308F((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), (uint32_t*)(&V_2), /*hidden argument*/NULL);
if (L_10)
{
goto IL_005d;
}
}
{
String_t* L_11 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral2E2FC55ECA0F95E74B3E4F4CEB108D4486D3F1A6, /*hidden argument*/NULL);
OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_12 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var);
OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_12, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Number_ParseUInt32_mF280A62925FED84E23D64DC6B86BC50AD96896FB_RuntimeMethod_var);
}
IL_005d:
{
uint32_t L_13 = V_2;
return L_13;
}
}
// System.UInt64 System.Number::ParseUInt64(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR uint64_t Number_ParseUInt64_m80F0E92F3D98C3390741451845F261F93A103E27 (String_t* ___value0, int32_t ___options1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numfmt2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Number_ParseUInt64_m80F0E92F3D98C3390741451845F261F93A103E27_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint8_t* V_0 = NULL;
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 V_1;
memset(&V_1, 0, sizeof(V_1));
uint64_t V_2 = 0;
{
IL2CPP_RUNTIME_CLASS_INIT(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_il2cpp_TypeInfo_var);
int32_t L_0 = ((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_StaticFields*)il2cpp_codegen_static_fields_for(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_il2cpp_TypeInfo_var))->get_NumberBufferBytes_0();
int8_t* L_1 = (int8_t*) alloca((((uintptr_t)L_0)));
memset(L_1,0,(((uintptr_t)L_0)));
V_0 = (uint8_t*)(L_1);
uint8_t* L_2 = V_0;
NumberBuffer__ctor_m3CC10B06A100FC612C5BD24BBC5A20C2BCDCD68E((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), (uint8_t*)(uint8_t*)L_2, /*hidden argument*/NULL);
V_2 = (((int64_t)((int64_t)0)));
String_t* L_3 = ___value0;
int32_t L_4 = ___options1;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_5 = ___numfmt2;
Number_StringToNumber_m430FD04F901D7715B727832A85D4D8DCD6EB4BED(L_3, L_4, (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), L_5, (bool)0, /*hidden argument*/NULL);
int32_t L_6 = ___options1;
if (!((int32_t)((int32_t)L_6&(int32_t)((int32_t)512))))
{
goto IL_0043;
}
}
{
bool L_7 = Number_HexNumberToUInt64_mD5003F23674F5CF4D681066993ECC3F4DD9D4252((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), (uint64_t*)(&V_2), /*hidden argument*/NULL);
if (L_7)
{
goto IL_005e;
}
}
{
String_t* L_8 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral4FA1555162B320F87E718E7D03508690DA6245A7, /*hidden argument*/NULL);
OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_9 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var);
OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_9, L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Number_ParseUInt64_m80F0E92F3D98C3390741451845F261F93A103E27_RuntimeMethod_var);
}
IL_0043:
{
bool L_10 = Number_NumberToUInt64_m4F1E853E52800DA97846B99A6989596F310501C0((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), (uint64_t*)(&V_2), /*hidden argument*/NULL);
if (L_10)
{
goto IL_005e;
}
}
{
String_t* L_11 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral4FA1555162B320F87E718E7D03508690DA6245A7, /*hidden argument*/NULL);
OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_12 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var);
OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_12, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Number_ParseUInt64_m80F0E92F3D98C3390741451845F261F93A103E27_RuntimeMethod_var);
}
IL_005e:
{
uint64_t L_13 = V_2;
return L_13;
}
}
// System.Void System.Number::StringToNumber(System.String,System.Globalization.NumberStyles,System.Number_NumberBufferU26,System.Globalization.NumberFormatInfo,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void Number_StringToNumber_m430FD04F901D7715B727832A85D4D8DCD6EB4BED (String_t* ___str0, int32_t ___options1, NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number2, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info3, bool ___parseDecimal4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Number_StringToNumber_m430FD04F901D7715B727832A85D4D8DCD6EB4BED_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Il2CppChar* V_0 = NULL;
String_t* V_1 = NULL;
Il2CppChar* V_2 = NULL;
{
String_t* L_0 = ___str0;
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, _stringLiteral3DF63B7ACB0522DA685DAD5FE84B81FDD7B25264, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Number_StringToNumber_m430FD04F901D7715B727832A85D4D8DCD6EB4BED_RuntimeMethod_var);
}
IL_000e:
{
String_t* L_2 = ___str0;
V_1 = L_2;
String_t* L_3 = V_1;
V_0 = (Il2CppChar*)(((uintptr_t)L_3));
Il2CppChar* L_4 = V_0;
if (!L_4)
{
goto IL_001e;
}
}
{
Il2CppChar* L_5 = V_0;
int32_t L_6 = RuntimeHelpers_get_OffsetToStringData_mF3B79A906181F1A2734590DA161E2AF183853F8B(/*hidden argument*/NULL);
V_0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_5, (int32_t)L_6));
}
IL_001e:
{
Il2CppChar* L_7 = V_0;
V_2 = (Il2CppChar*)L_7;
int32_t L_8 = ___options1;
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_9 = ___number2;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_10 = ___info3;
bool L_11 = ___parseDecimal4;
bool L_12 = Number_ParseNumber_m17629D8063D3403750ED6ACEE47F9F3F3C682241((Il2CppChar**)(&V_2), L_8, (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)L_9, (StringBuilder_t *)NULL, L_10, L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_004d;
}
}
{
Il2CppChar* L_13 = V_2;
Il2CppChar* L_14 = V_0;
String_t* L_15 = ___str0;
NullCheck(L_15);
int32_t L_16 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_15, /*hidden argument*/NULL);
if ((((int64_t)(((int64_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_13, (intptr_t)L_14))/(int32_t)2)))))) >= ((int64_t)(((int64_t)((int64_t)L_16))))))
{
goto IL_005d;
}
}
{
String_t* L_17 = ___str0;
Il2CppChar* L_18 = V_2;
Il2CppChar* L_19 = V_0;
bool L_20 = Number_TrailingZeros_m5B8B34E5E660FBD4870DE2D2778FC3758F28750F(L_17, (((int32_t)((int32_t)(((int64_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_18, (intptr_t)L_19))/(int32_t)2)))))))), /*hidden argument*/NULL);
if (L_20)
{
goto IL_005d;
}
}
IL_004d:
{
String_t* L_21 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD2F0257C42607F2773F4B8AAB0C017A3B8949322, /*hidden argument*/NULL);
FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * L_22 = (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC *)il2cpp_codegen_object_new(FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var);
FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14(L_22, L_21, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_22, NULL, Number_StringToNumber_m430FD04F901D7715B727832A85D4D8DCD6EB4BED_RuntimeMethod_var);
}
IL_005d:
{
V_1 = (String_t*)NULL;
return;
}
}
// System.Boolean System.Number::TrailingZeros(System.String,System.Int32)
extern "C" IL2CPP_METHOD_ATTR bool Number_TrailingZeros_m5B8B34E5E660FBD4870DE2D2778FC3758F28750F (String_t* ___s0, int32_t ___index1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = ___index1;
V_0 = L_0;
goto IL_0013;
}
IL_0004:
{
String_t* L_1 = ___s0;
int32_t L_2 = V_0;
NullCheck(L_1);
Il2CppChar L_3 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_1, L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_000f;
}
}
{
return (bool)0;
}
IL_000f:
{
int32_t L_4 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1));
}
IL_0013:
{
int32_t L_5 = V_0;
String_t* L_6 = ___s0;
NullCheck(L_6);
int32_t L_7 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_6, /*hidden argument*/NULL);
if ((((int32_t)L_5) < ((int32_t)L_7)))
{
goto IL_0004;
}
}
{
return (bool)1;
}
}
// System.Boolean System.Number::TryParseInt64(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo,System.Int64U26)
extern "C" IL2CPP_METHOD_ATTR bool Number_TryParseInt64_m62C1C9F9BAC32770297859436DE8E68DF0E1E598 (String_t* ___s0, int32_t ___style1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, int64_t* ___result3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Number_TryParseInt64_m62C1C9F9BAC32770297859436DE8E68DF0E1E598_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint8_t* V_0 = NULL;
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 V_1;
memset(&V_1, 0, sizeof(V_1));
{
IL2CPP_RUNTIME_CLASS_INIT(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_il2cpp_TypeInfo_var);
int32_t L_0 = ((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_StaticFields*)il2cpp_codegen_static_fields_for(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_il2cpp_TypeInfo_var))->get_NumberBufferBytes_0();
int8_t* L_1 = (int8_t*) alloca((((uintptr_t)L_0)));
memset(L_1,0,(((uintptr_t)L_0)));
V_0 = (uint8_t*)(L_1);
uint8_t* L_2 = V_0;
NumberBuffer__ctor_m3CC10B06A100FC612C5BD24BBC5A20C2BCDCD68E((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), (uint8_t*)(uint8_t*)L_2, /*hidden argument*/NULL);
int64_t* L_3 = ___result3;
*((int64_t*)L_3) = (int64_t)(((int64_t)((int64_t)0)));
String_t* L_4 = ___s0;
int32_t L_5 = ___style1;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_6 = ___info2;
bool L_7 = Number_TryStringToNumber_mDA7F326F742680FF01ACA545ED511EE80A3248D7(L_4, L_5, (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), L_6, (bool)0, /*hidden argument*/NULL);
if (L_7)
{
goto IL_0024;
}
}
{
return (bool)0;
}
IL_0024:
{
int32_t L_8 = ___style1;
if (!((int32_t)((int32_t)L_8&(int32_t)((int32_t)512))))
{
goto IL_0039;
}
}
{
int64_t* L_9 = ___result3;
bool L_10 = Number_HexNumberToInt64_m378430BD3E19ACC499999BE305850B0AFD292313((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), (int64_t*)L_9, /*hidden argument*/NULL);
if (L_10)
{
goto IL_0045;
}
}
{
return (bool)0;
}
IL_0039:
{
int64_t* L_11 = ___result3;
bool L_12 = Number_NumberToInt64_mC59DFAEF3C78A77FFFFA66937DD8109E747F4EE0((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)(&V_1), (int64_t*)L_11, /*hidden argument*/NULL);
if (L_12)
{
goto IL_0045;
}
}
{
return (bool)0;
}
IL_0045:
{
return (bool)1;
}
}
// System.Boolean System.Number::TryStringToNumber(System.String,System.Globalization.NumberStyles,System.Number_NumberBufferU26,System.Globalization.NumberFormatInfo,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR bool Number_TryStringToNumber_mDA7F326F742680FF01ACA545ED511EE80A3248D7 (String_t* ___str0, int32_t ___options1, NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number2, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numfmt3, bool ___parseDecimal4, const RuntimeMethod* method)
{
{
String_t* L_0 = ___str0;
int32_t L_1 = ___options1;
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_2 = ___number2;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_3 = ___numfmt3;
bool L_4 = ___parseDecimal4;
bool L_5 = Number_TryStringToNumber_m515B5B64EE9D50013D45179933663F00752A2DEC(L_0, L_1, (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)L_2, (StringBuilder_t *)NULL, L_3, L_4, /*hidden argument*/NULL);
return L_5;
}
}
// System.Boolean System.Number::TryStringToNumber(System.String,System.Globalization.NumberStyles,System.Number_NumberBufferU26,System.Text.StringBuilder,System.Globalization.NumberFormatInfo,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR bool Number_TryStringToNumber_m515B5B64EE9D50013D45179933663F00752A2DEC (String_t* ___str0, int32_t ___options1, NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * ___number2, StringBuilder_t * ___sb3, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numfmt4, bool ___parseDecimal5, const RuntimeMethod* method)
{
Il2CppChar* V_0 = NULL;
String_t* V_1 = NULL;
Il2CppChar* V_2 = NULL;
{
String_t* L_0 = ___str0;
if (L_0)
{
goto IL_0005;
}
}
{
return (bool)0;
}
IL_0005:
{
String_t* L_1 = ___str0;
V_1 = L_1;
String_t* L_2 = V_1;
V_0 = (Il2CppChar*)(((uintptr_t)L_2));
Il2CppChar* L_3 = V_0;
if (!L_3)
{
goto IL_0015;
}
}
{
Il2CppChar* L_4 = V_0;
int32_t L_5 = RuntimeHelpers_get_OffsetToStringData_mF3B79A906181F1A2734590DA161E2AF183853F8B(/*hidden argument*/NULL);
V_0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_4, (int32_t)L_5));
}
IL_0015:
{
Il2CppChar* L_6 = V_0;
V_2 = (Il2CppChar*)L_6;
int32_t L_7 = ___options1;
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * L_8 = ___number2;
StringBuilder_t * L_9 = ___sb3;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_10 = ___numfmt4;
bool L_11 = ___parseDecimal5;
bool L_12 = Number_ParseNumber_m17629D8063D3403750ED6ACEE47F9F3F3C682241((Il2CppChar**)(&V_2), L_7, (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *)L_8, L_9, L_10, L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0045;
}
}
{
Il2CppChar* L_13 = V_2;
Il2CppChar* L_14 = V_0;
String_t* L_15 = ___str0;
NullCheck(L_15);
int32_t L_16 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_15, /*hidden argument*/NULL);
if ((((int64_t)(((int64_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_13, (intptr_t)L_14))/(int32_t)2)))))) >= ((int64_t)(((int64_t)((int64_t)L_16))))))
{
goto IL_0047;
}
}
{
String_t* L_17 = ___str0;
Il2CppChar* L_18 = V_2;
Il2CppChar* L_19 = V_0;
bool L_20 = Number_TrailingZeros_m5B8B34E5E660FBD4870DE2D2778FC3758F28750F(L_17, (((int32_t)((int32_t)(((int64_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_18, (intptr_t)L_19))/(int32_t)2)))))))), /*hidden argument*/NULL);
if (L_20)
{
goto IL_0047;
}
}
IL_0045:
{
return (bool)0;
}
IL_0047:
{
V_1 = (String_t*)NULL;
return (bool)1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: System.Number/NumberBuffer
extern "C" void NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_marshal_pinvoke(const NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075& unmarshaled, NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_marshaled_pinvoke& marshaled)
{
marshaled.___baseAddress_1 = unmarshaled.get_baseAddress_1();
marshaled.___digits_2 = unmarshaled.get_digits_2();
marshaled.___precision_3 = unmarshaled.get_precision_3();
marshaled.___scale_4 = unmarshaled.get_scale_4();
marshaled.___sign_5 = static_cast<int32_t>(unmarshaled.get_sign_5());
}
extern "C" void NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_marshal_pinvoke_back(const NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_marshaled_pinvoke& marshaled, NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075& unmarshaled)
{
unmarshaled.set_baseAddress_1(marshaled.___baseAddress_1);
unmarshaled.set_digits_2(marshaled.___digits_2);
int32_t unmarshaled_precision_temp_2 = 0;
unmarshaled_precision_temp_2 = marshaled.___precision_3;
unmarshaled.set_precision_3(unmarshaled_precision_temp_2);
int32_t unmarshaled_scale_temp_3 = 0;
unmarshaled_scale_temp_3 = marshaled.___scale_4;
unmarshaled.set_scale_4(unmarshaled_scale_temp_3);
bool unmarshaled_sign_temp_4 = false;
unmarshaled_sign_temp_4 = static_cast<bool>(marshaled.___sign_5);
unmarshaled.set_sign_5(unmarshaled_sign_temp_4);
}
// Conversion method for clean up from marshalling of: System.Number/NumberBuffer
extern "C" void NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_marshal_pinvoke_cleanup(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: System.Number/NumberBuffer
extern "C" void NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_marshal_com(const NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075& unmarshaled, NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_marshaled_com& marshaled)
{
marshaled.___baseAddress_1 = unmarshaled.get_baseAddress_1();
marshaled.___digits_2 = unmarshaled.get_digits_2();
marshaled.___precision_3 = unmarshaled.get_precision_3();
marshaled.___scale_4 = unmarshaled.get_scale_4();
marshaled.___sign_5 = static_cast<int32_t>(unmarshaled.get_sign_5());
}
extern "C" void NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_marshal_com_back(const NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_marshaled_com& marshaled, NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075& unmarshaled)
{
unmarshaled.set_baseAddress_1(marshaled.___baseAddress_1);
unmarshaled.set_digits_2(marshaled.___digits_2);
int32_t unmarshaled_precision_temp_2 = 0;
unmarshaled_precision_temp_2 = marshaled.___precision_3;
unmarshaled.set_precision_3(unmarshaled_precision_temp_2);
int32_t unmarshaled_scale_temp_3 = 0;
unmarshaled_scale_temp_3 = marshaled.___scale_4;
unmarshaled.set_scale_4(unmarshaled_scale_temp_3);
bool unmarshaled_sign_temp_4 = false;
unmarshaled_sign_temp_4 = static_cast<bool>(marshaled.___sign_5);
unmarshaled.set_sign_5(unmarshaled_sign_temp_4);
}
// Conversion method for clean up from marshalling of: System.Number/NumberBuffer
extern "C" void NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_marshal_com_cleanup(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_marshaled_com& marshaled)
{
}
// System.Void System.Number_NumberBuffer::.ctor(System.Byte*)
extern "C" IL2CPP_METHOD_ATTR void NumberBuffer__ctor_m3CC10B06A100FC612C5BD24BBC5A20C2BCDCD68E (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * __this, uint8_t* ___stackBuffer0, const RuntimeMethod* method)
{
{
uint8_t* L_0 = ___stackBuffer0;
__this->set_baseAddress_1((uint8_t*)L_0);
uint8_t* L_1 = ___stackBuffer0;
__this->set_digits_2((Il2CppChar*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_1, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)6)), (int32_t)2)))));
__this->set_precision_3(0);
__this->set_scale_4(0);
__this->set_sign_5((bool)0);
return;
}
}
extern "C" void NumberBuffer__ctor_m3CC10B06A100FC612C5BD24BBC5A20C2BCDCD68E_AdjustorThunk (RuntimeObject * __this, uint8_t* ___stackBuffer0, const RuntimeMethod* method)
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * _thisAdjusted = reinterpret_cast<NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *>(__this + 1);
NumberBuffer__ctor_m3CC10B06A100FC612C5BD24BBC5A20C2BCDCD68E(_thisAdjusted, ___stackBuffer0, method);
}
// System.Byte* System.Number_NumberBuffer::PackForNative()
extern "C" IL2CPP_METHOD_ATTR uint8_t* NumberBuffer_PackForNative_m7790B7A255562FC1823BACABA471AF133A86D640 (NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * __this, const RuntimeMethod* method)
{
int32_t* V_0 = NULL;
int32_t* G_B2_0 = NULL;
int32_t* G_B1_0 = NULL;
int32_t G_B3_0 = 0;
int32_t* G_B3_1 = NULL;
{
uint8_t* L_0 = __this->get_baseAddress_1();
V_0 = (int32_t*)L_0;
int32_t* L_1 = V_0;
int32_t L_2 = __this->get_precision_3();
*((int32_t*)L_1) = (int32_t)L_2;
int32_t* L_3 = V_0;
int32_t L_4 = __this->get_scale_4();
*((int32_t*)((int32_t*)il2cpp_codegen_add((intptr_t)L_3, (int32_t)4))) = (int32_t)L_4;
int32_t* L_5 = V_0;
bool L_6 = __this->get_sign_5();
G_B1_0 = ((int32_t*)il2cpp_codegen_add((intptr_t)L_5, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)2)), (int32_t)4))));
if (L_6)
{
G_B2_0 = ((int32_t*)il2cpp_codegen_add((intptr_t)L_5, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)2)), (int32_t)4))));
goto IL_002a;
}
}
{
G_B3_0 = 0;
G_B3_1 = G_B1_0;
goto IL_002b;
}
IL_002a:
{
G_B3_0 = 1;
G_B3_1 = G_B2_0;
}
IL_002b:
{
*((int32_t*)G_B3_1) = (int32_t)G_B3_0;
uint8_t* L_7 = __this->get_baseAddress_1();
return (uint8_t*)(L_7);
}
}
extern "C" uint8_t* NumberBuffer_PackForNative_m7790B7A255562FC1823BACABA471AF133A86D640_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 * _thisAdjusted = reinterpret_cast<NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075 *>(__this + 1);
return NumberBuffer_PackForNative_m7790B7A255562FC1823BACABA471AF133A86D640(_thisAdjusted, method);
}
// System.Void System.Number_NumberBuffer::.cctor()
extern "C" IL2CPP_METHOD_ATTR void NumberBuffer__cctor_mB263774D1C650BD48E32AC15403F941154721DCE (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberBuffer__cctor_mB263774D1C650BD48E32AC15403F941154721DCE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = IntPtr_get_Size_m1342A61F11766A494F2F90D9B68CADAD62261929(/*hidden argument*/NULL);
((NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_StaticFields*)il2cpp_codegen_static_fields_for(NumberBuffer_tBD2266C521F098915F124D7A62AFF8DB05918075_il2cpp_TypeInfo_var))->set_NumberBufferBytes_0(((int32_t)il2cpp_codegen_add((int32_t)((int32_t)114), (int32_t)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 System.NumberFormatter::GetFormatterTables(System.UInt64*U26,System.Int32*U26,System.Char*U26,System.Char*U26,System.Int64*U26,System.Int32*U26)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_GetFormatterTables_m67567DB29277C2F860D0CD7A882C269F1775A9DE (uint64_t** ___MantissaBitsTable0, int32_t** ___TensExponentTable1, Il2CppChar** ___DigitLowerTable2, Il2CppChar** ___DigitUpperTable3, int64_t** ___TenPowersList4, int32_t** ___DecHexDigits5, const RuntimeMethod* method)
{
typedef void (*NumberFormatter_GetFormatterTables_m67567DB29277C2F860D0CD7A882C269F1775A9DE_ftn) (uint64_t**, int32_t**, Il2CppChar**, Il2CppChar**, int64_t**, int32_t**);
using namespace il2cpp::icalls;
((NumberFormatter_GetFormatterTables_m67567DB29277C2F860D0CD7A882C269F1775A9DE_ftn)mscorlib::System::NumberFormatter::GetFormatterTables) (___MantissaBitsTable0, ___TensExponentTable1, ___DigitLowerTable2, ___DigitUpperTable3, ___TenPowersList4, ___DecHexDigits5);
}
// System.Void System.NumberFormatter::.cctor()
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter__cctor_m4742B866AF2C274FEE807160C61B979ADB071A2C (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter__cctor_m4742B866AF2C274FEE807160C61B979ADB071A2C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NumberFormatter_GetFormatterTables_m67567DB29277C2F860D0CD7A882C269F1775A9DE((uint64_t**)(((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_StaticFields*)il2cpp_codegen_static_fields_for(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var))->get_address_of_MantissaBitsTable_0()), (int32_t**)(((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_StaticFields*)il2cpp_codegen_static_fields_for(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var))->get_address_of_TensExponentTable_1()), (Il2CppChar**)(((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_StaticFields*)il2cpp_codegen_static_fields_for(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var))->get_address_of_DigitLowerTable_2()), (Il2CppChar**)(((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_StaticFields*)il2cpp_codegen_static_fields_for(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var))->get_address_of_DigitUpperTable_3()), (int64_t**)(((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_StaticFields*)il2cpp_codegen_static_fields_for(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var))->get_address_of_TenPowersList_4()), (int32_t**)(((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_StaticFields*)il2cpp_codegen_static_fields_for(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var))->get_address_of_DecHexDigits_5()), /*hidden argument*/NULL);
return;
}
}
// System.Int64 System.NumberFormatter::GetTenPowerOf(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int64_t NumberFormatter_GetTenPowerOf_mFB4993FB5A5C694F12FC7772DF431C0AA3F6E43C (int32_t ___i0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_GetTenPowerOf_mFB4993FB5A5C694F12FC7772DF431C0AA3F6E43C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
int64_t* L_0 = ((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_StaticFields*)il2cpp_codegen_static_fields_for(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var))->get_TenPowersList_4();
int32_t L_1 = ___i0;
int64_t L_2 = *((int64_t*)((int64_t*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_1)), (int32_t)8)))));
return L_2;
}
}
// System.Void System.NumberFormatter::InitDecHexDigits(System.UInt32)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_InitDecHexDigits_mDDED506A219AEEA8A1A12EBC660550D440FF873B (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, uint32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_InitDecHexDigits_mDDED506A219AEEA8A1A12EBC660550D440FF873B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
uint32_t L_0 = ___value0;
if ((!(((uint32_t)L_0) >= ((uint32_t)((int32_t)100000000)))))
{
goto IL_0027;
}
}
{
uint32_t L_1 = ___value0;
V_0 = ((int32_t)((uint32_t)(int32_t)L_1/(uint32_t)(int32_t)((int32_t)100000000)));
uint32_t L_2 = ___value0;
int32_t L_3 = V_0;
___value0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)100000000), (int32_t)L_3))));
int32_t L_4 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
uint32_t L_5 = NumberFormatter_FastToDecHex_m70F4537592F2D301B57DCB01BF0BF5F5B929845F(L_4, /*hidden argument*/NULL);
__this->set__val2_20(L_5);
}
IL_0027:
{
uint32_t L_6 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
uint32_t L_7 = NumberFormatter_ToDecHex_m6EF9C97FE4375306151C2AD7C0F47C993D12454D(L_6, /*hidden argument*/NULL);
__this->set__val1_19(L_7);
return;
}
}
// System.Void System.NumberFormatter::InitDecHexDigits(System.UInt64)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_InitDecHexDigits_m6B41DFE2085FE5ECE27586ACA44B44359C3E3883 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, uint64_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_InitDecHexDigits_m6B41DFE2085FE5ECE27586ACA44B44359C3E3883_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
int32_t V_1 = 0;
{
uint64_t L_0 = ___value0;
if ((!(((uint64_t)L_0) >= ((uint64_t)(((int64_t)((int64_t)((int32_t)100000000))))))))
{
goto IL_0059;
}
}
{
uint64_t L_1 = ___value0;
V_0 = ((int64_t)((uint64_t)(int64_t)L_1/(uint64_t)(int64_t)(((int64_t)((int64_t)((int32_t)100000000))))));
uint64_t L_2 = ___value0;
int64_t L_3 = V_0;
___value0 = ((int64_t)il2cpp_codegen_subtract((int64_t)L_2, (int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)((int32_t)100000000)))), (int64_t)L_3))));
int64_t L_4 = V_0;
if ((((int64_t)L_4) < ((int64_t)(((int64_t)((int64_t)((int32_t)100000000)))))))
{
goto IL_0049;
}
}
{
int64_t L_5 = V_0;
V_1 = (((int32_t)((int32_t)((int64_t)((int64_t)L_5/(int64_t)(((int64_t)((int64_t)((int32_t)100000000)))))))));
int64_t L_6 = V_0;
int32_t L_7 = V_1;
V_0 = ((int64_t)il2cpp_codegen_subtract((int64_t)L_6, (int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_7))), (int64_t)(((int64_t)((int64_t)((int32_t)100000000))))))));
int32_t L_8 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
uint32_t L_9 = NumberFormatter_ToDecHex_m6EF9C97FE4375306151C2AD7C0F47C993D12454D(L_8, /*hidden argument*/NULL);
__this->set__val3_21(L_9);
}
IL_0049:
{
int64_t L_10 = V_0;
if (!L_10)
{
goto IL_0059;
}
}
{
int64_t L_11 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
uint32_t L_12 = NumberFormatter_ToDecHex_m6EF9C97FE4375306151C2AD7C0F47C993D12454D((((int32_t)((int32_t)L_11))), /*hidden argument*/NULL);
__this->set__val2_20(L_12);
}
IL_0059:
{
uint64_t L_13 = ___value0;
if (!L_13)
{
goto IL_0069;
}
}
{
uint64_t L_14 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
uint32_t L_15 = NumberFormatter_ToDecHex_m6EF9C97FE4375306151C2AD7C0F47C993D12454D((((int32_t)((int32_t)L_14))), /*hidden argument*/NULL);
__this->set__val1_19(L_15);
}
IL_0069:
{
return;
}
}
// System.Void System.NumberFormatter::InitDecHexDigits(System.UInt32,System.UInt64)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_InitDecHexDigits_m42646433FC393F360E2B559C275DA76F30E1CAD0 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, uint32_t ___hi0, uint64_t ___lo1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_InitDecHexDigits_m42646433FC393F360E2B559C275DA76F30E1CAD0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint32_t V_0 = 0;
uint64_t V_1 = 0;
uint64_t V_2 = 0;
uint64_t V_3 = 0;
{
uint32_t L_0 = ___hi0;
if (L_0)
{
goto IL_000b;
}
}
{
uint64_t L_1 = ___lo1;
NumberFormatter_InitDecHexDigits_m6B41DFE2085FE5ECE27586ACA44B44359C3E3883(__this, L_1, /*hidden argument*/NULL);
return;
}
IL_000b:
{
uint32_t L_2 = ___hi0;
V_0 = ((int32_t)((uint32_t)(int32_t)L_2/(uint32_t)(int32_t)((int32_t)100000000)));
uint32_t L_3 = ___hi0;
uint32_t L_4 = V_0;
V_1 = (((int64_t)((uint64_t)(((uint32_t)((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_4, (int32_t)((int32_t)100000000)))))))))));
uint64_t L_5 = ___lo1;
V_2 = ((int64_t)((uint64_t)(int64_t)L_5/(uint64_t)(int64_t)(((int64_t)((int64_t)((int32_t)100000000))))));
uint64_t L_6 = ___lo1;
uint64_t L_7 = V_2;
uint64_t L_8 = V_1;
V_3 = ((int64_t)il2cpp_codegen_add((int64_t)((int64_t)il2cpp_codegen_subtract((int64_t)L_6, (int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)L_7, (int64_t)(((int64_t)((int64_t)((int32_t)100000000)))))))), (int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)L_8, (int64_t)(((int64_t)((int64_t)((int32_t)9551616))))))));
uint32_t L_9 = V_0;
___hi0 = L_9;
uint64_t L_10 = V_2;
uint64_t L_11 = V_1;
___lo1 = ((int64_t)il2cpp_codegen_add((int64_t)L_10, (int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)L_11, (int64_t)((int64_t)184467440737LL)))));
uint64_t L_12 = V_3;
V_2 = ((int64_t)((uint64_t)(int64_t)L_12/(uint64_t)(int64_t)(((int64_t)((int64_t)((int32_t)100000000))))));
uint64_t L_13 = V_3;
uint64_t L_14 = V_2;
V_3 = ((int64_t)il2cpp_codegen_subtract((int64_t)L_13, (int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)L_14, (int64_t)(((int64_t)((int64_t)((int32_t)100000000))))))));
uint64_t L_15 = ___lo1;
uint64_t L_16 = V_2;
___lo1 = ((int64_t)il2cpp_codegen_add((int64_t)L_15, (int64_t)L_16));
uint64_t L_17 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
uint32_t L_18 = NumberFormatter_ToDecHex_m6EF9C97FE4375306151C2AD7C0F47C993D12454D((((int32_t)((int32_t)L_17))), /*hidden argument*/NULL);
__this->set__val1_19(L_18);
uint64_t L_19 = ___lo1;
V_2 = ((int64_t)((uint64_t)(int64_t)L_19/(uint64_t)(int64_t)(((int64_t)((int64_t)((int32_t)100000000))))));
uint64_t L_20 = ___lo1;
uint64_t L_21 = V_2;
V_3 = ((int64_t)il2cpp_codegen_subtract((int64_t)L_20, (int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)L_21, (int64_t)(((int64_t)((int64_t)((int32_t)100000000))))))));
uint64_t L_22 = V_2;
___lo1 = L_22;
uint32_t L_23 = ___hi0;
if (!L_23)
{
goto IL_00c2;
}
}
{
uint64_t L_24 = ___lo1;
uint32_t L_25 = ___hi0;
___lo1 = ((int64_t)il2cpp_codegen_add((int64_t)L_24, (int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((uint64_t)L_25))), (int64_t)((int64_t)184467440737LL)))));
uint64_t L_26 = V_3;
uint32_t L_27 = ___hi0;
V_3 = ((int64_t)il2cpp_codegen_add((int64_t)L_26, (int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((uint64_t)L_27))), (int64_t)(((int64_t)((int64_t)((int32_t)9551616))))))));
uint64_t L_28 = V_3;
V_2 = ((int64_t)((uint64_t)(int64_t)L_28/(uint64_t)(int64_t)(((int64_t)((int64_t)((int32_t)100000000))))));
uint64_t L_29 = ___lo1;
uint64_t L_30 = V_2;
___lo1 = ((int64_t)il2cpp_codegen_add((int64_t)L_29, (int64_t)L_30));
uint64_t L_31 = V_3;
uint64_t L_32 = V_2;
V_3 = ((int64_t)il2cpp_codegen_subtract((int64_t)L_31, (int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)L_32, (int64_t)(((int64_t)((int64_t)((int32_t)100000000))))))));
}
IL_00c2:
{
uint64_t L_33 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
uint32_t L_34 = NumberFormatter_ToDecHex_m6EF9C97FE4375306151C2AD7C0F47C993D12454D((((int32_t)((int32_t)L_33))), /*hidden argument*/NULL);
__this->set__val2_20(L_34);
uint64_t L_35 = ___lo1;
if ((!(((uint64_t)L_35) >= ((uint64_t)(((int64_t)((int64_t)((int32_t)100000000))))))))
{
goto IL_00fa;
}
}
{
uint64_t L_36 = ___lo1;
V_2 = ((int64_t)((uint64_t)(int64_t)L_36/(uint64_t)(int64_t)(((int64_t)((int64_t)((int32_t)100000000))))));
uint64_t L_37 = ___lo1;
uint64_t L_38 = V_2;
___lo1 = ((int64_t)il2cpp_codegen_subtract((int64_t)L_37, (int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)L_38, (int64_t)(((int64_t)((int64_t)((int32_t)100000000))))))));
uint64_t L_39 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
uint32_t L_40 = NumberFormatter_ToDecHex_m6EF9C97FE4375306151C2AD7C0F47C993D12454D((((int32_t)((int32_t)L_39))), /*hidden argument*/NULL);
__this->set__val4_22(L_40);
}
IL_00fa:
{
uint64_t L_41 = ___lo1;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
uint32_t L_42 = NumberFormatter_ToDecHex_m6EF9C97FE4375306151C2AD7C0F47C993D12454D((((int32_t)((int32_t)L_41))), /*hidden argument*/NULL);
__this->set__val3_21(L_42);
return;
}
}
// System.UInt32 System.NumberFormatter::FastToDecHex(System.Int32)
extern "C" IL2CPP_METHOD_ATTR uint32_t NumberFormatter_FastToDecHex_m70F4537592F2D301B57DCB01BF0BF5F5B929845F (int32_t ___val0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_FastToDecHex_m70F4537592F2D301B57DCB01BF0BF5F5B929845F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___val0;
if ((((int32_t)L_0) >= ((int32_t)((int32_t)100))))
{
goto IL_0011;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
int32_t* L_1 = ((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_StaticFields*)il2cpp_codegen_static_fields_for(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var))->get_DecHexDigits_5();
int32_t L_2 = ___val0;
int32_t L_3 = *((int32_t*)((int32_t*)il2cpp_codegen_add((intptr_t)L_1, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_2)), (int32_t)4)))));
return L_3;
}
IL_0011:
{
int32_t L_4 = ___val0;
V_0 = ((int32_t)((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_4, (int32_t)((int32_t)5243)))>>(int32_t)((int32_t)19)));
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
int32_t* L_5 = ((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_StaticFields*)il2cpp_codegen_static_fields_for(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var))->get_DecHexDigits_5();
int32_t L_6 = V_0;
int32_t L_7 = *((int32_t*)((int32_t*)il2cpp_codegen_add((intptr_t)L_5, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_6)), (int32_t)4)))));
int32_t* L_8 = ((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_StaticFields*)il2cpp_codegen_static_fields_for(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var))->get_DecHexDigits_5();
int32_t L_9 = ___val0;
int32_t L_10 = V_0;
int32_t L_11 = *((int32_t*)((int32_t*)il2cpp_codegen_add((intptr_t)L_8, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_10, (int32_t)((int32_t)100))))))), (int32_t)4)))));
return ((int32_t)((int32_t)((int32_t)((int32_t)L_7<<(int32_t)8))|(int32_t)L_11));
}
}
// System.UInt32 System.NumberFormatter::ToDecHex(System.Int32)
extern "C" IL2CPP_METHOD_ATTR uint32_t NumberFormatter_ToDecHex_m6EF9C97FE4375306151C2AD7C0F47C993D12454D (int32_t ___val0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_ToDecHex_m6EF9C97FE4375306151C2AD7C0F47C993D12454D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint32_t V_0 = 0;
int32_t V_1 = 0;
{
V_0 = 0;
int32_t L_0 = ___val0;
if ((((int32_t)L_0) < ((int32_t)((int32_t)10000))))
{
goto IL_0027;
}
}
{
int32_t L_1 = ___val0;
V_1 = ((int32_t)((int32_t)L_1/(int32_t)((int32_t)10000)));
int32_t L_2 = ___val0;
int32_t L_3 = V_1;
___val0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_3, (int32_t)((int32_t)10000)))));
int32_t L_4 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
uint32_t L_5 = NumberFormatter_FastToDecHex_m70F4537592F2D301B57DCB01BF0BF5F5B929845F(L_4, /*hidden argument*/NULL);
V_0 = ((int32_t)((int32_t)L_5<<(int32_t)((int32_t)16)));
}
IL_0027:
{
uint32_t L_6 = V_0;
int32_t L_7 = ___val0;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
uint32_t L_8 = NumberFormatter_FastToDecHex_m70F4537592F2D301B57DCB01BF0BF5F5B929845F(L_7, /*hidden argument*/NULL);
return ((int32_t)((int32_t)L_6|(int32_t)L_8));
}
}
// System.Int32 System.NumberFormatter::FastDecHexLen(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t NumberFormatter_FastDecHexLen_m9B02B763871E7640DA540045D2A10E0D001650F4 (int32_t ___val0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___val0;
if ((((int32_t)L_0) >= ((int32_t)((int32_t)256))))
{
goto IL_0011;
}
}
{
int32_t L_1 = ___val0;
if ((((int32_t)L_1) >= ((int32_t)((int32_t)16))))
{
goto IL_000f;
}
}
{
return 1;
}
IL_000f:
{
return 2;
}
IL_0011:
{
int32_t L_2 = ___val0;
if ((((int32_t)L_2) >= ((int32_t)((int32_t)4096))))
{
goto IL_001b;
}
}
{
return 3;
}
IL_001b:
{
return 4;
}
}
// System.Int32 System.NumberFormatter::DecHexLen(System.UInt32)
extern "C" IL2CPP_METHOD_ATTR int32_t NumberFormatter_DecHexLen_m89FBA140789567E30D1C73851FBBE539088E5579 (uint32_t ___val0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_DecHexLen_m89FBA140789567E30D1C73851FBBE539088E5579_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
uint32_t L_0 = ___val0;
if ((!(((uint32_t)L_0) < ((uint32_t)((int32_t)65536)))))
{
goto IL_000f;
}
}
{
uint32_t L_1 = ___val0;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
int32_t L_2 = NumberFormatter_FastDecHexLen_m9B02B763871E7640DA540045D2A10E0D001650F4(L_1, /*hidden argument*/NULL);
return L_2;
}
IL_000f:
{
uint32_t L_3 = ___val0;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
int32_t L_4 = NumberFormatter_FastDecHexLen_m9B02B763871E7640DA540045D2A10E0D001650F4(((int32_t)((uint32_t)L_3>>((int32_t)16))), /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)4, (int32_t)L_4));
}
}
// System.Int32 System.NumberFormatter::DecHexLen()
extern "C" IL2CPP_METHOD_ATTR int32_t NumberFormatter_DecHexLen_m6624BB04300860C2C7187CC1C66FF3FB9A68D97B (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_DecHexLen_m6624BB04300860C2C7187CC1C66FF3FB9A68D97B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
uint32_t L_0 = __this->get__val4_22();
if (!L_0)
{
goto IL_0017;
}
}
{
uint32_t L_1 = __this->get__val4_22();
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
int32_t L_2 = NumberFormatter_DecHexLen_m89FBA140789567E30D1C73851FBBE539088E5579(L_1, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)((int32_t)24)));
}
IL_0017:
{
uint32_t L_3 = __this->get__val3_21();
if (!L_3)
{
goto IL_002e;
}
}
{
uint32_t L_4 = __this->get__val3_21();
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
int32_t L_5 = NumberFormatter_DecHexLen_m89FBA140789567E30D1C73851FBBE539088E5579(L_4, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)((int32_t)16)));
}
IL_002e:
{
uint32_t L_6 = __this->get__val2_20();
if (!L_6)
{
goto IL_0044;
}
}
{
uint32_t L_7 = __this->get__val2_20();
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
int32_t L_8 = NumberFormatter_DecHexLen_m89FBA140789567E30D1C73851FBBE539088E5579(L_7, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)8));
}
IL_0044:
{
uint32_t L_9 = __this->get__val1_19();
if (!L_9)
{
goto IL_0058;
}
}
{
uint32_t L_10 = __this->get__val1_19();
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
int32_t L_11 = NumberFormatter_DecHexLen_m89FBA140789567E30D1C73851FBBE539088E5579(L_10, /*hidden argument*/NULL);
return L_11;
}
IL_0058:
{
return 0;
}
}
// System.Int32 System.NumberFormatter::ScaleOrder(System.Int64)
extern "C" IL2CPP_METHOD_ATTR int32_t NumberFormatter_ScaleOrder_m712CE7B5E134E507EC41CC93A43D76F02FC2D8C2 (int64_t ___hi0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_ScaleOrder_m712CE7B5E134E507EC41CC93A43D76F02FC2D8C2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
V_0 = ((int32_t)18);
goto IL_0016;
}
IL_0005:
{
int64_t L_0 = ___hi0;
int32_t L_1 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
int64_t L_2 = NumberFormatter_GetTenPowerOf_mFB4993FB5A5C694F12FC7772DF431C0AA3F6E43C(L_1, /*hidden argument*/NULL);
if ((((int64_t)L_0) < ((int64_t)L_2)))
{
goto IL_0012;
}
}
{
int32_t L_3 = V_0;
return ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1));
}
IL_0012:
{
int32_t L_4 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
}
IL_0016:
{
int32_t L_5 = V_0;
if ((((int32_t)L_5) >= ((int32_t)0)))
{
goto IL_0005;
}
}
{
return 1;
}
}
// System.Int32 System.NumberFormatter::InitialFloatingPrecision()
extern "C" IL2CPP_METHOD_ATTR int32_t NumberFormatter_InitialFloatingPrecision_m0E00B5AAAD8CEE7FBFFF538CED95D40FBE8A5184 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_InitialFloatingPrecision_m0E00B5AAAD8CEE7FBFFF538CED95D40FBE8A5184_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Il2CppChar L_0 = __this->get__specifier_13();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)82)))))
{
goto IL_0013;
}
}
{
int32_t L_1 = __this->get__defPrecision_15();
return ((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)2));
}
IL_0013:
{
int32_t L_2 = __this->get__precision_14();
int32_t L_3 = __this->get__defPrecision_15();
if ((((int32_t)L_2) >= ((int32_t)L_3)))
{
goto IL_0028;
}
}
{
int32_t L_4 = __this->get__defPrecision_15();
return L_4;
}
IL_0028:
{
Il2CppChar L_5 = __this->get__specifier_13();
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)71)))))
{
goto IL_0046;
}
}
{
int32_t L_6 = __this->get__defPrecision_15();
int32_t L_7 = __this->get__precision_14();
IL2CPP_RUNTIME_CLASS_INIT(Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var);
int32_t L_8 = Math_Min_mC950438198519FB2B0260FCB91220847EE4BB525(((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)2)), L_7, /*hidden argument*/NULL);
return L_8;
}
IL_0046:
{
Il2CppChar L_9 = __this->get__specifier_13();
if ((!(((uint32_t)L_9) == ((uint32_t)((int32_t)69)))))
{
goto IL_0066;
}
}
{
int32_t L_10 = __this->get__defPrecision_15();
int32_t L_11 = __this->get__precision_14();
IL2CPP_RUNTIME_CLASS_INIT(Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var);
int32_t L_12 = Math_Min_mC950438198519FB2B0260FCB91220847EE4BB525(((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)2)), ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)), /*hidden argument*/NULL);
return L_12;
}
IL_0066:
{
int32_t L_13 = __this->get__defPrecision_15();
return L_13;
}
}
// System.Int32 System.NumberFormatter::ParsePrecision(System.String)
extern "C" IL2CPP_METHOD_ATTR int32_t NumberFormatter_ParsePrecision_m333DE08D2CE6C38EBCEF7D7B94D18CDC3224154C (String_t* ___format0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
V_0 = 0;
V_1 = 1;
goto IL_002d;
}
IL_0006:
{
String_t* L_0 = ___format0;
int32_t L_1 = V_1;
NullCheck(L_0);
Il2CppChar L_2 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_0, L_1, /*hidden argument*/NULL);
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)((int32_t)48)));
int32_t L_3 = V_0;
int32_t L_4 = V_2;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_3, (int32_t)((int32_t)10))), (int32_t)L_4));
int32_t L_5 = V_2;
if ((((int32_t)L_5) < ((int32_t)0)))
{
goto IL_0026;
}
}
{
int32_t L_6 = V_2;
if ((((int32_t)L_6) > ((int32_t)((int32_t)9))))
{
goto IL_0026;
}
}
{
int32_t L_7 = V_0;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)99))))
{
goto IL_0029;
}
}
IL_0026:
{
return ((int32_t)-2);
}
IL_0029:
{
int32_t L_8 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_002d:
{
int32_t L_9 = V_1;
String_t* L_10 = ___format0;
NullCheck(L_10);
int32_t L_11 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_10, /*hidden argument*/NULL);
if ((((int32_t)L_9) < ((int32_t)L_11)))
{
goto IL_0006;
}
}
{
int32_t L_12 = V_0;
return L_12;
}
}
// System.Void System.NumberFormatter::.ctor(System.Threading.Thread)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter__ctor_m8C967CC13F98B4F01D3E9D0691465B0C919FC280 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * ___current0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter__ctor_m8C967CC13F98B4F01D3E9D0691465B0C919FC280_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(EmptyArray_1_t40AF87279AA6E3AEEABB0CBA1425F6720C40961A_il2cpp_TypeInfo_var);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = ((EmptyArray_1_t40AF87279AA6E3AEEABB0CBA1425F6720C40961A_StaticFields*)il2cpp_codegen_static_fields_for(EmptyArray_1_t40AF87279AA6E3AEEABB0CBA1425F6720C40961A_il2cpp_TypeInfo_var))->get_Value_0();
__this->set__cbuf_7(L_0);
Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * L_1 = ___current0;
if (L_1)
{
goto IL_0015;
}
}
{
return;
}
IL_0015:
{
Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * L_2 = ___current0;
NullCheck(L_2);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_3 = Thread_get_CurrentCulture_m97A15448A16FB3B5EC1E21A0538C9FC1F84AEE66(L_2, /*hidden argument*/NULL);
NumberFormatter_set_CurrentCulture_mF438AEA3F0930A76E4A09B0E7B1ECE7BCCE0D964(__this, L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.NumberFormatter::Init(System.String)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_Init_mE4CB58F7935FD515BDBC5A88C389CCAE85A45286 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, String_t* ___format0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_Init_mE4CB58F7935FD515BDBC5A88C389CCAE85A45286_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Il2CppChar V_0 = 0x0;
uint32_t V_1 = 0;
bool V_2 = false;
{
int32_t L_0 = 0;
V_1 = L_0;
__this->set__val4_22(L_0);
uint32_t L_1 = V_1;
uint32_t L_2 = L_1;
V_1 = L_2;
__this->set__val3_21(L_2);
uint32_t L_3 = V_1;
uint32_t L_4 = L_3;
V_1 = L_4;
__this->set__val2_20(L_4);
uint32_t L_5 = V_1;
__this->set__val1_19(L_5);
__this->set__offset_17(0);
int32_t L_6 = 0;
V_2 = (bool)L_6;
__this->set__infinity_9((bool)L_6);
bool L_7 = V_2;
__this->set__NaN_8(L_7);
__this->set__isCustomFormat_10((bool)0);
__this->set__specifierIsUpper_11((bool)1);
__this->set__precision_14((-1));
String_t* L_8 = ___format0;
if (!L_8)
{
goto IL_0059;
}
}
{
String_t* L_9 = ___format0;
NullCheck(L_9);
int32_t L_10 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_9, /*hidden argument*/NULL);
if (L_10)
{
goto IL_0062;
}
}
IL_0059:
{
__this->set__specifier_13(((int32_t)71));
return;
}
IL_0062:
{
String_t* L_11 = ___format0;
NullCheck(L_11);
Il2CppChar L_12 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_11, 0, /*hidden argument*/NULL);
V_0 = L_12;
Il2CppChar L_13 = V_0;
if ((((int32_t)L_13) < ((int32_t)((int32_t)97))))
{
goto IL_0086;
}
}
{
Il2CppChar L_14 = V_0;
if ((((int32_t)L_14) > ((int32_t)((int32_t)122))))
{
goto IL_0086;
}
}
{
Il2CppChar L_15 = V_0;
V_0 = (((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)((int32_t)97))), (int32_t)((int32_t)65))))));
__this->set__specifierIsUpper_11((bool)0);
goto IL_00a0;
}
IL_0086:
{
Il2CppChar L_16 = V_0;
if ((((int32_t)L_16) < ((int32_t)((int32_t)65))))
{
goto IL_0090;
}
}
{
Il2CppChar L_17 = V_0;
if ((((int32_t)L_17) <= ((int32_t)((int32_t)90))))
{
goto IL_00a0;
}
}
IL_0090:
{
__this->set__isCustomFormat_10((bool)1);
__this->set__specifier_13(((int32_t)48));
return;
}
IL_00a0:
{
Il2CppChar L_18 = V_0;
__this->set__specifier_13(L_18);
String_t* L_19 = ___format0;
NullCheck(L_19);
int32_t L_20 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_19, /*hidden argument*/NULL);
if ((((int32_t)L_20) <= ((int32_t)1)))
{
goto IL_00dc;
}
}
{
String_t* L_21 = ___format0;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
int32_t L_22 = NumberFormatter_ParsePrecision_m333DE08D2CE6C38EBCEF7D7B94D18CDC3224154C(L_21, /*hidden argument*/NULL);
__this->set__precision_14(L_22);
int32_t L_23 = __this->get__precision_14();
if ((!(((uint32_t)L_23) == ((uint32_t)((int32_t)-2)))))
{
goto IL_00dc;
}
}
{
__this->set__isCustomFormat_10((bool)1);
__this->set__specifier_13(((int32_t)48));
__this->set__precision_14((-1));
}
IL_00dc:
{
return;
}
}
// System.Void System.NumberFormatter::InitHex(System.UInt64)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_InitHex_mE69DD9D0FA84E4553B40C522E76D49E850A6AE30 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, uint64_t ___value0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->get__defPrecision_15();
V_0 = L_0;
int32_t L_1 = V_0;
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)10)))))
{
goto IL_0011;
}
}
{
uint64_t L_2 = ___value0;
___value0 = (((int64_t)((uint64_t)(((uint32_t)((uint32_t)(((int32_t)((uint32_t)L_2)))))))));
}
IL_0011:
{
uint64_t L_3 = ___value0;
__this->set__val1_19((((int32_t)((uint32_t)L_3))));
uint64_t L_4 = ___value0;
__this->set__val2_20((((int32_t)((uint32_t)((int64_t)((uint64_t)L_4>>((int32_t)32)))))));
int32_t L_5 = NumberFormatter_DecHexLen_m6624BB04300860C2C7187CC1C66FF3FB9A68D97B(__this, /*hidden argument*/NULL);
int32_t L_6 = L_5;
V_0 = L_6;
__this->set__digitsLen_16(L_6);
int32_t L_7 = V_0;
__this->set__decPointPos_18(L_7);
uint64_t L_8 = ___value0;
if (L_8)
{
goto IL_0043;
}
}
{
__this->set__decPointPos_18(1);
}
IL_0043:
{
return;
}
}
// System.Void System.NumberFormatter::Init(System.String,System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_Init_m7D7CC10DDA255BB0023BD72A0C91F09AD729BE2E (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, String_t* ___format0, int32_t ___value1, int32_t ___defPrecision2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
String_t* L_0 = ___format0;
NumberFormatter_Init_mE4CB58F7935FD515BDBC5A88C389CCAE85A45286(__this, L_0, /*hidden argument*/NULL);
int32_t L_1 = ___defPrecision2;
__this->set__defPrecision_15(L_1);
int32_t L_2 = ___value1;
__this->set__positive_12((bool)((((int32_t)((((int32_t)L_2) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0));
int32_t L_3 = ___value1;
if (!L_3)
{
goto IL_0028;
}
}
{
Il2CppChar L_4 = __this->get__specifier_13();
if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)88)))))
{
goto IL_0031;
}
}
IL_0028:
{
int32_t L_5 = ___value1;
NumberFormatter_InitHex_mE69DD9D0FA84E4553B40C522E76D49E850A6AE30(__this, (((int64_t)((int64_t)L_5))), /*hidden argument*/NULL);
return;
}
IL_0031:
{
int32_t L_6 = ___value1;
if ((((int32_t)L_6) >= ((int32_t)0)))
{
goto IL_0039;
}
}
{
int32_t L_7 = ___value1;
___value1 = ((-L_7));
}
IL_0039:
{
int32_t L_8 = ___value1;
NumberFormatter_InitDecHexDigits_mDDED506A219AEEA8A1A12EBC660550D440FF873B(__this, L_8, /*hidden argument*/NULL);
int32_t L_9 = NumberFormatter_DecHexLen_m6624BB04300860C2C7187CC1C66FF3FB9A68D97B(__this, /*hidden argument*/NULL);
int32_t L_10 = L_9;
V_0 = L_10;
__this->set__digitsLen_16(L_10);
int32_t L_11 = V_0;
__this->set__decPointPos_18(L_11);
return;
}
}
// System.Void System.NumberFormatter::Init(System.String,System.UInt32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_Init_m90911E05952A76710E710724EB8F62C3DCD8D34E (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, String_t* ___format0, uint32_t ___value1, int32_t ___defPrecision2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
String_t* L_0 = ___format0;
NumberFormatter_Init_mE4CB58F7935FD515BDBC5A88C389CCAE85A45286(__this, L_0, /*hidden argument*/NULL);
int32_t L_1 = ___defPrecision2;
__this->set__defPrecision_15(L_1);
__this->set__positive_12((bool)1);
uint32_t L_2 = ___value1;
if (!L_2)
{
goto IL_0022;
}
}
{
Il2CppChar L_3 = __this->get__specifier_13();
if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)88)))))
{
goto IL_002b;
}
}
IL_0022:
{
uint32_t L_4 = ___value1;
NumberFormatter_InitHex_mE69DD9D0FA84E4553B40C522E76D49E850A6AE30(__this, (((int64_t)((uint64_t)L_4))), /*hidden argument*/NULL);
return;
}
IL_002b:
{
uint32_t L_5 = ___value1;
NumberFormatter_InitDecHexDigits_mDDED506A219AEEA8A1A12EBC660550D440FF873B(__this, L_5, /*hidden argument*/NULL);
int32_t L_6 = NumberFormatter_DecHexLen_m6624BB04300860C2C7187CC1C66FF3FB9A68D97B(__this, /*hidden argument*/NULL);
int32_t L_7 = L_6;
V_0 = L_7;
__this->set__digitsLen_16(L_7);
int32_t L_8 = V_0;
__this->set__decPointPos_18(L_8);
return;
}
}
// System.Void System.NumberFormatter::Init(System.String,System.Int64)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_Init_mC48E49CCC89DD59718AC2D00A477CA8F397FBA8C (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, String_t* ___format0, int64_t ___value1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
String_t* L_0 = ___format0;
NumberFormatter_Init_mE4CB58F7935FD515BDBC5A88C389CCAE85A45286(__this, L_0, /*hidden argument*/NULL);
__this->set__defPrecision_15(((int32_t)19));
int64_t L_1 = ___value1;
__this->set__positive_12((bool)((((int32_t)((((int64_t)L_1) < ((int64_t)(((int64_t)((int64_t)0)))))? 1 : 0)) == ((int32_t)0))? 1 : 0));
int64_t L_2 = ___value1;
if (!L_2)
{
goto IL_002a;
}
}
{
Il2CppChar L_3 = __this->get__specifier_13();
if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)88)))))
{
goto IL_0032;
}
}
IL_002a:
{
int64_t L_4 = ___value1;
NumberFormatter_InitHex_mE69DD9D0FA84E4553B40C522E76D49E850A6AE30(__this, L_4, /*hidden argument*/NULL);
return;
}
IL_0032:
{
int64_t L_5 = ___value1;
if ((((int64_t)L_5) >= ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_003b;
}
}
{
int64_t L_6 = ___value1;
___value1 = ((-L_6));
}
IL_003b:
{
int64_t L_7 = ___value1;
NumberFormatter_InitDecHexDigits_m6B41DFE2085FE5ECE27586ACA44B44359C3E3883(__this, L_7, /*hidden argument*/NULL);
int32_t L_8 = NumberFormatter_DecHexLen_m6624BB04300860C2C7187CC1C66FF3FB9A68D97B(__this, /*hidden argument*/NULL);
int32_t L_9 = L_8;
V_0 = L_9;
__this->set__digitsLen_16(L_9);
int32_t L_10 = V_0;
__this->set__decPointPos_18(L_10);
return;
}
}
// System.Void System.NumberFormatter::Init(System.String,System.UInt64)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_Init_m6C605647C5BD888F8F085190C2F56EBB905598E1 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, String_t* ___format0, uint64_t ___value1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
String_t* L_0 = ___format0;
NumberFormatter_Init_mE4CB58F7935FD515BDBC5A88C389CCAE85A45286(__this, L_0, /*hidden argument*/NULL);
__this->set__defPrecision_15(((int32_t)20));
__this->set__positive_12((bool)1);
uint64_t L_1 = ___value1;
if (!L_1)
{
goto IL_0023;
}
}
{
Il2CppChar L_2 = __this->get__specifier_13();
if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)88)))))
{
goto IL_002b;
}
}
IL_0023:
{
uint64_t L_3 = ___value1;
NumberFormatter_InitHex_mE69DD9D0FA84E4553B40C522E76D49E850A6AE30(__this, L_3, /*hidden argument*/NULL);
return;
}
IL_002b:
{
uint64_t L_4 = ___value1;
NumberFormatter_InitDecHexDigits_m6B41DFE2085FE5ECE27586ACA44B44359C3E3883(__this, L_4, /*hidden argument*/NULL);
int32_t L_5 = NumberFormatter_DecHexLen_m6624BB04300860C2C7187CC1C66FF3FB9A68D97B(__this, /*hidden argument*/NULL);
int32_t L_6 = L_5;
V_0 = L_6;
__this->set__digitsLen_16(L_6);
int32_t L_7 = V_0;
__this->set__decPointPos_18(L_7);
return;
}
}
// System.Void System.NumberFormatter::Init(System.String,System.Double,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_Init_mD235F6B64FD6B6A4FD970449FD0BF75EC0D621C2 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, String_t* ___format0, double ___value1, int32_t ___defPrecision2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_Init_mD235F6B64FD6B6A4FD970449FD0BF75EC0D621C2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
int32_t V_1 = 0;
int64_t V_2 = 0;
int32_t V_3 = 0;
uint64_t V_4 = 0;
uint64_t V_5 = 0;
uint64_t V_6 = 0;
uint64_t V_7 = 0;
int64_t V_8 = 0;
int32_t V_9 = 0;
int32_t V_10 = 0;
int32_t V_11 = 0;
int64_t V_12 = 0;
{
String_t* L_0 = ___format0;
NumberFormatter_Init_mE4CB58F7935FD515BDBC5A88C389CCAE85A45286(__this, L_0, /*hidden argument*/NULL);
int32_t L_1 = ___defPrecision2;
__this->set__defPrecision_15(L_1);
double L_2 = ___value1;
IL2CPP_RUNTIME_CLASS_INIT(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var);
int64_t L_3 = BitConverter_DoubleToInt64Bits_mE511B45BE25B2E1D22059420D16055CBA7E1EAA4(L_2, /*hidden argument*/NULL);
V_0 = L_3;
int64_t L_4 = V_0;
__this->set__positive_12((bool)((((int32_t)((((int64_t)L_4) < ((int64_t)(((int64_t)((int64_t)0)))))? 1 : 0)) == ((int32_t)0))? 1 : 0));
int64_t L_5 = V_0;
V_0 = ((int64_t)((int64_t)L_5&(int64_t)((int64_t)std::numeric_limits<int64_t>::max())));
int64_t L_6 = V_0;
if (L_6)
{
goto IL_0048;
}
}
{
__this->set__decPointPos_18(1);
__this->set__digitsLen_16(0);
__this->set__positive_12((bool)1);
return;
}
IL_0048:
{
int64_t L_7 = V_0;
V_1 = (((int32_t)((int32_t)((int64_t)((int64_t)L_7>>(int32_t)((int32_t)52))))));
int64_t L_8 = V_0;
V_2 = ((int64_t)((int64_t)L_8&(int64_t)((int64_t)4503599627370495LL)));
int32_t L_9 = V_1;
if ((!(((uint32_t)L_9) == ((uint32_t)((int32_t)2047)))))
{
goto IL_0079;
}
}
{
int64_t L_10 = V_2;
__this->set__NaN_8((bool)((!(((uint64_t)L_10) <= ((uint64_t)(((int64_t)((int64_t)0))))))? 1 : 0));
int64_t L_11 = V_2;
__this->set__infinity_9((bool)((((int64_t)L_11) == ((int64_t)(((int64_t)((int64_t)0)))))? 1 : 0));
return;
}
IL_0079:
{
V_3 = 0;
int32_t L_12 = V_1;
if (L_12)
{
goto IL_00a0;
}
}
{
V_1 = 1;
int64_t L_13 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
int32_t L_14 = NumberFormatter_ScaleOrder_m712CE7B5E134E507EC41CC93A43D76F02FC2D8C2(L_13, /*hidden argument*/NULL);
V_11 = L_14;
int32_t L_15 = V_11;
if ((((int32_t)L_15) >= ((int32_t)((int32_t)15))))
{
goto IL_00b5;
}
}
{
int32_t L_16 = V_11;
V_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)((int32_t)15)));
int64_t L_17 = V_2;
int32_t L_18 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
int64_t L_19 = NumberFormatter_GetTenPowerOf_mFB4993FB5A5C694F12FC7772DF431C0AA3F6E43C(((-L_18)), /*hidden argument*/NULL);
V_2 = ((int64_t)il2cpp_codegen_multiply((int64_t)L_17, (int64_t)L_19));
goto IL_00b5;
}
IL_00a0:
{
int64_t L_20 = V_2;
V_2 = ((int64_t)il2cpp_codegen_multiply((int64_t)((int64_t)il2cpp_codegen_add((int64_t)((int64_t)il2cpp_codegen_add((int64_t)L_20, (int64_t)((int64_t)4503599627370495LL))), (int64_t)(((int64_t)((int64_t)1))))), (int64_t)(((int64_t)((int64_t)((int32_t)10))))));
V_3 = (-1);
}
IL_00b5:
{
int64_t L_21 = V_2;
V_4 = (((int64_t)((uint64_t)(((uint32_t)((uint32_t)(((int32_t)((uint32_t)L_21)))))))));
int64_t L_22 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
uint64_t* L_23 = ((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_StaticFields*)il2cpp_codegen_static_fields_for(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var))->get_MantissaBitsTable_0();
int32_t L_24 = V_1;
int64_t L_25 = *((int64_t*)((uint64_t*)il2cpp_codegen_add((intptr_t)L_23, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_24)), (int32_t)8)))));
V_5 = L_25;
uint64_t L_26 = V_5;
V_6 = ((int64_t)((uint64_t)L_26>>((int32_t)32)));
uint64_t L_27 = V_5;
V_5 = (((int64_t)((uint64_t)(((uint32_t)((uint32_t)(((int32_t)((uint32_t)L_27)))))))));
int64_t L_28 = ((int64_t)((uint64_t)L_22>>((int32_t)32)));
uint64_t L_29 = V_5;
uint64_t L_30 = V_4;
uint64_t L_31 = V_6;
uint64_t L_32 = V_4;
uint64_t L_33 = V_5;
V_7 = ((int64_t)il2cpp_codegen_add((int64_t)((int64_t)il2cpp_codegen_add((int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)L_28, (int64_t)L_29)), (int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)L_30, (int64_t)L_31)))), (int64_t)((int64_t)((uint64_t)((int64_t)il2cpp_codegen_multiply((int64_t)L_32, (int64_t)L_33))>>((int32_t)32)))));
uint64_t L_34 = V_6;
uint64_t L_35 = V_7;
V_8 = ((int64_t)il2cpp_codegen_add((int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)L_28, (int64_t)L_34)), (int64_t)((int64_t)((uint64_t)L_35>>((int32_t)32)))));
goto IL_0117;
}
IL_00fa:
{
uint64_t L_36 = V_7;
V_7 = ((int64_t)il2cpp_codegen_multiply((int64_t)((int64_t)((int64_t)L_36&(int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)(-1))))))))), (int64_t)(((int64_t)((int64_t)((int32_t)10))))));
int64_t L_37 = V_8;
uint64_t L_38 = V_7;
V_8 = ((int64_t)il2cpp_codegen_add((int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)L_37, (int64_t)(((int64_t)((int64_t)((int32_t)10)))))), (int64_t)((int64_t)((uint64_t)L_38>>((int32_t)32)))));
int32_t L_39 = V_3;
V_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_39, (int32_t)1));
}
IL_0117:
{
int64_t L_40 = V_8;
if ((((int64_t)L_40) < ((int64_t)((int64_t)10000000000000000LL))))
{
goto IL_00fa;
}
}
{
uint64_t L_41 = V_7;
if (!((int64_t)((int64_t)L_41&(int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)((int32_t)-2147483648LL))))))))))
{
goto IL_0136;
}
}
{
int64_t L_42 = V_8;
V_8 = ((int64_t)il2cpp_codegen_add((int64_t)L_42, (int64_t)(((int64_t)((int64_t)1)))));
}
IL_0136:
{
V_9 = ((int32_t)17);
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
int32_t* L_43 = ((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_StaticFields*)il2cpp_codegen_static_fields_for(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var))->get_TensExponentTable_1();
int32_t L_44 = V_1;
int32_t L_45 = *((int32_t*)((int32_t*)il2cpp_codegen_add((intptr_t)L_43, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_44)), (int32_t)4)))));
int32_t L_46 = V_3;
int32_t L_47 = V_9;
__this->set__decPointPos_18(((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_45, (int32_t)L_46)), (int32_t)L_47)));
int32_t L_48 = NumberFormatter_InitialFloatingPrecision_m0E00B5AAAD8CEE7FBFFF538CED95D40FBE8A5184(__this, /*hidden argument*/NULL);
V_10 = L_48;
int32_t L_49 = V_9;
int32_t L_50 = V_10;
if ((((int32_t)L_49) <= ((int32_t)L_50)))
{
goto IL_017a;
}
}
{
int32_t L_51 = V_9;
int32_t L_52 = V_10;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
int64_t L_53 = NumberFormatter_GetTenPowerOf_mFB4993FB5A5C694F12FC7772DF431C0AA3F6E43C(((int32_t)il2cpp_codegen_subtract((int32_t)L_51, (int32_t)L_52)), /*hidden argument*/NULL);
V_12 = L_53;
int64_t L_54 = V_8;
int64_t L_55 = V_12;
int64_t L_56 = V_12;
V_8 = ((int64_t)((int64_t)((int64_t)il2cpp_codegen_add((int64_t)L_54, (int64_t)((int64_t)((int64_t)L_55>>(int32_t)1))))/(int64_t)L_56));
int32_t L_57 = V_10;
V_9 = L_57;
}
IL_017a:
{
int64_t L_58 = V_8;
int32_t L_59 = V_9;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
int64_t L_60 = NumberFormatter_GetTenPowerOf_mFB4993FB5A5C694F12FC7772DF431C0AA3F6E43C(L_59, /*hidden argument*/NULL);
if ((((int64_t)L_58) < ((int64_t)L_60)))
{
goto IL_0199;
}
}
{
int32_t L_61 = V_9;
V_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_61, (int32_t)1));
int32_t L_62 = __this->get__decPointPos_18();
__this->set__decPointPos_18(((int32_t)il2cpp_codegen_add((int32_t)L_62, (int32_t)1)));
}
IL_0199:
{
int64_t L_63 = V_8;
NumberFormatter_InitDecHexDigits_m6B41DFE2085FE5ECE27586ACA44B44359C3E3883(__this, L_63, /*hidden argument*/NULL);
int32_t L_64 = NumberFormatter_CountTrailingZeros_m10E7E51D6F3BEFE9FE7D5982334C3A39074F1BD3(__this, /*hidden argument*/NULL);
__this->set__offset_17(L_64);
int32_t L_65 = V_9;
int32_t L_66 = __this->get__offset_17();
__this->set__digitsLen_16(((int32_t)il2cpp_codegen_subtract((int32_t)L_65, (int32_t)L_66)));
return;
}
}
// System.Void System.NumberFormatter::Init(System.String,System.Decimal)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_Init_mF96F3A764D7CCB55B5B187EEDB14881E4BD5A2CB (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, String_t* ___format0, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_Init_mF96F3A764D7CCB55B5B187EEDB14881E4BD5A2CB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL;
int32_t V_1 = 0;
{
String_t* L_0 = ___format0;
NumberFormatter_Init_mE4CB58F7935FD515BDBC5A88C389CCAE85A45286(__this, L_0, /*hidden argument*/NULL);
__this->set__defPrecision_15(((int32_t)100));
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = ___value1;
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var);
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = Decimal_GetBits_m581C2DB9823AC9CD84817738A740E8A7D39609BF(L_1, /*hidden argument*/NULL);
V_0 = L_2;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_3 = V_0;
NullCheck(L_3);
int32_t L_4 = 3;
int32_t L_5 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_1 = ((int32_t)((int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2031616)))>>(int32_t)((int32_t)16)));
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_6 = V_0;
NullCheck(L_6);
int32_t L_7 = 3;
int32_t L_8 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
__this->set__positive_12((bool)((((int32_t)((((int32_t)L_8) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0));
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_9 = V_0;
NullCheck(L_9);
int32_t L_10 = 0;
int32_t L_11 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
if (L_11)
{
goto IL_0058;
}
}
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_12 = V_0;
NullCheck(L_12);
int32_t L_13 = 1;
int32_t L_14 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_13));
if (L_14)
{
goto IL_0058;
}
}
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_15 = V_0;
NullCheck(L_15);
int32_t L_16 = 2;
int32_t L_17 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
if (L_17)
{
goto IL_0058;
}
}
{
int32_t L_18 = V_1;
__this->set__decPointPos_18(((-L_18)));
__this->set__positive_12((bool)1);
__this->set__digitsLen_16(0);
return;
}
IL_0058:
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_19 = V_0;
NullCheck(L_19);
int32_t L_20 = 2;
int32_t L_21 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_20));
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_22 = V_0;
NullCheck(L_22);
int32_t L_23 = 1;
int32_t L_24 = (L_22)->GetAt(static_cast<il2cpp_array_size_t>(L_23));
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_25 = V_0;
NullCheck(L_25);
int32_t L_26 = 0;
int32_t L_27 = (L_25)->GetAt(static_cast<il2cpp_array_size_t>(L_26));
NumberFormatter_InitDecHexDigits_m42646433FC393F360E2B559C275DA76F30E1CAD0(__this, L_21, ((int64_t)((int64_t)((int64_t)((int64_t)(((int64_t)((int64_t)L_24)))<<(int32_t)((int32_t)32)))|(int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)L_27)))))))), /*hidden argument*/NULL);
int32_t L_28 = NumberFormatter_DecHexLen_m6624BB04300860C2C7187CC1C66FF3FB9A68D97B(__this, /*hidden argument*/NULL);
__this->set__digitsLen_16(L_28);
int32_t L_29 = __this->get__digitsLen_16();
int32_t L_30 = V_1;
__this->set__decPointPos_18(((int32_t)il2cpp_codegen_subtract((int32_t)L_29, (int32_t)L_30)));
int32_t L_31 = __this->get__precision_14();
if ((!(((uint32_t)L_31) == ((uint32_t)(-1)))))
{
goto IL_009a;
}
}
{
Il2CppChar L_32 = __this->get__specifier_13();
if ((((int32_t)L_32) == ((int32_t)((int32_t)71))))
{
goto IL_00b9;
}
}
IL_009a:
{
int32_t L_33 = NumberFormatter_CountTrailingZeros_m10E7E51D6F3BEFE9FE7D5982334C3A39074F1BD3(__this, /*hidden argument*/NULL);
__this->set__offset_17(L_33);
int32_t L_34 = __this->get__digitsLen_16();
int32_t L_35 = __this->get__offset_17();
__this->set__digitsLen_16(((int32_t)il2cpp_codegen_subtract((int32_t)L_34, (int32_t)L_35)));
}
IL_00b9:
{
return;
}
}
// System.Void System.NumberFormatter::ResetCharBuf(System.Int32)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_ResetCharBuf_m6F248689219DB23CBC466C266D313DBE0E64AAA1 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___size0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_ResetCharBuf_m6F248689219DB23CBC466C266D313DBE0E64AAA1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
__this->set__ind_23(0);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = __this->get__cbuf_7();
NullCheck(L_0);
int32_t L_1 = ___size0;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length))))) >= ((int32_t)L_1)))
{
goto IL_001e;
}
}
{
int32_t L_2 = ___size0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_3 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)L_2);
__this->set__cbuf_7(L_3);
}
IL_001e:
{
return;
}
}
// System.Void System.NumberFormatter::Resize(System.Int32)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_Resize_m5DDC37B326ECCCFEE173B9F90431116E294F64B1 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___len0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_Resize_m5DDC37B326ECCCFEE173B9F90431116E294F64B1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** L_0 = __this->get_address_of__cbuf_7();
int32_t L_1 = ___len0;
Array_Resize_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mE3769C688380A92B93977FA652B43B0C793F4EDC((CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2**)L_0, L_1, /*hidden argument*/Array_Resize_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mE3769C688380A92B93977FA652B43B0C793F4EDC_RuntimeMethod_var);
return;
}
}
// System.Void System.NumberFormatter::Append(System.Char)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, Il2CppChar ___c0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->get__ind_23();
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = __this->get__cbuf_7();
NullCheck(L_1);
if ((!(((uint32_t)L_0) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_1)->max_length))))))))
{
goto IL_001f;
}
}
{
int32_t L_2 = __this->get__ind_23();
NumberFormatter_Resize_m5DDC37B326ECCCFEE173B9F90431116E294F64B1(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)((int32_t)10))), /*hidden argument*/NULL);
}
IL_001f:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_3 = __this->get__cbuf_7();
int32_t L_4 = __this->get__ind_23();
V_0 = L_4;
int32_t L_5 = V_0;
__this->set__ind_23(((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)));
int32_t L_6 = V_0;
Il2CppChar L_7 = ___c0;
NullCheck(L_3);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (Il2CppChar)L_7);
return;
}
}
// System.Void System.NumberFormatter::Append(System.Char,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_Append_m2A6A1C7BE013B8DC696AD7A2D2D715B5C685E0A9 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, Il2CppChar ___c0, int32_t ___cnt1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->get__ind_23();
int32_t L_1 = ___cnt1;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_2 = __this->get__cbuf_7();
NullCheck(L_2);
if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1))) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_2)->max_length)))))))
{
goto IL_003e;
}
}
{
int32_t L_3 = __this->get__ind_23();
int32_t L_4 = ___cnt1;
NumberFormatter_Resize_m5DDC37B326ECCCFEE173B9F90431116E294F64B1(__this, ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)L_4)), (int32_t)((int32_t)10))), /*hidden argument*/NULL);
goto IL_003e;
}
IL_0025:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_5 = __this->get__cbuf_7();
int32_t L_6 = __this->get__ind_23();
V_0 = L_6;
int32_t L_7 = V_0;
__this->set__ind_23(((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)));
int32_t L_8 = V_0;
Il2CppChar L_9 = ___c0;
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_8), (Il2CppChar)L_9);
}
IL_003e:
{
int32_t L_10 = ___cnt1;
int32_t L_11 = L_10;
___cnt1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)1));
if ((((int32_t)L_11) > ((int32_t)0)))
{
goto IL_0025;
}
}
{
return;
}
}
// System.Void System.NumberFormatter::Append(System.String)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, String_t* ___s0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
String_t* L_0 = ___s0;
NullCheck(L_0);
int32_t L_1 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_0, /*hidden argument*/NULL);
V_0 = L_1;
int32_t L_2 = __this->get__ind_23();
int32_t L_3 = V_0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_4 = __this->get__cbuf_7();
NullCheck(L_4);
if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)L_3))) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_4)->max_length)))))))
{
goto IL_002a;
}
}
{
int32_t L_5 = __this->get__ind_23();
int32_t L_6 = V_0;
NumberFormatter_Resize_m5DDC37B326ECCCFEE173B9F90431116E294F64B1(__this, ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)L_6)), (int32_t)((int32_t)10))), /*hidden argument*/NULL);
}
IL_002a:
{
V_1 = 0;
goto IL_0051;
}
IL_002e:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_7 = __this->get__cbuf_7();
int32_t L_8 = __this->get__ind_23();
V_2 = L_8;
int32_t L_9 = V_2;
__this->set__ind_23(((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1)));
int32_t L_10 = V_2;
String_t* L_11 = ___s0;
int32_t L_12 = V_1;
NullCheck(L_11);
Il2CppChar L_13 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_11, L_12, /*hidden argument*/NULL);
NullCheck(L_7);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(L_10), (Il2CppChar)L_13);
int32_t L_14 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1));
}
IL_0051:
{
int32_t L_15 = V_1;
int32_t L_16 = V_0;
if ((((int32_t)L_15) < ((int32_t)L_16)))
{
goto IL_002e;
}
}
{
return;
}
}
// System.Globalization.NumberFormatInfo System.NumberFormatter::GetNumberFormatInstance(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * NumberFormatter_GetNumberFormatInstance_m6E17C915C981DF8649E00FF0D53ECF896FB8A34F (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, RuntimeObject* ___fp0, const RuntimeMethod* method)
{
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_0 = __this->get__nfi_6();
if (!L_0)
{
goto IL_0012;
}
}
{
RuntimeObject* L_1 = ___fp0;
if (L_1)
{
goto IL_0012;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = __this->get__nfi_6();
return L_2;
}
IL_0012:
{
RuntimeObject* L_3 = ___fp0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_4 = NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A(L_3, /*hidden argument*/NULL);
return L_4;
}
}
// System.Void System.NumberFormatter::set_CurrentCulture(System.Globalization.CultureInfo)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_set_CurrentCulture_mF438AEA3F0930A76E4A09B0E7B1ECE7BCCE0D964 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___value0, const RuntimeMethod* method)
{
{
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = ___value0;
if (!L_0)
{
goto IL_0018;
}
}
{
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = ___value0;
NullCheck(L_1);
bool L_2 = CultureInfo_get_IsReadOnly_m527F0337C516B57391AD20A70BF18FF7B0AC4849(L_1, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_0018;
}
}
{
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_3 = ___value0;
NullCheck(L_3);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_4 = VirtFuncInvoker0< NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * >::Invoke(14 /* System.Globalization.NumberFormatInfo System.Globalization.CultureInfo::get_NumberFormat() */, L_3);
__this->set__nfi_6(L_4);
return;
}
IL_0018:
{
__this->set__nfi_6((NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 *)NULL);
return;
}
}
// System.Int32 System.NumberFormatter::get_IntegerDigits()
extern "C" IL2CPP_METHOD_ATTR int32_t NumberFormatter_get_IntegerDigits_m91E2E8AF66FD565349B6447D6F9AB3B9BD61F741 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__decPointPos_18();
if ((((int32_t)L_0) > ((int32_t)0)))
{
goto IL_000b;
}
}
{
return 1;
}
IL_000b:
{
int32_t L_1 = __this->get__decPointPos_18();
return L_1;
}
}
// System.Int32 System.NumberFormatter::get_DecimalDigits()
extern "C" IL2CPP_METHOD_ATTR int32_t NumberFormatter_get_DecimalDigits_m7D1E99D450C28EEB92D1C28F23393F18A2AB202E (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__digitsLen_16();
int32_t L_1 = __this->get__decPointPos_18();
if ((((int32_t)L_0) > ((int32_t)L_1)))
{
goto IL_0010;
}
}
{
return 0;
}
IL_0010:
{
int32_t L_2 = __this->get__digitsLen_16();
int32_t L_3 = __this->get__decPointPos_18();
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)L_3));
}
}
// System.Boolean System.NumberFormatter::get_IsFloatingSource()
extern "C" IL2CPP_METHOD_ATTR bool NumberFormatter_get_IsFloatingSource_m6CFAC659F6A85391D719FE8364828EDA57232B1A (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__defPrecision_15();
if ((((int32_t)L_0) == ((int32_t)((int32_t)15))))
{
goto IL_0014;
}
}
{
int32_t L_1 = __this->get__defPrecision_15();
return (bool)((((int32_t)L_1) == ((int32_t)7))? 1 : 0);
}
IL_0014:
{
return (bool)1;
}
}
// System.Boolean System.NumberFormatter::get_IsZero()
extern "C" IL2CPP_METHOD_ATTR bool NumberFormatter_get_IsZero_m8F40311773109C6A0B1F80956155E17EE982838E (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__digitsLen_16();
return (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
}
}
// System.Boolean System.NumberFormatter::get_IsZeroInteger()
extern "C" IL2CPP_METHOD_ATTR bool NumberFormatter_get_IsZeroInteger_m914987F51303120CDEB2339FB10E4617E9F17307 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__digitsLen_16();
if (!L_0)
{
goto IL_0015;
}
}
{
int32_t L_1 = __this->get__decPointPos_18();
return (bool)((((int32_t)((((int32_t)L_1) > ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_0015:
{
return (bool)1;
}
}
// System.Void System.NumberFormatter::RoundPos(System.Int32)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_RoundPos_mD1767AEAEE9801C748F3C7B8BE7A29598A843961 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___pos0, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__digitsLen_16();
int32_t L_1 = ___pos0;
NumberFormatter_RoundBits_m0630F9CB3D9867F5732E5C9473B3D637C47EEBFC(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), /*hidden argument*/NULL);
return;
}
}
// System.Boolean System.NumberFormatter::RoundDecimal(System.Int32)
extern "C" IL2CPP_METHOD_ATTR bool NumberFormatter_RoundDecimal_mE3446A2208E792FF9BB01F93871A8C1BCFF10F4E (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___decimals0, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__digitsLen_16();
int32_t L_1 = __this->get__decPointPos_18();
int32_t L_2 = ___decimals0;
bool L_3 = NumberFormatter_RoundBits_m0630F9CB3D9867F5732E5C9473B3D637C47EEBFC(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)L_2)), /*hidden argument*/NULL);
return L_3;
}
}
// System.Boolean System.NumberFormatter::RoundBits(System.Int32)
extern "C" IL2CPP_METHOD_ATTR bool NumberFormatter_RoundBits_m0630F9CB3D9867F5732E5C9473B3D637C47EEBFC (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___shift0, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
uint32_t V_1 = 0;
bool V_2 = false;
uint32_t V_3 = 0;
int32_t V_4 = 0;
{
int32_t L_0 = ___shift0;
if ((((int32_t)L_0) > ((int32_t)0)))
{
goto IL_0006;
}
}
{
return (bool)0;
}
IL_0006:
{
int32_t L_1 = ___shift0;
int32_t L_2 = __this->get__digitsLen_16();
if ((((int32_t)L_1) <= ((int32_t)L_2)))
{
goto IL_0048;
}
}
{
__this->set__digitsLen_16(0);
__this->set__decPointPos_18(1);
int32_t L_3 = 0;
V_3 = L_3;
__this->set__val4_22(L_3);
uint32_t L_4 = V_3;
uint32_t L_5 = L_4;
V_3 = L_5;
__this->set__val3_21(L_5);
uint32_t L_6 = V_3;
uint32_t L_7 = L_6;
V_3 = L_7;
__this->set__val2_20(L_7);
uint32_t L_8 = V_3;
__this->set__val1_19(L_8);
__this->set__positive_12((bool)1);
return (bool)0;
}
IL_0048:
{
int32_t L_9 = ___shift0;
int32_t L_10 = __this->get__offset_17();
___shift0 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)L_10));
int32_t L_11 = __this->get__digitsLen_16();
int32_t L_12 = __this->get__offset_17();
__this->set__digitsLen_16(((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)L_12)));
goto IL_00a5;
}
IL_0067:
{
uint32_t L_13 = __this->get__val2_20();
__this->set__val1_19(L_13);
uint32_t L_14 = __this->get__val3_21();
__this->set__val2_20(L_14);
uint32_t L_15 = __this->get__val4_22();
__this->set__val3_21(L_15);
__this->set__val4_22(0);
int32_t L_16 = __this->get__digitsLen_16();
__this->set__digitsLen_16(((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)8)));
int32_t L_17 = ___shift0;
___shift0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)8));
}
IL_00a5:
{
int32_t L_18 = ___shift0;
if ((((int32_t)L_18) > ((int32_t)8)))
{
goto IL_0067;
}
}
{
int32_t L_19 = ___shift0;
___shift0 = ((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1))<<(int32_t)2));
uint32_t L_20 = __this->get__val1_19();
int32_t L_21 = ___shift0;
V_0 = ((int32_t)((uint32_t)L_20>>((int32_t)((int32_t)L_21&(int32_t)((int32_t)31)))));
uint32_t L_22 = V_0;
V_1 = ((int32_t)((int32_t)L_22&(int32_t)((int32_t)15)));
uint32_t L_23 = V_0;
uint32_t L_24 = V_1;
int32_t L_25 = ___shift0;
__this->set__val1_19(((int32_t)((int32_t)((int32_t)((int32_t)L_23^(int32_t)L_24))<<(int32_t)((int32_t)((int32_t)L_25&(int32_t)((int32_t)31))))));
V_2 = (bool)0;
uint32_t L_26 = V_1;
if ((!(((uint32_t)L_26) >= ((uint32_t)5))))
{
goto IL_0129;
}
}
{
uint32_t L_27 = __this->get__val1_19();
int32_t L_28 = ___shift0;
__this->set__val1_19(((int32_t)((int32_t)L_27|(int32_t)((int32_t)((uint32_t)((int32_t)-1717986919)>>((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)28), (int32_t)L_28))&(int32_t)((int32_t)31))))))));
NumberFormatter_AddOneToDecHex_mD5A7D9EA97B16B9B318D5FC7E9F6007E98990878(__this, /*hidden argument*/NULL);
int32_t L_29 = NumberFormatter_DecHexLen_m6624BB04300860C2C7187CC1C66FF3FB9A68D97B(__this, /*hidden argument*/NULL);
V_4 = L_29;
int32_t L_30 = V_4;
int32_t L_31 = __this->get__digitsLen_16();
V_2 = (bool)((((int32_t)((((int32_t)L_30) == ((int32_t)L_31))? 1 : 0)) == ((int32_t)0))? 1 : 0);
int32_t L_32 = __this->get__decPointPos_18();
int32_t L_33 = V_4;
int32_t L_34 = __this->get__digitsLen_16();
__this->set__decPointPos_18(((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)L_33)), (int32_t)L_34)));
int32_t L_35 = V_4;
__this->set__digitsLen_16(L_35);
}
IL_0129:
{
NumberFormatter_RemoveTrailingZeros_mFE3D46E49E75DEAF1406B777009FF6A21F3BC6CF(__this, /*hidden argument*/NULL);
bool L_36 = V_2;
return L_36;
}
}
// System.Void System.NumberFormatter::RemoveTrailingZeros()
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_RemoveTrailingZeros_mFE3D46E49E75DEAF1406B777009FF6A21F3BC6CF (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = NumberFormatter_CountTrailingZeros_m10E7E51D6F3BEFE9FE7D5982334C3A39074F1BD3(__this, /*hidden argument*/NULL);
__this->set__offset_17(L_0);
int32_t L_1 = __this->get__digitsLen_16();
int32_t L_2 = __this->get__offset_17();
__this->set__digitsLen_16(((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)L_2)));
int32_t L_3 = __this->get__digitsLen_16();
if (L_3)
{
goto IL_003c;
}
}
{
__this->set__offset_17(0);
__this->set__decPointPos_18(1);
__this->set__positive_12((bool)1);
}
IL_003c:
{
return;
}
}
// System.Void System.NumberFormatter::AddOneToDecHex()
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_AddOneToDecHex_mD5A7D9EA97B16B9B318D5FC7E9F6007E98990878 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_AddOneToDecHex_mD5A7D9EA97B16B9B318D5FC7E9F6007E98990878_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
uint32_t L_0 = __this->get__val1_19();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-1717986919)))))
{
goto IL_0072;
}
}
{
__this->set__val1_19(0);
uint32_t L_1 = __this->get__val2_20();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)-1717986919)))))
{
goto IL_0060;
}
}
{
__this->set__val2_20(0);
uint32_t L_2 = __this->get__val3_21();
if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)-1717986919)))))
{
goto IL_004e;
}
}
{
__this->set__val3_21(0);
uint32_t L_3 = __this->get__val4_22();
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
uint32_t L_4 = NumberFormatter_AddOneToDecHex_m851488765EF4DFAE8BE75CB6BFCE577528D6FBF7(L_3, /*hidden argument*/NULL);
__this->set__val4_22(L_4);
return;
}
IL_004e:
{
uint32_t L_5 = __this->get__val3_21();
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
uint32_t L_6 = NumberFormatter_AddOneToDecHex_m851488765EF4DFAE8BE75CB6BFCE577528D6FBF7(L_5, /*hidden argument*/NULL);
__this->set__val3_21(L_6);
return;
}
IL_0060:
{
uint32_t L_7 = __this->get__val2_20();
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
uint32_t L_8 = NumberFormatter_AddOneToDecHex_m851488765EF4DFAE8BE75CB6BFCE577528D6FBF7(L_7, /*hidden argument*/NULL);
__this->set__val2_20(L_8);
return;
}
IL_0072:
{
uint32_t L_9 = __this->get__val1_19();
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
uint32_t L_10 = NumberFormatter_AddOneToDecHex_m851488765EF4DFAE8BE75CB6BFCE577528D6FBF7(L_9, /*hidden argument*/NULL);
__this->set__val1_19(L_10);
return;
}
}
// System.UInt32 System.NumberFormatter::AddOneToDecHex(System.UInt32)
extern "C" IL2CPP_METHOD_ATTR uint32_t NumberFormatter_AddOneToDecHex_m851488765EF4DFAE8BE75CB6BFCE577528D6FBF7 (uint32_t ___val0, const RuntimeMethod* method)
{
{
uint32_t L_0 = ___val0;
if ((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)65535)))) == ((uint32_t)((int32_t)39321)))))
{
goto IL_0058;
}
}
{
uint32_t L_1 = ___val0;
if ((!(((uint32_t)((int32_t)((int32_t)L_1&(int32_t)((int32_t)16777215)))) == ((uint32_t)((int32_t)10066329)))))
{
goto IL_003a;
}
}
{
uint32_t L_2 = ___val0;
if ((!(((uint32_t)((int32_t)((int32_t)L_2&(int32_t)((int32_t)268435455)))) == ((uint32_t)((int32_t)161061273)))))
{
goto IL_0032;
}
}
{
uint32_t L_3 = ___val0;
return ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)((int32_t)107374183)));
}
IL_0032:
{
uint32_t L_4 = ___val0;
return ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)((int32_t)6710887)));
}
IL_003a:
{
uint32_t L_5 = ___val0;
if ((!(((uint32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)1048575)))) == ((uint32_t)((int32_t)629145)))))
{
goto IL_0050;
}
}
{
uint32_t L_6 = ___val0;
return ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)((int32_t)419431)));
}
IL_0050:
{
uint32_t L_7 = ___val0;
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)((int32_t)26215)));
}
IL_0058:
{
uint32_t L_8 = ___val0;
if ((!(((uint32_t)((int32_t)((int32_t)L_8&(int32_t)((int32_t)255)))) == ((uint32_t)((int32_t)153)))))
{
goto IL_0081;
}
}
{
uint32_t L_9 = ___val0;
if ((!(((uint32_t)((int32_t)((int32_t)L_9&(int32_t)((int32_t)4095)))) == ((uint32_t)((int32_t)2457)))))
{
goto IL_007c;
}
}
{
uint32_t L_10 = ___val0;
return ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)((int32_t)1639)));
}
IL_007c:
{
uint32_t L_11 = ___val0;
return ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)((int32_t)103)));
}
IL_0081:
{
uint32_t L_12 = ___val0;
if ((!(((uint32_t)((int32_t)((int32_t)L_12&(int32_t)((int32_t)15)))) == ((uint32_t)((int32_t)9)))))
{
goto IL_008d;
}
}
{
uint32_t L_13 = ___val0;
return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)7));
}
IL_008d:
{
uint32_t L_14 = ___val0;
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1));
}
}
// System.Int32 System.NumberFormatter::CountTrailingZeros()
extern "C" IL2CPP_METHOD_ATTR int32_t NumberFormatter_CountTrailingZeros_m10E7E51D6F3BEFE9FE7D5982334C3A39074F1BD3 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_CountTrailingZeros_m10E7E51D6F3BEFE9FE7D5982334C3A39074F1BD3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
uint32_t L_0 = __this->get__val1_19();
if (!L_0)
{
goto IL_0014;
}
}
{
uint32_t L_1 = __this->get__val1_19();
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
int32_t L_2 = NumberFormatter_CountTrailingZeros_m09BDBCCEC51A69C186B534021A1BFCD2477C4B1B(L_1, /*hidden argument*/NULL);
return L_2;
}
IL_0014:
{
uint32_t L_3 = __this->get__val2_20();
if (!L_3)
{
goto IL_002a;
}
}
{
uint32_t L_4 = __this->get__val2_20();
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
int32_t L_5 = NumberFormatter_CountTrailingZeros_m09BDBCCEC51A69C186B534021A1BFCD2477C4B1B(L_4, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)8));
}
IL_002a:
{
uint32_t L_6 = __this->get__val3_21();
if (!L_6)
{
goto IL_0041;
}
}
{
uint32_t L_7 = __this->get__val3_21();
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
int32_t L_8 = NumberFormatter_CountTrailingZeros_m09BDBCCEC51A69C186B534021A1BFCD2477C4B1B(L_7, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)((int32_t)16)));
}
IL_0041:
{
uint32_t L_9 = __this->get__val4_22();
if (!L_9)
{
goto IL_0058;
}
}
{
uint32_t L_10 = __this->get__val4_22();
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
int32_t L_11 = NumberFormatter_CountTrailingZeros_m09BDBCCEC51A69C186B534021A1BFCD2477C4B1B(L_10, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)((int32_t)24)));
}
IL_0058:
{
int32_t L_12 = __this->get__digitsLen_16();
return L_12;
}
}
// System.Int32 System.NumberFormatter::CountTrailingZeros(System.UInt32)
extern "C" IL2CPP_METHOD_ATTR int32_t NumberFormatter_CountTrailingZeros_m09BDBCCEC51A69C186B534021A1BFCD2477C4B1B (uint32_t ___val0, const RuntimeMethod* method)
{
{
uint32_t L_0 = ___val0;
if (((int32_t)((int32_t)L_0&(int32_t)((int32_t)65535))))
{
goto IL_002c;
}
}
{
uint32_t L_1 = ___val0;
if (((int32_t)((int32_t)L_1&(int32_t)((int32_t)16777215))))
{
goto IL_001f;
}
}
{
uint32_t L_2 = ___val0;
if (((int32_t)((int32_t)L_2&(int32_t)((int32_t)268435455))))
{
goto IL_001d;
}
}
{
return 7;
}
IL_001d:
{
return 6;
}
IL_001f:
{
uint32_t L_3 = ___val0;
if (((int32_t)((int32_t)L_3&(int32_t)((int32_t)1048575))))
{
goto IL_002a;
}
}
{
return 5;
}
IL_002a:
{
return 4;
}
IL_002c:
{
uint32_t L_4 = ___val0;
if (((int32_t)((int32_t)L_4&(int32_t)((int32_t)255))))
{
goto IL_0042;
}
}
{
uint32_t L_5 = ___val0;
if (((int32_t)((int32_t)L_5&(int32_t)((int32_t)4095))))
{
goto IL_0040;
}
}
{
return 3;
}
IL_0040:
{
return 2;
}
IL_0042:
{
uint32_t L_6 = ___val0;
if (((int32_t)((int32_t)L_6&(int32_t)((int32_t)15))))
{
goto IL_004a;
}
}
{
return 1;
}
IL_004a:
{
return 0;
}
}
// System.NumberFormatter System.NumberFormatter::GetInstance(System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * NumberFormatter_GetInstance_mA49673EC58400C43805623A779916C2F6705AF99 (RuntimeObject* ___fp0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_GetInstance_mA49673EC58400C43805623A779916C2F6705AF99_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * V_0 = NULL;
{
RuntimeObject* L_0 = ___fp0;
if (!L_0)
{
goto IL_0022;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_1 = ((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var))->get_userFormatProvider_25();
if (L_1)
{
goto IL_001c;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_2 = (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC *)il2cpp_codegen_object_new(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
NumberFormatter__ctor_m8C967CC13F98B4F01D3E9D0691465B0C919FC280(L_2, (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 *)NULL, /*hidden argument*/NULL);
InterlockedCompareExchangeImpl<NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC *>((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC **)(((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var))->get_address_of_userFormatProvider_25()), L_2, (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC *)NULL);
}
IL_001c:
{
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_3 = ((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var))->get_userFormatProvider_25();
return L_3;
}
IL_0022:
{
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_4 = ((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var))->get_threadNumberFormatter_24();
V_0 = L_4;
((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var))->set_threadNumberFormatter_24((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC *)NULL);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_5 = V_0;
if (L_5)
{
goto IL_003c;
}
}
{
Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * L_6 = Thread_get_CurrentThread_mB7A83CAE2B9A74CEA053196DFD1AF1E7AB30A70E(/*hidden argument*/NULL);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_7 = (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC *)il2cpp_codegen_object_new(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
NumberFormatter__ctor_m8C967CC13F98B4F01D3E9D0691465B0C919FC280(L_7, L_6, /*hidden argument*/NULL);
return L_7;
}
IL_003c:
{
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_8 = V_0;
Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * L_9 = Thread_get_CurrentThread_mB7A83CAE2B9A74CEA053196DFD1AF1E7AB30A70E(/*hidden argument*/NULL);
NullCheck(L_9);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_10 = Thread_get_CurrentCulture_m97A15448A16FB3B5EC1E21A0538C9FC1F84AEE66(L_9, /*hidden argument*/NULL);
NullCheck(L_8);
NumberFormatter_set_CurrentCulture_mF438AEA3F0930A76E4A09B0E7B1ECE7BCCE0D964(L_8, L_10, /*hidden argument*/NULL);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_11 = V_0;
return L_11;
}
}
// System.Void System.NumberFormatter::Release()
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_Release_mDCB5A3DC8C2A7E6FFF66C72576E7D29AB4E95D83 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_Release_mDCB5A3DC8C2A7E6FFF66C72576E7D29AB4E95D83_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_0 = ((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var))->get_userFormatProvider_25();
if ((((RuntimeObject*)(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC *)__this) == ((RuntimeObject*)(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC *)L_0)))
{
goto IL_000e;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var))->set_threadNumberFormatter_24(__this);
}
IL_000e:
{
return;
}
}
// System.String System.NumberFormatter::NumberToString(System.String,System.UInt32,System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatter_NumberToString_mBA9C9AB4809ADB1CEDAC880569E1F4EC2ADB547C (String_t* ___format0, uint32_t ___value1, RuntimeObject* ___fp2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_NumberToString_mBA9C9AB4809ADB1CEDAC880569E1F4EC2ADB547C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
RuntimeObject* L_0 = ___fp2;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_1 = NumberFormatter_GetInstance_mA49673EC58400C43805623A779916C2F6705AF99(L_0, /*hidden argument*/NULL);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_2 = L_1;
String_t* L_3 = ___format0;
uint32_t L_4 = ___value1;
NullCheck(L_2);
NumberFormatter_Init_m90911E05952A76710E710724EB8F62C3DCD8D34E(L_2, L_3, L_4, ((int32_t)10), /*hidden argument*/NULL);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_5 = L_2;
String_t* L_6 = ___format0;
RuntimeObject* L_7 = ___fp2;
NullCheck(L_5);
String_t* L_8 = NumberFormatter_IntegerToString_m167EB2E9184CBA8A18A5A7AE72CD61602227AA50(L_5, L_6, L_7, /*hidden argument*/NULL);
V_0 = L_8;
NullCheck(L_5);
NumberFormatter_Release_mDCB5A3DC8C2A7E6FFF66C72576E7D29AB4E95D83(L_5, /*hidden argument*/NULL);
String_t* L_9 = V_0;
return L_9;
}
}
// System.String System.NumberFormatter::NumberToString(System.String,System.Int32,System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatter_NumberToString_mD13D145869D2857BFDAEDD127A04E68A6B929950 (String_t* ___format0, int32_t ___value1, RuntimeObject* ___fp2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_NumberToString_mD13D145869D2857BFDAEDD127A04E68A6B929950_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
RuntimeObject* L_0 = ___fp2;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_1 = NumberFormatter_GetInstance_mA49673EC58400C43805623A779916C2F6705AF99(L_0, /*hidden argument*/NULL);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_2 = L_1;
String_t* L_3 = ___format0;
int32_t L_4 = ___value1;
NullCheck(L_2);
NumberFormatter_Init_m7D7CC10DDA255BB0023BD72A0C91F09AD729BE2E(L_2, L_3, L_4, ((int32_t)10), /*hidden argument*/NULL);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_5 = L_2;
String_t* L_6 = ___format0;
RuntimeObject* L_7 = ___fp2;
NullCheck(L_5);
String_t* L_8 = NumberFormatter_IntegerToString_m167EB2E9184CBA8A18A5A7AE72CD61602227AA50(L_5, L_6, L_7, /*hidden argument*/NULL);
V_0 = L_8;
NullCheck(L_5);
NumberFormatter_Release_mDCB5A3DC8C2A7E6FFF66C72576E7D29AB4E95D83(L_5, /*hidden argument*/NULL);
String_t* L_9 = V_0;
return L_9;
}
}
// System.String System.NumberFormatter::NumberToString(System.String,System.UInt64,System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatter_NumberToString_mB04F03382B99D07E7DDEE769E704C823EC6EF201 (String_t* ___format0, uint64_t ___value1, RuntimeObject* ___fp2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_NumberToString_mB04F03382B99D07E7DDEE769E704C823EC6EF201_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
RuntimeObject* L_0 = ___fp2;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_1 = NumberFormatter_GetInstance_mA49673EC58400C43805623A779916C2F6705AF99(L_0, /*hidden argument*/NULL);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_2 = L_1;
String_t* L_3 = ___format0;
uint64_t L_4 = ___value1;
NullCheck(L_2);
NumberFormatter_Init_m6C605647C5BD888F8F085190C2F56EBB905598E1(L_2, L_3, L_4, /*hidden argument*/NULL);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_5 = L_2;
String_t* L_6 = ___format0;
RuntimeObject* L_7 = ___fp2;
NullCheck(L_5);
String_t* L_8 = NumberFormatter_IntegerToString_m167EB2E9184CBA8A18A5A7AE72CD61602227AA50(L_5, L_6, L_7, /*hidden argument*/NULL);
V_0 = L_8;
NullCheck(L_5);
NumberFormatter_Release_mDCB5A3DC8C2A7E6FFF66C72576E7D29AB4E95D83(L_5, /*hidden argument*/NULL);
String_t* L_9 = V_0;
return L_9;
}
}
// System.String System.NumberFormatter::NumberToString(System.String,System.Int64,System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatter_NumberToString_mF2FEDF5FC0B3511F8BE51DC6C6FF1B6326BDDA05 (String_t* ___format0, int64_t ___value1, RuntimeObject* ___fp2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_NumberToString_mF2FEDF5FC0B3511F8BE51DC6C6FF1B6326BDDA05_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
RuntimeObject* L_0 = ___fp2;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_1 = NumberFormatter_GetInstance_mA49673EC58400C43805623A779916C2F6705AF99(L_0, /*hidden argument*/NULL);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_2 = L_1;
String_t* L_3 = ___format0;
int64_t L_4 = ___value1;
NullCheck(L_2);
NumberFormatter_Init_mC48E49CCC89DD59718AC2D00A477CA8F397FBA8C(L_2, L_3, L_4, /*hidden argument*/NULL);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_5 = L_2;
String_t* L_6 = ___format0;
RuntimeObject* L_7 = ___fp2;
NullCheck(L_5);
String_t* L_8 = NumberFormatter_IntegerToString_m167EB2E9184CBA8A18A5A7AE72CD61602227AA50(L_5, L_6, L_7, /*hidden argument*/NULL);
V_0 = L_8;
NullCheck(L_5);
NumberFormatter_Release_mDCB5A3DC8C2A7E6FFF66C72576E7D29AB4E95D83(L_5, /*hidden argument*/NULL);
String_t* L_9 = V_0;
return L_9;
}
}
// System.String System.NumberFormatter::NumberToString(System.String,System.Single,System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatter_NumberToString_m2BCC98CB4910CBDA506DD64B026DB3C66A66A657 (String_t* ___format0, float ___value1, RuntimeObject* ___fp2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_NumberToString_m2BCC98CB4910CBDA506DD64B026DB3C66A66A657_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * V_0 = NULL;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * V_1 = NULL;
String_t* V_2 = NULL;
{
RuntimeObject* L_0 = ___fp2;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_1 = NumberFormatter_GetInstance_mA49673EC58400C43805623A779916C2F6705AF99(L_0, /*hidden argument*/NULL);
V_0 = L_1;
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_2 = V_0;
String_t* L_3 = ___format0;
float L_4 = ___value1;
NullCheck(L_2);
NumberFormatter_Init_mD235F6B64FD6B6A4FD970449FD0BF75EC0D621C2(L_2, L_3, (((double)((double)L_4))), 7, /*hidden argument*/NULL);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_5 = V_0;
RuntimeObject* L_6 = ___fp2;
NullCheck(L_5);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_7 = NumberFormatter_GetNumberFormatInstance_m6E17C915C981DF8649E00FF0D53ECF896FB8A34F(L_5, L_6, /*hidden argument*/NULL);
V_1 = L_7;
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_8 = V_0;
NullCheck(L_8);
bool L_9 = L_8->get__NaN_8();
if (!L_9)
{
goto IL_002a;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_10 = V_1;
NullCheck(L_10);
String_t* L_11 = NumberFormatInfo_get_NaNSymbol_m82326D3E16F9834D5138685A6956EE154944891E(L_10, /*hidden argument*/NULL);
V_2 = L_11;
goto IL_006a;
}
IL_002a:
{
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_12 = V_0;
NullCheck(L_12);
bool L_13 = L_12->get__infinity_9();
if (!L_13)
{
goto IL_004c;
}
}
{
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_14 = V_0;
NullCheck(L_14);
bool L_15 = L_14->get__positive_12();
if (!L_15)
{
goto IL_0043;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_16 = V_1;
NullCheck(L_16);
String_t* L_17 = NumberFormatInfo_get_PositiveInfinitySymbol_m7602CB28ED33148275C2ED9CF8395241BF8E0F0A(L_16, /*hidden argument*/NULL);
V_2 = L_17;
goto IL_006a;
}
IL_0043:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_18 = V_1;
NullCheck(L_18);
String_t* L_19 = NumberFormatInfo_get_NegativeInfinitySymbol_m8C1DDF6E543F2193CD0BE65F67175E4DECED1DB8(L_18, /*hidden argument*/NULL);
V_2 = L_19;
goto IL_006a;
}
IL_004c:
{
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_20 = V_0;
NullCheck(L_20);
Il2CppChar L_21 = L_20->get__specifier_13();
if ((!(((uint32_t)L_21) == ((uint32_t)((int32_t)82)))))
{
goto IL_0061;
}
}
{
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_22 = V_0;
float L_23 = ___value1;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_24 = V_1;
NullCheck(L_22);
String_t* L_25 = NumberFormatter_FormatRoundtrip_mBE6EBC5BD83D8DB4BAE38032B659B9E3BB291439(L_22, L_23, L_24, /*hidden argument*/NULL);
V_2 = L_25;
goto IL_006a;
}
IL_0061:
{
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_26 = V_0;
String_t* L_27 = ___format0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_28 = V_1;
NullCheck(L_26);
String_t* L_29 = NumberFormatter_NumberToString_m831CA24EE69F2EEA3AD4D4FD4AA9353B40FF2FB3(L_26, L_27, L_28, /*hidden argument*/NULL);
V_2 = L_29;
}
IL_006a:
{
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_30 = V_0;
NullCheck(L_30);
NumberFormatter_Release_mDCB5A3DC8C2A7E6FFF66C72576E7D29AB4E95D83(L_30, /*hidden argument*/NULL);
String_t* L_31 = V_2;
return L_31;
}
}
// System.String System.NumberFormatter::NumberToString(System.String,System.Double,System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatter_NumberToString_m52F79BE9C6B6531191AE27454C6DEBA1C09A4717 (String_t* ___format0, double ___value1, RuntimeObject* ___fp2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_NumberToString_m52F79BE9C6B6531191AE27454C6DEBA1C09A4717_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * V_0 = NULL;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * V_1 = NULL;
String_t* V_2 = NULL;
{
RuntimeObject* L_0 = ___fp2;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_1 = NumberFormatter_GetInstance_mA49673EC58400C43805623A779916C2F6705AF99(L_0, /*hidden argument*/NULL);
V_0 = L_1;
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_2 = V_0;
String_t* L_3 = ___format0;
double L_4 = ___value1;
NullCheck(L_2);
NumberFormatter_Init_mD235F6B64FD6B6A4FD970449FD0BF75EC0D621C2(L_2, L_3, L_4, ((int32_t)15), /*hidden argument*/NULL);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_5 = V_0;
RuntimeObject* L_6 = ___fp2;
NullCheck(L_5);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_7 = NumberFormatter_GetNumberFormatInstance_m6E17C915C981DF8649E00FF0D53ECF896FB8A34F(L_5, L_6, /*hidden argument*/NULL);
V_1 = L_7;
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_8 = V_0;
NullCheck(L_8);
bool L_9 = L_8->get__NaN_8();
if (!L_9)
{
goto IL_002a;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_10 = V_1;
NullCheck(L_10);
String_t* L_11 = NumberFormatInfo_get_NaNSymbol_m82326D3E16F9834D5138685A6956EE154944891E(L_10, /*hidden argument*/NULL);
V_2 = L_11;
goto IL_006a;
}
IL_002a:
{
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_12 = V_0;
NullCheck(L_12);
bool L_13 = L_12->get__infinity_9();
if (!L_13)
{
goto IL_004c;
}
}
{
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_14 = V_0;
NullCheck(L_14);
bool L_15 = L_14->get__positive_12();
if (!L_15)
{
goto IL_0043;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_16 = V_1;
NullCheck(L_16);
String_t* L_17 = NumberFormatInfo_get_PositiveInfinitySymbol_m7602CB28ED33148275C2ED9CF8395241BF8E0F0A(L_16, /*hidden argument*/NULL);
V_2 = L_17;
goto IL_006a;
}
IL_0043:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_18 = V_1;
NullCheck(L_18);
String_t* L_19 = NumberFormatInfo_get_NegativeInfinitySymbol_m8C1DDF6E543F2193CD0BE65F67175E4DECED1DB8(L_18, /*hidden argument*/NULL);
V_2 = L_19;
goto IL_006a;
}
IL_004c:
{
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_20 = V_0;
NullCheck(L_20);
Il2CppChar L_21 = L_20->get__specifier_13();
if ((!(((uint32_t)L_21) == ((uint32_t)((int32_t)82)))))
{
goto IL_0061;
}
}
{
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_22 = V_0;
double L_23 = ___value1;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_24 = V_1;
NullCheck(L_22);
String_t* L_25 = NumberFormatter_FormatRoundtrip_m8339767BDB6A61BABFE5AB826D923D6151DDD816(L_22, L_23, L_24, /*hidden argument*/NULL);
V_2 = L_25;
goto IL_006a;
}
IL_0061:
{
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_26 = V_0;
String_t* L_27 = ___format0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_28 = V_1;
NullCheck(L_26);
String_t* L_29 = NumberFormatter_NumberToString_m831CA24EE69F2EEA3AD4D4FD4AA9353B40FF2FB3(L_26, L_27, L_28, /*hidden argument*/NULL);
V_2 = L_29;
}
IL_006a:
{
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_30 = V_0;
NullCheck(L_30);
NumberFormatter_Release_mDCB5A3DC8C2A7E6FFF66C72576E7D29AB4E95D83(L_30, /*hidden argument*/NULL);
String_t* L_31 = V_2;
return L_31;
}
}
// System.String System.NumberFormatter::NumberToString(System.String,System.Decimal,System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatter_NumberToString_mB2192DEA3E3EFE9F8799E9D931F21586823E61D9 (String_t* ___format0, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value1, RuntimeObject* ___fp2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_NumberToString_mB2192DEA3E3EFE9F8799E9D931F21586823E61D9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * V_0 = NULL;
{
RuntimeObject* L_0 = ___fp2;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_1 = NumberFormatter_GetInstance_mA49673EC58400C43805623A779916C2F6705AF99(L_0, /*hidden argument*/NULL);
V_0 = L_1;
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_2 = V_0;
String_t* L_3 = ___format0;
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_4 = ___value1;
NullCheck(L_2);
NumberFormatter_Init_mF96F3A764D7CCB55B5B187EEDB14881E4BD5A2CB(L_2, L_3, L_4, /*hidden argument*/NULL);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_5 = V_0;
String_t* L_6 = ___format0;
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_7 = V_0;
RuntimeObject* L_8 = ___fp2;
NullCheck(L_7);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_9 = NumberFormatter_GetNumberFormatInstance_m6E17C915C981DF8649E00FF0D53ECF896FB8A34F(L_7, L_8, /*hidden argument*/NULL);
NullCheck(L_5);
String_t* L_10 = NumberFormatter_NumberToString_m831CA24EE69F2EEA3AD4D4FD4AA9353B40FF2FB3(L_5, L_6, L_9, /*hidden argument*/NULL);
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_11 = V_0;
NullCheck(L_11);
NumberFormatter_Release_mDCB5A3DC8C2A7E6FFF66C72576E7D29AB4E95D83(L_11, /*hidden argument*/NULL);
return L_10;
}
}
// System.String System.NumberFormatter::IntegerToString(System.String,System.IFormatProvider)
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatter_IntegerToString_m167EB2E9184CBA8A18A5A7AE72CD61602227AA50 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, String_t* ___format0, RuntimeObject* ___fp1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_IntegerToString_m167EB2E9184CBA8A18A5A7AE72CD61602227AA50_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * V_0 = NULL;
Il2CppChar V_1 = 0x0;
{
RuntimeObject* L_0 = ___fp1;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_1 = NumberFormatter_GetNumberFormatInstance_m6E17C915C981DF8649E00FF0D53ECF896FB8A34F(__this, L_0, /*hidden argument*/NULL);
V_0 = L_1;
Il2CppChar L_2 = __this->get__specifier_13();
V_1 = L_2;
Il2CppChar L_3 = V_1;
if ((!(((uint32_t)L_3) <= ((uint32_t)((int32_t)78)))))
{
goto IL_003b;
}
}
{
Il2CppChar L_4 = V_1;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)((int32_t)67))))
{
case 0:
{
goto IL_004a;
}
case 1:
{
goto IL_0058;
}
case 2:
{
goto IL_0066;
}
case 3:
{
goto IL_0074;
}
case 4:
{
goto IL_0082;
}
}
}
{
Il2CppChar L_5 = V_1;
if ((((int32_t)L_5) == ((int32_t)((int32_t)78))))
{
goto IL_00a2;
}
}
{
goto IL_00cb;
}
IL_003b:
{
Il2CppChar L_6 = V_1;
if ((((int32_t)L_6) == ((int32_t)((int32_t)80))))
{
goto IL_00b0;
}
}
{
Il2CppChar L_7 = V_1;
if ((((int32_t)L_7) == ((int32_t)((int32_t)88))))
{
goto IL_00be;
}
}
{
goto IL_00cb;
}
IL_004a:
{
int32_t L_8 = __this->get__precision_14();
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_9 = V_0;
String_t* L_10 = NumberFormatter_FormatCurrency_mC64056524876376E9088DFF17B4811760CD5C34E(__this, L_8, L_9, /*hidden argument*/NULL);
return L_10;
}
IL_0058:
{
int32_t L_11 = __this->get__precision_14();
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_12 = V_0;
String_t* L_13 = NumberFormatter_FormatDecimal_mE1966648115F3FB18A1C369BAB5EA78E2CED2168(__this, L_11, L_12, /*hidden argument*/NULL);
return L_13;
}
IL_0066:
{
int32_t L_14 = __this->get__precision_14();
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_15 = V_0;
String_t* L_16 = NumberFormatter_FormatExponential_mCA7BFD8EAC7AD2C23FF91756A5AE9F143478E226(__this, L_14, L_15, /*hidden argument*/NULL);
return L_16;
}
IL_0074:
{
int32_t L_17 = __this->get__precision_14();
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_18 = V_0;
String_t* L_19 = NumberFormatter_FormatFixedPoint_mAAC0C8EEEFB528FBAB46F9FFBFCA6B2393EA1929(__this, L_17, L_18, /*hidden argument*/NULL);
return L_19;
}
IL_0082:
{
int32_t L_20 = __this->get__precision_14();
if ((((int32_t)L_20) > ((int32_t)0)))
{
goto IL_0094;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_21 = V_0;
String_t* L_22 = NumberFormatter_FormatDecimal_mE1966648115F3FB18A1C369BAB5EA78E2CED2168(__this, (-1), L_21, /*hidden argument*/NULL);
return L_22;
}
IL_0094:
{
int32_t L_23 = __this->get__precision_14();
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_24 = V_0;
String_t* L_25 = NumberFormatter_FormatGeneral_m08239388C5D5B3545ED9B2D297540A39D53E73A7(__this, L_23, L_24, /*hidden argument*/NULL);
return L_25;
}
IL_00a2:
{
int32_t L_26 = __this->get__precision_14();
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_27 = V_0;
String_t* L_28 = NumberFormatter_FormatNumber_m76967F927201EA1997827D0323F12BF9B7083D0F(__this, L_26, L_27, /*hidden argument*/NULL);
return L_28;
}
IL_00b0:
{
int32_t L_29 = __this->get__precision_14();
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_30 = V_0;
String_t* L_31 = NumberFormatter_FormatPercent_mF5BE951C483C1D7FE18851CB684B2EFD0B39A742(__this, L_29, L_30, /*hidden argument*/NULL);
return L_31;
}
IL_00be:
{
int32_t L_32 = __this->get__precision_14();
String_t* L_33 = NumberFormatter_FormatHexadecimal_mCDD30C1720063B4956F47E52F32775D60B5444AC(__this, L_32, /*hidden argument*/NULL);
return L_33;
}
IL_00cb:
{
bool L_34 = __this->get__isCustomFormat_10();
if (!L_34)
{
goto IL_00dc;
}
}
{
String_t* L_35 = ___format0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_36 = V_0;
String_t* L_37 = NumberFormatter_FormatCustom_m5DAC683F225013EEBFC4FDC1682A88C40152A85F(__this, L_35, L_36, /*hidden argument*/NULL);
return L_37;
}
IL_00dc:
{
String_t* L_38 = ___format0;
String_t* L_39 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteral3DEE701517E5DC4B50EFF674034A0B7F7C69237A, L_38, _stringLiteralF4B203C13607C6CE36A755A30A248EF452047C4F, /*hidden argument*/NULL);
FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * L_40 = (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC *)il2cpp_codegen_object_new(FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var);
FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14(L_40, L_39, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_40, NULL, NumberFormatter_IntegerToString_m167EB2E9184CBA8A18A5A7AE72CD61602227AA50_RuntimeMethod_var);
}
}
// System.String System.NumberFormatter::NumberToString(System.String,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatter_NumberToString_m831CA24EE69F2EEA3AD4D4FD4AA9353B40FF2FB3 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, String_t* ___format0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_NumberToString_m831CA24EE69F2EEA3AD4D4FD4AA9353B40FF2FB3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Il2CppChar V_0 = 0x0;
{
Il2CppChar L_0 = __this->get__specifier_13();
V_0 = L_0;
Il2CppChar L_1 = V_0;
if ((!(((uint32_t)L_1) <= ((uint32_t)((int32_t)78)))))
{
goto IL_0030;
}
}
{
Il2CppChar L_2 = V_0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)((int32_t)67))))
{
case 0:
{
goto IL_003c;
}
case 1:
{
goto IL_0090;
}
case 2:
{
goto IL_004a;
}
case 3:
{
goto IL_0058;
}
case 4:
{
goto IL_0066;
}
}
}
{
Il2CppChar L_3 = V_0;
if ((((int32_t)L_3) == ((int32_t)((int32_t)78))))
{
goto IL_0074;
}
}
{
goto IL_0090;
}
IL_0030:
{
Il2CppChar L_4 = V_0;
if ((((int32_t)L_4) == ((int32_t)((int32_t)80))))
{
goto IL_0082;
}
}
{
Il2CppChar L_5 = V_0;
if ((((int32_t)L_5) == ((int32_t)((int32_t)88))))
{
goto IL_0090;
}
}
{
goto IL_0090;
}
IL_003c:
{
int32_t L_6 = __this->get__precision_14();
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_7 = ___nfi1;
String_t* L_8 = NumberFormatter_FormatCurrency_mC64056524876376E9088DFF17B4811760CD5C34E(__this, L_6, L_7, /*hidden argument*/NULL);
return L_8;
}
IL_004a:
{
int32_t L_9 = __this->get__precision_14();
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_10 = ___nfi1;
String_t* L_11 = NumberFormatter_FormatExponential_mCA7BFD8EAC7AD2C23FF91756A5AE9F143478E226(__this, L_9, L_10, /*hidden argument*/NULL);
return L_11;
}
IL_0058:
{
int32_t L_12 = __this->get__precision_14();
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_13 = ___nfi1;
String_t* L_14 = NumberFormatter_FormatFixedPoint_mAAC0C8EEEFB528FBAB46F9FFBFCA6B2393EA1929(__this, L_12, L_13, /*hidden argument*/NULL);
return L_14;
}
IL_0066:
{
int32_t L_15 = __this->get__precision_14();
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_16 = ___nfi1;
String_t* L_17 = NumberFormatter_FormatGeneral_m08239388C5D5B3545ED9B2D297540A39D53E73A7(__this, L_15, L_16, /*hidden argument*/NULL);
return L_17;
}
IL_0074:
{
int32_t L_18 = __this->get__precision_14();
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_19 = ___nfi1;
String_t* L_20 = NumberFormatter_FormatNumber_m76967F927201EA1997827D0323F12BF9B7083D0F(__this, L_18, L_19, /*hidden argument*/NULL);
return L_20;
}
IL_0082:
{
int32_t L_21 = __this->get__precision_14();
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_22 = ___nfi1;
String_t* L_23 = NumberFormatter_FormatPercent_mF5BE951C483C1D7FE18851CB684B2EFD0B39A742(__this, L_21, L_22, /*hidden argument*/NULL);
return L_23;
}
IL_0090:
{
bool L_24 = __this->get__isCustomFormat_10();
if (!L_24)
{
goto IL_00a1;
}
}
{
String_t* L_25 = ___format0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_26 = ___nfi1;
String_t* L_27 = NumberFormatter_FormatCustom_m5DAC683F225013EEBFC4FDC1682A88C40152A85F(__this, L_25, L_26, /*hidden argument*/NULL);
return L_27;
}
IL_00a1:
{
String_t* L_28 = ___format0;
String_t* L_29 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteral3DEE701517E5DC4B50EFF674034A0B7F7C69237A, L_28, _stringLiteralF4B203C13607C6CE36A755A30A248EF452047C4F, /*hidden argument*/NULL);
FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * L_30 = (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC *)il2cpp_codegen_object_new(FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var);
FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14(L_30, L_29, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_30, NULL, NumberFormatter_NumberToString_m831CA24EE69F2EEA3AD4D4FD4AA9353B40FF2FB3_RuntimeMethod_var);
}
}
// System.String System.NumberFormatter::FormatCurrency(System.Int32,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatCurrency_mC64056524876376E9088DFF17B4811760CD5C34E (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___precision0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t G_B3_0 = 0;
{
int32_t L_0 = ___precision0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_000c;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_1 = ___nfi1;
NullCheck(L_1);
int32_t L_2 = NumberFormatInfo_get_CurrencyDecimalDigits_mB08BE40DFC57B589B74916CF3D63CEBBC7432C25(L_1, /*hidden argument*/NULL);
G_B3_0 = L_2;
goto IL_000d;
}
IL_000c:
{
int32_t L_3 = ___precision0;
G_B3_0 = L_3;
}
IL_000d:
{
___precision0 = G_B3_0;
int32_t L_4 = ___precision0;
NumberFormatter_RoundDecimal_mE3446A2208E792FF9BB01F93871A8C1BCFF10F4E(__this, L_4, /*hidden argument*/NULL);
int32_t L_5 = NumberFormatter_get_IntegerDigits_m91E2E8AF66FD565349B6447D6F9AB3B9BD61F741(__this, /*hidden argument*/NULL);
int32_t L_6 = ___precision0;
NumberFormatter_ResetCharBuf_m6F248689219DB23CBC466C266D313DBE0E64AAA1(__this, ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_5, (int32_t)2)), (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_6, (int32_t)2)))), (int32_t)((int32_t)16))), /*hidden argument*/NULL);
bool L_7 = __this->get__positive_12();
if (!L_7)
{
goto IL_0071;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_8 = ___nfi1;
NullCheck(L_8);
int32_t L_9 = NumberFormatInfo_get_CurrencyPositivePattern_mA9F592EAAA7F5BD929C60D65936892A45A101D7B(L_8, /*hidden argument*/NULL);
V_0 = L_9;
int32_t L_10 = V_0;
if (!L_10)
{
goto IL_0047;
}
}
{
int32_t L_11 = V_0;
if ((((int32_t)L_11) == ((int32_t)2)))
{
goto IL_0058;
}
}
{
goto IL_01d6;
}
IL_0047:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_12 = ___nfi1;
NullCheck(L_12);
String_t* L_13 = NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16(L_12, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_13, /*hidden argument*/NULL);
goto IL_01d6;
}
IL_0058:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_14 = ___nfi1;
NullCheck(L_14);
String_t* L_15 = NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16(L_14, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_15, /*hidden argument*/NULL);
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)32), /*hidden argument*/NULL);
goto IL_01d6;
}
IL_0071:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_16 = ___nfi1;
NullCheck(L_16);
int32_t L_17 = NumberFormatInfo_get_CurrencyNegativePattern_mFC6B6D99EB695BFB5ED94F3F7F4DD40F5D02A58A(L_16, /*hidden argument*/NULL);
V_0 = L_17;
int32_t L_18 = V_0;
switch (L_18)
{
case 0:
{
goto IL_00c3;
}
case 1:
{
goto IL_00dc;
}
case 2:
{
goto IL_00f9;
}
case 3:
{
goto IL_0116;
}
case 4:
{
goto IL_0127;
}
case 5:
{
goto IL_0134;
}
case 6:
{
goto IL_01d6;
}
case 7:
{
goto IL_01d6;
}
case 8:
{
goto IL_0145;
}
case 9:
{
goto IL_0156;
}
case 10:
{
goto IL_01d6;
}
case 11:
{
goto IL_0178;
}
case 12:
{
goto IL_018e;
}
case 13:
{
goto IL_01d6;
}
case 14:
{
goto IL_01b0;
}
case 15:
{
goto IL_01ce;
}
}
}
{
goto IL_01d6;
}
IL_00c3:
{
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)40), /*hidden argument*/NULL);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_19 = ___nfi1;
NullCheck(L_19);
String_t* L_20 = NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16(L_19, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_20, /*hidden argument*/NULL);
goto IL_01d6;
}
IL_00dc:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_21 = ___nfi1;
NullCheck(L_21);
String_t* L_22 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA(L_21, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_22, /*hidden argument*/NULL);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_23 = ___nfi1;
NullCheck(L_23);
String_t* L_24 = NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16(L_23, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_24, /*hidden argument*/NULL);
goto IL_01d6;
}
IL_00f9:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_25 = ___nfi1;
NullCheck(L_25);
String_t* L_26 = NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16(L_25, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_26, /*hidden argument*/NULL);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_27 = ___nfi1;
NullCheck(L_27);
String_t* L_28 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA(L_27, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_28, /*hidden argument*/NULL);
goto IL_01d6;
}
IL_0116:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_29 = ___nfi1;
NullCheck(L_29);
String_t* L_30 = NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16(L_29, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_30, /*hidden argument*/NULL);
goto IL_01d6;
}
IL_0127:
{
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)40), /*hidden argument*/NULL);
goto IL_01d6;
}
IL_0134:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_31 = ___nfi1;
NullCheck(L_31);
String_t* L_32 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA(L_31, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_32, /*hidden argument*/NULL);
goto IL_01d6;
}
IL_0145:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_33 = ___nfi1;
NullCheck(L_33);
String_t* L_34 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA(L_33, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_34, /*hidden argument*/NULL);
goto IL_01d6;
}
IL_0156:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_35 = ___nfi1;
NullCheck(L_35);
String_t* L_36 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA(L_35, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_36, /*hidden argument*/NULL);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_37 = ___nfi1;
NullCheck(L_37);
String_t* L_38 = NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16(L_37, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_38, /*hidden argument*/NULL);
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)32), /*hidden argument*/NULL);
goto IL_01d6;
}
IL_0178:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_39 = ___nfi1;
NullCheck(L_39);
String_t* L_40 = NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16(L_39, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_40, /*hidden argument*/NULL);
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)32), /*hidden argument*/NULL);
goto IL_01d6;
}
IL_018e:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_41 = ___nfi1;
NullCheck(L_41);
String_t* L_42 = NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16(L_41, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_42, /*hidden argument*/NULL);
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)32), /*hidden argument*/NULL);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_43 = ___nfi1;
NullCheck(L_43);
String_t* L_44 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA(L_43, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_44, /*hidden argument*/NULL);
goto IL_01d6;
}
IL_01b0:
{
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)40), /*hidden argument*/NULL);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_45 = ___nfi1;
NullCheck(L_45);
String_t* L_46 = NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16(L_45, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_46, /*hidden argument*/NULL);
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)32), /*hidden argument*/NULL);
goto IL_01d6;
}
IL_01ce:
{
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)40), /*hidden argument*/NULL);
}
IL_01d6:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_47 = ___nfi1;
NullCheck(L_47);
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_48 = NumberFormatInfo_get_CurrencyGroupSizes_m422B13575ABEF5EC163FE50A6CF26AADFCAB9324(L_47, /*hidden argument*/NULL);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_49 = ___nfi1;
NullCheck(L_49);
String_t* L_50 = NumberFormatInfo_get_CurrencyGroupSeparator_m5AC1CA2A478284D1D059459951C8208168A20130(L_49, /*hidden argument*/NULL);
NumberFormatter_AppendIntegerStringWithGroupSeparator_m761D1912DA7C38E84F3C2AC297FA7C9ABD09D403(__this, L_48, L_50, /*hidden argument*/NULL);
int32_t L_51 = ___precision0;
if ((((int32_t)L_51) <= ((int32_t)0)))
{
goto IL_01ff;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_52 = ___nfi1;
NullCheck(L_52);
String_t* L_53 = NumberFormatInfo_get_CurrencyDecimalSeparator_mB1EE2B6EA5D9F58355F26F071B9A08435378214D(L_52, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_53, /*hidden argument*/NULL);
int32_t L_54 = ___precision0;
NumberFormatter_AppendDecimalString_mE9DC096988E86A4835B3456196883DFC51A57623(__this, L_54, /*hidden argument*/NULL);
}
IL_01ff:
{
bool L_55 = __this->get__positive_12();
if (!L_55)
{
goto IL_0245;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_56 = ___nfi1;
NullCheck(L_56);
int32_t L_57 = NumberFormatInfo_get_CurrencyPositivePattern_mA9F592EAAA7F5BD929C60D65936892A45A101D7B(L_56, /*hidden argument*/NULL);
V_0 = L_57;
int32_t L_58 = V_0;
if ((((int32_t)L_58) == ((int32_t)1)))
{
goto IL_021b;
}
}
{
int32_t L_59 = V_0;
if ((((int32_t)L_59) == ((int32_t)3)))
{
goto IL_022c;
}
}
{
goto IL_03a7;
}
IL_021b:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_60 = ___nfi1;
NullCheck(L_60);
String_t* L_61 = NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16(L_60, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_61, /*hidden argument*/NULL);
goto IL_03a7;
}
IL_022c:
{
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)32), /*hidden argument*/NULL);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_62 = ___nfi1;
NullCheck(L_62);
String_t* L_63 = NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16(L_62, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_63, /*hidden argument*/NULL);
goto IL_03a7;
}
IL_0245:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_64 = ___nfi1;
NullCheck(L_64);
int32_t L_65 = NumberFormatInfo_get_CurrencyNegativePattern_mFC6B6D99EB695BFB5ED94F3F7F4DD40F5D02A58A(L_64, /*hidden argument*/NULL);
V_0 = L_65;
int32_t L_66 = V_0;
switch (L_66)
{
case 0:
{
goto IL_0297;
}
case 1:
{
goto IL_03a7;
}
case 2:
{
goto IL_03a7;
}
case 3:
{
goto IL_02a4;
}
case 4:
{
goto IL_02b5;
}
case 5:
{
goto IL_02ce;
}
case 6:
{
goto IL_02df;
}
case 7:
{
goto IL_02fc;
}
case 8:
{
goto IL_0319;
}
case 9:
{
goto IL_03a7;
}
case 10:
{
goto IL_032f;
}
case 11:
{
goto IL_0351;
}
case 12:
{
goto IL_03a7;
}
case 13:
{
goto IL_035f;
}
case 14:
{
goto IL_0381;
}
case 15:
{
goto IL_038b;
}
}
}
{
goto IL_03a7;
}
IL_0297:
{
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)41), /*hidden argument*/NULL);
goto IL_03a7;
}
IL_02a4:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_67 = ___nfi1;
NullCheck(L_67);
String_t* L_68 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA(L_67, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_68, /*hidden argument*/NULL);
goto IL_03a7;
}
IL_02b5:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_69 = ___nfi1;
NullCheck(L_69);
String_t* L_70 = NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16(L_69, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_70, /*hidden argument*/NULL);
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)41), /*hidden argument*/NULL);
goto IL_03a7;
}
IL_02ce:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_71 = ___nfi1;
NullCheck(L_71);
String_t* L_72 = NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16(L_71, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_72, /*hidden argument*/NULL);
goto IL_03a7;
}
IL_02df:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_73 = ___nfi1;
NullCheck(L_73);
String_t* L_74 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA(L_73, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_74, /*hidden argument*/NULL);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_75 = ___nfi1;
NullCheck(L_75);
String_t* L_76 = NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16(L_75, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_76, /*hidden argument*/NULL);
goto IL_03a7;
}
IL_02fc:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_77 = ___nfi1;
NullCheck(L_77);
String_t* L_78 = NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16(L_77, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_78, /*hidden argument*/NULL);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_79 = ___nfi1;
NullCheck(L_79);
String_t* L_80 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA(L_79, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_80, /*hidden argument*/NULL);
goto IL_03a7;
}
IL_0319:
{
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)32), /*hidden argument*/NULL);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_81 = ___nfi1;
NullCheck(L_81);
String_t* L_82 = NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16(L_81, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_82, /*hidden argument*/NULL);
goto IL_03a7;
}
IL_032f:
{
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)32), /*hidden argument*/NULL);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_83 = ___nfi1;
NullCheck(L_83);
String_t* L_84 = NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16(L_83, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_84, /*hidden argument*/NULL);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_85 = ___nfi1;
NullCheck(L_85);
String_t* L_86 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA(L_85, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_86, /*hidden argument*/NULL);
goto IL_03a7;
}
IL_0351:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_87 = ___nfi1;
NullCheck(L_87);
String_t* L_88 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA(L_87, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_88, /*hidden argument*/NULL);
goto IL_03a7;
}
IL_035f:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_89 = ___nfi1;
NullCheck(L_89);
String_t* L_90 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA(L_89, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_90, /*hidden argument*/NULL);
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)32), /*hidden argument*/NULL);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_91 = ___nfi1;
NullCheck(L_91);
String_t* L_92 = NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16(L_91, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_92, /*hidden argument*/NULL);
goto IL_03a7;
}
IL_0381:
{
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)41), /*hidden argument*/NULL);
goto IL_03a7;
}
IL_038b:
{
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)32), /*hidden argument*/NULL);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_93 = ___nfi1;
NullCheck(L_93);
String_t* L_94 = NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16(L_93, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_94, /*hidden argument*/NULL);
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)41), /*hidden argument*/NULL);
}
IL_03a7:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_95 = __this->get__cbuf_7();
int32_t L_96 = __this->get__ind_23();
String_t* L_97 = String_CreateString_mC7FB167C0D5B97F7EF502AF54399C61DD5B87509(NULL, L_95, 0, L_96, /*hidden argument*/NULL);
return L_97;
}
}
// System.String System.NumberFormatter::FormatDecimal(System.Int32,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatDecimal_mE1966648115F3FB18A1C369BAB5EA78E2CED2168 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___precision0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_FormatDecimal_mE1966648115F3FB18A1C369BAB5EA78E2CED2168_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___precision0;
int32_t L_1 = __this->get__digitsLen_16();
if ((((int32_t)L_0) >= ((int32_t)L_1)))
{
goto IL_0011;
}
}
{
int32_t L_2 = __this->get__digitsLen_16();
___precision0 = L_2;
}
IL_0011:
{
int32_t L_3 = ___precision0;
if (L_3)
{
goto IL_001a;
}
}
{
return _stringLiteralB6589FC6AB0DC82CF12099D1C2D40AB994E8410C;
}
IL_001a:
{
int32_t L_4 = ___precision0;
NumberFormatter_ResetCharBuf_m6F248689219DB23CBC466C266D313DBE0E64AAA1(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)), /*hidden argument*/NULL);
bool L_5 = __this->get__positive_12();
if (L_5)
{
goto IL_0037;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_6 = ___nfi1;
NullCheck(L_6);
String_t* L_7 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA(L_6, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_7, /*hidden argument*/NULL);
}
IL_0037:
{
int32_t L_8 = ___precision0;
NumberFormatter_AppendDigits_m59DE31608D1C9D737C456B0FC4ADF8BF5D0B17E2(__this, 0, L_8, /*hidden argument*/NULL);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_9 = __this->get__cbuf_7();
int32_t L_10 = __this->get__ind_23();
String_t* L_11 = String_CreateString_mC7FB167C0D5B97F7EF502AF54399C61DD5B87509(NULL, L_9, 0, L_10, /*hidden argument*/NULL);
return L_11;
}
}
// System.String System.NumberFormatter::FormatHexadecimal(System.Int32)
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatHexadecimal_mCDD30C1720063B4956F47E52F32775D60B5444AC (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___precision0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_FormatHexadecimal_mCDD30C1720063B4956F47E52F32775D60B5444AC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Il2CppChar* V_1 = NULL;
uint64_t V_2 = 0;
Il2CppChar* G_B3_0 = NULL;
{
int32_t L_0 = ___precision0;
int32_t L_1 = __this->get__decPointPos_18();
IL2CPP_RUNTIME_CLASS_INIT(Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var);
int32_t L_2 = Math_Max_mA99E48BB021F2E4B62D4EA9F52EA6928EED618A2(L_0, L_1, /*hidden argument*/NULL);
V_0 = L_2;
bool L_3 = __this->get__specifierIsUpper_11();
if (L_3)
{
goto IL_001c;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
Il2CppChar* L_4 = ((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_StaticFields*)il2cpp_codegen_static_fields_for(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var))->get_DigitLowerTable_2();
G_B3_0 = L_4;
goto IL_0021;
}
IL_001c:
{
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
Il2CppChar* L_5 = ((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_StaticFields*)il2cpp_codegen_static_fields_for(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var))->get_DigitUpperTable_3();
G_B3_0 = L_5;
}
IL_0021:
{
V_1 = (Il2CppChar*)G_B3_0;
int32_t L_6 = V_0;
NumberFormatter_ResetCharBuf_m6F248689219DB23CBC466C266D313DBE0E64AAA1(__this, L_6, /*hidden argument*/NULL);
int32_t L_7 = V_0;
__this->set__ind_23(L_7);
uint32_t L_8 = __this->get__val1_19();
uint32_t L_9 = __this->get__val2_20();
V_2 = ((int64_t)((int64_t)(((int64_t)((uint64_t)L_8)))|(int64_t)((int64_t)((int64_t)(((int64_t)((uint64_t)L_9)))<<(int32_t)((int32_t)32)))));
goto IL_0061;
}
IL_0045:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_10 = __this->get__cbuf_7();
int32_t L_11 = V_0;
int32_t L_12 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)1));
V_0 = L_12;
Il2CppChar* L_13 = V_1;
uint64_t L_14 = V_2;
int32_t L_15 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_13, (intptr_t)(((uintptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)((int64_t)((int64_t)L_14&(int64_t)(((int64_t)((int64_t)((int32_t)15)))))), (int64_t)(((int64_t)((int64_t)2))))))))));
NullCheck(L_10);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_12), (Il2CppChar)L_15);
uint64_t L_16 = V_2;
V_2 = ((int64_t)((uint64_t)L_16>>4));
}
IL_0061:
{
int32_t L_17 = V_0;
if ((((int32_t)L_17) > ((int32_t)0)))
{
goto IL_0045;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_18 = __this->get__cbuf_7();
int32_t L_19 = __this->get__ind_23();
String_t* L_20 = String_CreateString_mC7FB167C0D5B97F7EF502AF54399C61DD5B87509(NULL, L_18, 0, L_19, /*hidden argument*/NULL);
return L_20;
}
}
// System.String System.NumberFormatter::FormatFixedPoint(System.Int32,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatFixedPoint_mAAC0C8EEEFB528FBAB46F9FFBFCA6B2393EA1929 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___precision0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___precision0;
if ((!(((uint32_t)L_0) == ((uint32_t)(-1)))))
{
goto IL_000c;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_1 = ___nfi1;
NullCheck(L_1);
int32_t L_2 = NumberFormatInfo_get_NumberDecimalDigits_m52C856E2079DAA1657069DB00506DCF77EA62DC2(L_1, /*hidden argument*/NULL);
___precision0 = L_2;
}
IL_000c:
{
int32_t L_3 = ___precision0;
NumberFormatter_RoundDecimal_mE3446A2208E792FF9BB01F93871A8C1BCFF10F4E(__this, L_3, /*hidden argument*/NULL);
int32_t L_4 = NumberFormatter_get_IntegerDigits_m91E2E8AF66FD565349B6447D6F9AB3B9BD61F741(__this, /*hidden argument*/NULL);
int32_t L_5 = ___precision0;
NumberFormatter_ResetCharBuf_m6F248689219DB23CBC466C266D313DBE0E64AAA1(__this, ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)L_5)), (int32_t)2)), /*hidden argument*/NULL);
bool L_6 = __this->get__positive_12();
if (L_6)
{
goto IL_0038;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_7 = ___nfi1;
NullCheck(L_7);
String_t* L_8 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA(L_7, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_8, /*hidden argument*/NULL);
}
IL_0038:
{
int32_t L_9 = NumberFormatter_get_IntegerDigits_m91E2E8AF66FD565349B6447D6F9AB3B9BD61F741(__this, /*hidden argument*/NULL);
NumberFormatter_AppendIntegerString_mD6FB81A7D8109CDAED213804F4D91E2FA476BD88(__this, L_9, /*hidden argument*/NULL);
int32_t L_10 = ___precision0;
if ((((int32_t)L_10) <= ((int32_t)0)))
{
goto IL_005b;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_11 = ___nfi1;
NullCheck(L_11);
String_t* L_12 = NumberFormatInfo_get_NumberDecimalSeparator_m1A9F946D267B5C2FC5982D34AF97D9AEB9C24A6E(L_11, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_12, /*hidden argument*/NULL);
int32_t L_13 = ___precision0;
NumberFormatter_AppendDecimalString_mE9DC096988E86A4835B3456196883DFC51A57623(__this, L_13, /*hidden argument*/NULL);
}
IL_005b:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_14 = __this->get__cbuf_7();
int32_t L_15 = __this->get__ind_23();
String_t* L_16 = String_CreateString_mC7FB167C0D5B97F7EF502AF54399C61DD5B87509(NULL, L_14, 0, L_15, /*hidden argument*/NULL);
return L_16;
}
}
// System.String System.NumberFormatter::FormatRoundtrip(System.Double,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatRoundtrip_m8339767BDB6A61BABFE5AB826D923D6151DDD816 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, double ___origval0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_FormatRoundtrip_m8339767BDB6A61BABFE5AB826D923D6151DDD816_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * V_0 = NULL;
String_t* V_1 = NULL;
{
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_0 = NumberFormatter_GetClone_m6D13FD559EC8229D8C0F802988E32965EF53119A(__this, /*hidden argument*/NULL);
V_0 = L_0;
double L_1 = ___origval0;
if ((!(((double)L_1) >= ((double)(-1.79769313486231E+308)))))
{
goto IL_0039;
}
}
{
double L_2 = ___origval0;
if ((!(((double)L_2) <= ((double)(1.79769313486231E+308)))))
{
goto IL_0039;
}
}
{
int32_t L_3 = __this->get__defPrecision_15();
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_4 = ___nfi1;
String_t* L_5 = NumberFormatter_FormatGeneral_m08239388C5D5B3545ED9B2D297540A39D53E73A7(__this, L_3, L_4, /*hidden argument*/NULL);
V_1 = L_5;
double L_6 = ___origval0;
String_t* L_7 = V_1;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_8 = ___nfi1;
IL2CPP_RUNTIME_CLASS_INIT(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var);
double L_9 = Double_Parse_m598B75F6A7C50F719F439CF354BDDD22B9AF8C67(L_7, L_8, /*hidden argument*/NULL);
if ((!(((double)L_6) == ((double)L_9))))
{
goto IL_0039;
}
}
{
String_t* L_10 = V_1;
return L_10;
}
IL_0039:
{
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_11 = V_0;
int32_t L_12 = __this->get__defPrecision_15();
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_13 = ___nfi1;
NullCheck(L_11);
String_t* L_14 = NumberFormatter_FormatGeneral_m08239388C5D5B3545ED9B2D297540A39D53E73A7(L_11, ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)2)), L_13, /*hidden argument*/NULL);
return L_14;
}
}
// System.String System.NumberFormatter::FormatRoundtrip(System.Single,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatRoundtrip_mBE6EBC5BD83D8DB4BAE38032B659B9E3BB291439 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, float ___origval0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, const RuntimeMethod* method)
{
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * V_0 = NULL;
String_t* V_1 = NULL;
{
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_0 = NumberFormatter_GetClone_m6D13FD559EC8229D8C0F802988E32965EF53119A(__this, /*hidden argument*/NULL);
V_0 = L_0;
int32_t L_1 = __this->get__defPrecision_15();
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = ___nfi1;
String_t* L_3 = NumberFormatter_FormatGeneral_m08239388C5D5B3545ED9B2D297540A39D53E73A7(__this, L_1, L_2, /*hidden argument*/NULL);
V_1 = L_3;
float L_4 = ___origval0;
String_t* L_5 = V_1;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_6 = ___nfi1;
float L_7 = Single_Parse_m341EA42F7782B136FA7335771DA3C6C96AF6BD86(L_5, L_6, /*hidden argument*/NULL);
if ((!(((float)L_4) == ((float)L_7))))
{
goto IL_0021;
}
}
{
String_t* L_8 = V_1;
return L_8;
}
IL_0021:
{
NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * L_9 = V_0;
int32_t L_10 = __this->get__defPrecision_15();
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_11 = ___nfi1;
NullCheck(L_9);
String_t* L_12 = NumberFormatter_FormatGeneral_m08239388C5D5B3545ED9B2D297540A39D53E73A7(L_9, ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)2)), L_11, /*hidden argument*/NULL);
return L_12;
}
}
// System.String System.NumberFormatter::FormatGeneral(System.Int32,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatGeneral_m08239388C5D5B3545ED9B2D297540A39D53E73A7 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___precision0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, const RuntimeMethod* method)
{
bool V_0 = false;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
int32_t G_B8_0 = 0;
{
int32_t L_0 = ___precision0;
if ((!(((uint32_t)L_0) == ((uint32_t)(-1)))))
{
goto IL_0015;
}
}
{
bool L_1 = NumberFormatter_get_IsFloatingSource_m6CFAC659F6A85391D719FE8364828EDA57232B1A(__this, /*hidden argument*/NULL);
V_0 = L_1;
int32_t L_2 = __this->get__defPrecision_15();
___precision0 = L_2;
goto IL_0029;
}
IL_0015:
{
V_0 = (bool)1;
int32_t L_3 = ___precision0;
if (L_3)
{
goto IL_0022;
}
}
{
int32_t L_4 = __this->get__defPrecision_15();
___precision0 = L_4;
}
IL_0022:
{
int32_t L_5 = ___precision0;
NumberFormatter_RoundPos_mD1767AEAEE9801C748F3C7B8BE7A29598A843961(__this, L_5, /*hidden argument*/NULL);
}
IL_0029:
{
int32_t L_6 = __this->get__decPointPos_18();
V_1 = L_6;
int32_t L_7 = __this->get__digitsLen_16();
V_2 = L_7;
int32_t L_8 = V_2;
int32_t L_9 = V_1;
V_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)L_9));
int32_t L_10 = V_1;
int32_t L_11 = ___precision0;
if ((((int32_t)L_10) > ((int32_t)L_11)))
{
goto IL_0049;
}
}
{
int32_t L_12 = V_1;
G_B8_0 = ((((int32_t)((((int32_t)L_12) > ((int32_t)((int32_t)-4)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_004a;
}
IL_0049:
{
G_B8_0 = 1;
}
IL_004a:
{
bool L_13 = V_0;
if (!((int32_t)((int32_t)G_B8_0&(int32_t)L_13)))
{
goto IL_005a;
}
}
{
int32_t L_14 = V_2;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_15 = ___nfi1;
String_t* L_16 = NumberFormatter_FormatExponential_m860C5350D97E7958CA0EC214263E0BE6B34F326F(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)1)), L_15, 2, /*hidden argument*/NULL);
return L_16;
}
IL_005a:
{
int32_t L_17 = V_3;
if ((((int32_t)L_17) >= ((int32_t)0)))
{
goto IL_0060;
}
}
{
V_3 = 0;
}
IL_0060:
{
int32_t L_18 = V_1;
if ((((int32_t)L_18) >= ((int32_t)0)))
{
goto IL_0066;
}
}
{
V_1 = 0;
}
IL_0066:
{
int32_t L_19 = V_3;
int32_t L_20 = V_1;
NumberFormatter_ResetCharBuf_m6F248689219DB23CBC466C266D313DBE0E64AAA1(__this, ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)L_20)), (int32_t)3)), /*hidden argument*/NULL);
bool L_21 = __this->get__positive_12();
if (L_21)
{
goto IL_0085;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_22 = ___nfi1;
NullCheck(L_22);
String_t* L_23 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA(L_22, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_23, /*hidden argument*/NULL);
}
IL_0085:
{
int32_t L_24 = V_1;
if (L_24)
{
goto IL_0092;
}
}
{
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)48), /*hidden argument*/NULL);
goto IL_009c;
}
IL_0092:
{
int32_t L_25 = V_2;
int32_t L_26 = V_1;
int32_t L_27 = V_2;
NumberFormatter_AppendDigits_m59DE31608D1C9D737C456B0FC4ADF8BF5D0B17E2(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)L_26)), L_27, /*hidden argument*/NULL);
}
IL_009c:
{
int32_t L_28 = V_3;
if ((((int32_t)L_28) <= ((int32_t)0)))
{
goto IL_00b4;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_29 = ___nfi1;
NullCheck(L_29);
String_t* L_30 = NumberFormatInfo_get_NumberDecimalSeparator_m1A9F946D267B5C2FC5982D34AF97D9AEB9C24A6E(L_29, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_30, /*hidden argument*/NULL);
int32_t L_31 = V_3;
NumberFormatter_AppendDigits_m59DE31608D1C9D737C456B0FC4ADF8BF5D0B17E2(__this, 0, L_31, /*hidden argument*/NULL);
}
IL_00b4:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_32 = __this->get__cbuf_7();
int32_t L_33 = __this->get__ind_23();
String_t* L_34 = String_CreateString_mC7FB167C0D5B97F7EF502AF54399C61DD5B87509(NULL, L_32, 0, L_33, /*hidden argument*/NULL);
return L_34;
}
}
// System.String System.NumberFormatter::FormatNumber(System.Int32,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatNumber_m76967F927201EA1997827D0323F12BF9B7083D0F (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___precision0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t G_B3_0 = 0;
{
int32_t L_0 = ___precision0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_000c;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_1 = ___nfi1;
NullCheck(L_1);
int32_t L_2 = NumberFormatInfo_get_NumberDecimalDigits_m52C856E2079DAA1657069DB00506DCF77EA62DC2(L_1, /*hidden argument*/NULL);
G_B3_0 = L_2;
goto IL_000d;
}
IL_000c:
{
int32_t L_3 = ___precision0;
G_B3_0 = L_3;
}
IL_000d:
{
___precision0 = G_B3_0;
int32_t L_4 = NumberFormatter_get_IntegerDigits_m91E2E8AF66FD565349B6447D6F9AB3B9BD61F741(__this, /*hidden argument*/NULL);
int32_t L_5 = ___precision0;
NumberFormatter_ResetCharBuf_m6F248689219DB23CBC466C266D313DBE0E64AAA1(__this, ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_4, (int32_t)3)), (int32_t)L_5)), /*hidden argument*/NULL);
int32_t L_6 = ___precision0;
NumberFormatter_RoundDecimal_mE3446A2208E792FF9BB01F93871A8C1BCFF10F4E(__this, L_6, /*hidden argument*/NULL);
bool L_7 = __this->get__positive_12();
if (L_7)
{
goto IL_0076;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_8 = ___nfi1;
NullCheck(L_8);
int32_t L_9 = NumberFormatInfo_get_NumberNegativePattern_mF41D38C78ED74CB2F365ECE09BFB386434F2B017(L_8, /*hidden argument*/NULL);
V_0 = L_9;
int32_t L_10 = V_0;
switch (L_10)
{
case 0:
{
goto IL_004a;
}
case 1:
{
goto IL_0054;
}
case 2:
{
goto IL_0062;
}
}
}
{
goto IL_0076;
}
IL_004a:
{
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)40), /*hidden argument*/NULL);
goto IL_0076;
}
IL_0054:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_11 = ___nfi1;
NullCheck(L_11);
String_t* L_12 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA(L_11, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_12, /*hidden argument*/NULL);
goto IL_0076;
}
IL_0062:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_13 = ___nfi1;
NullCheck(L_13);
String_t* L_14 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA(L_13, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_14, /*hidden argument*/NULL);
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)32), /*hidden argument*/NULL);
}
IL_0076:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_15 = ___nfi1;
NullCheck(L_15);
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_16 = NumberFormatInfo_get_NumberGroupSizes_m565821165B43AA202D8F644E4403A3181188965A(L_15, /*hidden argument*/NULL);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_17 = ___nfi1;
NullCheck(L_17);
String_t* L_18 = NumberFormatInfo_get_NumberGroupSeparator_mD995708E10C4CC55A19E7126E7A6C256A2DD1A35(L_17, /*hidden argument*/NULL);
NumberFormatter_AppendIntegerStringWithGroupSeparator_m761D1912DA7C38E84F3C2AC297FA7C9ABD09D403(__this, L_16, L_18, /*hidden argument*/NULL);
int32_t L_19 = ___precision0;
if ((((int32_t)L_19) <= ((int32_t)0)))
{
goto IL_009f;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_20 = ___nfi1;
NullCheck(L_20);
String_t* L_21 = NumberFormatInfo_get_NumberDecimalSeparator_m1A9F946D267B5C2FC5982D34AF97D9AEB9C24A6E(L_20, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_21, /*hidden argument*/NULL);
int32_t L_22 = ___precision0;
NumberFormatter_AppendDecimalString_mE9DC096988E86A4835B3456196883DFC51A57623(__this, L_22, /*hidden argument*/NULL);
}
IL_009f:
{
bool L_23 = __this->get__positive_12();
if (L_23)
{
goto IL_00f6;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_24 = ___nfi1;
NullCheck(L_24);
int32_t L_25 = NumberFormatInfo_get_NumberNegativePattern_mF41D38C78ED74CB2F365ECE09BFB386434F2B017(L_24, /*hidden argument*/NULL);
V_0 = L_25;
int32_t L_26 = V_0;
switch (L_26)
{
case 0:
{
goto IL_00ca;
}
case 1:
{
goto IL_00f6;
}
case 2:
{
goto IL_00f6;
}
case 3:
{
goto IL_00d4;
}
case 4:
{
goto IL_00e2;
}
}
}
{
goto IL_00f6;
}
IL_00ca:
{
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)41), /*hidden argument*/NULL);
goto IL_00f6;
}
IL_00d4:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_27 = ___nfi1;
NullCheck(L_27);
String_t* L_28 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA(L_27, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_28, /*hidden argument*/NULL);
goto IL_00f6;
}
IL_00e2:
{
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)32), /*hidden argument*/NULL);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_29 = ___nfi1;
NullCheck(L_29);
String_t* L_30 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA(L_29, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_30, /*hidden argument*/NULL);
}
IL_00f6:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_31 = __this->get__cbuf_7();
int32_t L_32 = __this->get__ind_23();
String_t* L_33 = String_CreateString_mC7FB167C0D5B97F7EF502AF54399C61DD5B87509(NULL, L_31, 0, L_32, /*hidden argument*/NULL);
return L_33;
}
}
// System.String System.NumberFormatter::FormatPercent(System.Int32,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatPercent_mF5BE951C483C1D7FE18851CB684B2EFD0B39A742 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___precision0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t G_B3_0 = 0;
{
int32_t L_0 = ___precision0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_000c;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_1 = ___nfi1;
NullCheck(L_1);
int32_t L_2 = NumberFormatInfo_get_PercentDecimalDigits_mC976C226BAA510C75E13D526FF7407B2A2E2A164(L_1, /*hidden argument*/NULL);
G_B3_0 = L_2;
goto IL_000d;
}
IL_000c:
{
int32_t L_3 = ___precision0;
G_B3_0 = L_3;
}
IL_000d:
{
___precision0 = G_B3_0;
NumberFormatter_Multiply10_mCDC2D6E96D4920F5E9DED8BA045339DC26292227(__this, 2, /*hidden argument*/NULL);
int32_t L_4 = ___precision0;
NumberFormatter_RoundDecimal_mE3446A2208E792FF9BB01F93871A8C1BCFF10F4E(__this, L_4, /*hidden argument*/NULL);
int32_t L_5 = NumberFormatter_get_IntegerDigits_m91E2E8AF66FD565349B6447D6F9AB3B9BD61F741(__this, /*hidden argument*/NULL);
int32_t L_6 = ___precision0;
NumberFormatter_ResetCharBuf_m6F248689219DB23CBC466C266D313DBE0E64AAA1(__this, ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_5, (int32_t)2)), (int32_t)L_6)), (int32_t)((int32_t)16))), /*hidden argument*/NULL);
bool L_7 = __this->get__positive_12();
if (!L_7)
{
goto IL_0050;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_8 = ___nfi1;
NullCheck(L_8);
int32_t L_9 = NumberFormatInfo_get_PercentPositivePattern_mD23B2B53488F48B707952CCFADD216A7E7BAA430(L_8, /*hidden argument*/NULL);
if ((!(((uint32_t)L_9) == ((uint32_t)2))))
{
goto IL_009f;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_10 = ___nfi1;
NullCheck(L_10);
String_t* L_11 = NumberFormatInfo_get_PercentSymbol_m6661F58FEE65E75453C83AD04492B1C5199B2DAB(L_10, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_11, /*hidden argument*/NULL);
goto IL_009f;
}
IL_0050:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_12 = ___nfi1;
NullCheck(L_12);
int32_t L_13 = NumberFormatInfo_get_PercentNegativePattern_m9563E73E22236A41D695465A1B2E76F3AA7DD463(L_12, /*hidden argument*/NULL);
V_0 = L_13;
int32_t L_14 = V_0;
switch (L_14)
{
case 0:
{
goto IL_006b;
}
case 1:
{
goto IL_0079;
}
case 2:
{
goto IL_0087;
}
}
}
{
goto IL_009f;
}
IL_006b:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_15 = ___nfi1;
NullCheck(L_15);
String_t* L_16 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA(L_15, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_16, /*hidden argument*/NULL);
goto IL_009f;
}
IL_0079:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_17 = ___nfi1;
NullCheck(L_17);
String_t* L_18 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA(L_17, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_18, /*hidden argument*/NULL);
goto IL_009f;
}
IL_0087:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_19 = ___nfi1;
NullCheck(L_19);
String_t* L_20 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA(L_19, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_20, /*hidden argument*/NULL);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_21 = ___nfi1;
NullCheck(L_21);
String_t* L_22 = NumberFormatInfo_get_PercentSymbol_m6661F58FEE65E75453C83AD04492B1C5199B2DAB(L_21, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_22, /*hidden argument*/NULL);
}
IL_009f:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_23 = ___nfi1;
NullCheck(L_23);
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_24 = NumberFormatInfo_get_PercentGroupSizes_m4E8851281AB5160EC0EE06F633B08235440DF4C8(L_23, /*hidden argument*/NULL);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_25 = ___nfi1;
NullCheck(L_25);
String_t* L_26 = NumberFormatInfo_get_PercentGroupSeparator_mBCCC5E617B3BEFED528AB99571AC593CEA45B4EC(L_25, /*hidden argument*/NULL);
NumberFormatter_AppendIntegerStringWithGroupSeparator_m761D1912DA7C38E84F3C2AC297FA7C9ABD09D403(__this, L_24, L_26, /*hidden argument*/NULL);
int32_t L_27 = ___precision0;
if ((((int32_t)L_27) <= ((int32_t)0)))
{
goto IL_00c8;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_28 = ___nfi1;
NullCheck(L_28);
String_t* L_29 = NumberFormatInfo_get_PercentDecimalSeparator_m8E0E23E04199DCA6D6E7E494D11522465180CCD2(L_28, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_29, /*hidden argument*/NULL);
int32_t L_30 = ___precision0;
NumberFormatter_AppendDecimalString_mE9DC096988E86A4835B3456196883DFC51A57623(__this, L_30, /*hidden argument*/NULL);
}
IL_00c8:
{
bool L_31 = __this->get__positive_12();
if (!L_31)
{
goto IL_0104;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_32 = ___nfi1;
NullCheck(L_32);
int32_t L_33 = NumberFormatInfo_get_PercentPositivePattern_mD23B2B53488F48B707952CCFADD216A7E7BAA430(L_32, /*hidden argument*/NULL);
V_0 = L_33;
int32_t L_34 = V_0;
if (!L_34)
{
goto IL_00e0;
}
}
{
int32_t L_35 = V_0;
if ((((int32_t)L_35) == ((int32_t)1)))
{
goto IL_00f6;
}
}
{
goto IL_0136;
}
IL_00e0:
{
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)32), /*hidden argument*/NULL);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_36 = ___nfi1;
NullCheck(L_36);
String_t* L_37 = NumberFormatInfo_get_PercentSymbol_m6661F58FEE65E75453C83AD04492B1C5199B2DAB(L_36, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_37, /*hidden argument*/NULL);
goto IL_0136;
}
IL_00f6:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_38 = ___nfi1;
NullCheck(L_38);
String_t* L_39 = NumberFormatInfo_get_PercentSymbol_m6661F58FEE65E75453C83AD04492B1C5199B2DAB(L_38, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_39, /*hidden argument*/NULL);
goto IL_0136;
}
IL_0104:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_40 = ___nfi1;
NullCheck(L_40);
int32_t L_41 = NumberFormatInfo_get_PercentNegativePattern_m9563E73E22236A41D695465A1B2E76F3AA7DD463(L_40, /*hidden argument*/NULL);
V_0 = L_41;
int32_t L_42 = V_0;
if (!L_42)
{
goto IL_0114;
}
}
{
int32_t L_43 = V_0;
if ((((int32_t)L_43) == ((int32_t)1)))
{
goto IL_012a;
}
}
{
goto IL_0136;
}
IL_0114:
{
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)32), /*hidden argument*/NULL);
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_44 = ___nfi1;
NullCheck(L_44);
String_t* L_45 = NumberFormatInfo_get_PercentSymbol_m6661F58FEE65E75453C83AD04492B1C5199B2DAB(L_44, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_45, /*hidden argument*/NULL);
goto IL_0136;
}
IL_012a:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_46 = ___nfi1;
NullCheck(L_46);
String_t* L_47 = NumberFormatInfo_get_PercentSymbol_m6661F58FEE65E75453C83AD04492B1C5199B2DAB(L_46, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_47, /*hidden argument*/NULL);
}
IL_0136:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_48 = __this->get__cbuf_7();
int32_t L_49 = __this->get__ind_23();
String_t* L_50 = String_CreateString_mC7FB167C0D5B97F7EF502AF54399C61DD5B87509(NULL, L_48, 0, L_49, /*hidden argument*/NULL);
return L_50;
}
}
// System.String System.NumberFormatter::FormatExponential(System.Int32,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatExponential_mCA7BFD8EAC7AD2C23FF91756A5AE9F143478E226 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___precision0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___precision0;
if ((!(((uint32_t)L_0) == ((uint32_t)(-1)))))
{
goto IL_0007;
}
}
{
___precision0 = 6;
}
IL_0007:
{
int32_t L_1 = ___precision0;
NumberFormatter_RoundPos_mD1767AEAEE9801C748F3C7B8BE7A29598A843961(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)1)), /*hidden argument*/NULL);
int32_t L_2 = ___precision0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_3 = ___nfi1;
String_t* L_4 = NumberFormatter_FormatExponential_m860C5350D97E7958CA0EC214263E0BE6B34F326F(__this, L_2, L_3, 3, /*hidden argument*/NULL);
return L_4;
}
}
// System.String System.NumberFormatter::FormatExponential(System.Int32,System.Globalization.NumberFormatInfo,System.Int32)
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatExponential_m860C5350D97E7958CA0EC214263E0BE6B34F326F (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___precision0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, int32_t ___expDigits2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
int32_t L_0 = __this->get__decPointPos_18();
int32_t L_1 = __this->get__digitsLen_16();
V_0 = L_1;
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)1));
__this->set__decPointPos_18(1);
int32_t L_2 = ___precision0;
NumberFormatter_ResetCharBuf_m6F248689219DB23CBC466C266D313DBE0E64AAA1(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)8)), /*hidden argument*/NULL);
bool L_3 = __this->get__positive_12();
if (L_3)
{
goto IL_0034;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_4 = ___nfi1;
NullCheck(L_4);
String_t* L_5 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA(L_4, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_5, /*hidden argument*/NULL);
}
IL_0034:
{
int32_t L_6 = V_0;
NumberFormatter_AppendOneDigit_m00E78B4DAFD47E5393BF1B3664B4453A646061A5(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), /*hidden argument*/NULL);
int32_t L_7 = ___precision0;
if ((((int32_t)L_7) <= ((int32_t)0)))
{
goto IL_0060;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_8 = ___nfi1;
NullCheck(L_8);
String_t* L_9 = NumberFormatInfo_get_NumberDecimalSeparator_m1A9F946D267B5C2FC5982D34AF97D9AEB9C24A6E(L_8, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_9, /*hidden argument*/NULL);
int32_t L_10 = V_0;
int32_t L_11 = ___precision0;
int32_t L_12 = V_0;
int32_t L_13 = __this->get__decPointPos_18();
NumberFormatter_AppendDigits_m59DE31608D1C9D737C456B0FC4ADF8BF5D0B17E2(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)L_11)), (int32_t)1)), ((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)L_13)), /*hidden argument*/NULL);
}
IL_0060:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_14 = ___nfi1;
int32_t L_15 = V_1;
int32_t L_16 = ___expDigits2;
NumberFormatter_AppendExponent_m642543981CFC9CB61ECCE7DD35289F1711ED0F0C(__this, L_14, L_15, L_16, /*hidden argument*/NULL);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_17 = __this->get__cbuf_7();
int32_t L_18 = __this->get__ind_23();
String_t* L_19 = String_CreateString_mC7FB167C0D5B97F7EF502AF54399C61DD5B87509(NULL, L_17, 0, L_18, /*hidden argument*/NULL);
return L_19;
}
}
// System.String System.NumberFormatter::FormatCustom(System.String,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR String_t* NumberFormatter_FormatCustom_m5DAC683F225013EEBFC4FDC1682A88C40152A85F (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, String_t* ___format0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_FormatCustom_m5DAC683F225013EEBFC4FDC1682A88C40152A85F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
int32_t V_2 = 0;
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * V_3 = NULL;
StringBuilder_t * V_4 = NULL;
StringBuilder_t * V_5 = NULL;
StringBuilder_t * V_6 = NULL;
int32_t V_7 = 0;
bool V_8 = false;
StringBuilder_t * G_B7_0 = NULL;
StringBuilder_t * G_B20_0 = NULL;
StringBuilder_t * G_B19_0 = NULL;
int32_t G_B21_0 = 0;
StringBuilder_t * G_B21_1 = NULL;
{
bool L_0 = __this->get__positive_12();
V_0 = L_0;
V_1 = 0;
V_2 = 0;
String_t* L_1 = ___format0;
bool L_2 = NumberFormatter_get_IsZero_m8F40311773109C6A0B1F80956155E17EE982838E(__this, /*hidden argument*/NULL);
CustomInfo_GetActiveSection_m3C48CF37C771F5434981309EEBDB47383654E25A(L_1, (bool*)(&V_0), L_2, (int32_t*)(&V_1), (int32_t*)(&V_2), /*hidden argument*/NULL);
int32_t L_3 = V_2;
if (L_3)
{
goto IL_0035;
}
}
{
bool L_4 = __this->get__positive_12();
if (L_4)
{
goto IL_002f;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_5 = ___nfi1;
NullCheck(L_5);
String_t* L_6 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA(L_5, /*hidden argument*/NULL);
return L_6;
}
IL_002f:
{
String_t* L_7 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
return L_7;
}
IL_0035:
{
bool L_8 = V_0;
__this->set__positive_12(L_8);
String_t* L_9 = ___format0;
int32_t L_10 = V_1;
int32_t L_11 = V_2;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_12 = ___nfi1;
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_13 = CustomInfo_Parse_m221FEE3DBA88FC585E7EC4F51CE590B9BE0E334A(L_9, L_10, L_11, L_12, /*hidden argument*/NULL);
V_3 = L_13;
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_14 = V_3;
NullCheck(L_14);
int32_t L_15 = L_14->get_IntegerDigits_4();
StringBuilder_t * L_16 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m1C0F2D97B838537A2D0F64033AE4EF02D150A956(L_16, ((int32_t)il2cpp_codegen_multiply((int32_t)L_15, (int32_t)2)), /*hidden argument*/NULL);
V_4 = L_16;
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_17 = V_3;
NullCheck(L_17);
int32_t L_18 = L_17->get_DecimalDigits_1();
StringBuilder_t * L_19 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m1C0F2D97B838537A2D0F64033AE4EF02D150A956(L_19, ((int32_t)il2cpp_codegen_multiply((int32_t)L_18, (int32_t)2)), /*hidden argument*/NULL);
V_5 = L_19;
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_20 = V_3;
NullCheck(L_20);
bool L_21 = L_20->get_UseExponent_7();
if (L_21)
{
goto IL_006f;
}
}
{
G_B7_0 = ((StringBuilder_t *)(NULL));
goto IL_007c;
}
IL_006f:
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_22 = V_3;
NullCheck(L_22);
int32_t L_23 = L_22->get_ExponentDigits_8();
StringBuilder_t * L_24 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m1C0F2D97B838537A2D0F64033AE4EF02D150A956(L_24, ((int32_t)il2cpp_codegen_multiply((int32_t)L_23, (int32_t)2)), /*hidden argument*/NULL);
G_B7_0 = L_24;
}
IL_007c:
{
V_6 = G_B7_0;
V_7 = 0;
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_25 = V_3;
NullCheck(L_25);
int32_t L_26 = L_25->get_Percents_12();
if ((((int32_t)L_26) <= ((int32_t)0)))
{
goto IL_0098;
}
}
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_27 = V_3;
NullCheck(L_27);
int32_t L_28 = L_27->get_Percents_12();
NumberFormatter_Multiply10_mCDC2D6E96D4920F5E9DED8BA045339DC26292227(__this, ((int32_t)il2cpp_codegen_multiply((int32_t)2, (int32_t)L_28)), /*hidden argument*/NULL);
}
IL_0098:
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_29 = V_3;
NullCheck(L_29);
int32_t L_30 = L_29->get_Permilles_13();
if ((((int32_t)L_30) <= ((int32_t)0)))
{
goto IL_00af;
}
}
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_31 = V_3;
NullCheck(L_31);
int32_t L_32 = L_31->get_Permilles_13();
NumberFormatter_Multiply10_mCDC2D6E96D4920F5E9DED8BA045339DC26292227(__this, ((int32_t)il2cpp_codegen_multiply((int32_t)3, (int32_t)L_32)), /*hidden argument*/NULL);
}
IL_00af:
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_33 = V_3;
NullCheck(L_33);
int32_t L_34 = L_33->get_DividePlaces_11();
if ((((int32_t)L_34) <= ((int32_t)0)))
{
goto IL_00c4;
}
}
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_35 = V_3;
NullCheck(L_35);
int32_t L_36 = L_35->get_DividePlaces_11();
NumberFormatter_Divide10_m19182F6184716E02E9DBA42FCF89EFEBA7AC19B7(__this, L_36, /*hidden argument*/NULL);
}
IL_00c4:
{
V_8 = (bool)1;
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_37 = V_3;
NullCheck(L_37);
bool L_38 = L_37->get_UseExponent_7();
if (!L_38)
{
goto IL_0139;
}
}
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_39 = V_3;
NullCheck(L_39);
int32_t L_40 = L_39->get_DecimalDigits_1();
if ((((int32_t)L_40) > ((int32_t)0)))
{
goto IL_00e1;
}
}
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_41 = V_3;
NullCheck(L_41);
int32_t L_42 = L_41->get_IntegerDigits_4();
if ((((int32_t)L_42) <= ((int32_t)0)))
{
goto IL_0139;
}
}
IL_00e1:
{
bool L_43 = NumberFormatter_get_IsZero_m8F40311773109C6A0B1F80956155E17EE982838E(__this, /*hidden argument*/NULL);
if (L_43)
{
goto IL_011a;
}
}
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_44 = V_3;
NullCheck(L_44);
int32_t L_45 = L_44->get_DecimalDigits_1();
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_46 = V_3;
NullCheck(L_46);
int32_t L_47 = L_46->get_IntegerDigits_4();
NumberFormatter_RoundPos_mD1767AEAEE9801C748F3C7B8BE7A29598A843961(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_45, (int32_t)L_47)), /*hidden argument*/NULL);
int32_t L_48 = V_7;
int32_t L_49 = __this->get__decPointPos_18();
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_50 = V_3;
NullCheck(L_50);
int32_t L_51 = L_50->get_IntegerDigits_4();
V_7 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_48, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_49, (int32_t)L_51))));
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_52 = V_3;
NullCheck(L_52);
int32_t L_53 = L_52->get_IntegerDigits_4();
__this->set__decPointPos_18(L_53);
}
IL_011a:
{
int32_t L_54 = V_7;
V_8 = (bool)((((int32_t)((((int32_t)L_54) > ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
StringBuilder_t * L_55 = V_6;
int32_t L_56 = V_7;
G_B19_0 = L_55;
if ((((int32_t)L_56) < ((int32_t)0)))
{
G_B20_0 = L_55;
goto IL_012f;
}
}
{
int32_t L_57 = V_7;
G_B21_0 = L_57;
G_B21_1 = G_B19_0;
goto IL_0132;
}
IL_012f:
{
int32_t L_58 = V_7;
G_B21_0 = ((-L_58));
G_B21_1 = G_B20_0;
}
IL_0132:
{
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
NumberFormatter_AppendNonNegativeNumber_m9AF8B3BAFDE9443EF437F2A4659E2759913D70E1(G_B21_1, G_B21_0, /*hidden argument*/NULL);
goto IL_0146;
}
IL_0139:
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_59 = V_3;
NullCheck(L_59);
int32_t L_60 = L_59->get_DecimalDigits_1();
NumberFormatter_RoundDecimal_mE3446A2208E792FF9BB01F93871A8C1BCFF10F4E(__this, L_60, /*hidden argument*/NULL);
}
IL_0146:
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_61 = V_3;
NullCheck(L_61);
int32_t L_62 = L_61->get_IntegerDigits_4();
if (L_62)
{
goto IL_0156;
}
}
{
bool L_63 = NumberFormatter_get_IsZeroInteger_m914987F51303120CDEB2339FB10E4617E9F17307(__this, /*hidden argument*/NULL);
if (L_63)
{
goto IL_0164;
}
}
IL_0156:
{
int32_t L_64 = NumberFormatter_get_IntegerDigits_m91E2E8AF66FD565349B6447D6F9AB3B9BD61F741(__this, /*hidden argument*/NULL);
StringBuilder_t * L_65 = V_4;
NumberFormatter_AppendIntegerString_m37A5A133D337FE0E7378D3F5C9B5C42ABC4F500C(__this, L_64, L_65, /*hidden argument*/NULL);
}
IL_0164:
{
int32_t L_66 = NumberFormatter_get_DecimalDigits_m7D1E99D450C28EEB92D1C28F23393F18A2AB202E(__this, /*hidden argument*/NULL);
StringBuilder_t * L_67 = V_5;
NumberFormatter_AppendDecimalString_mE1BE0D20CD069420690F5E5C06A394C7369C90BF(__this, L_66, L_67, /*hidden argument*/NULL);
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_68 = V_3;
NullCheck(L_68);
bool L_69 = L_68->get_UseExponent_7();
if (!L_69)
{
goto IL_0216;
}
}
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_70 = V_3;
NullCheck(L_70);
int32_t L_71 = L_70->get_DecimalDigits_1();
if ((((int32_t)L_71) > ((int32_t)0)))
{
goto IL_0196;
}
}
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_72 = V_3;
NullCheck(L_72);
int32_t L_73 = L_72->get_IntegerDigits_4();
if ((((int32_t)L_73) > ((int32_t)0)))
{
goto IL_0196;
}
}
{
__this->set__positive_12((bool)1);
}
IL_0196:
{
StringBuilder_t * L_74 = V_4;
NullCheck(L_74);
int32_t L_75 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_74, /*hidden argument*/NULL);
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_76 = V_3;
NullCheck(L_76);
int32_t L_77 = L_76->get_IntegerDigits_4();
if ((((int32_t)L_75) >= ((int32_t)L_77)))
{
goto IL_01ce;
}
}
{
StringBuilder_t * L_78 = V_4;
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_79 = V_3;
NullCheck(L_79);
int32_t L_80 = L_79->get_IntegerDigits_4();
StringBuilder_t * L_81 = V_4;
NullCheck(L_81);
int32_t L_82 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_81, /*hidden argument*/NULL);
NullCheck(L_78);
StringBuilder_Insert_mC4C722CFB7E8BA17F47DF230DD69F6E0E46C7D05(L_78, 0, _stringLiteralB6589FC6AB0DC82CF12099D1C2D40AB994E8410C, ((int32_t)il2cpp_codegen_subtract((int32_t)L_80, (int32_t)L_82)), /*hidden argument*/NULL);
goto IL_01ce;
}
IL_01c3:
{
StringBuilder_t * L_83 = V_6;
NullCheck(L_83);
StringBuilder_Insert_m5A00CEB69C56B823E3766C84114D8B8ACCFC67A1(L_83, 0, ((int32_t)48), /*hidden argument*/NULL);
}
IL_01ce:
{
StringBuilder_t * L_84 = V_6;
NullCheck(L_84);
int32_t L_85 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_84, /*hidden argument*/NULL);
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_86 = V_3;
NullCheck(L_86);
int32_t L_87 = L_86->get_ExponentDigits_8();
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_88 = V_3;
NullCheck(L_88);
int32_t L_89 = L_88->get_ExponentTailSharpDigits_9();
if ((((int32_t)L_85) < ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_87, (int32_t)L_89)))))
{
goto IL_01c3;
}
}
{
bool L_90 = V_8;
if (!L_90)
{
goto IL_0201;
}
}
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_91 = V_3;
NullCheck(L_91);
bool L_92 = L_91->get_ExponentNegativeSignOnly_10();
if (L_92)
{
goto IL_0201;
}
}
{
StringBuilder_t * L_93 = V_6;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_94 = ___nfi1;
NullCheck(L_94);
String_t* L_95 = NumberFormatInfo_get_PositiveSign_m268EA84CDC3A03566ACDC10208E165DB74948747(L_94, /*hidden argument*/NULL);
NullCheck(L_93);
StringBuilder_Insert_m38829D9C9FE52ACD6541ED735D4435FB2A831A2C(L_93, 0, L_95, /*hidden argument*/NULL);
goto IL_0276;
}
IL_0201:
{
bool L_96 = V_8;
if (L_96)
{
goto IL_0276;
}
}
{
StringBuilder_t * L_97 = V_6;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_98 = ___nfi1;
NullCheck(L_98);
String_t* L_99 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA(L_98, /*hidden argument*/NULL);
NullCheck(L_97);
StringBuilder_Insert_m38829D9C9FE52ACD6541ED735D4435FB2A831A2C(L_97, 0, L_99, /*hidden argument*/NULL);
goto IL_0276;
}
IL_0216:
{
StringBuilder_t * L_100 = V_4;
NullCheck(L_100);
int32_t L_101 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_100, /*hidden argument*/NULL);
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_102 = V_3;
NullCheck(L_102);
int32_t L_103 = L_102->get_IntegerDigits_4();
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_104 = V_3;
NullCheck(L_104);
int32_t L_105 = L_104->get_IntegerHeadSharpDigits_5();
if ((((int32_t)L_101) >= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_103, (int32_t)L_105)))))
{
goto IL_024f;
}
}
{
StringBuilder_t * L_106 = V_4;
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_107 = V_3;
NullCheck(L_107);
int32_t L_108 = L_107->get_IntegerDigits_4();
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_109 = V_3;
NullCheck(L_109);
int32_t L_110 = L_109->get_IntegerHeadSharpDigits_5();
StringBuilder_t * L_111 = V_4;
NullCheck(L_111);
int32_t L_112 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_111, /*hidden argument*/NULL);
NullCheck(L_106);
StringBuilder_Insert_mC4C722CFB7E8BA17F47DF230DD69F6E0E46C7D05(L_106, 0, _stringLiteralB6589FC6AB0DC82CF12099D1C2D40AB994E8410C, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_108, (int32_t)L_110)), (int32_t)L_112)), /*hidden argument*/NULL);
}
IL_024f:
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_113 = V_3;
NullCheck(L_113);
int32_t L_114 = L_113->get_IntegerDigits_4();
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_115 = V_3;
NullCheck(L_115);
int32_t L_116 = L_115->get_IntegerHeadSharpDigits_5();
if ((!(((uint32_t)L_114) == ((uint32_t)L_116))))
{
goto IL_0276;
}
}
{
StringBuilder_t * L_117 = V_4;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
bool L_118 = NumberFormatter_IsZeroOnly_m34EC372F18B62ED7716195F4BD28945F7B1C2716(L_117, /*hidden argument*/NULL);
if (!L_118)
{
goto IL_0276;
}
}
{
StringBuilder_t * L_119 = V_4;
StringBuilder_t * L_120 = V_4;
NullCheck(L_120);
int32_t L_121 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_120, /*hidden argument*/NULL);
NullCheck(L_119);
StringBuilder_Remove_m5DA9C1C4D056FA61B8923BE85E6BFF44B14A24F9(L_119, 0, L_121, /*hidden argument*/NULL);
}
IL_0276:
{
StringBuilder_t * L_122 = V_5;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
NumberFormatter_ZeroTrimEnd_mCFA43BC122387E7BB042BCD81DE7DE4870FB5D99(L_122, (bool)1, /*hidden argument*/NULL);
goto IL_028a;
}
IL_0280:
{
StringBuilder_t * L_123 = V_5;
NullCheck(L_123);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_123, ((int32_t)48), /*hidden argument*/NULL);
}
IL_028a:
{
StringBuilder_t * L_124 = V_5;
NullCheck(L_124);
int32_t L_125 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_124, /*hidden argument*/NULL);
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_126 = V_3;
NullCheck(L_126);
int32_t L_127 = L_126->get_DecimalDigits_1();
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_128 = V_3;
NullCheck(L_128);
int32_t L_129 = L_128->get_DecimalTailSharpDigits_3();
if ((((int32_t)L_125) < ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_127, (int32_t)L_129)))))
{
goto IL_0280;
}
}
{
StringBuilder_t * L_130 = V_5;
NullCheck(L_130);
int32_t L_131 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_130, /*hidden argument*/NULL);
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_132 = V_3;
NullCheck(L_132);
int32_t L_133 = L_132->get_DecimalDigits_1();
if ((((int32_t)L_131) <= ((int32_t)L_133)))
{
goto IL_02cb;
}
}
{
StringBuilder_t * L_134 = V_5;
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_135 = V_3;
NullCheck(L_135);
int32_t L_136 = L_135->get_DecimalDigits_1();
StringBuilder_t * L_137 = V_5;
NullCheck(L_137);
int32_t L_138 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_137, /*hidden argument*/NULL);
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_139 = V_3;
NullCheck(L_139);
int32_t L_140 = L_139->get_DecimalDigits_1();
NullCheck(L_134);
StringBuilder_Remove_m5DA9C1C4D056FA61B8923BE85E6BFF44B14A24F9(L_134, L_136, ((int32_t)il2cpp_codegen_subtract((int32_t)L_138, (int32_t)L_140)), /*hidden argument*/NULL);
}
IL_02cb:
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_141 = V_3;
String_t* L_142 = ___format0;
int32_t L_143 = V_1;
int32_t L_144 = V_2;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_145 = ___nfi1;
bool L_146 = __this->get__positive_12();
StringBuilder_t * L_147 = V_4;
StringBuilder_t * L_148 = V_5;
StringBuilder_t * L_149 = V_6;
NullCheck(L_141);
String_t* L_150 = CustomInfo_Format_m1A29FF4C0EF0861E7E2564D8548EEA6916D91252(L_141, L_142, L_143, L_144, L_145, L_146, L_147, L_148, L_149, /*hidden argument*/NULL);
return L_150;
}
}
// System.Void System.NumberFormatter::ZeroTrimEnd(System.Text.StringBuilder,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_ZeroTrimEnd_mCFA43BC122387E7BB042BCD81DE7DE4870FB5D99 (StringBuilder_t * ___sb0, bool ___canEmpty1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t G_B6_0 = 0;
{
V_0 = 0;
StringBuilder_t * L_0 = ___sb0;
NullCheck(L_0);
int32_t L_1 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_0, /*hidden argument*/NULL);
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)1));
goto IL_0020;
}
IL_000d:
{
StringBuilder_t * L_2 = ___sb0;
int32_t L_3 = V_1;
NullCheck(L_2);
Il2CppChar L_4 = StringBuilder_get_Chars_mC069533DCA4FB798DFA069469EBABA85DCC183C6(L_2, L_3, /*hidden argument*/NULL);
if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)48)))))
{
goto IL_0032;
}
}
{
int32_t L_5 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1));
int32_t L_6 = V_1;
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1));
}
IL_0020:
{
bool L_7 = ___canEmpty1;
if (L_7)
{
goto IL_0029;
}
}
{
int32_t L_8 = V_1;
G_B6_0 = ((((int32_t)L_8) > ((int32_t)0))? 1 : 0);
goto IL_0030;
}
IL_0029:
{
int32_t L_9 = V_1;
G_B6_0 = ((((int32_t)((((int32_t)L_9) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_0030:
{
if (G_B6_0)
{
goto IL_000d;
}
}
IL_0032:
{
int32_t L_10 = V_0;
if ((((int32_t)L_10) <= ((int32_t)0)))
{
goto IL_0046;
}
}
{
StringBuilder_t * L_11 = ___sb0;
StringBuilder_t * L_12 = ___sb0;
NullCheck(L_12);
int32_t L_13 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_12, /*hidden argument*/NULL);
int32_t L_14 = V_0;
int32_t L_15 = V_0;
NullCheck(L_11);
StringBuilder_Remove_m5DA9C1C4D056FA61B8923BE85E6BFF44B14A24F9(L_11, ((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)L_14)), L_15, /*hidden argument*/NULL);
}
IL_0046:
{
return;
}
}
// System.Boolean System.NumberFormatter::IsZeroOnly(System.Text.StringBuilder)
extern "C" IL2CPP_METHOD_ATTR bool NumberFormatter_IsZeroOnly_m34EC372F18B62ED7716195F4BD28945F7B1C2716 (StringBuilder_t * ___sb0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_IsZeroOnly_m34EC372F18B62ED7716195F4BD28945F7B1C2716_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
V_0 = 0;
goto IL_0023;
}
IL_0004:
{
StringBuilder_t * L_0 = ___sb0;
int32_t L_1 = V_0;
NullCheck(L_0);
Il2CppChar L_2 = StringBuilder_get_Chars_mC069533DCA4FB798DFA069469EBABA85DCC183C6(L_0, L_1, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
bool L_3 = Char_IsDigit_m29508E0B60DAE54350BDC3DED0D42895DBA4087E(L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_001f;
}
}
{
StringBuilder_t * L_4 = ___sb0;
int32_t L_5 = V_0;
NullCheck(L_4);
Il2CppChar L_6 = StringBuilder_get_Chars_mC069533DCA4FB798DFA069469EBABA85DCC183C6(L_4, L_5, /*hidden argument*/NULL);
if ((((int32_t)L_6) == ((int32_t)((int32_t)48))))
{
goto IL_001f;
}
}
{
return (bool)0;
}
IL_001f:
{
int32_t L_7 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1));
}
IL_0023:
{
int32_t L_8 = V_0;
StringBuilder_t * L_9 = ___sb0;
NullCheck(L_9);
int32_t L_10 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_9, /*hidden argument*/NULL);
if ((((int32_t)L_8) < ((int32_t)L_10)))
{
goto IL_0004;
}
}
{
return (bool)1;
}
}
// System.Void System.NumberFormatter::AppendNonNegativeNumber(System.Text.StringBuilder,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_AppendNonNegativeNumber_m9AF8B3BAFDE9443EF437F2A4659E2759913D70E1 (StringBuilder_t * ___sb0, int32_t ___v1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_AppendNonNegativeNumber_m9AF8B3BAFDE9443EF437F2A4659E2759913D70E1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
int32_t L_0 = ___v1;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_000a;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_1 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m77591C20EDA3ADEE2FAF1987321D686E249326C5(L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, NumberFormatter_AppendNonNegativeNumber_m9AF8B3BAFDE9443EF437F2A4659E2759913D70E1_RuntimeMethod_var);
}
IL_000a:
{
int32_t L_2 = ___v1;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
int32_t L_3 = NumberFormatter_ScaleOrder_m712CE7B5E134E507EC41CC93A43D76F02FC2D8C2((((int64_t)((int64_t)L_2))), /*hidden argument*/NULL);
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)1));
}
IL_0014:
{
int32_t L_4 = ___v1;
int32_t L_5 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
int64_t L_6 = NumberFormatter_GetTenPowerOf_mFB4993FB5A5C694F12FC7772DF431C0AA3F6E43C(L_5, /*hidden argument*/NULL);
V_1 = ((int32_t)((int32_t)L_4/(int32_t)(((int32_t)((int32_t)L_6)))));
StringBuilder_t * L_7 = ___sb0;
int32_t L_8 = V_1;
NullCheck(L_7);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_7, (((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)48)|(int32_t)L_8))))), /*hidden argument*/NULL);
int32_t L_9 = ___v1;
int32_t L_10 = V_0;
int32_t L_11 = L_10;
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)1));
int64_t L_12 = NumberFormatter_GetTenPowerOf_mFB4993FB5A5C694F12FC7772DF431C0AA3F6E43C(L_11, /*hidden argument*/NULL);
int32_t L_13 = V_1;
___v1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)(((int32_t)((int32_t)L_12))), (int32_t)L_13))));
int32_t L_14 = V_0;
if ((((int32_t)L_14) >= ((int32_t)0)))
{
goto IL_0014;
}
}
{
return;
}
}
// System.Void System.NumberFormatter::AppendIntegerString(System.Int32,System.Text.StringBuilder)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_AppendIntegerString_m37A5A133D337FE0E7378D3F5C9B5C42ABC4F500C (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___minLength0, StringBuilder_t * ___sb1, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__decPointPos_18();
if ((((int32_t)L_0) > ((int32_t)0)))
{
goto IL_0014;
}
}
{
StringBuilder_t * L_1 = ___sb1;
int32_t L_2 = ___minLength0;
NullCheck(L_1);
StringBuilder_Append_m9702CA108F81CBF2B174826C1DFC5F7552C36C45(L_1, ((int32_t)48), L_2, /*hidden argument*/NULL);
return;
}
IL_0014:
{
int32_t L_3 = __this->get__decPointPos_18();
int32_t L_4 = ___minLength0;
if ((((int32_t)L_3) >= ((int32_t)L_4)))
{
goto IL_002e;
}
}
{
StringBuilder_t * L_5 = ___sb1;
int32_t L_6 = ___minLength0;
int32_t L_7 = __this->get__decPointPos_18();
NullCheck(L_5);
StringBuilder_Append_m9702CA108F81CBF2B174826C1DFC5F7552C36C45(L_5, ((int32_t)48), ((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)L_7)), /*hidden argument*/NULL);
}
IL_002e:
{
int32_t L_8 = __this->get__digitsLen_16();
int32_t L_9 = __this->get__decPointPos_18();
int32_t L_10 = __this->get__digitsLen_16();
StringBuilder_t * L_11 = ___sb1;
NumberFormatter_AppendDigits_m17CDC05D8F1F8CB837429D7BBD4F24501ABF45F7(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)L_9)), L_10, L_11, /*hidden argument*/NULL);
return;
}
}
// System.Void System.NumberFormatter::AppendIntegerString(System.Int32)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_AppendIntegerString_mD6FB81A7D8109CDAED213804F4D91E2FA476BD88 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___minLength0, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__decPointPos_18();
if ((((int32_t)L_0) > ((int32_t)0)))
{
goto IL_0013;
}
}
{
int32_t L_1 = ___minLength0;
NumberFormatter_Append_m2A6A1C7BE013B8DC696AD7A2D2D715B5C685E0A9(__this, ((int32_t)48), L_1, /*hidden argument*/NULL);
return;
}
IL_0013:
{
int32_t L_2 = __this->get__decPointPos_18();
int32_t L_3 = ___minLength0;
if ((((int32_t)L_2) >= ((int32_t)L_3)))
{
goto IL_002c;
}
}
{
int32_t L_4 = ___minLength0;
int32_t L_5 = __this->get__decPointPos_18();
NumberFormatter_Append_m2A6A1C7BE013B8DC696AD7A2D2D715B5C685E0A9(__this, ((int32_t)48), ((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)L_5)), /*hidden argument*/NULL);
}
IL_002c:
{
int32_t L_6 = __this->get__digitsLen_16();
int32_t L_7 = __this->get__decPointPos_18();
int32_t L_8 = __this->get__digitsLen_16();
NumberFormatter_AppendDigits_m59DE31608D1C9D737C456B0FC4ADF8BF5D0B17E2(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)L_7)), L_8, /*hidden argument*/NULL);
return;
}
}
// System.Void System.NumberFormatter::AppendDecimalString(System.Int32,System.Text.StringBuilder)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_AppendDecimalString_mE1BE0D20CD069420690F5E5C06A394C7369C90BF (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___precision0, StringBuilder_t * ___sb1, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__digitsLen_16();
int32_t L_1 = ___precision0;
int32_t L_2 = __this->get__decPointPos_18();
int32_t L_3 = __this->get__digitsLen_16();
int32_t L_4 = __this->get__decPointPos_18();
StringBuilder_t * L_5 = ___sb1;
NumberFormatter_AppendDigits_m17CDC05D8F1F8CB837429D7BBD4F24501ABF45F7(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)L_2)), ((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)L_4)), L_5, /*hidden argument*/NULL);
return;
}
}
// System.Void System.NumberFormatter::AppendDecimalString(System.Int32)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_AppendDecimalString_mE9DC096988E86A4835B3456196883DFC51A57623 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___precision0, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__digitsLen_16();
int32_t L_1 = ___precision0;
int32_t L_2 = __this->get__decPointPos_18();
int32_t L_3 = __this->get__digitsLen_16();
int32_t L_4 = __this->get__decPointPos_18();
NumberFormatter_AppendDigits_m59DE31608D1C9D737C456B0FC4ADF8BF5D0B17E2(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)L_2)), ((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)L_4)), /*hidden argument*/NULL);
return;
}
}
// System.Void System.NumberFormatter::AppendIntegerStringWithGroupSeparator(System.Int32[],System.String)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_AppendIntegerStringWithGroupSeparator_m761D1912DA7C38E84F3C2AC297FA7C9ABD09D403 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___groups0, String_t* ___groupSeparator1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
int32_t V_4 = 0;
int32_t V_5 = 0;
int32_t V_6 = 0;
int32_t V_7 = 0;
int32_t V_8 = 0;
int32_t V_9 = 0;
int32_t G_B11_0 = 0;
int32_t G_B19_0 = 0;
{
bool L_0 = NumberFormatter_get_IsZeroInteger_m914987F51303120CDEB2339FB10E4617E9F17307(__this, /*hidden argument*/NULL);
if (!L_0)
{
goto IL_0011;
}
}
{
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)48), /*hidden argument*/NULL);
return;
}
IL_0011:
{
V_0 = 0;
V_1 = 0;
V_2 = 0;
goto IL_002e;
}
IL_0019:
{
int32_t L_1 = V_0;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = ___groups0;
int32_t L_3 = V_2;
NullCheck(L_2);
int32_t L_4 = L_3;
int32_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)L_5));
int32_t L_6 = V_0;
int32_t L_7 = __this->get__decPointPos_18();
if ((((int32_t)L_6) > ((int32_t)L_7)))
{
goto IL_0034;
}
}
{
int32_t L_8 = V_2;
V_1 = L_8;
int32_t L_9 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_002e:
{
int32_t L_10 = V_2;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_11 = ___groups0;
NullCheck(L_11);
if ((((int32_t)L_10) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_11)->max_length)))))))
{
goto IL_0019;
}
}
IL_0034:
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_12 = ___groups0;
NullCheck(L_12);
if (!(((RuntimeArray *)L_12)->max_length))
{
goto IL_0150;
}
}
{
int32_t L_13 = V_0;
if ((((int32_t)L_13) <= ((int32_t)0)))
{
goto IL_0150;
}
}
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_14 = ___groups0;
int32_t L_15 = V_1;
NullCheck(L_14);
int32_t L_16 = L_15;
int32_t L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
V_4 = L_17;
int32_t L_18 = __this->get__decPointPos_18();
int32_t L_19 = V_0;
if ((((int32_t)L_18) > ((int32_t)L_19)))
{
goto IL_0053;
}
}
{
G_B11_0 = 0;
goto IL_005b;
}
IL_0053:
{
int32_t L_20 = __this->get__decPointPos_18();
int32_t L_21 = V_0;
G_B11_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_20, (int32_t)L_21));
}
IL_005b:
{
V_5 = G_B11_0;
int32_t L_22 = V_4;
if (L_22)
{
goto IL_007e;
}
}
{
goto IL_0067;
}
IL_0063:
{
int32_t L_23 = V_1;
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_23, (int32_t)1));
}
IL_0067:
{
int32_t L_24 = V_1;
if ((((int32_t)L_24) < ((int32_t)0)))
{
goto IL_0070;
}
}
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_25 = ___groups0;
int32_t L_26 = V_1;
NullCheck(L_25);
int32_t L_27 = L_26;
int32_t L_28 = (L_25)->GetAt(static_cast<il2cpp_array_size_t>(L_27));
if (!L_28)
{
goto IL_0063;
}
}
IL_0070:
{
int32_t L_29 = V_5;
if ((((int32_t)L_29) > ((int32_t)0)))
{
goto IL_007a;
}
}
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_30 = ___groups0;
int32_t L_31 = V_1;
NullCheck(L_30);
int32_t L_32 = L_31;
int32_t L_33 = (L_30)->GetAt(static_cast<il2cpp_array_size_t>(L_32));
G_B19_0 = L_33;
goto IL_007c;
}
IL_007a:
{
int32_t L_34 = V_5;
G_B19_0 = L_34;
}
IL_007c:
{
V_4 = G_B19_0;
}
IL_007e:
{
int32_t L_35 = V_5;
if (L_35)
{
goto IL_0087;
}
}
{
int32_t L_36 = V_4;
V_3 = L_36;
goto IL_00a1;
}
IL_0087:
{
int32_t L_37 = V_1;
int32_t L_38 = V_5;
int32_t L_39 = V_4;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_37, (int32_t)((int32_t)((int32_t)L_38/(int32_t)L_39))));
int32_t L_40 = V_5;
int32_t L_41 = V_4;
V_3 = ((int32_t)((int32_t)L_40%(int32_t)L_41));
int32_t L_42 = V_3;
if (L_42)
{
goto IL_009d;
}
}
{
int32_t L_43 = V_4;
V_3 = L_43;
goto IL_00a1;
}
IL_009d:
{
int32_t L_44 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)1));
}
IL_00a1:
{
int32_t L_45 = V_0;
int32_t L_46 = __this->get__decPointPos_18();
if ((((int32_t)L_45) < ((int32_t)L_46)))
{
goto IL_00e2;
}
}
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_47 = ___groups0;
NullCheck(L_47);
int32_t L_48 = 0;
int32_t L_49 = (L_47)->GetAt(static_cast<il2cpp_array_size_t>(L_48));
V_6 = L_49;
int32_t L_50 = V_0;
int32_t L_51 = V_6;
if ((((int32_t)L_50) <= ((int32_t)L_51)))
{
goto IL_00e2;
}
}
{
int32_t L_52 = V_6;
int32_t L_53 = __this->get__decPointPos_18();
V_7 = ((-((int32_t)il2cpp_codegen_subtract((int32_t)L_52, (int32_t)L_53))));
int32_t L_54 = V_7;
int32_t L_55 = V_6;
if ((((int32_t)L_54) >= ((int32_t)L_55)))
{
goto IL_00cb;
}
}
{
int32_t L_56 = V_7;
V_3 = L_56;
goto IL_00e2;
}
IL_00cb:
{
int32_t L_57 = V_6;
if ((((int32_t)L_57) <= ((int32_t)0)))
{
goto IL_00e2;
}
}
{
int32_t L_58 = __this->get__decPointPos_18();
int32_t L_59 = V_6;
int32_t L_60 = ((int32_t)((int32_t)L_58%(int32_t)L_59));
V_8 = L_60;
if ((((int32_t)L_60) <= ((int32_t)0)))
{
goto IL_00e2;
}
}
{
int32_t L_61 = V_8;
V_3 = L_61;
}
IL_00e2:
{
V_9 = 0;
}
IL_00e5:
{
int32_t L_62 = __this->get__decPointPos_18();
int32_t L_63 = V_9;
int32_t L_64 = V_3;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_62, (int32_t)L_63))) <= ((int32_t)L_64)))
{
goto IL_00f4;
}
}
{
int32_t L_65 = V_3;
if (L_65)
{
goto IL_0111;
}
}
IL_00f4:
{
int32_t L_66 = __this->get__digitsLen_16();
int32_t L_67 = __this->get__decPointPos_18();
int32_t L_68 = __this->get__digitsLen_16();
int32_t L_69 = V_9;
NumberFormatter_AppendDigits_m59DE31608D1C9D737C456B0FC4ADF8BF5D0B17E2(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)L_66, (int32_t)L_67)), ((int32_t)il2cpp_codegen_subtract((int32_t)L_68, (int32_t)L_69)), /*hidden argument*/NULL);
return;
}
IL_0111:
{
int32_t L_70 = __this->get__digitsLen_16();
int32_t L_71 = V_9;
int32_t L_72 = V_3;
int32_t L_73 = __this->get__digitsLen_16();
int32_t L_74 = V_9;
NumberFormatter_AppendDigits_m59DE31608D1C9D737C456B0FC4ADF8BF5D0B17E2(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_70, (int32_t)L_71)), (int32_t)L_72)), ((int32_t)il2cpp_codegen_subtract((int32_t)L_73, (int32_t)L_74)), /*hidden argument*/NULL);
int32_t L_75 = V_9;
int32_t L_76 = V_3;
V_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_75, (int32_t)L_76));
String_t* L_77 = ___groupSeparator1;
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_77, /*hidden argument*/NULL);
int32_t L_78 = V_1;
int32_t L_79 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_78, (int32_t)1));
V_1 = L_79;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_80 = ___groups0;
NullCheck(L_80);
if ((((int32_t)L_79) >= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_80)->max_length)))))))
{
goto IL_014b;
}
}
{
int32_t L_81 = V_1;
if ((((int32_t)L_81) < ((int32_t)0)))
{
goto IL_014b;
}
}
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_82 = ___groups0;
int32_t L_83 = V_1;
NullCheck(L_82);
int32_t L_84 = L_83;
int32_t L_85 = (L_82)->GetAt(static_cast<il2cpp_array_size_t>(L_84));
V_4 = L_85;
}
IL_014b:
{
int32_t L_86 = V_4;
V_3 = L_86;
goto IL_00e5;
}
IL_0150:
{
int32_t L_87 = __this->get__digitsLen_16();
int32_t L_88 = __this->get__decPointPos_18();
int32_t L_89 = __this->get__digitsLen_16();
NumberFormatter_AppendDigits_m59DE31608D1C9D737C456B0FC4ADF8BF5D0B17E2(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)L_87, (int32_t)L_88)), L_89, /*hidden argument*/NULL);
return;
}
}
// System.Void System.NumberFormatter::AppendExponent(System.Globalization.NumberFormatInfo,System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_AppendExponent_m642543981CFC9CB61ECCE7DD35289F1711ED0F0C (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi0, int32_t ___exponent1, int32_t ___minDigits2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_AppendExponent_m642543981CFC9CB61ECCE7DD35289F1711ED0F0C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint32_t V_0 = 0;
{
bool L_0 = __this->get__specifierIsUpper_11();
if (L_0)
{
goto IL_0012;
}
}
{
Il2CppChar L_1 = __this->get__specifier_13();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)82)))))
{
goto IL_001c;
}
}
IL_0012:
{
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)69), /*hidden argument*/NULL);
goto IL_0024;
}
IL_001c:
{
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, ((int32_t)101), /*hidden argument*/NULL);
}
IL_0024:
{
int32_t L_2 = ___exponent1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0036;
}
}
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_3 = ___nfi0;
NullCheck(L_3);
String_t* L_4 = NumberFormatInfo_get_PositiveSign_m268EA84CDC3A03566ACDC10208E165DB74948747(L_3, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_4, /*hidden argument*/NULL);
goto IL_0046;
}
IL_0036:
{
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_5 = ___nfi0;
NullCheck(L_5);
String_t* L_6 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA(L_5, /*hidden argument*/NULL);
NumberFormatter_Append_mE65A9601F09254E72BF833F4E443B4472A4FCB3D(__this, L_6, /*hidden argument*/NULL);
int32_t L_7 = ___exponent1;
___exponent1 = ((-L_7));
}
IL_0046:
{
int32_t L_8 = ___exponent1;
if (L_8)
{
goto IL_0053;
}
}
{
int32_t L_9 = ___minDigits2;
NumberFormatter_Append_m2A6A1C7BE013B8DC696AD7A2D2D715B5C685E0A9(__this, ((int32_t)48), L_9, /*hidden argument*/NULL);
return;
}
IL_0053:
{
int32_t L_10 = ___exponent1;
if ((((int32_t)L_10) >= ((int32_t)((int32_t)10))))
{
goto IL_006f;
}
}
{
int32_t L_11 = ___minDigits2;
NumberFormatter_Append_m2A6A1C7BE013B8DC696AD7A2D2D715B5C685E0A9(__this, ((int32_t)48), ((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)1)), /*hidden argument*/NULL);
int32_t L_12 = ___exponent1;
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, (((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)48)|(int32_t)L_12))))), /*hidden argument*/NULL);
return;
}
IL_006f:
{
int32_t L_13 = ___exponent1;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_il2cpp_TypeInfo_var);
uint32_t L_14 = NumberFormatter_FastToDecHex_m70F4537592F2D301B57DCB01BF0BF5F5B929845F(L_13, /*hidden argument*/NULL);
V_0 = L_14;
int32_t L_15 = ___exponent1;
if ((((int32_t)L_15) >= ((int32_t)((int32_t)100))))
{
goto IL_007f;
}
}
{
int32_t L_16 = ___minDigits2;
if ((!(((uint32_t)L_16) == ((uint32_t)3))))
{
goto IL_008c;
}
}
IL_007f:
{
uint32_t L_17 = V_0;
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, (((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)48)|(int32_t)((int32_t)((uint32_t)L_17>>8))))))), /*hidden argument*/NULL);
}
IL_008c:
{
uint32_t L_18 = V_0;
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, (((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)48)|(int32_t)((int32_t)((int32_t)((int32_t)((uint32_t)L_18>>4))&(int32_t)((int32_t)15)))))))), /*hidden argument*/NULL);
uint32_t L_19 = V_0;
NumberFormatter_Append_m7D7CC5592044F8F24D91E6626C59287AB0AD03FD(__this, (((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)48)|(int32_t)((int32_t)((int32_t)L_19&(int32_t)((int32_t)15)))))))), /*hidden argument*/NULL);
return;
}
}
// System.Void System.NumberFormatter::AppendOneDigit(System.Int32)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_AppendOneDigit_m00E78B4DAFD47E5393BF1B3664B4453A646061A5 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___start0, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
int32_t V_1 = 0;
{
int32_t L_0 = __this->get__ind_23();
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = __this->get__cbuf_7();
NullCheck(L_1);
if ((!(((uint32_t)L_0) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_1)->max_length))))))))
{
goto IL_001f;
}
}
{
int32_t L_2 = __this->get__ind_23();
NumberFormatter_Resize_m5DDC37B326ECCCFEE173B9F90431116E294F64B1(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)((int32_t)10))), /*hidden argument*/NULL);
}
IL_001f:
{
int32_t L_3 = ___start0;
int32_t L_4 = __this->get__offset_17();
___start0 = ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)L_4));
int32_t L_5 = ___start0;
if ((((int32_t)L_5) >= ((int32_t)0)))
{
goto IL_0031;
}
}
{
V_0 = 0;
goto IL_006a;
}
IL_0031:
{
int32_t L_6 = ___start0;
if ((((int32_t)L_6) >= ((int32_t)8)))
{
goto IL_003e;
}
}
{
uint32_t L_7 = __this->get__val1_19();
V_0 = L_7;
goto IL_006a;
}
IL_003e:
{
int32_t L_8 = ___start0;
if ((((int32_t)L_8) >= ((int32_t)((int32_t)16))))
{
goto IL_004c;
}
}
{
uint32_t L_9 = __this->get__val2_20();
V_0 = L_9;
goto IL_006a;
}
IL_004c:
{
int32_t L_10 = ___start0;
if ((((int32_t)L_10) >= ((int32_t)((int32_t)24))))
{
goto IL_005a;
}
}
{
uint32_t L_11 = __this->get__val3_21();
V_0 = L_11;
goto IL_006a;
}
IL_005a:
{
int32_t L_12 = ___start0;
if ((((int32_t)L_12) >= ((int32_t)((int32_t)32))))
{
goto IL_0068;
}
}
{
uint32_t L_13 = __this->get__val4_22();
V_0 = L_13;
goto IL_006a;
}
IL_0068:
{
V_0 = 0;
}
IL_006a:
{
uint32_t L_14 = V_0;
int32_t L_15 = ___start0;
V_0 = ((int32_t)((uint32_t)L_14>>((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_15&(int32_t)7))<<(int32_t)2))&(int32_t)((int32_t)31)))));
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_16 = __this->get__cbuf_7();
int32_t L_17 = __this->get__ind_23();
V_1 = L_17;
int32_t L_18 = V_1;
__this->set__ind_23(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)));
int32_t L_19 = V_1;
uint32_t L_20 = V_0;
NullCheck(L_16);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(L_19), (Il2CppChar)(((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)48)|(int32_t)((int32_t)((int32_t)L_20&(int32_t)((int32_t)15)))))))));
return;
}
}
// System.Void System.NumberFormatter::AppendDigits(System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_AppendDigits_m59DE31608D1C9D737C456B0FC4ADF8BF5D0B17E2 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___start0, int32_t ___end1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
uint32_t V_2 = 0;
int32_t V_3 = 0;
{
int32_t L_0 = ___start0;
int32_t L_1 = ___end1;
if ((((int32_t)L_0) < ((int32_t)L_1)))
{
goto IL_0005;
}
}
{
return;
}
IL_0005:
{
int32_t L_2 = __this->get__ind_23();
int32_t L_3 = ___end1;
int32_t L_4 = ___start0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)L_4))));
int32_t L_5 = V_0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_6 = __this->get__cbuf_7();
NullCheck(L_6);
if ((((int32_t)L_5) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length)))))))
{
goto IL_0025;
}
}
{
int32_t L_7 = V_0;
NumberFormatter_Resize_m5DDC37B326ECCCFEE173B9F90431116E294F64B1(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)((int32_t)10))), /*hidden argument*/NULL);
}
IL_0025:
{
int32_t L_8 = V_0;
__this->set__ind_23(L_8);
int32_t L_9 = ___end1;
int32_t L_10 = __this->get__offset_17();
___end1 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)L_10));
int32_t L_11 = ___start0;
int32_t L_12 = __this->get__offset_17();
___start0 = ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)L_12));
int32_t L_13 = ___start0;
int32_t L_14 = ___start0;
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)8)), (int32_t)((int32_t)((int32_t)L_14&(int32_t)7))));
}
IL_0048:
{
int32_t L_15 = V_1;
if ((!(((uint32_t)L_15) == ((uint32_t)8))))
{
goto IL_0055;
}
}
{
uint32_t L_16 = __this->get__val1_19();
V_2 = L_16;
goto IL_0081;
}
IL_0055:
{
int32_t L_17 = V_1;
if ((!(((uint32_t)L_17) == ((uint32_t)((int32_t)16)))))
{
goto IL_0063;
}
}
{
uint32_t L_18 = __this->get__val2_20();
V_2 = L_18;
goto IL_0081;
}
IL_0063:
{
int32_t L_19 = V_1;
if ((!(((uint32_t)L_19) == ((uint32_t)((int32_t)24)))))
{
goto IL_0071;
}
}
{
uint32_t L_20 = __this->get__val3_21();
V_2 = L_20;
goto IL_0081;
}
IL_0071:
{
int32_t L_21 = V_1;
if ((!(((uint32_t)L_21) == ((uint32_t)((int32_t)32)))))
{
goto IL_007f;
}
}
{
uint32_t L_22 = __this->get__val4_22();
V_2 = L_22;
goto IL_0081;
}
IL_007f:
{
V_2 = 0;
}
IL_0081:
{
uint32_t L_23 = V_2;
int32_t L_24 = ___start0;
V_2 = ((int32_t)((uint32_t)L_23>>((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_24&(int32_t)7))<<(int32_t)2))&(int32_t)((int32_t)31)))));
int32_t L_25 = V_1;
int32_t L_26 = ___end1;
if ((((int32_t)L_25) <= ((int32_t)L_26)))
{
goto IL_0092;
}
}
{
int32_t L_27 = ___end1;
V_1 = L_27;
}
IL_0092:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_28 = __this->get__cbuf_7();
int32_t L_29 = V_0;
int32_t L_30 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_29, (int32_t)1));
V_0 = L_30;
uint32_t L_31 = V_2;
NullCheck(L_28);
(L_28)->SetAt(static_cast<il2cpp_array_size_t>(L_30), (Il2CppChar)(((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)48)|(int32_t)((int32_t)((int32_t)L_31&(int32_t)((int32_t)15)))))))));
int32_t L_32 = V_1;
int32_t L_33 = ___start0;
V_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_32, (int32_t)L_33));
int32_t L_34 = V_3;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_34, (int32_t)1)))
{
case 0:
{
goto IL_017f;
}
case 1:
{
goto IL_0167;
}
case 2:
{
goto IL_014f;
}
case 3:
{
goto IL_0137;
}
case 4:
{
goto IL_011f;
}
case 5:
{
goto IL_0107;
}
case 6:
{
goto IL_00ef;
}
case 7:
{
goto IL_00d7;
}
}
}
{
goto IL_0184;
}
IL_00d7:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_35 = __this->get__cbuf_7();
int32_t L_36 = V_0;
int32_t L_37 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_36, (int32_t)1));
V_0 = L_37;
uint32_t L_38 = V_2;
int32_t L_39 = ((int32_t)((uint32_t)L_38>>4));
V_2 = L_39;
NullCheck(L_35);
(L_35)->SetAt(static_cast<il2cpp_array_size_t>(L_37), (Il2CppChar)(((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)48)|(int32_t)((int32_t)((int32_t)L_39&(int32_t)((int32_t)15)))))))));
}
IL_00ef:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_40 = __this->get__cbuf_7();
int32_t L_41 = V_0;
int32_t L_42 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_41, (int32_t)1));
V_0 = L_42;
uint32_t L_43 = V_2;
int32_t L_44 = ((int32_t)((uint32_t)L_43>>4));
V_2 = L_44;
NullCheck(L_40);
(L_40)->SetAt(static_cast<il2cpp_array_size_t>(L_42), (Il2CppChar)(((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)48)|(int32_t)((int32_t)((int32_t)L_44&(int32_t)((int32_t)15)))))))));
}
IL_0107:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_45 = __this->get__cbuf_7();
int32_t L_46 = V_0;
int32_t L_47 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_46, (int32_t)1));
V_0 = L_47;
uint32_t L_48 = V_2;
int32_t L_49 = ((int32_t)((uint32_t)L_48>>4));
V_2 = L_49;
NullCheck(L_45);
(L_45)->SetAt(static_cast<il2cpp_array_size_t>(L_47), (Il2CppChar)(((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)48)|(int32_t)((int32_t)((int32_t)L_49&(int32_t)((int32_t)15)))))))));
}
IL_011f:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_50 = __this->get__cbuf_7();
int32_t L_51 = V_0;
int32_t L_52 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_51, (int32_t)1));
V_0 = L_52;
uint32_t L_53 = V_2;
int32_t L_54 = ((int32_t)((uint32_t)L_53>>4));
V_2 = L_54;
NullCheck(L_50);
(L_50)->SetAt(static_cast<il2cpp_array_size_t>(L_52), (Il2CppChar)(((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)48)|(int32_t)((int32_t)((int32_t)L_54&(int32_t)((int32_t)15)))))))));
}
IL_0137:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_55 = __this->get__cbuf_7();
int32_t L_56 = V_0;
int32_t L_57 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_56, (int32_t)1));
V_0 = L_57;
uint32_t L_58 = V_2;
int32_t L_59 = ((int32_t)((uint32_t)L_58>>4));
V_2 = L_59;
NullCheck(L_55);
(L_55)->SetAt(static_cast<il2cpp_array_size_t>(L_57), (Il2CppChar)(((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)48)|(int32_t)((int32_t)((int32_t)L_59&(int32_t)((int32_t)15)))))))));
}
IL_014f:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_60 = __this->get__cbuf_7();
int32_t L_61 = V_0;
int32_t L_62 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_61, (int32_t)1));
V_0 = L_62;
uint32_t L_63 = V_2;
int32_t L_64 = ((int32_t)((uint32_t)L_63>>4));
V_2 = L_64;
NullCheck(L_60);
(L_60)->SetAt(static_cast<il2cpp_array_size_t>(L_62), (Il2CppChar)(((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)48)|(int32_t)((int32_t)((int32_t)L_64&(int32_t)((int32_t)15)))))))));
}
IL_0167:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_65 = __this->get__cbuf_7();
int32_t L_66 = V_0;
int32_t L_67 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_66, (int32_t)1));
V_0 = L_67;
uint32_t L_68 = V_2;
int32_t L_69 = ((int32_t)((uint32_t)L_68>>4));
V_2 = L_69;
NullCheck(L_65);
(L_65)->SetAt(static_cast<il2cpp_array_size_t>(L_67), (Il2CppChar)(((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)48)|(int32_t)((int32_t)((int32_t)L_69&(int32_t)((int32_t)15)))))))));
}
IL_017f:
{
int32_t L_70 = V_1;
int32_t L_71 = ___end1;
if ((!(((uint32_t)L_70) == ((uint32_t)L_71))))
{
goto IL_0184;
}
}
{
return;
}
IL_0184:
{
int32_t L_72 = V_1;
___start0 = L_72;
int32_t L_73 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_73, (int32_t)8));
goto IL_0048;
}
}
// System.Void System.NumberFormatter::AppendDigits(System.Int32,System.Int32,System.Text.StringBuilder)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_AppendDigits_m17CDC05D8F1F8CB837429D7BBD4F24501ABF45F7 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___start0, int32_t ___end1, StringBuilder_t * ___sb2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
uint32_t V_2 = 0;
int32_t V_3 = 0;
{
int32_t L_0 = ___start0;
int32_t L_1 = ___end1;
if ((((int32_t)L_0) < ((int32_t)L_1)))
{
goto IL_0005;
}
}
{
return;
}
IL_0005:
{
StringBuilder_t * L_2 = ___sb2;
NullCheck(L_2);
int32_t L_3 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_2, /*hidden argument*/NULL);
int32_t L_4 = ___end1;
int32_t L_5 = ___start0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)L_5))));
StringBuilder_t * L_6 = ___sb2;
int32_t L_7 = V_0;
NullCheck(L_6);
StringBuilder_set_Length_m84AF318230AE5C3D0D48F1CE7C2170F6F5C19F5B(L_6, L_7, /*hidden argument*/NULL);
int32_t L_8 = ___end1;
int32_t L_9 = __this->get__offset_17();
___end1 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)L_9));
int32_t L_10 = ___start0;
int32_t L_11 = __this->get__offset_17();
___start0 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)L_11));
int32_t L_12 = ___start0;
int32_t L_13 = ___start0;
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)8)), (int32_t)((int32_t)((int32_t)L_13&(int32_t)7))));
}
IL_0033:
{
int32_t L_14 = V_1;
if ((!(((uint32_t)L_14) == ((uint32_t)8))))
{
goto IL_0040;
}
}
{
uint32_t L_15 = __this->get__val1_19();
V_2 = L_15;
goto IL_006c;
}
IL_0040:
{
int32_t L_16 = V_1;
if ((!(((uint32_t)L_16) == ((uint32_t)((int32_t)16)))))
{
goto IL_004e;
}
}
{
uint32_t L_17 = __this->get__val2_20();
V_2 = L_17;
goto IL_006c;
}
IL_004e:
{
int32_t L_18 = V_1;
if ((!(((uint32_t)L_18) == ((uint32_t)((int32_t)24)))))
{
goto IL_005c;
}
}
{
uint32_t L_19 = __this->get__val3_21();
V_2 = L_19;
goto IL_006c;
}
IL_005c:
{
int32_t L_20 = V_1;
if ((!(((uint32_t)L_20) == ((uint32_t)((int32_t)32)))))
{
goto IL_006a;
}
}
{
uint32_t L_21 = __this->get__val4_22();
V_2 = L_21;
goto IL_006c;
}
IL_006a:
{
V_2 = 0;
}
IL_006c:
{
uint32_t L_22 = V_2;
int32_t L_23 = ___start0;
V_2 = ((int32_t)((uint32_t)L_22>>((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_23&(int32_t)7))<<(int32_t)2))&(int32_t)((int32_t)31)))));
int32_t L_24 = V_1;
int32_t L_25 = ___end1;
if ((((int32_t)L_24) <= ((int32_t)L_25)))
{
goto IL_007d;
}
}
{
int32_t L_26 = ___end1;
V_1 = L_26;
}
IL_007d:
{
StringBuilder_t * L_27 = ___sb2;
int32_t L_28 = V_0;
int32_t L_29 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_28, (int32_t)1));
V_0 = L_29;
uint32_t L_30 = V_2;
NullCheck(L_27);
StringBuilder_set_Chars_m71B2B761D6D287A666302FD85E320E1E60F388EA(L_27, L_29, (((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)48)|(int32_t)((int32_t)((int32_t)L_30&(int32_t)((int32_t)15)))))))), /*hidden argument*/NULL);
int32_t L_31 = V_1;
int32_t L_32 = ___start0;
V_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_31, (int32_t)L_32));
int32_t L_33 = V_3;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_33, (int32_t)1)))
{
case 0:
{
goto IL_0162;
}
case 1:
{
goto IL_014b;
}
case 2:
{
goto IL_0134;
}
case 3:
{
goto IL_011d;
}
case 4:
{
goto IL_0106;
}
case 5:
{
goto IL_00ef;
}
case 6:
{
goto IL_00d8;
}
case 7:
{
goto IL_00c1;
}
}
}
{
goto IL_0167;
}
IL_00c1:
{
StringBuilder_t * L_34 = ___sb2;
int32_t L_35 = V_0;
int32_t L_36 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_35, (int32_t)1));
V_0 = L_36;
uint32_t L_37 = V_2;
int32_t L_38 = ((int32_t)((uint32_t)L_37>>4));
V_2 = L_38;
NullCheck(L_34);
StringBuilder_set_Chars_m71B2B761D6D287A666302FD85E320E1E60F388EA(L_34, L_36, (((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)48)|(int32_t)((int32_t)((int32_t)L_38&(int32_t)((int32_t)15)))))))), /*hidden argument*/NULL);
}
IL_00d8:
{
StringBuilder_t * L_39 = ___sb2;
int32_t L_40 = V_0;
int32_t L_41 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_40, (int32_t)1));
V_0 = L_41;
uint32_t L_42 = V_2;
int32_t L_43 = ((int32_t)((uint32_t)L_42>>4));
V_2 = L_43;
NullCheck(L_39);
StringBuilder_set_Chars_m71B2B761D6D287A666302FD85E320E1E60F388EA(L_39, L_41, (((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)48)|(int32_t)((int32_t)((int32_t)L_43&(int32_t)((int32_t)15)))))))), /*hidden argument*/NULL);
}
IL_00ef:
{
StringBuilder_t * L_44 = ___sb2;
int32_t L_45 = V_0;
int32_t L_46 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_45, (int32_t)1));
V_0 = L_46;
uint32_t L_47 = V_2;
int32_t L_48 = ((int32_t)((uint32_t)L_47>>4));
V_2 = L_48;
NullCheck(L_44);
StringBuilder_set_Chars_m71B2B761D6D287A666302FD85E320E1E60F388EA(L_44, L_46, (((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)48)|(int32_t)((int32_t)((int32_t)L_48&(int32_t)((int32_t)15)))))))), /*hidden argument*/NULL);
}
IL_0106:
{
StringBuilder_t * L_49 = ___sb2;
int32_t L_50 = V_0;
int32_t L_51 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_50, (int32_t)1));
V_0 = L_51;
uint32_t L_52 = V_2;
int32_t L_53 = ((int32_t)((uint32_t)L_52>>4));
V_2 = L_53;
NullCheck(L_49);
StringBuilder_set_Chars_m71B2B761D6D287A666302FD85E320E1E60F388EA(L_49, L_51, (((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)48)|(int32_t)((int32_t)((int32_t)L_53&(int32_t)((int32_t)15)))))))), /*hidden argument*/NULL);
}
IL_011d:
{
StringBuilder_t * L_54 = ___sb2;
int32_t L_55 = V_0;
int32_t L_56 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_55, (int32_t)1));
V_0 = L_56;
uint32_t L_57 = V_2;
int32_t L_58 = ((int32_t)((uint32_t)L_57>>4));
V_2 = L_58;
NullCheck(L_54);
StringBuilder_set_Chars_m71B2B761D6D287A666302FD85E320E1E60F388EA(L_54, L_56, (((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)48)|(int32_t)((int32_t)((int32_t)L_58&(int32_t)((int32_t)15)))))))), /*hidden argument*/NULL);
}
IL_0134:
{
StringBuilder_t * L_59 = ___sb2;
int32_t L_60 = V_0;
int32_t L_61 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_60, (int32_t)1));
V_0 = L_61;
uint32_t L_62 = V_2;
int32_t L_63 = ((int32_t)((uint32_t)L_62>>4));
V_2 = L_63;
NullCheck(L_59);
StringBuilder_set_Chars_m71B2B761D6D287A666302FD85E320E1E60F388EA(L_59, L_61, (((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)48)|(int32_t)((int32_t)((int32_t)L_63&(int32_t)((int32_t)15)))))))), /*hidden argument*/NULL);
}
IL_014b:
{
StringBuilder_t * L_64 = ___sb2;
int32_t L_65 = V_0;
int32_t L_66 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_65, (int32_t)1));
V_0 = L_66;
uint32_t L_67 = V_2;
int32_t L_68 = ((int32_t)((uint32_t)L_67>>4));
V_2 = L_68;
NullCheck(L_64);
StringBuilder_set_Chars_m71B2B761D6D287A666302FD85E320E1E60F388EA(L_64, L_66, (((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)48)|(int32_t)((int32_t)((int32_t)L_68&(int32_t)((int32_t)15)))))))), /*hidden argument*/NULL);
}
IL_0162:
{
int32_t L_69 = V_1;
int32_t L_70 = ___end1;
if ((!(((uint32_t)L_69) == ((uint32_t)L_70))))
{
goto IL_0167;
}
}
{
return;
}
IL_0167:
{
int32_t L_71 = V_1;
___start0 = L_71;
int32_t L_72 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_72, (int32_t)8));
goto IL_0033;
}
}
// System.Void System.NumberFormatter::Multiply10(System.Int32)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_Multiply10_mCDC2D6E96D4920F5E9DED8BA045339DC26292227 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___count0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___count0;
if ((((int32_t)L_0) <= ((int32_t)0)))
{
goto IL_000c;
}
}
{
int32_t L_1 = __this->get__digitsLen_16();
if (L_1)
{
goto IL_000d;
}
}
IL_000c:
{
return;
}
IL_000d:
{
int32_t L_2 = __this->get__decPointPos_18();
int32_t L_3 = ___count0;
__this->set__decPointPos_18(((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)L_3)));
return;
}
}
// System.Void System.NumberFormatter::Divide10(System.Int32)
extern "C" IL2CPP_METHOD_ATTR void NumberFormatter_Divide10_m19182F6184716E02E9DBA42FCF89EFEBA7AC19B7 (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, int32_t ___count0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___count0;
if ((((int32_t)L_0) <= ((int32_t)0)))
{
goto IL_000c;
}
}
{
int32_t L_1 = __this->get__digitsLen_16();
if (L_1)
{
goto IL_000d;
}
}
IL_000c:
{
return;
}
IL_000d:
{
int32_t L_2 = __this->get__decPointPos_18();
int32_t L_3 = ___count0;
__this->set__decPointPos_18(((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)L_3)));
return;
}
}
// System.NumberFormatter System.NumberFormatter::GetClone()
extern "C" IL2CPP_METHOD_ATTR NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * NumberFormatter_GetClone_m6D13FD559EC8229D8C0F802988E32965EF53119A (NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NumberFormatter_GetClone_m6D13FD559EC8229D8C0F802988E32965EF53119A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = Object_MemberwiseClone_m1DAC4538CD68D4CF4DC5B04E4BBE86D470948B28(__this, /*hidden argument*/NULL);
return ((NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC *)CastclassSealed((RuntimeObject*)L_0, NumberFormatter_t73E68FC7EA017E5EEB4AB92AF2FD959466D1A4BC_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 System.NumberFormatter_CustomInfo::GetActiveSection(System.String,System.BooleanU26,System.Boolean,System.Int32U26,System.Int32U26)
extern "C" IL2CPP_METHOD_ATTR void CustomInfo_GetActiveSection_m3C48CF37C771F5434981309EEBDB47383654E25A (String_t* ___format0, bool* ___positive1, bool ___zero2, int32_t* ___offset3, int32_t* ___length4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CustomInfo_GetActiveSection_m3C48CF37C771F5434981309EEBDB47383654E25A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL;
int32_t V_1 = 0;
int32_t V_2 = 0;
bool V_3 = false;
int32_t V_4 = 0;
Il2CppChar V_5 = 0x0;
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_0 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)3);
V_0 = L_0;
V_1 = 0;
V_2 = 0;
V_3 = (bool)0;
V_4 = 0;
goto IL_0076;
}
IL_0012:
{
String_t* L_1 = ___format0;
int32_t L_2 = V_4;
NullCheck(L_1);
Il2CppChar L_3 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_1, L_2, /*hidden argument*/NULL);
V_5 = L_3;
Il2CppChar L_4 = V_5;
if ((((int32_t)L_4) == ((int32_t)((int32_t)34))))
{
goto IL_0028;
}
}
{
Il2CppChar L_5 = V_5;
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)39)))))
{
goto IL_0041;
}
}
IL_0028:
{
int32_t L_6 = V_4;
if (!L_6)
{
goto IL_003a;
}
}
{
String_t* L_7 = ___format0;
int32_t L_8 = V_4;
NullCheck(L_7);
Il2CppChar L_9 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_7, ((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)1)), /*hidden argument*/NULL);
if ((((int32_t)L_9) == ((int32_t)((int32_t)92))))
{
goto IL_0070;
}
}
IL_003a:
{
bool L_10 = V_3;
V_3 = (bool)((((int32_t)L_10) == ((int32_t)0))? 1 : 0);
goto IL_0070;
}
IL_0041:
{
Il2CppChar L_11 = V_5;
if ((!(((uint32_t)L_11) == ((uint32_t)((int32_t)59)))))
{
goto IL_0070;
}
}
{
bool L_12 = V_3;
if (L_12)
{
goto IL_0070;
}
}
{
int32_t L_13 = V_4;
if (!L_13)
{
goto IL_005c;
}
}
{
String_t* L_14 = ___format0;
int32_t L_15 = V_4;
NullCheck(L_14);
Il2CppChar L_16 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_14, ((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)1)), /*hidden argument*/NULL);
if ((((int32_t)L_16) == ((int32_t)((int32_t)92))))
{
goto IL_0070;
}
}
IL_005c:
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_17 = V_0;
int32_t L_18 = V_1;
int32_t L_19 = L_18;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1));
int32_t L_20 = V_4;
int32_t L_21 = V_2;
NullCheck(L_17);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(L_19), (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_20, (int32_t)L_21)));
int32_t L_22 = V_4;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)1));
int32_t L_23 = V_1;
if ((((int32_t)L_23) == ((int32_t)3)))
{
goto IL_0080;
}
}
IL_0070:
{
int32_t L_24 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1));
}
IL_0076:
{
int32_t L_25 = V_4;
String_t* L_26 = ___format0;
NullCheck(L_26);
int32_t L_27 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_26, /*hidden argument*/NULL);
if ((((int32_t)L_25) < ((int32_t)L_27)))
{
goto IL_0012;
}
}
IL_0080:
{
int32_t L_28 = V_1;
if (L_28)
{
goto IL_0090;
}
}
{
int32_t* L_29 = ___offset3;
*((int32_t*)L_29) = (int32_t)0;
int32_t* L_30 = ___length4;
String_t* L_31 = ___format0;
NullCheck(L_31);
int32_t L_32 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_31, /*hidden argument*/NULL);
*((int32_t*)L_30) = (int32_t)L_32;
return;
}
IL_0090:
{
int32_t L_33 = V_1;
if ((!(((uint32_t)L_33) == ((uint32_t)1))))
{
goto IL_00d2;
}
}
{
bool* L_34 = ___positive1;
int32_t L_35 = *((uint8_t*)L_34);
bool L_36 = ___zero2;
if (!((int32_t)((int32_t)L_35|(int32_t)L_36)))
{
goto IL_00a4;
}
}
{
int32_t* L_37 = ___offset3;
*((int32_t*)L_37) = (int32_t)0;
int32_t* L_38 = ___length4;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_39 = V_0;
NullCheck(L_39);
int32_t L_40 = 0;
int32_t L_41 = (L_39)->GetAt(static_cast<il2cpp_array_size_t>(L_40));
*((int32_t*)L_38) = (int32_t)L_41;
return;
}
IL_00a4:
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_42 = V_0;
NullCheck(L_42);
int32_t L_43 = 0;
int32_t L_44 = (L_42)->GetAt(static_cast<il2cpp_array_size_t>(L_43));
String_t* L_45 = ___format0;
NullCheck(L_45);
int32_t L_46 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_45, /*hidden argument*/NULL);
if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)1))) >= ((int32_t)L_46)))
{
goto IL_00c8;
}
}
{
bool* L_47 = ___positive1;
*((int8_t*)L_47) = (int8_t)1;
int32_t* L_48 = ___offset3;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_49 = V_0;
NullCheck(L_49);
int32_t L_50 = 0;
int32_t L_51 = (L_49)->GetAt(static_cast<il2cpp_array_size_t>(L_50));
*((int32_t*)L_48) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_51, (int32_t)1));
int32_t* L_52 = ___length4;
String_t* L_53 = ___format0;
NullCheck(L_53);
int32_t L_54 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_53, /*hidden argument*/NULL);
int32_t* L_55 = ___offset3;
int32_t L_56 = *((int32_t*)L_55);
*((int32_t*)L_52) = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_54, (int32_t)L_56));
return;
}
IL_00c8:
{
int32_t* L_57 = ___offset3;
*((int32_t*)L_57) = (int32_t)0;
int32_t* L_58 = ___length4;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_59 = V_0;
NullCheck(L_59);
int32_t L_60 = 0;
int32_t L_61 = (L_59)->GetAt(static_cast<il2cpp_array_size_t>(L_60));
*((int32_t*)L_58) = (int32_t)L_61;
return;
}
IL_00d2:
{
bool L_62 = ___zero2;
if (!L_62)
{
goto IL_0126;
}
}
{
int32_t L_63 = V_1;
if ((!(((uint32_t)L_63) == ((uint32_t)2))))
{
goto IL_0105;
}
}
{
String_t* L_64 = ___format0;
NullCheck(L_64);
int32_t L_65 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_64, /*hidden argument*/NULL);
int32_t L_66 = V_2;
if (((int32_t)il2cpp_codegen_subtract((int32_t)L_65, (int32_t)L_66)))
{
goto IL_00ed;
}
}
{
int32_t* L_67 = ___offset3;
*((int32_t*)L_67) = (int32_t)0;
int32_t* L_68 = ___length4;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_69 = V_0;
NullCheck(L_69);
int32_t L_70 = 0;
int32_t L_71 = (L_69)->GetAt(static_cast<il2cpp_array_size_t>(L_70));
*((int32_t*)L_68) = (int32_t)L_71;
return;
}
IL_00ed:
{
int32_t* L_72 = ___offset3;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_73 = V_0;
NullCheck(L_73);
int32_t L_74 = 0;
int32_t L_75 = (L_73)->GetAt(static_cast<il2cpp_array_size_t>(L_74));
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_76 = V_0;
NullCheck(L_76);
int32_t L_77 = 1;
int32_t L_78 = (L_76)->GetAt(static_cast<il2cpp_array_size_t>(L_77));
*((int32_t*)L_72) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_75, (int32_t)L_78)), (int32_t)2));
int32_t* L_79 = ___length4;
String_t* L_80 = ___format0;
NullCheck(L_80);
int32_t L_81 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_80, /*hidden argument*/NULL);
int32_t* L_82 = ___offset3;
int32_t L_83 = *((int32_t*)L_82);
*((int32_t*)L_79) = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_81, (int32_t)L_83));
return;
}
IL_0105:
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_84 = V_0;
NullCheck(L_84);
int32_t L_85 = 2;
int32_t L_86 = (L_84)->GetAt(static_cast<il2cpp_array_size_t>(L_85));
if (L_86)
{
goto IL_0114;
}
}
{
int32_t* L_87 = ___offset3;
*((int32_t*)L_87) = (int32_t)0;
int32_t* L_88 = ___length4;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_89 = V_0;
NullCheck(L_89);
int32_t L_90 = 0;
int32_t L_91 = (L_89)->GetAt(static_cast<il2cpp_array_size_t>(L_90));
*((int32_t*)L_88) = (int32_t)L_91;
return;
}
IL_0114:
{
int32_t* L_92 = ___offset3;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_93 = V_0;
NullCheck(L_93);
int32_t L_94 = 0;
int32_t L_95 = (L_93)->GetAt(static_cast<il2cpp_array_size_t>(L_94));
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_96 = V_0;
NullCheck(L_96);
int32_t L_97 = 1;
int32_t L_98 = (L_96)->GetAt(static_cast<il2cpp_array_size_t>(L_97));
*((int32_t*)L_92) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_95, (int32_t)L_98)), (int32_t)2));
int32_t* L_99 = ___length4;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_100 = V_0;
NullCheck(L_100);
int32_t L_101 = 2;
int32_t L_102 = (L_100)->GetAt(static_cast<il2cpp_array_size_t>(L_101));
*((int32_t*)L_99) = (int32_t)L_102;
return;
}
IL_0126:
{
bool* L_103 = ___positive1;
int32_t L_104 = *((uint8_t*)L_103);
if (!L_104)
{
goto IL_0134;
}
}
{
int32_t* L_105 = ___offset3;
*((int32_t*)L_105) = (int32_t)0;
int32_t* L_106 = ___length4;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_107 = V_0;
NullCheck(L_107);
int32_t L_108 = 0;
int32_t L_109 = (L_107)->GetAt(static_cast<il2cpp_array_size_t>(L_108));
*((int32_t*)L_106) = (int32_t)L_109;
return;
}
IL_0134:
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_110 = V_0;
NullCheck(L_110);
int32_t L_111 = 1;
int32_t L_112 = (L_110)->GetAt(static_cast<il2cpp_array_size_t>(L_111));
if ((((int32_t)L_112) <= ((int32_t)0)))
{
goto IL_014b;
}
}
{
bool* L_113 = ___positive1;
*((int8_t*)L_113) = (int8_t)1;
int32_t* L_114 = ___offset3;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_115 = V_0;
NullCheck(L_115);
int32_t L_116 = 0;
int32_t L_117 = (L_115)->GetAt(static_cast<il2cpp_array_size_t>(L_116));
*((int32_t*)L_114) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_117, (int32_t)1));
int32_t* L_118 = ___length4;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_119 = V_0;
NullCheck(L_119);
int32_t L_120 = 1;
int32_t L_121 = (L_119)->GetAt(static_cast<il2cpp_array_size_t>(L_120));
*((int32_t*)L_118) = (int32_t)L_121;
return;
}
IL_014b:
{
int32_t* L_122 = ___offset3;
*((int32_t*)L_122) = (int32_t)0;
int32_t* L_123 = ___length4;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_124 = V_0;
NullCheck(L_124);
int32_t L_125 = 0;
int32_t L_126 = (L_124)->GetAt(static_cast<il2cpp_array_size_t>(L_125));
*((int32_t*)L_123) = (int32_t)L_126;
return;
}
}
// System.NumberFormatter_CustomInfo System.NumberFormatter_CustomInfo::Parse(System.String,System.Int32,System.Int32,System.Globalization.NumberFormatInfo)
extern "C" IL2CPP_METHOD_ATTR CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * CustomInfo_Parse_m221FEE3DBA88FC585E7EC4F51CE590B9BE0E334A (String_t* ___format0, int32_t ___offset1, int32_t ___length2, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CustomInfo_Parse_m221FEE3DBA88FC585E7EC4F51CE590B9BE0E334A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Il2CppChar V_0 = 0x0;
bool V_1 = false;
bool V_2 = false;
bool V_3 = false;
bool V_4 = false;
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * V_5 = NULL;
int32_t V_6 = 0;
int32_t V_7 = 0;
Il2CppChar V_8 = 0x0;
Il2CppChar V_9 = 0x0;
{
V_0 = 0;
V_1 = (bool)1;
V_2 = (bool)0;
V_3 = (bool)0;
V_4 = (bool)1;
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_0 = (CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 *)il2cpp_codegen_object_new(CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1_il2cpp_TypeInfo_var);
CustomInfo__ctor_mCA9215FA4EE11DB2219772F9F2A54F0E262949AF(L_0, /*hidden argument*/NULL);
V_5 = L_0;
V_6 = 0;
int32_t L_1 = ___offset1;
V_7 = L_1;
goto IL_0298;
}
IL_001d:
{
String_t* L_2 = ___format0;
int32_t L_3 = V_7;
NullCheck(L_2);
Il2CppChar L_4 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_2, L_3, /*hidden argument*/NULL);
V_8 = L_4;
Il2CppChar L_5 = V_8;
Il2CppChar L_6 = V_0;
if ((!(((uint32_t)L_5) == ((uint32_t)L_6))))
{
goto IL_0037;
}
}
{
Il2CppChar L_7 = V_8;
if (!L_7)
{
goto IL_0037;
}
}
{
V_0 = 0;
goto IL_0292;
}
IL_0037:
{
Il2CppChar L_8 = V_0;
if (L_8)
{
goto IL_0292;
}
}
{
bool L_9 = V_3;
if (!L_9)
{
goto IL_006d;
}
}
{
Il2CppChar L_10 = V_8;
if (!L_10)
{
goto IL_006d;
}
}
{
Il2CppChar L_11 = V_8;
if ((((int32_t)L_11) == ((int32_t)((int32_t)48))))
{
goto IL_006d;
}
}
{
Il2CppChar L_12 = V_8;
if ((((int32_t)L_12) == ((int32_t)((int32_t)35))))
{
goto IL_006d;
}
}
{
V_3 = (bool)0;
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_13 = V_5;
NullCheck(L_13);
int32_t L_14 = L_13->get_DecimalPointPos_2();
V_1 = (bool)((((int32_t)L_14) < ((int32_t)0))? 1 : 0);
bool L_15 = V_1;
V_2 = (bool)((((int32_t)L_15) == ((int32_t)0))? 1 : 0);
int32_t L_16 = V_7;
V_7 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)1));
goto IL_0292;
}
IL_006d:
{
Il2CppChar L_17 = V_8;
if ((!(((uint32_t)L_17) <= ((uint32_t)((int32_t)69)))))
{
goto IL_00c1;
}
}
{
Il2CppChar L_18 = V_8;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)((int32_t)34))))
{
case 0:
{
goto IL_00ec;
}
case 1:
{
goto IL_0103;
}
case 2:
{
goto IL_0292;
}
case 3:
{
goto IL_025d;
}
case 4:
{
goto IL_0292;
}
case 5:
{
goto IL_00ec;
}
}
}
{
Il2CppChar L_19 = V_8;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)((int32_t)44))))
{
case 0:
{
goto IL_027f;
}
case 1:
{
goto IL_0292;
}
case 2:
{
goto IL_0242;
}
case 3:
{
goto IL_0292;
}
case 4:
{
goto IL_0140;
}
}
}
{
Il2CppChar L_20 = V_8;
if ((((int32_t)L_20) == ((int32_t)((int32_t)69))))
{
goto IL_01cc;
}
}
{
goto IL_0292;
}
IL_00c1:
{
Il2CppChar L_21 = V_8;
if ((((int32_t)L_21) == ((int32_t)((int32_t)92))))
{
goto IL_00e1;
}
}
{
Il2CppChar L_22 = V_8;
if ((((int32_t)L_22) == ((int32_t)((int32_t)101))))
{
goto IL_01cc;
}
}
{
Il2CppChar L_23 = V_8;
if ((((int32_t)L_23) == ((int32_t)((int32_t)8240))))
{
goto IL_026e;
}
}
{
goto IL_0292;
}
IL_00e1:
{
int32_t L_24 = V_7;
V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1));
goto IL_0292;
}
IL_00ec:
{
Il2CppChar L_25 = V_8;
if ((((int32_t)L_25) == ((int32_t)((int32_t)34))))
{
goto IL_00fb;
}
}
{
Il2CppChar L_26 = V_8;
if ((!(((uint32_t)L_26) == ((uint32_t)((int32_t)39)))))
{
goto IL_0292;
}
}
IL_00fb:
{
Il2CppChar L_27 = V_8;
V_0 = L_27;
goto IL_0292;
}
IL_0103:
{
bool L_28 = V_4;
bool L_29 = V_1;
if (!((int32_t)((int32_t)L_28&(int32_t)L_29)))
{
goto IL_011a;
}
}
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_30 = V_5;
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_31 = L_30;
NullCheck(L_31);
int32_t L_32 = L_31->get_IntegerHeadSharpDigits_5();
NullCheck(L_31);
L_31->set_IntegerHeadSharpDigits_5(((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)1)));
goto IL_0140;
}
IL_011a:
{
bool L_33 = V_2;
if (!L_33)
{
goto IL_012e;
}
}
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_34 = V_5;
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_35 = L_34;
NullCheck(L_35);
int32_t L_36 = L_35->get_DecimalTailSharpDigits_3();
NullCheck(L_35);
L_35->set_DecimalTailSharpDigits_3(((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)1)));
goto IL_0140;
}
IL_012e:
{
bool L_37 = V_3;
if (!L_37)
{
goto IL_0140;
}
}
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_38 = V_5;
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_39 = L_38;
NullCheck(L_39);
int32_t L_40 = L_39->get_ExponentTailSharpDigits_9();
NullCheck(L_39);
L_39->set_ExponentTailSharpDigits_9(((int32_t)il2cpp_codegen_add((int32_t)L_40, (int32_t)1)));
}
IL_0140:
{
Il2CppChar L_41 = V_8;
if ((((int32_t)L_41) == ((int32_t)((int32_t)35))))
{
goto IL_0161;
}
}
{
V_4 = (bool)0;
bool L_42 = V_2;
if (!L_42)
{
goto IL_0156;
}
}
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_43 = V_5;
NullCheck(L_43);
L_43->set_DecimalTailSharpDigits_3(0);
goto IL_0161;
}
IL_0156:
{
bool L_44 = V_3;
if (!L_44)
{
goto IL_0161;
}
}
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_45 = V_5;
NullCheck(L_45);
L_45->set_ExponentTailSharpDigits_9(0);
}
IL_0161:
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_46 = V_5;
NullCheck(L_46);
int32_t L_47 = L_46->get_IntegerHeadPos_6();
if ((!(((uint32_t)L_47) == ((uint32_t)(-1)))))
{
goto IL_0174;
}
}
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_48 = V_5;
int32_t L_49 = V_7;
NullCheck(L_48);
L_48->set_IntegerHeadPos_6(L_49);
}
IL_0174:
{
bool L_50 = V_1;
if (!L_50)
{
goto IL_019b;
}
}
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_51 = V_5;
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_52 = L_51;
NullCheck(L_52);
int32_t L_53 = L_52->get_IntegerDigits_4();
NullCheck(L_52);
L_52->set_IntegerDigits_4(((int32_t)il2cpp_codegen_add((int32_t)L_53, (int32_t)1)));
int32_t L_54 = V_6;
if ((((int32_t)L_54) <= ((int32_t)0)))
{
goto IL_0193;
}
}
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_55 = V_5;
NullCheck(L_55);
L_55->set_UseGroup_0((bool)1);
}
IL_0193:
{
V_6 = 0;
goto IL_0292;
}
IL_019b:
{
bool L_56 = V_2;
if (!L_56)
{
goto IL_01b2;
}
}
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_57 = V_5;
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_58 = L_57;
NullCheck(L_58);
int32_t L_59 = L_58->get_DecimalDigits_1();
NullCheck(L_58);
L_58->set_DecimalDigits_1(((int32_t)il2cpp_codegen_add((int32_t)L_59, (int32_t)1)));
goto IL_0292;
}
IL_01b2:
{
bool L_60 = V_3;
if (!L_60)
{
goto IL_0292;
}
}
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_61 = V_5;
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_62 = L_61;
NullCheck(L_62);
int32_t L_63 = L_62->get_ExponentDigits_8();
NullCheck(L_62);
L_62->set_ExponentDigits_8(((int32_t)il2cpp_codegen_add((int32_t)L_63, (int32_t)1)));
goto IL_0292;
}
IL_01cc:
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_64 = V_5;
NullCheck(L_64);
bool L_65 = L_64->get_UseExponent_7();
if (L_65)
{
goto IL_0292;
}
}
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_66 = V_5;
NullCheck(L_66);
L_66->set_UseExponent_7((bool)1);
V_1 = (bool)0;
V_2 = (bool)0;
V_3 = (bool)1;
int32_t L_67 = V_7;
int32_t L_68 = ___offset1;
int32_t L_69 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_67, (int32_t)1)), (int32_t)L_68))) >= ((int32_t)L_69)))
{
goto IL_0292;
}
}
{
String_t* L_70 = ___format0;
int32_t L_71 = V_7;
NullCheck(L_70);
Il2CppChar L_72 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_70, ((int32_t)il2cpp_codegen_add((int32_t)L_71, (int32_t)1)), /*hidden argument*/NULL);
V_9 = L_72;
Il2CppChar L_73 = V_9;
if ((!(((uint32_t)L_73) == ((uint32_t)((int32_t)43)))))
{
goto IL_020c;
}
}
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_74 = V_5;
NullCheck(L_74);
L_74->set_ExponentNegativeSignOnly_10((bool)0);
}
IL_020c:
{
Il2CppChar L_75 = V_9;
if ((((int32_t)L_75) == ((int32_t)((int32_t)43))))
{
goto IL_0218;
}
}
{
Il2CppChar L_76 = V_9;
if ((!(((uint32_t)L_76) == ((uint32_t)((int32_t)45)))))
{
goto IL_0220;
}
}
IL_0218:
{
int32_t L_77 = V_7;
V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_77, (int32_t)1));
goto IL_0292;
}
IL_0220:
{
Il2CppChar L_78 = V_9;
if ((((int32_t)L_78) == ((int32_t)((int32_t)48))))
{
goto IL_0292;
}
}
{
Il2CppChar L_79 = V_9;
if ((((int32_t)L_79) == ((int32_t)((int32_t)35))))
{
goto IL_0292;
}
}
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_80 = V_5;
NullCheck(L_80);
L_80->set_UseExponent_7((bool)0);
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_81 = V_5;
NullCheck(L_81);
int32_t L_82 = L_81->get_DecimalPointPos_2();
if ((((int32_t)L_82) >= ((int32_t)0)))
{
goto IL_0292;
}
}
{
V_1 = (bool)1;
goto IL_0292;
}
IL_0242:
{
V_1 = (bool)0;
V_2 = (bool)1;
V_3 = (bool)0;
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_83 = V_5;
NullCheck(L_83);
int32_t L_84 = L_83->get_DecimalPointPos_2();
if ((!(((uint32_t)L_84) == ((uint32_t)(-1)))))
{
goto IL_0292;
}
}
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_85 = V_5;
int32_t L_86 = V_7;
NullCheck(L_85);
L_85->set_DecimalPointPos_2(L_86);
goto IL_0292;
}
IL_025d:
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_87 = V_5;
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_88 = L_87;
NullCheck(L_88);
int32_t L_89 = L_88->get_Percents_12();
NullCheck(L_88);
L_88->set_Percents_12(((int32_t)il2cpp_codegen_add((int32_t)L_89, (int32_t)1)));
goto IL_0292;
}
IL_026e:
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_90 = V_5;
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_91 = L_90;
NullCheck(L_91);
int32_t L_92 = L_91->get_Permilles_13();
NullCheck(L_91);
L_91->set_Permilles_13(((int32_t)il2cpp_codegen_add((int32_t)L_92, (int32_t)1)));
goto IL_0292;
}
IL_027f:
{
bool L_93 = V_1;
if (!L_93)
{
goto IL_0292;
}
}
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_94 = V_5;
NullCheck(L_94);
int32_t L_95 = L_94->get_IntegerDigits_4();
if ((((int32_t)L_95) <= ((int32_t)0)))
{
goto IL_0292;
}
}
{
int32_t L_96 = V_6;
V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_96, (int32_t)1));
}
IL_0292:
{
int32_t L_97 = V_7;
V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_97, (int32_t)1));
}
IL_0298:
{
int32_t L_98 = V_7;
int32_t L_99 = ___offset1;
int32_t L_100 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_98, (int32_t)L_99))) < ((int32_t)L_100)))
{
goto IL_001d;
}
}
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_101 = V_5;
NullCheck(L_101);
int32_t L_102 = L_101->get_ExponentDigits_8();
if (L_102)
{
goto IL_02b5;
}
}
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_103 = V_5;
NullCheck(L_103);
L_103->set_UseExponent_7((bool)0);
goto IL_02bd;
}
IL_02b5:
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_104 = V_5;
NullCheck(L_104);
L_104->set_IntegerHeadSharpDigits_5(0);
}
IL_02bd:
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_105 = V_5;
NullCheck(L_105);
int32_t L_106 = L_105->get_DecimalDigits_1();
if (L_106)
{
goto IL_02ce;
}
}
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_107 = V_5;
NullCheck(L_107);
L_107->set_DecimalPointPos_2((-1));
}
IL_02ce:
{
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_108 = V_5;
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_109 = L_108;
NullCheck(L_109);
int32_t L_110 = L_109->get_DividePlaces_11();
int32_t L_111 = V_6;
NullCheck(L_109);
L_109->set_DividePlaces_11(((int32_t)il2cpp_codegen_add((int32_t)L_110, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_111, (int32_t)3)))));
CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * L_112 = V_5;
return L_112;
}
}
// System.String System.NumberFormatter_CustomInfo::Format(System.String,System.Int32,System.Int32,System.Globalization.NumberFormatInfo,System.Boolean,System.Text.StringBuilder,System.Text.StringBuilder,System.Text.StringBuilder)
extern "C" IL2CPP_METHOD_ATTR String_t* CustomInfo_Format_m1A29FF4C0EF0861E7E2564D8548EEA6916D91252 (CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * __this, String_t* ___format0, int32_t ___offset1, int32_t ___length2, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___nfi3, bool ___positive4, StringBuilder_t * ___sb_int5, StringBuilder_t * ___sb_dec6, StringBuilder_t * ___sb_exp7, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CustomInfo_Format_m1A29FF4C0EF0861E7E2564D8548EEA6916D91252_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
Il2CppChar V_1 = 0x0;
bool V_2 = false;
bool V_3 = false;
int32_t V_4 = 0;
int32_t V_5 = 0;
int32_t V_6 = 0;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_7 = NULL;
String_t* V_8 = NULL;
int32_t V_9 = 0;
int32_t V_10 = 0;
int32_t V_11 = 0;
int32_t V_12 = 0;
int32_t V_13 = 0;
int32_t V_14 = 0;
int32_t V_15 = 0;
int32_t V_16 = 0;
Il2CppChar V_17 = 0x0;
bool V_18 = false;
bool V_19 = false;
int32_t V_20 = 0;
int32_t G_B10_0 = 0;
int32_t G_B18_0 = 0;
{
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_0, /*hidden argument*/NULL);
V_0 = L_0;
V_1 = 0;
V_2 = (bool)1;
V_3 = (bool)0;
V_4 = 0;
V_5 = 0;
V_6 = 0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_1 = ___nfi3;
NullCheck(L_1);
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = NumberFormatInfo_get_NumberGroupSizes_m565821165B43AA202D8F644E4403A3181188965A(L_1, /*hidden argument*/NULL);
V_7 = L_2;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_3 = ___nfi3;
NullCheck(L_3);
String_t* L_4 = NumberFormatInfo_get_NumberGroupSeparator_mD995708E10C4CC55A19E7126E7A6C256A2DD1A35(L_3, /*hidden argument*/NULL);
V_8 = L_4;
V_9 = 0;
V_10 = 0;
V_11 = 0;
V_12 = 0;
V_13 = 0;
bool L_5 = __this->get_UseGroup_0();
if (!L_5)
{
goto IL_00e5;
}
}
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_6 = V_7;
NullCheck(L_6);
if (!(((RuntimeArray *)L_6)->max_length))
{
goto IL_00e5;
}
}
{
StringBuilder_t * L_7 = ___sb_int5;
NullCheck(L_7);
int32_t L_8 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_7, /*hidden argument*/NULL);
V_9 = L_8;
V_15 = 0;
goto IL_0071;
}
IL_0057:
{
int32_t L_9 = V_10;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_10 = V_7;
int32_t L_11 = V_15;
NullCheck(L_10);
int32_t L_12 = L_11;
int32_t L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
V_10 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)L_13));
int32_t L_14 = V_10;
int32_t L_15 = V_9;
if ((((int32_t)L_14) > ((int32_t)L_15)))
{
goto IL_006b;
}
}
{
int32_t L_16 = V_15;
V_11 = L_16;
}
IL_006b:
{
int32_t L_17 = V_15;
V_15 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1));
}
IL_0071:
{
int32_t L_18 = V_15;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_19 = V_7;
NullCheck(L_19);
if ((((int32_t)L_18) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_19)->max_length)))))))
{
goto IL_0057;
}
}
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_20 = V_7;
int32_t L_21 = V_11;
NullCheck(L_20);
int32_t L_22 = L_21;
int32_t L_23 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_22));
V_13 = L_23;
int32_t L_24 = V_9;
int32_t L_25 = V_10;
if ((((int32_t)L_24) > ((int32_t)L_25)))
{
goto IL_0089;
}
}
{
G_B10_0 = 0;
goto IL_008e;
}
IL_0089:
{
int32_t L_26 = V_9;
int32_t L_27 = V_10;
G_B10_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_26, (int32_t)L_27));
}
IL_008e:
{
V_14 = G_B10_0;
int32_t L_28 = V_13;
if (L_28)
{
goto IL_00b8;
}
}
{
goto IL_009c;
}
IL_0096:
{
int32_t L_29 = V_11;
V_11 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_29, (int32_t)1));
}
IL_009c:
{
int32_t L_30 = V_11;
if ((((int32_t)L_30) < ((int32_t)0)))
{
goto IL_00a8;
}
}
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_31 = V_7;
int32_t L_32 = V_11;
NullCheck(L_31);
int32_t L_33 = L_32;
int32_t L_34 = (L_31)->GetAt(static_cast<il2cpp_array_size_t>(L_33));
if (!L_34)
{
goto IL_0096;
}
}
IL_00a8:
{
int32_t L_35 = V_14;
if ((((int32_t)L_35) > ((int32_t)0)))
{
goto IL_00b4;
}
}
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_36 = V_7;
int32_t L_37 = V_11;
NullCheck(L_36);
int32_t L_38 = L_37;
int32_t L_39 = (L_36)->GetAt(static_cast<il2cpp_array_size_t>(L_38));
G_B18_0 = L_39;
goto IL_00b6;
}
IL_00b4:
{
int32_t L_40 = V_14;
G_B18_0 = L_40;
}
IL_00b6:
{
V_13 = G_B18_0;
}
IL_00b8:
{
int32_t L_41 = V_14;
if (L_41)
{
goto IL_00c2;
}
}
{
int32_t L_42 = V_13;
V_12 = L_42;
goto IL_00ec;
}
IL_00c2:
{
int32_t L_43 = V_11;
int32_t L_44 = V_14;
int32_t L_45 = V_13;
V_11 = ((int32_t)il2cpp_codegen_add((int32_t)L_43, (int32_t)((int32_t)((int32_t)L_44/(int32_t)L_45))));
int32_t L_46 = V_14;
int32_t L_47 = V_13;
V_12 = ((int32_t)((int32_t)L_46%(int32_t)L_47));
int32_t L_48 = V_12;
if (L_48)
{
goto IL_00dd;
}
}
{
int32_t L_49 = V_13;
V_12 = L_49;
goto IL_00ec;
}
IL_00dd:
{
int32_t L_50 = V_11;
V_11 = ((int32_t)il2cpp_codegen_add((int32_t)L_50, (int32_t)1));
goto IL_00ec;
}
IL_00e5:
{
__this->set_UseGroup_0((bool)0);
}
IL_00ec:
{
int32_t L_51 = ___offset1;
V_16 = L_51;
goto IL_03d2;
}
IL_00f4:
{
String_t* L_52 = ___format0;
int32_t L_53 = V_16;
NullCheck(L_52);
Il2CppChar L_54 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_52, L_53, /*hidden argument*/NULL);
V_17 = L_54;
Il2CppChar L_55 = V_17;
Il2CppChar L_56 = V_1;
if ((!(((uint32_t)L_55) == ((uint32_t)L_56))))
{
goto IL_010e;
}
}
{
Il2CppChar L_57 = V_17;
if (!L_57)
{
goto IL_010e;
}
}
{
V_1 = 0;
goto IL_03cc;
}
IL_010e:
{
Il2CppChar L_58 = V_1;
if (!L_58)
{
goto IL_011f;
}
}
{
StringBuilder_t * L_59 = V_0;
Il2CppChar L_60 = V_17;
NullCheck(L_59);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_59, L_60, /*hidden argument*/NULL);
goto IL_03cc;
}
IL_011f:
{
Il2CppChar L_61 = V_17;
if ((!(((uint32_t)L_61) <= ((uint32_t)((int32_t)69)))))
{
goto IL_0173;
}
}
{
Il2CppChar L_62 = V_17;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_62, (int32_t)((int32_t)34))))
{
case 0:
{
goto IL_01b7;
}
case 1:
{
goto IL_01ce;
}
case 2:
{
goto IL_03c3;
}
case 3:
{
goto IL_03a3;
}
case 4:
{
goto IL_03c3;
}
case 5:
{
goto IL_01b7;
}
}
}
{
Il2CppChar L_63 = V_17;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_63, (int32_t)((int32_t)44))))
{
case 0:
{
goto IL_03cc;
}
case 1:
{
goto IL_03c3;
}
case 2:
{
goto IL_0350;
}
case 3:
{
goto IL_03c3;
}
case 4:
{
goto IL_01ce;
}
}
}
{
Il2CppChar L_64 = V_17;
if ((((int32_t)L_64) == ((int32_t)((int32_t)69))))
{
goto IL_02a3;
}
}
{
goto IL_03c3;
}
IL_0173:
{
Il2CppChar L_65 = V_17;
if ((((int32_t)L_65) == ((int32_t)((int32_t)92))))
{
goto IL_0193;
}
}
{
Il2CppChar L_66 = V_17;
if ((((int32_t)L_66) == ((int32_t)((int32_t)101))))
{
goto IL_02a3;
}
}
{
Il2CppChar L_67 = V_17;
if ((((int32_t)L_67) == ((int32_t)((int32_t)8240))))
{
goto IL_03b3;
}
}
{
goto IL_03c3;
}
IL_0193:
{
int32_t L_68 = V_16;
V_16 = ((int32_t)il2cpp_codegen_add((int32_t)L_68, (int32_t)1));
int32_t L_69 = V_16;
int32_t L_70 = ___offset1;
int32_t L_71 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_69, (int32_t)L_70))) >= ((int32_t)L_71)))
{
goto IL_03cc;
}
}
{
StringBuilder_t * L_72 = V_0;
String_t* L_73 = ___format0;
int32_t L_74 = V_16;
NullCheck(L_73);
Il2CppChar L_75 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_73, L_74, /*hidden argument*/NULL);
NullCheck(L_72);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_72, L_75, /*hidden argument*/NULL);
goto IL_03cc;
}
IL_01b7:
{
Il2CppChar L_76 = V_17;
if ((((int32_t)L_76) == ((int32_t)((int32_t)34))))
{
goto IL_01c6;
}
}
{
Il2CppChar L_77 = V_17;
if ((!(((uint32_t)L_77) == ((uint32_t)((int32_t)39)))))
{
goto IL_03cc;
}
}
IL_01c6:
{
Il2CppChar L_78 = V_17;
V_1 = L_78;
goto IL_03cc;
}
IL_01ce:
{
bool L_79 = V_2;
if (!L_79)
{
goto IL_026a;
}
}
{
int32_t L_80 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_80, (int32_t)1));
int32_t L_81 = __this->get_IntegerDigits_4();
int32_t L_82 = V_4;
StringBuilder_t * L_83 = ___sb_int5;
NullCheck(L_83);
int32_t L_84 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_83, /*hidden argument*/NULL);
int32_t L_85 = V_5;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_81, (int32_t)L_82))) < ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_84, (int32_t)L_85)))))
{
goto IL_0250;
}
}
{
Il2CppChar L_86 = V_17;
if ((!(((uint32_t)L_86) == ((uint32_t)((int32_t)48)))))
{
goto IL_03cc;
}
}
{
goto IL_0250;
}
IL_01fa:
{
StringBuilder_t * L_87 = V_0;
StringBuilder_t * L_88 = ___sb_int5;
int32_t L_89 = V_5;
int32_t L_90 = L_89;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_90, (int32_t)1));
NullCheck(L_88);
Il2CppChar L_91 = StringBuilder_get_Chars_mC069533DCA4FB798DFA069469EBABA85DCC183C6(L_88, L_90, /*hidden argument*/NULL);
NullCheck(L_87);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_87, L_91, /*hidden argument*/NULL);
bool L_92 = __this->get_UseGroup_0();
if (!L_92)
{
goto IL_0250;
}
}
{
int32_t L_93 = V_9;
int32_t L_94 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_93, (int32_t)1));
V_9 = L_94;
if ((((int32_t)L_94) <= ((int32_t)0)))
{
goto IL_0250;
}
}
{
int32_t L_95 = V_12;
int32_t L_96 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_95, (int32_t)1));
V_12 = L_96;
if (L_96)
{
goto IL_0250;
}
}
{
StringBuilder_t * L_97 = V_0;
String_t* L_98 = V_8;
NullCheck(L_97);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_97, L_98, /*hidden argument*/NULL);
int32_t L_99 = V_11;
int32_t L_100 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_99, (int32_t)1));
V_11 = L_100;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_101 = V_7;
NullCheck(L_101);
if ((((int32_t)L_100) >= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_101)->max_length)))))))
{
goto IL_024c;
}
}
{
int32_t L_102 = V_11;
if ((((int32_t)L_102) < ((int32_t)0)))
{
goto IL_024c;
}
}
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_103 = V_7;
int32_t L_104 = V_11;
NullCheck(L_103);
int32_t L_105 = L_104;
int32_t L_106 = (L_103)->GetAt(static_cast<il2cpp_array_size_t>(L_105));
V_13 = L_106;
}
IL_024c:
{
int32_t L_107 = V_13;
V_12 = L_107;
}
IL_0250:
{
int32_t L_108 = __this->get_IntegerDigits_4();
int32_t L_109 = V_4;
int32_t L_110 = V_5;
StringBuilder_t * L_111 = ___sb_int5;
NullCheck(L_111);
int32_t L_112 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_111, /*hidden argument*/NULL);
if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_108, (int32_t)L_109)), (int32_t)L_110))) < ((int32_t)L_112)))
{
goto IL_01fa;
}
}
{
goto IL_03cc;
}
IL_026a:
{
bool L_113 = V_3;
if (!L_113)
{
goto IL_0295;
}
}
{
int32_t L_114 = V_6;
StringBuilder_t * L_115 = ___sb_dec6;
NullCheck(L_115);
int32_t L_116 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_115, /*hidden argument*/NULL);
if ((((int32_t)L_114) >= ((int32_t)L_116)))
{
goto IL_03cc;
}
}
{
StringBuilder_t * L_117 = V_0;
StringBuilder_t * L_118 = ___sb_dec6;
int32_t L_119 = V_6;
int32_t L_120 = L_119;
V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_120, (int32_t)1));
NullCheck(L_118);
Il2CppChar L_121 = StringBuilder_get_Chars_mC069533DCA4FB798DFA069469EBABA85DCC183C6(L_118, L_120, /*hidden argument*/NULL);
NullCheck(L_117);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_117, L_121, /*hidden argument*/NULL);
goto IL_03cc;
}
IL_0295:
{
StringBuilder_t * L_122 = V_0;
Il2CppChar L_123 = V_17;
NullCheck(L_122);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_122, L_123, /*hidden argument*/NULL);
goto IL_03cc;
}
IL_02a3:
{
StringBuilder_t * L_124 = ___sb_exp7;
if (!L_124)
{
goto IL_02af;
}
}
{
bool L_125 = __this->get_UseExponent_7();
if (L_125)
{
goto IL_02bd;
}
}
IL_02af:
{
StringBuilder_t * L_126 = V_0;
Il2CppChar L_127 = V_17;
NullCheck(L_126);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_126, L_127, /*hidden argument*/NULL);
goto IL_03cc;
}
IL_02bd:
{
V_18 = (bool)1;
V_19 = (bool)0;
int32_t L_128 = V_16;
V_20 = ((int32_t)il2cpp_codegen_add((int32_t)L_128, (int32_t)1));
goto IL_030b;
}
IL_02cb:
{
String_t* L_129 = ___format0;
int32_t L_130 = V_20;
NullCheck(L_129);
Il2CppChar L_131 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_129, L_130, /*hidden argument*/NULL);
if ((!(((uint32_t)L_131) == ((uint32_t)((int32_t)48)))))
{
goto IL_02dc;
}
}
{
V_19 = (bool)1;
goto IL_0305;
}
IL_02dc:
{
int32_t L_132 = V_20;
int32_t L_133 = V_16;
if ((!(((uint32_t)L_132) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_133, (int32_t)1))))))
{
goto IL_02fc;
}
}
{
String_t* L_134 = ___format0;
int32_t L_135 = V_20;
NullCheck(L_134);
Il2CppChar L_136 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_134, L_135, /*hidden argument*/NULL);
if ((((int32_t)L_136) == ((int32_t)((int32_t)43))))
{
goto IL_0305;
}
}
{
String_t* L_137 = ___format0;
int32_t L_138 = V_20;
NullCheck(L_137);
Il2CppChar L_139 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_137, L_138, /*hidden argument*/NULL);
if ((((int32_t)L_139) == ((int32_t)((int32_t)45))))
{
goto IL_0305;
}
}
IL_02fc:
{
bool L_140 = V_19;
if (L_140)
{
goto IL_0312;
}
}
{
V_18 = (bool)0;
goto IL_0312;
}
IL_0305:
{
int32_t L_141 = V_20;
V_20 = ((int32_t)il2cpp_codegen_add((int32_t)L_141, (int32_t)1));
}
IL_030b:
{
int32_t L_142 = V_20;
int32_t L_143 = ___offset1;
int32_t L_144 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_142, (int32_t)L_143))) < ((int32_t)L_144)))
{
goto IL_02cb;
}
}
IL_0312:
{
bool L_145 = V_18;
if (!L_145)
{
goto IL_0345;
}
}
{
int32_t L_146 = V_20;
V_16 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_146, (int32_t)1));
int32_t L_147 = __this->get_DecimalPointPos_2();
V_2 = (bool)((((int32_t)L_147) < ((int32_t)0))? 1 : 0);
bool L_148 = V_2;
V_3 = (bool)((((int32_t)L_148) == ((int32_t)0))? 1 : 0);
StringBuilder_t * L_149 = V_0;
Il2CppChar L_150 = V_17;
NullCheck(L_149);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_149, L_150, /*hidden argument*/NULL);
StringBuilder_t * L_151 = V_0;
StringBuilder_t * L_152 = ___sb_exp7;
NullCheck(L_151);
StringBuilder_Append_mA1A063A1388A21C8EA011DBA7FC98C24C3EE3D65(L_151, L_152, /*hidden argument*/NULL);
___sb_exp7 = (StringBuilder_t *)NULL;
goto IL_03cc;
}
IL_0345:
{
StringBuilder_t * L_153 = V_0;
Il2CppChar L_154 = V_17;
NullCheck(L_153);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_153, L_154, /*hidden argument*/NULL);
goto IL_03cc;
}
IL_0350:
{
int32_t L_155 = __this->get_DecimalPointPos_2();
int32_t L_156 = V_16;
if ((!(((uint32_t)L_155) == ((uint32_t)L_156))))
{
goto IL_039d;
}
}
{
int32_t L_157 = __this->get_DecimalDigits_1();
if ((((int32_t)L_157) <= ((int32_t)0)))
{
goto IL_0385;
}
}
{
goto IL_037a;
}
IL_0365:
{
StringBuilder_t * L_158 = V_0;
StringBuilder_t * L_159 = ___sb_int5;
int32_t L_160 = V_5;
int32_t L_161 = L_160;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_161, (int32_t)1));
NullCheck(L_159);
Il2CppChar L_162 = StringBuilder_get_Chars_mC069533DCA4FB798DFA069469EBABA85DCC183C6(L_159, L_161, /*hidden argument*/NULL);
NullCheck(L_158);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_158, L_162, /*hidden argument*/NULL);
}
IL_037a:
{
int32_t L_163 = V_5;
StringBuilder_t * L_164 = ___sb_int5;
NullCheck(L_164);
int32_t L_165 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_164, /*hidden argument*/NULL);
if ((((int32_t)L_163) < ((int32_t)L_165)))
{
goto IL_0365;
}
}
IL_0385:
{
StringBuilder_t * L_166 = ___sb_dec6;
NullCheck(L_166);
int32_t L_167 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_166, /*hidden argument*/NULL);
if ((((int32_t)L_167) <= ((int32_t)0)))
{
goto IL_039d;
}
}
{
StringBuilder_t * L_168 = V_0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_169 = ___nfi3;
NullCheck(L_169);
String_t* L_170 = NumberFormatInfo_get_NumberDecimalSeparator_m1A9F946D267B5C2FC5982D34AF97D9AEB9C24A6E(L_169, /*hidden argument*/NULL);
NullCheck(L_168);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_168, L_170, /*hidden argument*/NULL);
}
IL_039d:
{
V_2 = (bool)0;
V_3 = (bool)1;
goto IL_03cc;
}
IL_03a3:
{
StringBuilder_t * L_171 = V_0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_172 = ___nfi3;
NullCheck(L_172);
String_t* L_173 = NumberFormatInfo_get_PercentSymbol_m6661F58FEE65E75453C83AD04492B1C5199B2DAB(L_172, /*hidden argument*/NULL);
NullCheck(L_171);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_171, L_173, /*hidden argument*/NULL);
goto IL_03cc;
}
IL_03b3:
{
StringBuilder_t * L_174 = V_0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_175 = ___nfi3;
NullCheck(L_175);
String_t* L_176 = NumberFormatInfo_get_PerMilleSymbol_m3876887016E8E505064301E65DC57B76040FF42E(L_175, /*hidden argument*/NULL);
NullCheck(L_174);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_174, L_176, /*hidden argument*/NULL);
goto IL_03cc;
}
IL_03c3:
{
StringBuilder_t * L_177 = V_0;
Il2CppChar L_178 = V_17;
NullCheck(L_177);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_177, L_178, /*hidden argument*/NULL);
}
IL_03cc:
{
int32_t L_179 = V_16;
V_16 = ((int32_t)il2cpp_codegen_add((int32_t)L_179, (int32_t)1));
}
IL_03d2:
{
int32_t L_180 = V_16;
int32_t L_181 = ___offset1;
int32_t L_182 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_180, (int32_t)L_181))) < ((int32_t)L_182)))
{
goto IL_00f4;
}
}
{
bool L_183 = ___positive4;
if (L_183)
{
goto IL_03ef;
}
}
{
StringBuilder_t * L_184 = V_0;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_185 = ___nfi3;
NullCheck(L_185);
String_t* L_186 = NumberFormatInfo_get_NegativeSign_mB6597316FD4141F077EFBDE508A2CF12C91A37BA(L_185, /*hidden argument*/NULL);
NullCheck(L_184);
StringBuilder_Insert_m38829D9C9FE52ACD6541ED735D4435FB2A831A2C(L_184, 0, L_186, /*hidden argument*/NULL);
}
IL_03ef:
{
StringBuilder_t * L_187 = V_0;
NullCheck(L_187);
String_t* L_188 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_187);
return L_188;
}
}
// System.Void System.NumberFormatter_CustomInfo::.ctor()
extern "C" IL2CPP_METHOD_ATTR void CustomInfo__ctor_mCA9215FA4EE11DB2219772F9F2A54F0E262949AF (CustomInfo_t3C5397567D3BBF326ED9C3D9680AE658DE4612E1 * __this, const RuntimeMethod* method)
{
{
__this->set_DecimalPointPos_2((-1));
__this->set_ExponentNegativeSignOnly_10((bool)1);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
| [
"xiangyumeng@tencent.com"
] | xiangyumeng@tencent.com |
7093fb4347eb9ba2de031dd912b3b4c656ccafe1 | 571b92566fbd054612445e4d13aa9ccb2a7fe447 | /plugins/dummy/dummyplugin.h | d7e640ab79af3fc4709ebeba05965a5b852e6838 | [
"Apache-2.0",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | FloEdelmann/qlcplus | 39b8b4d855edc3f66e6dffcc6b5520518d4fb7a7 | 15980ea0acd38a49c1c5f9d18351e0e71fa4ee25 | refs/heads/master | 2023-08-31T00:11:44.486700 | 2023-05-09T12:30:20 | 2023-05-09T12:30:20 | 142,312,057 | 0 | 0 | Apache-2.0 | 2023-05-18T04:06:08 | 2018-07-25T14:32:49 | C++ | UTF-8 | C++ | false | false | 2,923 | h | /*
Q Light Controller Plus
dummyplugin.h
Copyright (c) Massimo Callegari
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.txt
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#ifndef DUMMYPLUGIN_H
#define DUMMYPLUGIN_H
#include "qlcioplugin.h"
class DummyPlugin : public QLCIOPlugin
{
Q_OBJECT
Q_INTERFACES(QLCIOPlugin)
Q_PLUGIN_METADATA(IID QLCIOPlugin_iid)
/*********************************************************************
* Initialization
*********************************************************************/
public:
/** @reimp */
virtual ~DummyPlugin();
/** @reimp */
void init();
/** @reimp */
QString name();
/** @reimp */
int capabilities() const;
/** @reimp */
QString pluginInfo();
/*********************************************************************
* Outputs - If the plugin doesn't provide output
* just remove this whole block
*********************************************************************/
public:
/** @reimp */
bool openOutput(quint32 output, quint32 universe);
/** @reimp */
void closeOutput(quint32 output, quint32 universe);
/** @reimp */
QStringList outputs();
/** @reimp */
QString outputInfo(quint32 output);
/** @reimp */
void writeUniverse(quint32 universe, quint32 output, const QByteArray& data);
/*************************************************************************
* Inputs - If the plugin doesn't provide input
* just remove this whole block
*************************************************************************/
public:
/** @reimp */
bool openInput(quint32 input, quint32 universe);
/** @reimp */
void closeInput(quint32 input, quint32 universe);
/** @reimp */
QStringList inputs();
/** @reimp */
QString inputInfo(quint32 input);
/** @reimp */
void sendFeedBack(quint32 universe, quint32 output, quint32 channel, uchar value, const QString& key);
protected:
/** Place here the variables used by this plugin */
/*********************************************************************
* Configuration
*********************************************************************/
public:
/** @reimp */
void configure();
/** @reimp */
bool canConfigure();
/** @reimp */
void setParameter(quint32 universe, quint32 line, Capability type, QString name, QVariant value);
};
#endif
| [
"massimocallegari@yahoo.it"
] | massimocallegari@yahoo.it |
b3c66edfbc8ac2afc1fe1b8d4ccf26a15561a48a | 7146372b6470589a046283642b8dbfc4dc25e99c | /bitboards.cpp | 4e62a18a0611e00d6af7018f33a6fc8e315b1d7e | [] | no_license | PeterKnak/ChessEngineProject | 87e726cd4aa4f1fa5b78b23cef05a0351be54357 | 34d202787aaa15c45f5b3926d176f46713440a4a | refs/heads/main | 2023-06-26T06:28:31.576368 | 2021-07-26T18:48:08 | 2021-07-26T18:48:08 | 389,681,453 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,110 | cpp | #include "stdio.h"
#include "defs.h"
const int BitTable[64] = {
63, 30, 3, 32, 25, 41, 22, 33, 15, 50, 42, 13, 11, 53, 19, 34, 61, 29, 2,
51, 21, 43, 45, 10, 18, 47, 1, 54, 9, 57, 0, 35, 62, 31, 40, 4, 49, 5, 52,
26, 60, 6, 23, 44, 46, 27, 56, 16, 7, 39, 48, 24, 59, 14, 12, 55, 38, 28,
58, 20, 37, 17, 36, 8
};
int PopBit(U64* bb) {
U64 b = *bb ^ (*bb - 1);
unsigned int fold = (unsigned)((b & 0xffffffff) ^ (b >> 32));
*bb &= (*bb - 1);
return BitTable[(fold * 0x783a9b23) >> 26];
}
int CountBits(U64 b) {
int r;
for (r = 0; b; r++, b &= b - 1);
return r;
}
void PrintBitBoard(U64 bb) {
U64 shiftMe = 1ULL;
int sq = 0;
int sq64 = 0;
printf("\n");
for (int rank = RANK_8; rank >= RANK_1; --rank) {
for (int file = FILE_A; file <= FILE_H; ++file) {
sq = FileAndRank_To_Square(file, rank);
sq64 = SQ64(sq);
if ((shiftMe << sq64) & bb) { // use bitwise and to check if a piece is on the square
printf("X"); // a piece is here
}
else {
printf("-"); // empty square
}
}
printf("\n");
}
printf("\n\n");
} | [
"noreply@github.com"
] | noreply@github.com |
4629d0060be5143456c02515c426061e80b405f7 | 85ba1264a09fb4318e054a185ec1aba58380fdab | /FingerTracking/RGBDepthMaskCombiner.cpp | 8ec94e3c853ca8c03964fad2c4aa80c3822fdf8b | [] | no_license | natthapach/TKU-Project---Finger-Tracking | 581e11dae2fe38fa68269afa505b98f6834f6eb4 | aadd3ad76cb91bb6fe91b739bb200f209764aa47 | refs/heads/master | 2020-03-29T06:39:19.927851 | 2018-10-03T09:12:09 | 2018-10-03T09:12:09 | 149,634,887 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,929 | cpp | #include "pch.h"
#include "RGBDepthMaskCombiner.h"
#include "Constants.h"
#include <stdio.h>
void RGBDepthMaskCombiner::onCombine(map<int, cv::Mat> imageFrames)
{
cv::Mat depthFrame;
cv::Mat rgbFrame;
cv::Mat res;
if (imageFrames.count(ACTIVATOR_RGB) > 0 && imageFrames.count(ACTIVATOR_DEPTH) > 0) {
depthFrame = imageFrames[ACTIVATOR_DEPTH];
rgbFrame = imageFrames[ACTIVATOR_RGB];
}
else if (imageFrames.count(ACTIVATOR_RGB) > 0 && imageFrames.count(ACTIVATOR_HAND_DEPTH_VISUALIZE) > 0) {
depthFrame = imageFrames[ACTIVATOR_HAND_DEPTH_VISUALIZE];
rgbFrame = imageFrames[ACTIVATOR_RGB];
}
else {
return;
}
if (depthFrame.type() == CV_8UC1 && rgbFrame.type() == CV_8UC1) {
cv::bitwise_and(depthFrame, rgbFrame, imageFrame);
cv::Mat mask = cv::Mat::zeros(cv::Size(640, 480), CV_8UC1);
cv::Mat kernel = cv::getStructuringElement(cv::MORPH_ELLIPSE, cv::Size(3, 3));
// find contours
vector<cv::Vec4i> hierarchy;
cv::findContours(imageFrame, contours, hierarchy, cv::RETR_TREE, cv::CHAIN_APPROX_SIMPLE, cv::Point(0, 0));
if (contours.size() == 0)
return;
// find largest contour
double maxArea = 0;
int maxIndex = 0;
for (int i = 0; i < contours.size(); i++) {
double a = cv::contourArea(contours[i], false);
if (a > maxArea) {
maxArea = a;
maxIndex = i;
}
}
largestContour = contours[maxIndex];
cv::cvtColor(imageFrame, imageFrame, cv::COLOR_GRAY2BGR);
cv::drawContours(mask, vector<vector<cv::Point>>{ largestContour }, 0, cv::Scalar(255, 255, 255), -1, 8, vector<cv::Vec4i>(), 0, cv::Point());
cv::dilate(mask, mask, cv::Mat());
imageFrame = mask;
}
else {
imageFrame = cv::Mat::zeros(cv::Size(640, 480), CV_8UC1);
}
}
cv::Mat RGBDepthMaskCombiner::getMaskFrame()
{
return imageFrame;
}
int RGBDepthMaskCombiner::getSignature()
{
return COMBINER_RGB_DEPTH;
}
string RGBDepthMaskCombiner::getName()
{
return WINDOW_NAME_COMBINER_RGB_DEPTH;
}
| [
"natthapach.a@ku.th"
] | natthapach.a@ku.th |
5324dd5c2646de8ab2e6e960ffd82c55f8d14cb7 | a0adfef1a04bb8fc44f4f47de1b752528b505c3d | /Codeforces/Round 480 Div2/C.cpp | a5ee7bac37b58dfe4a1a1e2dc7e075ba99d10af8 | [
"MIT"
] | permissive | Sohieb/competitive-programming | b55434955dc3df3c15b21bb8907c993ac0cfd95b | fe3fca0d4d2a242053d097c7ae71667a135cfc45 | refs/heads/master | 2023-06-09T22:06:22.469466 | 2021-06-27T07:25:43 | 2021-06-27T07:25:43 | 119,713,582 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,644 | cpp | #include <bits/stdc++.h>
using namespace std;
using namespace __gnu_cxx;
typedef double db;
typedef long long ll;
typedef pair<db, db> pdd;
typedef pair<ll, ll> pll;
typedef pair<int, int> pii;
typedef unsigned long long ull;
#define F first
#define S second
#define pnl printf("\n")
#define sz(x) (int)x.size()
#define sf(x) scanf("%d",&x)
#define pf(x) printf("%d\n",x)
#define all(x) x.begin(),x.end()
#define rall(x) x.rbegin(),x.rend()
#define rep(i, n) for(int i = 0; i < n; ++i)
const db eps = 1e-9;
const db pi = acos(-1);
const int INF = 0x3f3f3f3f;
const ll LL_INF = 0x3f3f3f3f3f3f3f3f;
const int mod = 1000 * 1000 * 1000 + 7;
int n, k;
int a[100005];
set<pii> st;
int main() {
#ifndef ONLINE_JUDGE
freopen("in.txt", "r", stdin);
//freopen("out.txt", "w", stdout);
#endif
scanf("%d%d", &n, &k);
for(int i = 0; i < 257; ++i)
st.insert({i, i});
for(int i = 0; i < n; ++i){
scanf("%d", &a[i]);
set<pii>::iterator it = st.lower_bound({a[i] + 1, a[i]});
--it;
while(it != st.begin()){
set<pii>::iterator it2 = it;
--it2;
pii p1 = *it, p2 = *it2;
if(p1.S - p2.F + 1 > k)
break;
st.erase(p1);
st.erase(p2);
pii nw = {it2->F, it->S};
st.insert(nw);
it = st.lower_bound({a[i] + 1, a[i]});
--it;
}
}
for(int i = 0; i < n; ++i){
set<pii>::iterator it = st.lower_bound({a[i] + 1, a[i]});
--it;
printf("%d%c", it->F, " \n"[i == n-1]);
}
return 0;
}
| [
"ibrahim.abdelrahman95@gmail.com"
] | ibrahim.abdelrahman95@gmail.com |
98551230182544a756d44d9bdde28c3c6f3b8b8e | 61208c9d7027cd2185db71ab30367f257d438b49 | /src/zobrist.cpp | 0a9c7c73e361c5b27591cf916d6497ce9bdcb8f1 | [
"MIT"
] | permissive | cyueclone/AQ | a3fcd730177be8edc0d2812581df966c9789293c | f0a68d66cfac86da0a2588e4ad740a83c7990f4e | refs/heads/master | 2023-04-24T17:12:45.015655 | 2023-03-30T07:52:47 | 2023-03-30T07:52:47 | 138,386,715 | 0 | 0 | MIT | 2018-06-23T09:00:21 | 2018-06-23T09:00:21 | null | SHIFT_JIS | C++ | false | false | 2,119 | cpp | #include "zobrist.h"
#include "board.h"
std::random_device rd;
std::mt19937 mt_32(rd());
std::mt19937_64 mt_64(rd());
/**
* [0.0, 1.0)の一様乱数生成器
* double rand_d = mt_double(mt_32); のように使う.
*
* uniform real distribution of [0.0, 1.0).
* Ex. double rand_d = mt_double(mt_32);
*/
std::uniform_real_distribution<double> mt_double(0.0, 1.0);
/**
* [0, 8)の一様乱数生成器
* int rand_i = mt_int8(mt_32) のように使う.
*
* uniform int distribution of [0, 8).
* Ex. int rand_i = mt_int8(mt_32)
*/
std::uniform_int_distribution<int> mt_int8(0, 7);
/**
* 64bit整数のハッシュ値を生成する
* Generate 64-bit hash value of the board.
*/
int64 BoardHash(Board& b) {
// 盤面のzobristハッシュ値
// Zobrist hash value of the board.
int64 b_hash = 0;
// 石をXOR
// XOR with stone hashes.
for (auto i: rtoe) {
switch (b.color[i]) {
case 2: b_hash ^= zobrist.hash[0][2][i]; break;
case 3: b_hash ^= zobrist.hash[0][3][i]; break;
default: break;
}
}
// コウをXOR
// XOR with Ko position.
if (b.ko != VNULL) b_hash ^= zobrist.hash[0][1][b.ko];
// 手番をXOR. 黒番のとき ^1
// XOR with turn.
// black: b_hash ^= 1, white: b_hash ^= 0
b_hash ^= b.my;
return b_hash;
}
/**
* ハッシュ値を更新する
* Update 64-bit hash of board from the previous hash.
*/
int64 UpdateBoardHash(Board& b, int64 prev_hash) {
// 盤面のzobristハッシュ値
// Zobrist hash value of the board.
int64 b_hash = prev_hash;
int my = b.my;
int her = b.her;
int prev_move = b.prev_move[her];
if (prev_move < PASS) {
// 着手を更新
// Update hash of the previous move.
b_hash ^= zobrist.hash[0][her + 2][prev_move];
// 取られた石を更新
// Update hashes of removed stones.
for(auto i: b.removed_stones){
b_hash ^= zobrist.hash[0][my + 2][i];
}
// コウを更新
// Update hash of Ko.
if(b.prev_ko != VNULL) b_hash ^= zobrist.hash[0][1][b.prev_ko];
if (b.ko != VNULL) b_hash ^= zobrist.hash[0][1][b.ko];
}
// 手番を更新
// Update turn.
b_hash ^= 1;
return b_hash;
}
| [
"yfa57653@gmail.com"
] | yfa57653@gmail.com |
183134dbcb78a274e17f27e8d49e7b2950871304 | c1dde3da67abb33c3ae598d14862131fc7d00976 | /taschenrechner/taschenrechner/main.cpp | 93d4ec9d6109acf0085cabde1664ab07ae0f4f0c | [
"MIT"
] | permissive | maurizze004/CppCalculator | 4b5d2182aa676e63e88b83facd20177ffe4df7ec | 2d1b033952b768cd09fe1f38d4431a3468ff7c13 | refs/heads/main | 2023-03-13T18:55:11.543293 | 2021-03-10T07:37:19 | 2021-03-10T07:37:19 | 346,270,393 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,308 | cpp |
// main.cpp
// taschenrechner
#include <iostream>
#include <cmath>
using namespace std;
int main() {
//numbers getting initialised
float a;
float b;
float c;
cout<<"Welcome to my giudline - calcualtor \n";
//starting of asking for number of numbers which he wants to calculate
cout<<"Please type in your first number: ";
cin>>a;
cout<<"Your second number please: ";
cin>>b;
//asking if he wants to calcualte a third number
char x;
cout<<"Do your want to set a third number ? (y/n)";
cin>>x;
if (x == 'y') {
cout<<"OK so please anter your third number: ";
cin>>c;
//normal continue
} else {
cout<<"OK no problem, lets calculate togehter";
}
//which calcualtion option he wants
char option;
cout<<"Which option for calcualtion do you want. Please choose one of the following statments \n";
cout<<" * + - : \n";
cin>>option;
// ifelse statements for calculation
//multiply
if (x == 'n' && option == '*') {
cout<<"The result of your numbers is: "<<a * b<<endl;
}
else if (x == 'y' && option == '*') {
cout<<"The result of your three numbers is: "<<a * b * c<<endl;
}
//addition
else if (x == 'n' && option == '+') {
cout<<"The result of your numbers is: "<<a + b<<endl;
}
else if (x == 'y' && option == '+') {
cout<<"The result of your three numbers is: "<<a + b + c<<endl;
}
//subtraction
else if (x == 'n' && option == '-') {
cout<<"The result of your numbers is: "<<a - b<<endl;
}
else if (x == 'y' && option == '+') {
cout<<"The result of your three numbers is: "<<a - b - c<<endl;
}
//dividing numbers
else if (x == ':' && option == ':'){
cout<<"The result of your numbers is: "<<a / b<<endl;
} else if (x == 'y' && option == '+'){
cout<<"The result of your three numbers is: "<<a / b / c<<endl;
}
//closing
cout<<"Hope you had fun and you got your result like you wanna have it! Good bye"<<endl;
int s;
cout<<"Are you finish now ? (y/n) "<<endl;
cin>>s;
if (s == 'y') {
cout<<"OK nice. See you soon \n";
system("cls");
} else {
cout<<"No problem! Just restart \n";
cout<<"\n";
system("clear");
}
}
| [
"noreply@github.com"
] | noreply@github.com |
8b2a42fbb7052a338a58751b5fb9c5325991a5b8 | b2b89e7a3f5933b8895c185be79f0ee4bec56496 | /workspace/UnitsTest/src/Constexpr.cpp | b7a9d832e15bb2d5bd308694f2d522f4124ad504 | [] | no_license | PeterSommerlad/SC22WG21_Papers | dc45947ec8368f0554fe330b152b4d63d0f85d22 | ae297346379655dc6ffe306a3f8b133fa0b052c4 | refs/heads/master | 2022-09-14T00:06:41.443115 | 2022-08-08T12:59:50 | 2022-08-08T12:59:50 | 5,717,682 | 40 | 16 | null | 2018-04-05T05:46:07 | 2012-09-07T14:07:57 | C++ | UTF-8 | C++ | false | false | 3,400 | cpp | #include "Constexpr.h"
#include "cute.h"
#include "common_for_tests.h"
// Constexpr
#if !defined(_MSC_VER) || _MSC_VER > 1800
void Constexpr_construction()
{
constexpr meter_t result0(0);
constexpr auto result1 = make_quantity<meter_t>(1);
constexpr auto result2 = meter_t(2);
ASSERT_EQUAL(meter_t(0), result0);
ASSERT_EQUAL(meter_t(1), result1);
ASSERT_EQUAL(meter_t(2), result2);
ASSERT(noexcept(result0));
ASSERT(noexcept(result1));
ASSERT(noexcept(result2));
}
void Constexpr_constants()
{
ASSERT(noexcept(constants::c()));
ASSERT(noexcept(constants::G()));
ASSERT(noexcept(constants::h()));
ASSERT(noexcept(constants::mu0()));
ASSERT(noexcept(constants::epsilon0()));
ASSERT(noexcept(constants::Z0()));
ASSERT(noexcept(constants::k_e()));
ASSERT(noexcept(constants::e()));
ASSERT(noexcept(constants::m_e()));
ASSERT(noexcept(constants::m_p()));
ASSERT(noexcept(constants::mu_B()));
ASSERT(noexcept(constants::N_A()));
ASSERT(noexcept(constants::R()));
ASSERT(noexcept(constants::k_B()));
ASSERT(noexcept(constants::F()));
ASSERT(noexcept(constants::sigma()));
}
void Constexpr_arithmetic()
{
constexpr auto result0(1_m + 1_m);
constexpr auto result1(1_m - 1_m);
constexpr auto result2(1_m * 1_m);
constexpr auto result3(1_m / 1_m);
constexpr auto result4(meter_t(1) + meter_t(1));
constexpr auto result5(meter_t(1) - meter_t(1));
constexpr auto result6(meter_t(1) * meter_t(1));
constexpr auto result7(meter_t(1) / meter_t(1));
constexpr auto result8(units::math::cpow<2>(meter_t(2)));
constexpr auto result9 = units::math::cpow<3>(2_m);
constexpr auto result10 = 2_m * 2_m;
ASSERT(noexcept(result0));
ASSERT(noexcept(result1));
ASSERT(noexcept(result2));
ASSERT(noexcept(result3));
ASSERT(noexcept(result4));
ASSERT(noexcept(result5));
ASSERT(noexcept(result6));
ASSERT(noexcept(result7));
ASSERT(noexcept(result8));
ASSERT(noexcept(result9));
ASSERT(noexcept(result10));
ASSERT_EQUAL(8_cu_m, result9);
ASSERT_EQUAL(4_sq_m, result10);
}
void Constexpr_realtional()
{
constexpr bool equalityTrue = (1_m == 1_m);
constexpr bool equalityFalse = (1_m == 2_m);
constexpr bool lessThanTrue = (1_m < 2_m);
constexpr bool lessThanFalse = (1_m < 1_m);
constexpr bool lessThanEqualTrue1 = (1_m <= 1_m);
constexpr bool lessThanEqualTrue2 = (1_m <= 2_m);
constexpr bool lessThanEqualFalse = (1_m < 0_m);
constexpr bool greaterThanTrue = (2_m > 1_m);
constexpr bool greaterThanFalse = (2_m > 2_m);
constexpr bool greaterThanEqualTrue1 = (2_m >= 1_m);
constexpr bool greaterThanEqualTrue2 = (2_m >= 2_m);
constexpr bool greaterThanEqualFalse = (2_m > 3_m);
ASSERT(equalityTrue);
ASSERT(lessThanTrue);
ASSERT(lessThanEqualTrue1);
ASSERT(lessThanEqualTrue2);
ASSERT(greaterThanTrue);
ASSERT(greaterThanEqualTrue1);
ASSERT(greaterThanEqualTrue2);
ASSERT(!equalityFalse);
ASSERT(!lessThanFalse);
ASSERT(!lessThanEqualFalse);
ASSERT(!greaterThanFalse);
ASSERT(!greaterThanEqualFalse);
}
void Constexpr_stdArray()
{
constexpr std::array<meter_t, 5> arr = { 0_m, 1_m, 2_m, 3_m, 4_m };
constexpr bool equal = (arr[3] == 3_m);
ASSERT(equal);
}
#endif
cute::suite make_suite_Constexpr() {
cute::suite s { };
s.push_back(CUTE(Constexpr_construction));
s.push_back(CUTE(Constexpr_constants));
s.push_back(CUTE(Constexpr_arithmetic));
s.push_back(CUTE(Constexpr_realtional));
s.push_back(CUTE(Constexpr_stdArray));
return s;
}
| [
"peter.sommerlad@hsr.ch"
] | peter.sommerlad@hsr.ch |
a4a73aedf3641da93ab3bbc140a06392eaa4d6f6 | 38b0e2dca2d385673a0a4596826a4977b3c66bf6 | /TreeItem/mytab.cpp | 047608ffd3fbe2ab6a2869ec6f176a3ed8f51605 | [] | no_license | Coiners2017/TreeView | f7a23e00fd732ccbe8da33de2364840b24548018 | 92500b79a32ef9d4054a56c2989cc8624d9f288f | refs/heads/master | 2021-05-07T22:20:21.150900 | 2017-11-20T09:33:34 | 2017-11-20T09:33:34 | 109,203,009 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,528 | cpp | #include "mytab.h"
MyTab::MyTab(QWidget *parent) : QDialog(parent)
{
listView = new QListView(this);
standardItemModel = new QStandardItemModel(this);
tabWidget = new QTabWidget();
//新建第一个页面的部件
QWidget *widget = new QWidget();
QLabel *machNameLab = new QLabel("机床名:");
QLineEdit *machNameEdit = new QLineEdit();
QLabel *machIDLab = new QLabel("机床ID:");
QLineEdit *machIDEdit = new QLineEdit();
QLabel *IPLab = new QLabel("IP:");
QLineEdit *IPEdit = new QLineEdit();
QLabel *FTPTypeLab = new QLabel("FTP类型:");
QComboBox *FTPTypeComBox = new QComboBox();
FTPTypeComBox->addItem(IDS_STRMACHFTPTYPE0);
FTPTypeComBox->addItem(IDS_STRMACHFTPTYPE1);
FTPTypeComBox->addItem(IDS_STRMACHFTPTYPE2);
qDebug()<<"abcd";
QVBoxLayout *vLayout = new QVBoxLayout();
vLayout->addWidget(machNameLab);
vLayout->addWidget(machNameEdit);
vLayout->addWidget(machIDLab);
vLayout->addWidget(machIDEdit);
vLayout->addWidget(IPLab);
vLayout->addWidget(IPEdit);
vLayout->addWidget(FTPTypeLab);
vLayout->addWidget(FTPTypeComBox);
widget->setLayout(vLayout);
//新建第二个页面的部件
QWidget *secondWidget = new QWidget();
QLabel *label = new QLabel("Hello Qt");
QCheckBox *check = new QCheckBox();
QVBoxLayout *vSecondLayout = new QVBoxLayout();
vSecondLayout->addWidget(label);
vSecondLayout->addWidget(check);
secondWidget->setLayout(vSecondLayout);
//向QTabWidget中添加第一个页面
QIcon icon1(":/new/icon/images/1.ico");
tabWidget->addTab(widget, icon1, "Tab1");
//向QTabWidget中添加第二个页面
QIcon icon2(":/new/icon/images/2.ico");
tabWidget->addTab(secondWidget, icon2, "Tab2");
//向QTabWidget中添加第三个页面
QIcon icon3(":/new/icon/images/3.ico");
//新建第三个页面的部件
QPushButton *pushButton3 = new QPushButton("Click Me");
///////////////////////////////////////////////////////////////////////
QListView *listCtrl = new QListView(this);
QStringList num;
num<<QString("1")<<QString("2")<<QString("3")<<QString("4");
QStringListModel *model = new QStringListModel(num);
listCtrl->setModel(model);
///////////////////////////////////////////////////////////////////////
tabWidget->addTab(listCtrl, icon3, "Tab3");
QHBoxLayout *layout = new QHBoxLayout();
layout->addWidget(tabWidget);
//size
this->setLayout(layout);
this->resize(500, 300);
machNameEdit->resize(20,50);
this->setWindowTitle("QTabWidgetDemo");
QString path = "C:";
addFolder(path);
}
void MyTab::addFolder(QString path)
{
// //判断路径是否存在
// QDir dir(path);
// if(!dir.exists())
// {
// return;
// }
//dir.setFilter(QDir::Files|QDir::NoSymLinks);
//QFileInfoList list = dir.entryInfoList();
//int file_count = list.count();
// if(file_count <= 0)
// {
// return;
// }
// // QStringList string_list;
// for(int i=0; i<10; i++)
// {
// // QStandardItem *item = new QStandardItem(string);
// QFileInfo fileIinfo = list.at(i);
// QString suffix = fileIinfo.suffix();
// if(QString::compare(suffix, QString("png"), Qt::CaseInsensitive) == 0)
// {
// QString absolute_file_path = fileIinfo.absoluteFilePath();
// //listView->append(absolute_file_path);
// }
// //standardItemModel->appendRow(item);
// }
}
| [
"Coiners2017@outlook.com"
] | Coiners2017@outlook.com |
29feecba5a5c46072dfa40cd978cb9bb2ccb2257 | f8b56b711317fcaeb0fb606fb716f6e1fe5e75df | /Internal/SDK/HCLetter_ExclusionEntitlementCampaign018_classes.h | 9fef30a1b6adf52f6a517d392d4f78918abfacf9 | [] | no_license | zanzo420/SoT-SDK-CG | a5bba7c49a98fee71f35ce69a92b6966742106b4 | 2284b0680dcb86207d197e0fab6a76e9db573a48 | refs/heads/main | 2023-06-18T09:20:47.505777 | 2021-07-13T12:35:51 | 2021-07-13T12:35:51 | 385,600,112 | 0 | 0 | null | 2021-07-13T12:42:45 | 2021-07-13T12:42:44 | null | UTF-8 | C++ | false | false | 855 | h | #pragma once
// Name: Sea of Thieves, Version: 2.2.0.2
/*!!DEFINE!!*/
/*!!HELPER_DEF!!*/
/*!!HELPER_INC!!*/
#ifdef _MSC_VER
#pragma pack(push, 0x01)
#endif
namespace CG
{
//---------------------------------------------------------------------------
// Classes
//---------------------------------------------------------------------------
// BlueprintGeneratedClass HCLetter_ExclusionEntitlementCampaign018.HCLetter_ExclusionEntitlementCampaign018_C
// 0x0000 (FullSize[0x00D8] - InheritedSize[0x00D8])
class UHCLetter_ExclusionEntitlementCampaign018_C : public UEntitlementDesc
{
public:
static UClass* StaticClass()
{
static auto ptr = UObject::FindClass("BlueprintGeneratedClass HCLetter_ExclusionEntitlementCampaign018.HCLetter_ExclusionEntitlementCampaign018_C");
return ptr;
}
};
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
| [
"zp2kshield@gmail.com"
] | zp2kshield@gmail.com |
50b682eb12188d0a1d8285d6be92a06d37240807 | 4c85056149595105b01d4179791421a9f49ec798 | /SeminarProject/SeminarProject/Manager.cpp | 4920119d70530caa7de0fd6af584664ba16b5b3d | [
"LicenseRef-scancode-unknown-license-reference",
"MIT",
"MS-PL"
] | permissive | yutateno/Re.Gleam | 4b89fe0bbfcfe2e471a8d7045054ae904af81e2e | fa9577e137e29280290a97a7e63b9f9e8ab9c606 | refs/heads/master | 2020-04-05T06:06:23.287741 | 2019-05-23T13:36:20 | 2019-05-23T13:36:20 | 156,625,825 | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 110,042 | cpp | #include "Manager.hpp"
/// --------------------------------------------------------------------------------------------------
void Manager::SceneChange()
{
// 今のシーン
switch (BASICPARAM::e_nowScene)
{
// ムーブ1のロード
case ESceneNumber::FIRSTLOAD:
p_loadThread = new LoadThread();
POINTER_RELEASE(p_baseMove);
break;
// ムーブ1
case ESceneNumber::FIRSTMOVE:
BASICPARAM::startFeedNow = true;
feedCount = 255;
p_baseMove = new MainMove1(p_loadThread->GetFile());
p_baseMove->SetScene(BASICPARAM::e_nowScene);
POINTER_RELEASE(p_loadThread);
moveStr.clear();
moveStr.shrink_to_fit();
loadType.clear();
loadType.shrink_to_fit();
LoadFile::MyLoad("media\\sound\\saveon.wyn", se_save, ELOADFILE::soundmem);
SoundProcess::Load(se_save, SoundProcess::ESOUNDNAME_SE::saveOn);
break;
// ムーブ2のロード
case ESceneNumber::SECONDLOAD:
p_loadThread = new LoadThread();
POINTER_RELEASE(p_baseMove);
break;
// ムーブ2
case ESceneNumber::SECONDMOVE:
BASICPARAM::startFeedNow = true;
feedCount = 255;
p_baseMove = new MainMove2(p_loadThread->GetFile());
p_baseMove->SetScene(BASICPARAM::e_nowScene);
POINTER_RELEASE(p_loadThread);
moveStr.clear();
moveStr.shrink_to_fit();
loadType.clear();
loadType.shrink_to_fit();
LoadFile::MyLoad("media\\sound\\saveon.wyn", se_save, ELOADFILE::soundmem);
SoundProcess::Load(se_save, SoundProcess::ESOUNDNAME_SE::saveOn);
break;
// ムーブ3のロード
case ESceneNumber::THIRDLOAD:
p_loadThread = new LoadThread();
POINTER_RELEASE(p_baseMove);
break;
// ムーブ3
case ESceneNumber::THIRDMOVE:
BASICPARAM::startFeedNow = true;
feedCount = 255;
p_baseMove = new MainMove3(p_loadThread->GetFile());
p_baseMove->SetScene(BASICPARAM::e_nowScene);
POINTER_RELEASE(p_loadThread);
moveStr.clear();
moveStr.shrink_to_fit();
loadType.clear();
loadType.shrink_to_fit();
LoadFile::MyLoad("media\\sound\\saveon.wyn", se_save, ELOADFILE::soundmem);
SoundProcess::Load(se_save, SoundProcess::ESOUNDNAME_SE::saveOn);
break;
// ムーブ4のロード
case ESceneNumber::FOURTHLOAD:
p_loadThread = new LoadThread();
POINTER_RELEASE(p_baseMove);
break;
// ムーブ4
case ESceneNumber::FOURTHMOVE:
BASICPARAM::startFeedNow = true;
feedCount = 255;
p_baseMove = new MainMove4(p_loadThread->GetFile());
p_baseMove->SetScene(BASICPARAM::e_nowScene);
POINTER_RELEASE(p_loadThread);
moveStr.clear();
moveStr.shrink_to_fit();
loadType.clear();
loadType.shrink_to_fit();
LoadFile::MyLoad("media\\sound\\saveon.wyn", se_save, ELOADFILE::soundmem);
SoundProcess::Load(se_save, SoundProcess::ESOUNDNAME_SE::saveOn);
break;
// ムーブ5のロード
case ESceneNumber::FIFTHLOAD:
p_loadThread = new LoadThread();
POINTER_RELEASE(p_baseMove);
break;
// ムーブ5
case ESceneNumber::FIFTHMOVE:
BASICPARAM::startFeedNow = true;
feedCount = 255;
p_baseMove = new MainMove5(p_loadThread->GetFile());
p_baseMove->SetScene(BASICPARAM::e_nowScene);
POINTER_RELEASE(p_loadThread);
moveStr.clear();
moveStr.shrink_to_fit();
loadType.clear();
loadType.shrink_to_fit();
LoadFile::MyLoad("media\\sound\\saveon.wyn", se_save, ELOADFILE::soundmem);
SoundProcess::Load(se_save, SoundProcess::ESOUNDNAME_SE::saveOn);
break;
// ムーブ6のロード
case ESceneNumber::SIXLOAD:
p_loadThread = new LoadThread();
POINTER_RELEASE(p_baseMove);
break;
// ムーブ6
case ESceneNumber::SIXMOVE:
BASICPARAM::startFeedNow = true;
feedCount = 255;
p_baseMove = new MainMove6(p_loadThread->GetFile());
p_baseMove->SetScene(BASICPARAM::e_nowScene);
POINTER_RELEASE(p_loadThread);
moveStr.clear();
moveStr.shrink_to_fit();
loadType.clear();
loadType.shrink_to_fit();
LoadFile::MyLoad("media\\sound\\saveon.wyn", se_save, ELOADFILE::soundmem);
SoundProcess::Load(se_save, SoundProcess::ESOUNDNAME_SE::saveOn);
break;
default:
break;
} /// switch (BASICPARAM::e_nowScene)
} /// void Manager::SceneChange()
/// --------------------------------------------------------------------------------------------------
void Manager::TitleProcess()
{
// 決定を押したら
if (DLLXinput::GetPadButtonData(DLLXinput::GetPlayerPadNumber(), DLLXinput::XINPUT_PAD::BUTTON_A) == 1)
{
// ゲームを開始するの時
if (optionSelectButtonNum == static_cast<EOptionSelectButton>(ETitleDraw::firstGame))
{
BASICPARAM::e_nowScene = ESceneNumber::FIRSTLOAD;
BASICPARAM::e_preScene = ESceneNumber::FIRSTLOAD;
optionSelectMin = static_cast<int>(EOptionSelectButton::Sound);
optionSelectMax = static_cast<int>(EOptionSelectButton::GameEnd);
gameFirstStarting = false;
} /// if (optionSelectButtonNum == static_cast<EOptionSelectButton>(ETitleDraw::firstGame))
// ロードするとき
else if (optionSelectButtonNum == static_cast<EOptionSelectButton>(ETitleDraw::load))
{
// ムーブが3以降だったらテクスチャの色を通常色にしておく
if (BASICPARAM::e_nowScene >= ESceneNumber::THIRDLOAD)
{
BASICPARAM::e_TextureColor = ETextureColor::NORMAL;
}
optionSelectMin = static_cast<int>(EOptionSelectButton::Sound);
optionSelectMax = static_cast<int>(EOptionSelectButton::GameEnd);
gameFirstStarting = false;
} /// else if (optionSelectButtonNum == static_cast<EOptionSelectButton>(ETitleDraw::load))
// ゲームを終了するとき
else if (optionSelectButtonNum == static_cast<EOptionSelectButton>(ETitleDraw::gameEnd))
{
gameEnd = true;
} /// else if (optionSelectButtonNum == static_cast<EOptionSelectButton>(ETitleDraw::gameEnd))
// おまけのとき
else
{
// ムーブ2を選択していたら
if (optionSelectButtonNum == static_cast<EOptionSelectButton>(ETitleDraw::bonusMove2))
{
BASICPARAM::e_nowScene = ESceneNumber::SECONDLOAD;
BASICPARAM::e_preScene = ESceneNumber::SECONDLOAD;
}
// ムーブ3を選択していたら
else if (optionSelectButtonNum == static_cast<EOptionSelectButton>(ETitleDraw::bonusMove3))
{
BASICPARAM::stairsNum = 0;
BASICPARAM::streetLightNum = 0;
BASICPARAM::stairsRoadNum = 0;
BASICPARAM::v_stairsArea.clear();
BASICPARAM::v_stairsAngle.clear();
BASICPARAM::v_streetLightArea.clear();
BASICPARAM::v_streetLightAngle.clear();
BASICPARAM::v_stairsRoadArea.clear();
BASICPARAM::v_stairsRoadAngle.clear();
BASICPARAM::e_TextureColor = ETextureColor::NORMAL;
BASICPARAM::e_nowScene = ESceneNumber::THIRDLOAD;
BASICPARAM::e_preScene = ESceneNumber::THIRDLOAD;
}
// ムーブ4を選択していたら
else if (optionSelectButtonNum == static_cast<EOptionSelectButton>(ETitleDraw::bonusMove4))
{
BASICPARAM::stairsNum = 0;
BASICPARAM::streetLightNum = 0;
BASICPARAM::stairsRoadNum = 0;
BASICPARAM::v_stairsArea.clear();
BASICPARAM::v_stairsAngle.clear();
BASICPARAM::v_streetLightArea.clear();
BASICPARAM::v_streetLightAngle.clear();
BASICPARAM::v_stairsRoadArea.clear();
BASICPARAM::v_stairsRoadAngle.clear();
BASICPARAM::e_TextureColor = ETextureColor::NORMAL;
BASICPARAM::charaTextureWhiteBlack = true;
BASICPARAM::anothreTextureWhiteBlack = true;
BASICPARAM::enemyTextureWhiteBlack = true;
BASICPARAM::lightStreetTextureWhiteBlack = true;
BASICPARAM::stairsRoadTextureWhiteBlack = true;
BASICPARAM::stairsTextureWhiteBlack = true;
BASICPARAM::e_nowScene = ESceneNumber::FOURTHLOAD;
BASICPARAM::e_preScene = ESceneNumber::FOURTHLOAD;
}
// ムーブ5を選択していたら
else if (optionSelectButtonNum == static_cast<EOptionSelectButton>(ETitleDraw::bonusMove5))
{
BASICPARAM::stairsNum = 0;
BASICPARAM::streetLightNum = 0;
BASICPARAM::stairsRoadNum = 0;
BASICPARAM::v_stairsArea.clear();
BASICPARAM::v_stairsAngle.clear();
BASICPARAM::v_streetLightArea.clear();
BASICPARAM::v_streetLightAngle.clear();
BASICPARAM::v_stairsRoadArea.clear();
BASICPARAM::v_stairsRoadAngle.clear();
BASICPARAM::e_TextureColor = ETextureColor::NORMAL;
BASICPARAM::charaTextureWhiteBlack = true;
BASICPARAM::anothreTextureWhiteBlack = true;
BASICPARAM::enemyTextureWhiteBlack = true;
BASICPARAM::lightStreetTextureWhiteBlack = true;
BASICPARAM::stairsRoadTextureWhiteBlack = true;
BASICPARAM::stairsTextureWhiteBlack = true;
BASICPARAM::ordinaryPeopleNum = 0;
BASICPARAM::e_nowScene = ESceneNumber::FIFTHLOAD;
BASICPARAM::e_preScene = ESceneNumber::FIFTHLOAD;
}
// ムーブ6を選択していたら
else if (optionSelectButtonNum == static_cast<EOptionSelectButton>(ETitleDraw::bonusMove6))
{
BASICPARAM::stairsNum = 0;
BASICPARAM::streetLightNum = 0;
BASICPARAM::stairsRoadNum = 0;
BASICPARAM::v_stairsArea.clear();
BASICPARAM::v_stairsAngle.clear();
BASICPARAM::v_streetLightArea.clear();
BASICPARAM::v_streetLightAngle.clear();
BASICPARAM::v_stairsRoadArea.clear();
BASICPARAM::v_stairsRoadAngle.clear();
BASICPARAM::e_TextureColor = ETextureColor::NORMAL;
BASICPARAM::charaTextureWhiteBlack = true;
BASICPARAM::anothreTextureWhiteBlack = true;
BASICPARAM::enemyTextureWhiteBlack = true;
BASICPARAM::lightStreetTextureWhiteBlack = true;
BASICPARAM::stairsRoadTextureWhiteBlack = true;
BASICPARAM::stairsTextureWhiteBlack = true;
BASICPARAM::ordinaryPeopleNum = 0;
BASICPARAM::lastCharaView = false;
BASICPARAM::lastOrdinaryView = false;
BASICPARAM::lastPaneruView = false;
BASICPARAM::lastStairsRoadView = false;
BASICPARAM::lastStairsView = false;
BASICPARAM::lastStreetLightView = false;
BASICPARAM::e_nowScene = ESceneNumber::SIXLOAD;
BASICPARAM::e_preScene = ESceneNumber::SIXLOAD;
} /// else if (optionSelectButtonNum == static_cast<EOptionSelectButton>(ETitleDraw::bonusMove6))
optionSelectMin = static_cast<int>(EOptionSelectButton::Sound);
optionSelectMax = static_cast<int>(EOptionSelectButton::GameEnd);
gameFirstStarting = false;
} /// else if (optionSelectButtonNum == static_cast<EOptionSelectButton>(ETitleDraw::bonus))
} /// if (DLLXinput::GetPadButtonData(DLLXinput::GetPlayerPadNumber(), DLLXinput::XINPUT_PAD::BUTTON_A) == 1)
// LBとRBとBACKとXボタンを同時に押したら
if (DLLXinput::GetPadButtonData(DLLXinput::GetPlayerPadNumber(), DLLXinput::XINPUT_PAD::SHOULDER_LB) >= 1
&& DLLXinput::GetPadButtonData(DLLXinput::GetPlayerPadNumber(), DLLXinput::XINPUT_PAD::SHOULDER_RB) >= 1
&& DLLXinput::GetPadButtonData(DLLXinput::GetPlayerPadNumber(), DLLXinput::XINPUT_PAD::BUTTON_BACK) >= 1
&& DLLXinput::GetPadButtonData(DLLXinput::GetPlayerPadNumber(), DLLXinput::XINPUT_PAD::BUTTON_X) == 1)
{
// おまけコマンドを出す
playBonus = true;
optionSelectMax = 8;
}
/// スティックの一回押し倒しで更新するよう調整-----------------------------------------------------------------
// 左スティックを上に倒したら
if (DLLXinput::GetPadThumbData(DLLXinput::GetPlayerPadNumber(), DLLXinput::XINPUT_PAD::STICK_LEFT_Y) > 0)
{
if (optionControllLeftStickY[0] < 2) optionControllLeftStickY[0]++;
}
// 左スティックを下に倒したら
else if (DLLXinput::GetPadThumbData(DLLXinput::GetPlayerPadNumber(), DLLXinput::XINPUT_PAD::STICK_LEFT_Y) < 0)
{
if (optionControllLeftStickY[1] < 2) optionControllLeftStickY[1]++;
}
// 左スティックを特に弄ってなかったら
else
{
optionControllLeftStickY[0] = 0;
optionControllLeftStickY[1] = 0;
}
// 上にスティックを倒したとき
if (optionControllLeftStickY[0] == 1)
{
// カーソルを上に移動する
int temp = static_cast<int>(optionSelectButtonNum);
optionSelectButtonNum = static_cast<EOptionSelectButton>(temp > optionSelectMin ? --temp : temp);
}
// 下にスティックを倒したとき
if (optionControllLeftStickY[1] == 1)
{
// カーソルを下に移動する
int temp = static_cast<int>(optionSelectButtonNum);
optionSelectButtonNum = static_cast<EOptionSelectButton>(temp < optionSelectMax ? ++temp : temp);
}
/// スティックの一回押し倒しで更新するよう調整-----------------------------------------------------------------
} /// void Manager::TitleProcess()
/// --------------------------------------------------------------------------------------------------
void Manager::TitleDraw()
{
// ゲーム開始
DrawGraph(760, 340, titleUIDraw[static_cast<int>(ETitleDraw::firstGame)], false);
if (optionSelectButtonNum == static_cast<EOptionSelectButton>(ETitleDraw::firstGame))
{
DrawBox(760 + 5, 340 + 5, 760 + 400 - 5, 340 + 69 - 5, GetColor(50, 50, 200), false);
DrawBox(760 + 4, 340 + 4, 760 + 400 - 4, 340 + 69 - 4, GetColor(50, 50, 200), false);
DrawBox(760 + 3, 340 + 3, 760 + 400 - 3, 340 + 69 - 3, GetColor(50, 50, 200), false);
}
// ロード
DrawGraph(760, 471, titleUIDraw[static_cast<int>(ETitleDraw::load)], false);
if (optionSelectButtonNum == static_cast<EOptionSelectButton>(ETitleDraw::load))
{
DrawBox(760 + 5, 471 + 5, 760 + 400 - 5, 471 + 69 - 5, GetColor(50, 50, 200), false);
DrawBox(760 + 4, 471 + 4, 760 + 400 - 4, 471 + 69 - 4, GetColor(50, 50, 200), false);
DrawBox(760 + 3, 471 + 3, 760 + 400 - 3, 471 + 69 - 3, GetColor(50, 50, 200), false);
}
// ゲーム終了
DrawGraph(760, 600, titleUIDraw[static_cast<int>(ETitleDraw::gameEnd)], false);
if (optionSelectButtonNum == static_cast<EOptionSelectButton>(ETitleDraw::gameEnd))
{
DrawBox(760 + 5, 600 + 5, 760 + 400 - 5, 600 + 69 - 5, GetColor(50, 50, 200), false);
DrawBox(760 + 4, 600 + 4, 760 + 400 - 4, 600 + 69 - 4, GetColor(50, 50, 200), false);
DrawBox(760 + 3, 600 + 3, 760 + 400 - 3, 600 + 69 - 3, GetColor(50, 50, 200), false);
}
// おまけコマンドを打っていたら
if (playBonus)
{
// おまけ
DrawGraph(760, 730, titleUIDraw[static_cast<int>(optionSelectButtonNum)], false);
if (optionSelectButtonNum >= static_cast<EOptionSelectButton>(ETitleDraw::bonus))
{
DrawBox(760 + 5, 730 + 5, 760 + 400 - 5, 730 + 69 - 5, GetColor(50, 50, 200), false);
DrawBox(760 + 4, 730 + 4, 760 + 400 - 4, 730 + 69 - 4, GetColor(50, 50, 200), false);
DrawBox(760 + 3, 730 + 3, 760 + 400 - 3, 730 + 69 - 3, GetColor(50, 50, 200), false);
}
}
} /// void Manager::TitleDraw()
/// --------------------------------------------------------------------------------------------------
void Manager::InitMove1Load()
{
moveStr.resize(max1 + 1);
{
// モデルデータ
moveStr[0] = "media\\stage\\move1_graphic.mv1";
moveStr[1] = "media\\stage\\move1_hantei.mv1";
moveStr[2] = "media\\CLPH\\motionALL.mv1";
moveStr[3] = "media\\剣\\sword.mv1";
// サウンドデータ
moveStr[4] = "media\\sound\\title.wyn";
moveStr[5] = "media\\sound\\ballHigh.wyn";
moveStr[6] = "media\\sound\\ball.wyn";
// キャラクターのテクスチャデータ
moveStr[7] = "media\\CLPH\\CLPH_hair.pyn";
moveStr[8] = "media\\CLPH\\CLPH_ex.pyn";
moveStr[9] = "media\\CLPH\\CLPH_wear.pyn";
moveStr[10] = "media\\CLPH\\CLPH_face.pyn";
// 剣のテクスチャデータ
moveStr[11] = "media\\剣\\whiteblack\\sword_Tex.pyn";
// コントローラー説明
moveStr[12] = "media\\move1\\hida.pyn";
moveStr[13] = "media\\move1\\mighi.pyn";
// ムーブ説明画像
moveStr[14] = "media\\ムーブ説明\\move1.pyn";
}
loadType.resize(max1 + 1);
{
// モデルデータ
loadType[0] = ELOADFILE::mv1model;
loadType[1] = ELOADFILE::mv1model;
loadType[2] = ELOADFILE::mv1model;
loadType[3] = ELOADFILE::mv1model;
// サウンドデータ
loadType[4] = ELOADFILE::soundStream;
loadType[5] = ELOADFILE::soundmem;
loadType[6] = ELOADFILE::soundmem;
// キャラクターのテクスチャデータ
loadType[7] = ELOADFILE::graph;
loadType[8] = ELOADFILE::graph;
loadType[9] = ELOADFILE::graph;
loadType[10] = ELOADFILE::graph;
// 剣のテクスチャデータ
loadType[11] = ELOADFILE::graph;
// コントローラー説明
loadType[12] = ELOADFILE::graph;
loadType[13] = ELOADFILE::graph;
loadType[14] = ELOADFILE::graph;
}
} /// void Manager::InitMove1Load()
/// --------------------------------------------------------------------------------------------------
void Manager::InitMove2Load()
{
moveStr.resize(max2 + 1);
{
// モデルデータ
moveStr[0] = "media\\stage\\move1_hantei.mv1";
moveStr[1] = "media\\swordCLPH\\motionALL.mv1";
moveStr[2] = "media\\paneru\\paneru.mv1";
moveStr[3] = "media\\kaidan\\kaidan.mv1";
moveStr[4] = "media\\kaidan\\kaidan_hantei.mv1";
moveStr[5] = "media\\街灯\\Gaitou.mv1";
moveStr[6] = "media\\skyBox\\SkyDome.mv1";
moveStr[7] = "media\\ブロック\\cubeblock.mv1";
moveStr[8] = "media\\stage\\move1_graphic.mv1";
// キャラのテクスチャデータ
moveStr[9] = "media\\swordCLPH\\texture\\whiteblack\\sword_Tex.pyn";
moveStr[10] = "media\\swordCLPH\\texture\\whiteblack\\CLPH_hair.pyn";
moveStr[11] = "media\\swordCLPH\\texture\\whiteblack\\CLPH_wear.pyn";
moveStr[12] = "media\\swordCLPH\\texture\\whiteblack\\CLPH_face.pyn";
moveStr[13] = "media\\swordCLPH\\texture\\whiteblack\\CLPH_ex.pyn";
// 階段のテクスチャデータ
moveStr[14] = "media\\kaidan\\whiteblack\\kaidan.pyn";
// 街灯のテクスチャデータ
moveStr[15] = "media\\街灯\\whiteblack\\body_col.pyn";
moveStr[16] = "media\\街灯\\whiteblack\\lamp_COLandems.pyn";
// スカイボックスのテクスチャデータ
moveStr[17] = "media\\skyBox\\whiteblack.byn";
// ブロックのテクスチャ
moveStr[18] = "media\\ブロック\\whiteblack\\tex.pyn";
// サウンドデータ
moveStr[19] = "media\\sound\\getUp.wyn";
// 精算機械データ
moveStr[20] = "media\\Terminal\\terminal.mv1";
// 精算機械テクスチャ
moveStr[21] = "media\\Terminal\\whiteblack\\Terminal.pyn";
moveStr[22] = "media\\Terminal\\whiteblack\\T_display.pyn";
// 精密機械の補助説明
moveStr[23] = "media\\Terminal\\push.pyn";
// 階段とそのあとの床データ
moveStr[24] = "media\\階段と床合体\\kaidan_yuka1.mv1";
// 階段とそのあとの床のテクスチャデータ
moveStr[25] = "media\\階段と床合体\\whiteblack\\kaidan.pyn";
moveStr[26] = "media\\階段と床合体\\whiteblack\\yuka.pyn";
// 階段と床のあたり判定データ
moveStr[27] = "media\\階段と床合体\\kaidan_yuka1_hantei.mv1";
// 2D関連
moveStr[28] = "media\\move2\\TerminalUI\\block_2D.pyn";
moveStr[29] = "media\\move2\\TerminalUI\\CLPH_up.pyn";
moveStr[30] = "media\\move2\\TerminalUI\\gaitou_2D.pyn";
moveStr[31] = "media\\move2\\TerminalUI\\kaidan_2d.pyn";
moveStr[32] = "media\\move2\\TerminalUI\\Terminal_2D.pyn";
moveStr[33] = "media\\move2\\TerminalUI\\kaidan_yuka2D.pyn";
// キャラクター周りの3DSE
moveStr[34] = "media\\sound\\jump.wyn";
moveStr[35] = "media\\sound\\footFloorSE.wyn";
moveStr[36] = "media\\sound\\footSE.wyn";
moveStr[37] = "media\\sound\\landing.wyn";
moveStr[38] = "media\\sound\\landingSecond.wyn";
// キャラクターの攻撃の音
moveStr[39] = "media\\sound\\attackOne.wyn";
moveStr[40] = "media\\sound\\attackTwo.wyn";
moveStr[41] = "media\\sound\\attackThree.wyn";
// ドロップアイテムのSEの二種類目
moveStr[42] = "media\\sound\\getUpSecond.wyn";
// 次のステージでのBGMを流す
moveStr[43] = "media\\sound\\bgm.wyn";
// 操作の説明
moveStr[44] = "media\\move2\\attackTrans.pyn";
moveStr[45] = "media\\move2\\jumpTrans.pyn";
moveStr[46] = "media\\move2\\fastSpeedTrans.pyn";
moveStr[47] = "media\\move2\\optionTrans.pyn";
// ムーブの説明
moveStr[48] = "media\\ムーブ説明\\move2.pyn";
}
loadType.resize(max2 + 1);
{
loadType[0] = ELOADFILE::mv1model;
loadType[1] = ELOADFILE::mv1model;
loadType[2] = ELOADFILE::mv1model;
loadType[3] = ELOADFILE::mv1model;
loadType[4] = ELOADFILE::mv1model;
loadType[5] = ELOADFILE::mv1model;
loadType[6] = ELOADFILE::mv1model;
loadType[7] = ELOADFILE::mv1model;
loadType[8] = ELOADFILE::mv1model;
loadType[9] = ELOADFILE::graph;
loadType[10] = ELOADFILE::graph;
loadType[11] = ELOADFILE::graph;
loadType[12] = ELOADFILE::graph;
loadType[13] = ELOADFILE::graph;
loadType[14] = ELOADFILE::graph;
loadType[15] = ELOADFILE::graph;
loadType[16] = ELOADFILE::graph;
loadType[17] = ELOADFILE::graph;
loadType[18] = ELOADFILE::graph;
loadType[19] = ELOADFILE::sound3DSource;
loadType[20] = ELOADFILE::mv1model;
loadType[21] = ELOADFILE::graph;
loadType[22] = ELOADFILE::graph;
loadType[23] = ELOADFILE::graph;
loadType[24] = ELOADFILE::mv1model;
loadType[25] = ELOADFILE::graph;
loadType[26] = ELOADFILE::graph;
loadType[27] = ELOADFILE::mv1model;
loadType[28] = ELOADFILE::graph;
loadType[29] = ELOADFILE::graph;
loadType[30] = ELOADFILE::graph;
loadType[31] = ELOADFILE::graph;
loadType[32] = ELOADFILE::graph;
loadType[33] = ELOADFILE::graph;
loadType[34] = ELOADFILE::sound3DSource;
loadType[35] = ELOADFILE::sound3DSource;
loadType[36] = ELOADFILE::sound3DSource;
loadType[37] = ELOADFILE::sound3DSource;
loadType[38] = ELOADFILE::sound3DSource;
loadType[39] = ELOADFILE::sound3DSource;
loadType[40] = ELOADFILE::sound3DSource;
loadType[41] = ELOADFILE::sound3DSource;
loadType[42] = ELOADFILE::sound3DSource;
loadType[43] = ELOADFILE::soundStream;
loadType[44] = ELOADFILE::graph;
loadType[45] = ELOADFILE::graph;
loadType[46] = ELOADFILE::graph;
loadType[47] = ELOADFILE::graph;
loadType[48] = ELOADFILE::graph;
}
} /// void Manager::InitMove2Load()
/// --------------------------------------------------------------------------------------------------
void Manager::InitMove3Load()
{
moveStr.resize(max3 + 1);
{
// モデルデータ
moveStr[0] = "media\\stage\\move1_hantei.mv1";
moveStr[1] = "media\\swordCLPH\\motionALL.mv1";
moveStr[2] = "media\\paneru\\paneru.mv1";
moveStr[3] = "media\\kaidan\\kaidan.mv1";
moveStr[4] = "media\\kaidan\\kaidan_hantei.mv1";
moveStr[5] = "media\\街灯\\Gaitou.mv1";
moveStr[6] = "media\\skyBox\\SkyDome.mv1";
moveStr[7] = "media\\stage\\move1_graphic.mv1";
// キャラのテクスチャデータ
moveStr[8] = "media\\swordCLPH\\texture\\whiteblack\\sword_Tex.pyn";
moveStr[9] = "media\\swordCLPH\\texture\\whiteblack\\CLPH_hair.pyn";
moveStr[10] = "media\\swordCLPH\\texture\\whiteblack\\CLPH_wear.pyn";
moveStr[11] = "media\\swordCLPH\\texture\\whiteblack\\CLPH_face.pyn";
moveStr[12] = "media\\swordCLPH\\texture\\whiteblack\\CLPH_ex.pyn";
// 階段のテクスチャデータ
moveStr[13] = "media\\kaidan\\whiteblack\\kaidan.pyn";
// 街灯のテクスチャデータ
moveStr[14] = "media\\街灯\\whiteblack\\body_col.pyn";
moveStr[15] = "media\\街灯\\whiteblack\\lamp_COLandems.pyn";
// スカイボックスのテクスチャデータ
moveStr[16] = "media\\skyBox\\whiteblack.byn";
// サウンドデータ
moveStr[17] = "media\\sound\\getUp.wyn";
// 精算機械データ
moveStr[18] = "media\\Terminal\\terminal.mv1";
// 精算機械テクスチャ
moveStr[19] = "media\\Terminal\\whiteblack\\Terminal.pyn";
moveStr[20] = "media\\Terminal\\whiteblack\\T_display.pyn";
// 精密機械の補助説明
moveStr[21] = "media\\Terminal\\push.pyn";
// 階段とそのあとの床データ
moveStr[22] = "media\\階段と床合体\\kaidan_yuka1.mv1";
// 階段とそのあとの床のテクスチャデータ
moveStr[23] = "media\\階段と床合体\\whiteblack\\kaidan.pyn";
moveStr[24] = "media\\階段と床合体\\whiteblack\\yuka.pyn";
// 階段と床のあたり判定データ
moveStr[25] = "media\\階段と床合体\\kaidan_yuka1_hantei.mv1";
// キャラクター周りの3DSE
moveStr[26] = "media\\sound\\jump.wyn";
moveStr[27] = "media\\sound\\footFloorSE.wyn";
moveStr[28] = "media\\sound\\footSE.wyn";
moveStr[29] = "media\\sound\\landing.wyn";
moveStr[30] = "media\\sound\\landingSecond.wyn";
// キャラクターの攻撃の音
moveStr[31] = "media\\sound\\attackOne.wyn";
moveStr[32] = "media\\sound\\attackTwo.wyn";
moveStr[33] = "media\\sound\\attackThree.wyn";
// ドロップアイテムのSEの二種類目
moveStr[34] = "media\\sound\\getUpSecond.wyn";
// BGM
moveStr[35] = "media\\sound\\bgm.wyn";
// 敵のスライムのデータ
moveStr[36] = "media\\move3\\inkSlime\\motionALL.mv1";
moveStr[37] = "media\\move3\\inkSlime\\texture\\normal.pyn";
// 敵のクレヨンヒューマンのデータ
moveStr[38] = "media\\move3\\crayon\\motionALL.mv1";
moveStr[39] = "media\\move3\\crayon\\texture\\normal.pyn";
// ドロップアイテムのデータ
moveStr[40] = "media\\move3\\dropItem\\ink.mv1";
moveStr[41] = "media\\move3\\dropItem\\texture\\normal.pyn";
// ダメージ演出画像
moveStr[42] = "media\\damage\\damage1\\whiteblack.pyn";
moveStr[43] = "media\\damage\\damage2\\whiteblack.pyn";
moveStr[44] = "media\\damage\\damage3\\whiteblack.pyn";
moveStr[45] = "media\\damage\\Blood\\bl1\\whiteblack.pyn";
moveStr[46] = "media\\damage\\Blood\\bl2\\whiteblack.pyn";
moveStr[47] = "media\\damage\\Blood\\bl3\\whiteblack.pyn";
moveStr[48] = "media\\damage\\Blood\\bl4\\whiteblack.pyn";
moveStr[49] = "media\\damage\\Blood\\bl5\\whiteblack.pyn";
moveStr[50] = "media\\damage\\Blood\\bl6\\whiteblack.pyn";
moveStr[51] = "media\\damage\\Blood\\bl7\\whiteblack.pyn";
moveStr[52] = "media\\damage\\Blood\\bl8\\whiteblack.pyn";
moveStr[53] = "media\\damage\\Blood\\bl9\\whiteblack.pyn";
moveStr[54] = "media\\damage\\Blood\\bl10\\whiteblack.pyn";
// 敵の攻撃音
moveStr[55] = "media\\sound\\enemyAttack.wyn";
// クレヨンの死ぬ音
moveStr[56] = "media\\sound\\crayonDeath.wyn";
// 攻撃BGM
moveStr[57] = "media\\sound\\battleBGM.wyn";
// ムーブ説明画像
moveStr[58] = "media\\ムーブ説明\\move3.pyn";
// 精密機械での説明画像
moveStr[59] = "media\\move3\\UI\\another.pyn";
moveStr[60] = "media\\move3\\UI\\charaSelect.pyn";
moveStr[61] = "media\\move3\\UI\\enemy.pyn";
moveStr[62] = "media\\move3\\UI\\stairs.pyn";
moveStr[63] = "media\\move3\\UI\\stairsRoad.pyn";
moveStr[64] = "media\\move3\\UI\\streetLight.pyn";
}
loadType.resize(max3 + 1);
{
loadType[0] = ELOADFILE::mv1model;
loadType[1] = ELOADFILE::mv1model;
loadType[2] = ELOADFILE::mv1model;
loadType[3] = ELOADFILE::mv1model;
loadType[4] = ELOADFILE::mv1model;
loadType[5] = ELOADFILE::mv1model;
loadType[6] = ELOADFILE::mv1model;
loadType[7] = ELOADFILE::mv1model;
loadType[8] = ELOADFILE::graph;
loadType[9] = ELOADFILE::graph;
loadType[10] = ELOADFILE::graph;
loadType[11] = ELOADFILE::graph;
loadType[12] = ELOADFILE::graph;
loadType[13] = ELOADFILE::graph;
loadType[14] = ELOADFILE::graph;
loadType[15] = ELOADFILE::graph;
loadType[16] = ELOADFILE::graph;
loadType[17] = ELOADFILE::sound3DSource;
loadType[18] = ELOADFILE::mv1model;
loadType[19] = ELOADFILE::graph;
loadType[20] = ELOADFILE::graph;
loadType[21] = ELOADFILE::graph;
loadType[22] = ELOADFILE::mv1model;
loadType[23] = ELOADFILE::graph;
loadType[24] = ELOADFILE::graph;
loadType[25] = ELOADFILE::mv1model;
loadType[26] = ELOADFILE::sound3DSource;
loadType[27] = ELOADFILE::sound3DSource;
loadType[28] = ELOADFILE::sound3DSource;
loadType[29] = ELOADFILE::sound3DSource;
loadType[30] = ELOADFILE::sound3DSource;
loadType[31] = ELOADFILE::sound3DSource;
loadType[32] = ELOADFILE::sound3DSource;
loadType[33] = ELOADFILE::sound3DSource;
loadType[34] = ELOADFILE::sound3DSource;
loadType[35] = ELOADFILE::soundStream;
loadType[36] = ELOADFILE::mv1model;
loadType[37] = ELOADFILE::graph;
loadType[38] = ELOADFILE::mv1model;
loadType[39] = ELOADFILE::graph;
loadType[40] = ELOADFILE::mv1model;
loadType[41] = ELOADFILE::graph;
loadType[42] = ELOADFILE::graph;
loadType[43] = ELOADFILE::graph;
loadType[44] = ELOADFILE::graph;
loadType[45] = ELOADFILE::graph;
loadType[46] = ELOADFILE::graph;
loadType[47] = ELOADFILE::graph;
loadType[48] = ELOADFILE::graph;
loadType[49] = ELOADFILE::graph;
loadType[50] = ELOADFILE::graph;
loadType[51] = ELOADFILE::graph;
loadType[52] = ELOADFILE::graph;
loadType[53] = ELOADFILE::graph;
loadType[54] = ELOADFILE::graph;
loadType[55] = ELOADFILE::sound3DSource;
loadType[56] = ELOADFILE::sound3DSource;
loadType[57] = ELOADFILE::soundStream;
loadType[58] = ELOADFILE::graph;
loadType[59] = ELOADFILE::graph;
loadType[60] = ELOADFILE::graph;
loadType[61] = ELOADFILE::graph;
loadType[62] = ELOADFILE::graph;
loadType[63] = ELOADFILE::graph;
loadType[64] = ELOADFILE::graph;
}
} /// void Manager::InitMove3Load()
/// --------------------------------------------------------------------------------------------------
void Manager::InitMove4Load()
{
moveStr.resize(max4 + 1);
{
// モデルデータ
moveStr[0] = "media\\stage\\move1_hantei.mv1";
moveStr[1] = "media\\swordCLPH\\motionALL.mv1";
moveStr[2] = "media\\paneru\\paneru.mv1";
moveStr[3] = "media\\kaidan\\kaidan.mv1";
moveStr[4] = "media\\kaidan\\kaidan_hantei.mv1";
moveStr[5] = "media\\街灯\\Gaitou.mv1";
moveStr[6] = "media\\skyBox\\SkyDome.mv1";
moveStr[7] = "media\\stage\\move1_graphic.mv1";
// キャラのテクスチャデータ
moveStr[8] = "media\\swordCLPH\\texture\\whiteblack\\sword_Tex.pyn";
moveStr[9] = "media\\swordCLPH\\texture\\whiteblack\\CLPH_hair.pyn";
moveStr[10] = "media\\swordCLPH\\texture\\whiteblack\\CLPH_wear.pyn";
moveStr[11] = "media\\swordCLPH\\texture\\whiteblack\\CLPH_face.pyn";
moveStr[12] = "media\\swordCLPH\\texture\\whiteblack\\CLPH_ex.pyn";
// 階段のテクスチャデータ
moveStr[13] = "media\\kaidan\\whiteblack\\kaidan.pyn";
// 街灯のテクスチャデータ
moveStr[14] = "media\\街灯\\whiteblack\\body_col.pyn";
moveStr[15] = "media\\街灯\\whiteblack\\lamp_COLandems.pyn";
// スカイボックスのテクスチャデータ
moveStr[16] = "media\\skyBox\\whiteblack.byn";
// 精算機械データ
moveStr[17] = "media\\Terminal\\terminal.mv1";
// 精算機械テクスチャ
moveStr[18] = "media\\Terminal\\whiteblack\\Terminal.pyn";
moveStr[19] = "media\\Terminal\\whiteblack\\T_display.pyn";
// 精密機械の補助説明
moveStr[20] = "media\\Terminal\\push.pyn";
// 階段とそのあとの床データ
moveStr[21] = "media\\階段と床合体\\kaidan_yuka1.mv1";
// 階段とそのあとの床のテクスチャデータ
moveStr[22] = "media\\階段と床合体\\whiteblack\\kaidan.pyn";
moveStr[23] = "media\\階段と床合体\\whiteblack\\yuka.pyn";
// 階段と床のあたり判定データ
moveStr[24] = "media\\階段と床合体\\kaidan_yuka1_hantei.mv1";
// キャラクター周りの3DSE
moveStr[25] = "media\\sound\\jump.wyn";
moveStr[26] = "media\\sound\\footFloorSE.wyn";
moveStr[27] = "media\\sound\\footSE.wyn";
moveStr[28] = "media\\sound\\landing.wyn";
moveStr[29] = "media\\sound\\landingSecond.wyn";
// キャラクターの攻撃の音
moveStr[30] = "media\\sound\\attackOne.wyn";
moveStr[31] = "media\\sound\\attackTwo.wyn";
moveStr[32] = "media\\sound\\attackThree.wyn";
// BGM
moveStr[33] = "media\\sound\\bgm.wyn";
// 人のデータ
moveStr[34] = "media\\move4\\people\\motionALL.mv1";
moveStr[35] = "media\\move4\\people\\texture\\whiteblack.pyn";
// 敵のデータ
moveStr[36] = "media\\move4\\peopleEnemy\\motionALL.mv1";
moveStr[37] = "media\\move4\\peopleEnemy\\texture\\whiteblack.pyn";
// 攻撃BGM
moveStr[38] = "media\\sound\\battleBGM.wyn";
// ムーブの説明画像
moveStr[39] = "media\\ムーブ説明\\move4.pyn";
// ダメージ演出画像
moveStr[40] = "media\\damage\\damage1\\whiteblack.pyn";
moveStr[41] = "media\\damage\\damage2\\whiteblack.pyn";
moveStr[42] = "media\\damage\\damage3\\whiteblack.pyn";
moveStr[43] = "media\\damage\\Blood\\bl1\\whiteblack.pyn";
moveStr[44] = "media\\damage\\Blood\\bl2\\whiteblack.pyn";
moveStr[45] = "media\\damage\\Blood\\bl3\\whiteblack.pyn";
moveStr[46] = "media\\damage\\Blood\\bl4\\whiteblack.pyn";
moveStr[47] = "media\\damage\\Blood\\bl5\\whiteblack.pyn";
moveStr[48] = "media\\damage\\Blood\\bl6\\whiteblack.pyn";
moveStr[49] = "media\\damage\\Blood\\bl7\\whiteblack.pyn";
moveStr[50] = "media\\damage\\Blood\\bl8\\whiteblack.pyn";
moveStr[51] = "media\\damage\\Blood\\bl9\\whiteblack.pyn";
moveStr[52] = "media\\damage\\Blood\\bl10\\whiteblack.pyn";
// 敵の攻撃音
moveStr[53] = "media\\sound\\enemyAttack.wyn";
}
loadType.resize(max4 + 1);
{
loadType[0] = ELOADFILE::mv1model;
loadType[1] = ELOADFILE::mv1model;
loadType[2] = ELOADFILE::mv1model;
loadType[3] = ELOADFILE::mv1model;
loadType[4] = ELOADFILE::mv1model;
loadType[5] = ELOADFILE::mv1model;
loadType[6] = ELOADFILE::mv1model;
loadType[7] = ELOADFILE::mv1model;
loadType[8] = ELOADFILE::graph;
loadType[9] = ELOADFILE::graph;
loadType[10] = ELOADFILE::graph;
loadType[11] = ELOADFILE::graph;
loadType[12] = ELOADFILE::graph;
loadType[13] = ELOADFILE::graph;
loadType[14] = ELOADFILE::graph;
loadType[15] = ELOADFILE::graph;
loadType[16] = ELOADFILE::graph;
loadType[17] = ELOADFILE::mv1model;
loadType[18] = ELOADFILE::graph;
loadType[19] = ELOADFILE::graph;
loadType[20] = ELOADFILE::graph;
loadType[21] = ELOADFILE::mv1model;
loadType[22] = ELOADFILE::graph;
loadType[23] = ELOADFILE::graph;
loadType[24] = ELOADFILE::mv1model;
loadType[25] = ELOADFILE::sound3DSource;
loadType[26] = ELOADFILE::sound3DSource;
loadType[27] = ELOADFILE::sound3DSource;
loadType[28] = ELOADFILE::sound3DSource;
loadType[29] = ELOADFILE::sound3DSource;
loadType[30] = ELOADFILE::sound3DSource;
loadType[31] = ELOADFILE::sound3DSource;
loadType[32] = ELOADFILE::sound3DSource;
loadType[33] = ELOADFILE::soundStream;
loadType[34] = ELOADFILE::mv1model;
loadType[35] = ELOADFILE::graph;
loadType[36] = ELOADFILE::mv1model;
loadType[37] = ELOADFILE::graph;
loadType[38] = ELOADFILE::soundStream;
loadType[39] = ELOADFILE::graph;
loadType[40] = ELOADFILE::graph;
loadType[41] = ELOADFILE::graph;
loadType[42] = ELOADFILE::graph;
loadType[43] = ELOADFILE::graph;
loadType[44] = ELOADFILE::graph;
loadType[45] = ELOADFILE::graph;
loadType[46] = ELOADFILE::graph;
loadType[47] = ELOADFILE::graph;
loadType[48] = ELOADFILE::graph;
loadType[49] = ELOADFILE::graph;
loadType[50] = ELOADFILE::graph;
loadType[51] = ELOADFILE::graph;
loadType[52] = ELOADFILE::graph;
loadType[53] = ELOADFILE::graph;
loadType[54] = ELOADFILE::sound3DSource;
}
} /// void Manager::InitMove4Load()
/// --------------------------------------------------------------------------------------------------
void Manager::Move4TextureReload()
{
switch (BASICPARAM::e_TextureColor)
{
case ETextureColor::NORMAL:
if (!BASICPARAM::charaTextureWhiteBlack)
{
// キャラのテクスチャデータ
moveStr[8] = "media\\swordCLPH\\texture\\normal\\sword_Tex.pyn";
moveStr[9] = "media\\swordCLPH\\texture\\normal\\CLPH_hair.pyn";
moveStr[10] = "media\\swordCLPH\\texture\\normal\\CLPH_wear.pyn";
moveStr[11] = "media\\swordCLPH\\texture\\normal\\CLPH_face.pyn";
moveStr[12] = "media\\swordCLPH\\texture\\normal\\CLPH_ex.pyn";
// ダメージ演出画像
moveStr[40] = "media\\damage\\damage1\\normal.pyn";
moveStr[41] = "media\\damage\\damage2\\normal.pyn";
moveStr[42] = "media\\damage\\damage3\\normal.pyn";
moveStr[43] = "media\\damage\\Blood\\bl1\\normal.pyn";
moveStr[44] = "media\\damage\\Blood\\bl2\\normal.pyn";
moveStr[45] = "media\\damage\\Blood\\bl3\\normal.pyn";
moveStr[46] = "media\\damage\\Blood\\bl4\\normal.pyn";
moveStr[47] = "media\\damage\\Blood\\bl5\\normal.pyn";
moveStr[48] = "media\\damage\\Blood\\bl6\\normal.pyn";
moveStr[49] = "media\\damage\\Blood\\bl7\\normal.pyn";
moveStr[50] = "media\\damage\\Blood\\bl8\\normal.pyn";
moveStr[51] = "media\\damage\\Blood\\bl9\\normal.pyn";
moveStr[52] = "media\\damage\\Blood\\bl10\\normal.pyn";
}
if (!BASICPARAM::enemyTextureWhiteBlack)
{
moveStr[37] = "media\\move4\\peopleEnemy\\texture\\normal.pyn";
}
if (!BASICPARAM::lightStreetTextureWhiteBlack)
{
// 街灯のテクスチャデータ
moveStr[14] = "media\\街灯\\normal\\body_col.pyn";
moveStr[15] = "media\\街灯\\normal\\lamp_COLandems.pyn";
}
if (!BASICPARAM::stairsRoadTextureWhiteBlack)
{
// 階段とそのあとの床のテクスチャデータ
moveStr[22] = "media\\階段と床合体\\normal\\kaidan.pyn";
moveStr[23] = "media\\階段と床合体\\normal\\yuka.pyn";
}
if (!BASICPARAM::stairsTextureWhiteBlack)
{
// 階段のテクスチャデータ
moveStr[13] = "media\\kaidan\\normal\\kaidan.pyn";
}
if (!BASICPARAM::anothreTextureWhiteBlack)
{
// 人のデータ
moveStr[35] = "media\\move4\\people\\texture\\normal.pyn";
// スカイボックスのテクスチャデータ
moveStr[16] = "media\\skyBox\\normal.byn";
// 精算機械テクスチャ
moveStr[18] = "media\\Terminal\\normal\\Terminal.pyn";
moveStr[19] = "media\\Terminal\\normal\\T_display.pyn";
}
break;
case ETextureColor::P_CORRECTION:
if (!BASICPARAM::charaTextureWhiteBlack)
{
// キャラのテクスチャデータ
moveStr[8] = "media\\swordCLPH\\texture\\P\\sword_Tex.pyn";
moveStr[9] = "media\\swordCLPH\\texture\\P\\CLPH_hair.pyn";
moveStr[10] = "media\\swordCLPH\\texture\\P\\CLPH_wear.pyn";
moveStr[11] = "media\\swordCLPH\\texture\\P\\CLPH_face.pyn";
moveStr[12] = "media\\swordCLPH\\texture\\P\\CLPH_ex.pyn";
// ダメージ演出画像
moveStr[40] = "media\\damage\\damage1\\P.pyn";
moveStr[41] = "media\\damage\\damage2\\P.pyn";
moveStr[42] = "media\\damage\\damage3\\P.pyn";
moveStr[43] = "media\\damage\\Blood\\bl1\\P.pyn";
moveStr[44] = "media\\damage\\Blood\\bl2\\P.pyn";
moveStr[45] = "media\\damage\\Blood\\bl3\\P.pyn";
moveStr[46] = "media\\damage\\Blood\\bl4\\P.pyn";
moveStr[47] = "media\\damage\\Blood\\bl5\\P.pyn";
moveStr[48] = "media\\damage\\Blood\\bl6\\P.pyn";
moveStr[49] = "media\\damage\\Blood\\bl7\\P.pyn";
moveStr[50] = "media\\damage\\Blood\\bl8\\P.pyn";
moveStr[51] = "media\\damage\\Blood\\bl9\\P.pyn";
moveStr[52] = "media\\damage\\Blood\\bl10\\P.pyn";
}
if (!BASICPARAM::enemyTextureWhiteBlack)
{
moveStr[37] = "media\\move4\\peopleEnemy\\texture\\P.pyn";
}
if (!BASICPARAM::lightStreetTextureWhiteBlack)
{
// 街灯のテクスチャデータ
moveStr[14] = "media\\街灯\\P\\body_col.pyn";
moveStr[15] = "media\\街灯\\P\\lamp_COLandems.pyn";
}
if (!BASICPARAM::stairsRoadTextureWhiteBlack)
{
// 階段とそのあとの床のテクスチャデータ
moveStr[22] = "media\\階段と床合体\\P\\kaidan.pyn";
moveStr[23] = "media\\階段と床合体\\P\\yuka.pyn";
}
if (!BASICPARAM::stairsTextureWhiteBlack)
{
// 階段のテクスチャデータ
moveStr[13] = "media\\kaidan\\P\\kaidan.pyn";
}
if (!BASICPARAM::anothreTextureWhiteBlack)
{
// 人のデータ
moveStr[35] = "media\\move4\\people\\texture\\P.pyn";
// スカイボックスのテクスチャデータ
moveStr[16] = "media\\skyBox\\P.byn";
// 精算機械テクスチャ
moveStr[18] = "media\\Terminal\\P\\Terminal.pyn";
moveStr[19] = "media\\Terminal\\P\\T_display.pyn";
}
break;
case ETextureColor::D_CORRECTION:
if (!BASICPARAM::charaTextureWhiteBlack)
{
// キャラのテクスチャデータ
moveStr[8] = "media\\swordCLPH\\texture\\D\\sword_Tex.pyn";
moveStr[9] = "media\\swordCLPH\\texture\\D\\CLPH_hair.pyn";
moveStr[10] = "media\\swordCLPH\\texture\\D\\CLPH_wear.pyn";
moveStr[11] = "media\\swordCLPH\\texture\\D\\CLPH_face.pyn";
moveStr[12] = "media\\swordCLPH\\texture\\D\\CLPH_ex.pyn";
// ダメージ演出画像
moveStr[40] = "media\\damage\\damage1\\D.pyn";
moveStr[41] = "media\\damage\\damage2\\D.pyn";
moveStr[42] = "media\\damage\\damage3\\D.pyn";
moveStr[43] = "media\\damage\\Blood\\bl1\\D.pyn";
moveStr[44] = "media\\damage\\Blood\\bl2\\D.pyn";
moveStr[45] = "media\\damage\\Blood\\bl3\\D.pyn";
moveStr[46] = "media\\damage\\Blood\\bl4\\D.pyn";
moveStr[47] = "media\\damage\\Blood\\bl5\\D.pyn";
moveStr[48] = "media\\damage\\Blood\\bl6\\D.pyn";
moveStr[49] = "media\\damage\\Blood\\bl7\\D.pyn";
moveStr[50] = "media\\damage\\Blood\\bl8\\D.pyn";
moveStr[51] = "media\\damage\\Blood\\bl9\\D.pyn";
moveStr[52] = "media\\damage\\Blood\\bl10\\D.pyn";
}
if (!BASICPARAM::enemyTextureWhiteBlack)
{
moveStr[37] = "media\\move4\\peopleEnemy\\texture\\D.pyn";
}
if (!BASICPARAM::lightStreetTextureWhiteBlack)
{
// 街灯のテクスチャデータ
moveStr[14] = "media\\街灯\\D\\body_col.pyn";
moveStr[15] = "media\\街灯\\D\\lamp_COLandems.pyn";
}
if (!BASICPARAM::stairsRoadTextureWhiteBlack)
{
// 階段とそのあとの床のテクスチャデータ
moveStr[22] = "media\\階段と床合体\\D\\kaidan.pyn";
moveStr[23] = "media\\階段と床合体\\D\\yuka.pyn";
}
if (!BASICPARAM::stairsTextureWhiteBlack)
{
// 階段のテクスチャデータ
moveStr[13] = "media\\kaidan\\D\\kaidan.pyn";
}
if (!BASICPARAM::anothreTextureWhiteBlack)
{
// 人のデータ
moveStr[35] = "media\\move4\\people\\texture\\D.pyn";
// スカイボックスのテクスチャデータ
moveStr[16] = "media\\skyBox\\D.byn";
// 精算機械テクスチャ
moveStr[18] = "media\\Terminal\\D\\Terminal.pyn";
moveStr[19] = "media\\Terminal\\D\\T_display.pyn";
}
break;
default:
break;
}
} /// void Manager::Move4TextureReload()
/// --------------------------------------------------------------------------------------------------
void Manager::InitMove5Load()
{
moveStr.resize(max5 + 1);
{
// モデルデータ
moveStr[0] = "media\\stage\\move1_hantei.mv1";
moveStr[1] = "media\\swordCLPH\\motionALL.mv1";
moveStr[2] = "media\\paneru\\paneru.mv1";
moveStr[3] = "media\\kaidan\\kaidan.mv1";
moveStr[4] = "media\\kaidan\\kaidan_hantei.mv1";
moveStr[5] = "media\\街灯\\Gaitou.mv1";
moveStr[6] = "media\\skyBox\\SkyDome.mv1";
moveStr[7] = "media\\stage\\move1_graphic.mv1";
// キャラのテクスチャデータ
moveStr[8] = "media\\swordCLPH\\texture\\whiteblack\\sword_Tex.pyn";
moveStr[9] = "media\\swordCLPH\\texture\\whiteblack\\CLPH_hair.pyn";
moveStr[10] = "media\\swordCLPH\\texture\\whiteblack\\CLPH_wear.pyn";
moveStr[11] = "media\\swordCLPH\\texture\\whiteblack\\CLPH_face.pyn";
moveStr[12] = "media\\swordCLPH\\texture\\whiteblack\\CLPH_ex.pyn";
// 階段のテクスチャデータ
moveStr[13] = "media\\kaidan\\whiteblack\\kaidan.pyn";
// 街灯のテクスチャデータ
moveStr[14] = "media\\街灯\\whiteblack\\body_col.pyn";
moveStr[15] = "media\\街灯\\whiteblack\\lamp_COLandems.pyn";
// スカイボックスのテクスチャデータ
moveStr[16] = "media\\skyBox\\whiteblack.byn";
// 精算機械データ
moveStr[17] = "media\\Terminal\\terminal.mv1";
// 精算機械テクスチャ
moveStr[18] = "media\\Terminal\\whiteblack\\Terminal.pyn";
moveStr[19] = "media\\Terminal\\whiteblack\\T_display.pyn";
// 精密機械の補助説明
moveStr[20] = "media\\Terminal\\push.pyn";
// 階段とそのあとの床データ
moveStr[21] = "media\\階段と床合体\\kaidan_yuka1.mv1";
// 階段とそのあとの床のテクスチャデータ
moveStr[22] = "media\\階段と床合体\\whiteblack\\kaidan.pyn";
moveStr[23] = "media\\階段と床合体\\whiteblack\\yuka.pyn";
// 階段と床のあたり判定データ
moveStr[24] = "media\\階段と床合体\\kaidan_yuka1_hantei.mv1";
// キャラクター周りの3DSE
moveStr[25] = "media\\sound\\jump.wyn";
moveStr[26] = "media\\sound\\footFloorSE.wyn";
moveStr[27] = "media\\sound\\footSE.wyn";
moveStr[28] = "media\\sound\\landing.wyn";
moveStr[29] = "media\\sound\\landingSecond.wyn";
// キャラクターの攻撃の音
moveStr[30] = "media\\sound\\attackOne.wyn";
moveStr[31] = "media\\sound\\attackTwo.wyn";
moveStr[32] = "media\\sound\\attackThree.wyn";
// BGM
moveStr[33] = "media\\sound\\bgm.wyn";
// 敵のデータ
moveStr[34] = "media\\childCLPH\\motionALL.mv1";
moveStr[35] = "media\\childCLPH\\texture\\whiteblack.pyn";
// 一般人のデータ
moveStr[36] = "media\\move4\\people\\motionALL.mv1";
moveStr[37] = "media\\move4\\people\\texture\\whiteblack.pyn";
// ムーブの説明画像
moveStr[38] = "media\\ムーブ説明\\move5.pyn";
// 一定数捕まえたら流すSE
moveStr[39] = "media\\sound\\savemisson.wyn";
// 一定数捕まえた時に描画するUI
moveStr[40] = "media\\move5\\adjustment.pyn";
moveStr[41] = "media\\move5\\character.pyn";
moveStr[42] = "media\\move5\\ordinary.pyn";
moveStr[43] = "media\\move5\\paneru.pyn";
moveStr[44] = "media\\move5\\stairs.pyn";
moveStr[45] = "media\\move5\\stairsRoad.pyn";
moveStr[46] = "media\\move5\\streetLight.pyn";
}
loadType.resize(max5 + 1);
{
loadType[0] = ELOADFILE::mv1model;
loadType[1] = ELOADFILE::mv1model;
loadType[2] = ELOADFILE::mv1model;
loadType[3] = ELOADFILE::mv1model;
loadType[4] = ELOADFILE::mv1model;
loadType[5] = ELOADFILE::mv1model;
loadType[6] = ELOADFILE::mv1model;
loadType[7] = ELOADFILE::mv1model;
loadType[8] = ELOADFILE::graph;
loadType[9] = ELOADFILE::graph;
loadType[10] = ELOADFILE::graph;
loadType[11] = ELOADFILE::graph;
loadType[12] = ELOADFILE::graph;
loadType[13] = ELOADFILE::graph;
loadType[14] = ELOADFILE::graph;
loadType[15] = ELOADFILE::graph;
loadType[16] = ELOADFILE::graph;
loadType[17] = ELOADFILE::mv1model;
loadType[18] = ELOADFILE::graph;
loadType[19] = ELOADFILE::graph;
loadType[20] = ELOADFILE::graph;
loadType[21] = ELOADFILE::mv1model;
loadType[22] = ELOADFILE::graph;
loadType[23] = ELOADFILE::graph;
loadType[24] = ELOADFILE::mv1model;
loadType[25] = ELOADFILE::sound3DSource;
loadType[26] = ELOADFILE::sound3DSource;
loadType[27] = ELOADFILE::sound3DSource;
loadType[28] = ELOADFILE::sound3DSource;
loadType[29] = ELOADFILE::sound3DSource;
loadType[30] = ELOADFILE::sound3DSource;
loadType[31] = ELOADFILE::sound3DSource;
loadType[32] = ELOADFILE::sound3DSource;
loadType[33] = ELOADFILE::soundStream;
loadType[34] = ELOADFILE::mv1model;
loadType[35] = ELOADFILE::graph;
loadType[36] = ELOADFILE::mv1model;
loadType[37] = ELOADFILE::graph;
loadType[38] = ELOADFILE::graph;
loadType[39] = ELOADFILE::soundmem;
loadType[40] = ELOADFILE::graph;
loadType[41] = ELOADFILE::graph;
loadType[42] = ELOADFILE::graph;
loadType[43] = ELOADFILE::graph;
loadType[44] = ELOADFILE::graph;
loadType[45] = ELOADFILE::graph;
loadType[46] = ELOADFILE::graph;
}
} /// void Manager::InitMove5Load()
/// --------------------------------------------------------------------------------------------------
void Manager::Move5TextureReload()
{
switch (BASICPARAM::e_TextureColor)
{
case ETextureColor::NORMAL:
if (!BASICPARAM::charaTextureWhiteBlack)
{
// キャラのテクスチャデータ
moveStr[8] = "media\\swordCLPH\\texture\\normal\\sword_Tex.pyn";
moveStr[9] = "media\\swordCLPH\\texture\\normal\\CLPH_hair.pyn";
moveStr[10] = "media\\swordCLPH\\texture\\normal\\CLPH_wear.pyn";
moveStr[11] = "media\\swordCLPH\\texture\\normal\\CLPH_face.pyn";
moveStr[12] = "media\\swordCLPH\\texture\\normal\\CLPH_ex.pyn";
}
if (!BASICPARAM::enemyTextureWhiteBlack)
{
moveStr[35] = "media\\childCLPH\\texture\\normal.pyn";
}
if (!BASICPARAM::lightStreetTextureWhiteBlack)
{
// 街灯のテクスチャデータ
moveStr[14] = "media\\街灯\\normal\\body_col.pyn";
moveStr[15] = "media\\街灯\\normal\\lamp_COLandems.pyn";
}
if (!BASICPARAM::stairsRoadTextureWhiteBlack)
{
// 階段とそのあとの床のテクスチャデータ
moveStr[22] = "media\\階段と床合体\\normal\\kaidan.pyn";
moveStr[23] = "media\\階段と床合体\\normal\\yuka.pyn";
}
if (!BASICPARAM::stairsTextureWhiteBlack)
{
// 階段のテクスチャデータ
moveStr[13] = "media\\kaidan\\normal\\kaidan.pyn";
}
if (!BASICPARAM::anothreTextureWhiteBlack)
{
// 人のデータ
moveStr[37] = "media\\move4\\people\\texture\\normal.pyn";
// スカイボックスのテクスチャデータ
moveStr[16] = "media\\skyBox\\normal.byn";
// 精算機械テクスチャ
moveStr[18] = "media\\Terminal\\normal\\Terminal.pyn";
moveStr[19] = "media\\Terminal\\normal\\T_display.pyn";
}
break;
case ETextureColor::P_CORRECTION:
if (!BASICPARAM::charaTextureWhiteBlack)
{
// キャラのテクスチャデータ
moveStr[8] = "media\\swordCLPH\\texture\\P\\sword_Tex.pyn";
moveStr[9] = "media\\swordCLPH\\texture\\P\\CLPH_hair.pyn";
moveStr[10] = "media\\swordCLPH\\texture\\P\\CLPH_wear.pyn";
moveStr[11] = "media\\swordCLPH\\texture\\P\\CLPH_face.pyn";
moveStr[12] = "media\\swordCLPH\\texture\\P\\CLPH_ex.pyn";
}
if (!BASICPARAM::enemyTextureWhiteBlack)
{
moveStr[35] = "media\\childCLPH\\texture\\P.pyn";
}
if (!BASICPARAM::lightStreetTextureWhiteBlack)
{
// 街灯のテクスチャデータ
moveStr[14] = "media\\街灯\\P\\body_col.pyn";
moveStr[15] = "media\\街灯\\P\\lamp_COLandems.pyn";
}
if (!BASICPARAM::stairsRoadTextureWhiteBlack)
{
// 階段とそのあとの床のテクスチャデータ
moveStr[22] = "media\\階段と床合体\\P\\kaidan.pyn";
moveStr[23] = "media\\階段と床合体\\P\\yuka.pyn";
}
if (!BASICPARAM::stairsTextureWhiteBlack)
{
// 階段のテクスチャデータ
moveStr[13] = "media\\kaidan\\P\\kaidan.pyn";
}
if (!BASICPARAM::anothreTextureWhiteBlack)
{
// 人のデータ
moveStr[37] = "media\\move4\\people\\texture\\P.pyn";
// スカイボックスのテクスチャデータ
moveStr[16] = "media\\skyBox\\P.byn";
// 精算機械テクスチャ
moveStr[18] = "media\\Terminal\\P\\Terminal.pyn";
moveStr[19] = "media\\Terminal\\P\\T_display.pyn";
}
break;
case ETextureColor::D_CORRECTION:
if (!BASICPARAM::charaTextureWhiteBlack)
{
// キャラのテクスチャデータ
moveStr[8] = "media\\swordCLPH\\texture\\D\\sword_Tex.pyn";
moveStr[9] = "media\\swordCLPH\\texture\\D\\CLPH_hair.pyn";
moveStr[10] = "media\\swordCLPH\\texture\\D\\CLPH_wear.pyn";
moveStr[11] = "media\\swordCLPH\\texture\\D\\CLPH_face.pyn";
moveStr[12] = "media\\swordCLPH\\texture\\D\\CLPH_ex.pyn";
}
if (!BASICPARAM::enemyTextureWhiteBlack)
{
moveStr[35] = "media\\childCLPH\\texture\\D.pyn";
}
if (!BASICPARAM::lightStreetTextureWhiteBlack)
{
// 街灯のテクスチャデータ
moveStr[14] = "media\\街灯\\D\\body_col.pyn";
moveStr[15] = "media\\街灯\\D\\lamp_COLandems.pyn";
}
if (!BASICPARAM::stairsRoadTextureWhiteBlack)
{
// 階段とそのあとの床のテクスチャデータ
moveStr[22] = "media\\階段と床合体\\D\\kaidan.pyn";
moveStr[23] = "media\\階段と床合体\\D\\yuka.pyn";
}
if (!BASICPARAM::stairsTextureWhiteBlack)
{
// 階段のテクスチャデータ
moveStr[13] = "media\\kaidan\\D\\kaidan.pyn";
}
if (!BASICPARAM::anothreTextureWhiteBlack)
{
// 人のデータ
moveStr[37] = "media\\move4\\people\\texture\\D.pyn";
// スカイボックスのテクスチャデータ
moveStr[16] = "media\\skyBox\\D.byn";
// 精算機械テクスチャ
moveStr[18] = "media\\Terminal\\D\\Terminal.pyn";
moveStr[19] = "media\\Terminal\\D\\T_display.pyn";
}
break;
default:
break;
}
} /// void Manager::Move5TextureReload()
/// --------------------------------------------------------------------------------------------------
void Manager::InitMove6Load()
{
moveStr.resize(max6 + 1);
{
// モデルデータ
moveStr[0] = "media\\stage\\move1_hantei.mv1";
moveStr[1] = "media\\swordCLPH\\motionALL.mv1";
moveStr[2] = "media\\paneru\\paneru.mv1";
moveStr[3] = "media\\kaidan\\kaidan.mv1";
moveStr[4] = "media\\kaidan\\kaidan_hantei.mv1";
moveStr[5] = "media\\街灯\\Gaitou.mv1";
moveStr[6] = "media\\skyBox\\SkyDome.mv1";
moveStr[7] = "media\\stage\\move1_graphic.mv1";
// キャラのテクスチャデータ
moveStr[8] = "media\\swordCLPH\\texture\\whiteblack\\sword_Tex.pyn";
moveStr[9] = "media\\swordCLPH\\texture\\whiteblack\\CLPH_hair.pyn";
moveStr[10] = "media\\swordCLPH\\texture\\whiteblack\\CLPH_wear.pyn";
moveStr[11] = "media\\swordCLPH\\texture\\whiteblack\\CLPH_face.pyn";
moveStr[12] = "media\\swordCLPH\\texture\\whiteblack\\CLPH_ex.pyn";
// 階段のテクスチャデータ
moveStr[13] = "media\\kaidan\\whiteblack\\kaidan.pyn";
// 街灯のテクスチャデータ
moveStr[14] = "media\\街灯\\whiteblack\\body_col.pyn";
moveStr[15] = "media\\街灯\\whiteblack\\lamp_COLandems.pyn";
// スカイボックスのテクスチャデータ
moveStr[16] = "media\\skyBox\\whiteblack.byn";
// 階段とそのあとの床データ
moveStr[17] = "media\\階段と床合体\\kaidan_yuka1.mv1";
// 階段とそのあとの床のテクスチャデータ
moveStr[18] = "media\\階段と床合体\\whiteblack\\kaidan.pyn";
moveStr[19] = "media\\階段と床合体\\whiteblack\\yuka.pyn";
// 階段と床のあたり判定データ
moveStr[20] = "media\\階段と床合体\\kaidan_yuka1_hantei.mv1";
// キャラクター周りの3DSE
moveStr[21] = "media\\sound\\jump.wyn";
moveStr[22] = "media\\sound\\footFloorSE.wyn";
moveStr[23] = "media\\sound\\footSE.wyn";
moveStr[24] = "media\\sound\\landing.wyn";
moveStr[25] = "media\\sound\\landingSecond.wyn";
// キャラクターの攻撃の音
moveStr[26] = "media\\sound\\attackOne.wyn";
moveStr[27] = "media\\sound\\attackTwo.wyn";
moveStr[28] = "media\\sound\\attackThree.wyn";
// BGM
moveStr[29] = "media\\sound\\boss.wyn";
// 一般人のデータ
moveStr[30] = "media\\move4\\people\\motionALL.mv1";
moveStr[31] = "media\\move4\\people\\texture\\whiteblack.pyn";
// 敵に近づいたときに出るUI
moveStr[32] = "media\\move6\\near.pyn";
moveStr[33] = "media\\move6\\yes.pyn";
moveStr[34] = "media\\move6\\no.pyn";
// 前敵のデータ
moveStr[35] = "media\\ラスボス_光\\モーション\\motion_Boss1.mv1";
moveStr[36] = "media\\ラスボス_光\\モーション\\motion_Boss1.fbm\\wing\\whiteblack.pyn";
moveStr[37] = "media\\ラスボス_光\\モーション\\motion_Boss1.fbm\\body\\whiteblack.pyn";
moveStr[38] = "media\\ラスボス_光\\モーション\\motion_Boss1.fbm\\head\\whiteblack.pyn";
// エンドロール用画像
moveStr[39] = "media\\end\\title.pyn";
moveStr[40] = "media\\end\\dxlib.pyn";
moveStr[41] = "media\\end\\effekseer.pyn";
moveStr[42] = "media\\end\\graphic.pyn";
moveStr[43] = "media\\end\\program.pyn";
moveStr[44] = "media\\end\\sound.pyn";
moveStr[45] = "media\\end\\special.pyn";
moveStr[46] = "media\\end\\test.pyn";
moveStr[47] = "media\\end\\thanksLib.pyn";
moveStr[48] = "media\\end\\youser.pyn";
// エンドロール用BGM
moveStr[49] = "media\\sound\\ED.wyn";
// 戦闘敵のデータ
moveStr[50] = "media\\ラスボス_光\\モーション\\motion_Boss1.fbm\\wing\\whiteblack.pyn";
moveStr[51] = "media\\ラスボス_光\\モーション\\motion_Boss1.fbm\\body\\whiteblack.pyn";
moveStr[52] = "media\\ラスボス_光\\モーション\\motion_Boss1.fbm\\head\\whiteblack.pyn";
// ムービーをスキップの仕方の画像
moveStr[53] = "media\\move6\\skip.pyn";
// プレイヤーの体力を表示する
moveStr[54] = "media\\UI\\clph_icon\\whiteblack.pyn";
moveStr[55] = "media\\UI\\no_name\\whiteblack.pyn";
moveStr[56] = "media\\UI\\gage\\whiteblack.pyn";
moveStr[57] = "media\\UI\\gageIn\\whiteblack.pyn";
// 敵の体力を表示する
moveStr[58] = "media\\UI\\enemy\\whiteblack.pyn";
// ワープの説明補助
moveStr[59] = "media\\Terminal\\push.pyn";
}
loadType.resize(max6 + 1);
{
loadType[0] = ELOADFILE::mv1model;
loadType[1] = ELOADFILE::mv1model;
loadType[2] = ELOADFILE::mv1model;
loadType[3] = ELOADFILE::mv1model;
loadType[4] = ELOADFILE::mv1model;
loadType[5] = ELOADFILE::mv1model;
loadType[6] = ELOADFILE::mv1model;
loadType[7] = ELOADFILE::mv1model;
loadType[8] = ELOADFILE::graph;
loadType[9] = ELOADFILE::graph;
loadType[10] = ELOADFILE::graph;
loadType[11] = ELOADFILE::graph;
loadType[12] = ELOADFILE::graph;
loadType[13] = ELOADFILE::graph;
loadType[14] = ELOADFILE::graph;
loadType[15] = ELOADFILE::graph;
loadType[16] = ELOADFILE::graph;
loadType[17] = ELOADFILE::mv1model;
loadType[18] = ELOADFILE::graph;
loadType[19] = ELOADFILE::graph;
loadType[20] = ELOADFILE::mv1model;
loadType[21] = ELOADFILE::sound3DSource;
loadType[22] = ELOADFILE::sound3DSource;
loadType[23] = ELOADFILE::sound3DSource;
loadType[24] = ELOADFILE::sound3DSource;
loadType[25] = ELOADFILE::sound3DSource;
loadType[26] = ELOADFILE::sound3DSource;
loadType[27] = ELOADFILE::sound3DSource;
loadType[28] = ELOADFILE::sound3DSource;
loadType[29] = ELOADFILE::soundStream;
loadType[30] = ELOADFILE::mv1model;
loadType[31] = ELOADFILE::graph;
loadType[32] = ELOADFILE::graph;
loadType[33] = ELOADFILE::graph;
loadType[34] = ELOADFILE::graph;
loadType[35] = ELOADFILE::mv1model;
loadType[36] = ELOADFILE::graph;
loadType[37] = ELOADFILE::graph;
loadType[38] = ELOADFILE::graph;
loadType[39] = ELOADFILE::graph;
loadType[40] = ELOADFILE::graph;
loadType[41] = ELOADFILE::graph;
loadType[42] = ELOADFILE::graph;
loadType[43] = ELOADFILE::graph;
loadType[44] = ELOADFILE::graph;
loadType[45] = ELOADFILE::graph;
loadType[46] = ELOADFILE::graph;
loadType[47] = ELOADFILE::graph;
loadType[48] = ELOADFILE::graph;
loadType[49] = ELOADFILE::soundStream;
loadType[50] = ELOADFILE::graph;
loadType[51] = ELOADFILE::graph;
loadType[52] = ELOADFILE::graph;
loadType[53] = ELOADFILE::graph;
loadType[54] = ELOADFILE::graph;
loadType[55] = ELOADFILE::graph;
loadType[56] = ELOADFILE::graph;
loadType[57] = ELOADFILE::graph;
loadType[58] = ELOADFILE::graph;
loadType[59] = ELOADFILE::graph;
}
} /// void Manager::InitMove6Load()
/// --------------------------------------------------------------------------------------------------
void Manager::Move6TextureReload()
{
switch (BASICPARAM::e_TextureColor)
{
case ETextureColor::NORMAL:
if (!BASICPARAM::charaTextureWhiteBlack)
{
// キャラのテクスチャデータ
moveStr[8] = "media\\swordCLPH\\texture\\normal\\sword_Tex.pyn";
moveStr[9] = "media\\swordCLPH\\texture\\normal\\CLPH_hair.pyn";
moveStr[10] = "media\\swordCLPH\\texture\\normal\\CLPH_wear.pyn";
moveStr[11] = "media\\swordCLPH\\texture\\normal\\CLPH_face.pyn";
moveStr[12] = "media\\swordCLPH\\texture\\normal\\CLPH_ex.pyn";
// プレイヤーの体力を表示する
moveStr[54] = "media\\UI\\clph_icon\\normal.pyn";
moveStr[55] = "media\\UI\\no_name\\normal.pyn";
moveStr[56] = "media\\UI\\gage\\normal.pyn";
moveStr[57] = "media\\UI\\gageIn\\normal.pyn";
}
if (!BASICPARAM::enemyTextureWhiteBlack || !BASICPARAM::lightStreetTextureWhiteBlack
|| !BASICPARAM::stairsRoadTextureWhiteBlack || !BASICPARAM::stairsTextureWhiteBlack
|| !BASICPARAM::anothreTextureWhiteBlack)
{
// 戦闘敵のデータ
moveStr[50] = "media\\ラスボス_光\\モーション\\motion_Boss1.fbm\\wing\\normal.pyn";
moveStr[51] = "media\\ラスボス_光\\モーション\\motion_Boss1.fbm\\body\\normal.pyn";
moveStr[52] = "media\\ラスボス_光\\モーション\\motion_Boss1.fbm\\head\\normal.pyn";
// 敵の体力を表示する
moveStr[58] = "media\\UI\\enemy\\normal.pyn";
}
if (!BASICPARAM::lightStreetTextureWhiteBlack)
{
// 街灯のテクスチャデータ
moveStr[14] = "media\\街灯\\normal\\body_col.pyn";
moveStr[15] = "media\\街灯\\normal\\lamp_COLandems.pyn";
}
if (!BASICPARAM::stairsRoadTextureWhiteBlack)
{
// 階段とそのあとの床のテクスチャデータ
moveStr[18] = "media\\階段と床合体\\normal\\kaidan.pyn";
moveStr[19] = "media\\階段と床合体\\normal\\yuka.pyn";
}
if (!BASICPARAM::stairsTextureWhiteBlack)
{
// 階段のテクスチャデータ
moveStr[13] = "media\\kaidan\\normal\\kaidan.pyn";
}
if (!BASICPARAM::anothreTextureWhiteBlack)
{
// 人のデータ
moveStr[31] = "media\\move4\\people\\texture\\normal.pyn";
// スカイボックスのテクスチャデータ
moveStr[16] = "media\\skyBox\\normal.byn";
}
break;
case ETextureColor::P_CORRECTION:
if (!BASICPARAM::charaTextureWhiteBlack)
{
// キャラのテクスチャデータ
moveStr[8] = "media\\swordCLPH\\texture\\P\\sword_Tex.pyn";
moveStr[9] = "media\\swordCLPH\\texture\\P\\CLPH_hair.pyn";
moveStr[10] = "media\\swordCLPH\\texture\\P\\CLPH_wear.pyn";
moveStr[11] = "media\\swordCLPH\\texture\\P\\CLPH_face.pyn";
moveStr[12] = "media\\swordCLPH\\texture\\P\\CLPH_ex.pyn";
// プレイヤーの体力を表示する
moveStr[54] = "media\\UI\\clph_icon\\P.pyn";
moveStr[55] = "media\\UI\\no_name\\P.pyn";
moveStr[56] = "media\\UI\\gage\\P.pyn";
moveStr[57] = "media\\UI\\gageIn\\P.pyn";
}
if (!BASICPARAM::enemyTextureWhiteBlack || !BASICPARAM::lightStreetTextureWhiteBlack
|| !BASICPARAM::stairsRoadTextureWhiteBlack || !BASICPARAM::stairsTextureWhiteBlack
|| !BASICPARAM::anothreTextureWhiteBlack)
{
// 戦闘敵のデータ
moveStr[50] = "media\\ラスボス_光\\モーション\\motion_Boss1.fbm\\wing\\P.pyn";
moveStr[51] = "media\\ラスボス_光\\モーション\\motion_Boss1.fbm\\body\\P.pyn";
moveStr[52] = "media\\ラスボス_光\\モーション\\motion_Boss1.fbm\\head\\P.pyn";
// 敵の体力を表示する
moveStr[58] = "media\\UI\\enemy\\P.pyn";
}
if (!BASICPARAM::lightStreetTextureWhiteBlack)
{
// 街灯のテクスチャデータ
moveStr[14] = "media\\街灯\\P\\body_col.pyn";
moveStr[15] = "media\\街灯\\P\\lamp_COLandems.pyn";
}
if (!BASICPARAM::stairsRoadTextureWhiteBlack)
{
// 階段とそのあとの床のテクスチャデータ
moveStr[18] = "media\\階段と床合体\\P\\kaidan.pyn";
moveStr[19] = "media\\階段と床合体\\P\\yuka.pyn";
}
if (!BASICPARAM::stairsTextureWhiteBlack)
{
// 階段のテクスチャデータ
moveStr[13] = "media\\kaidan\\P\\kaidan.pyn";
}
if (!BASICPARAM::anothreTextureWhiteBlack)
{
// 人のデータ
moveStr[31] = "media\\move4\\people\\texture\\P.pyn";
// スカイボックスのテクスチャデータ
moveStr[16] = "media\\skyBox\\P.byn";
}
break;
case ETextureColor::D_CORRECTION:
if (!BASICPARAM::charaTextureWhiteBlack)
{
// キャラのテクスチャデータ
moveStr[8] = "media\\swordCLPH\\texture\\D\\sword_Tex.pyn";
moveStr[9] = "media\\swordCLPH\\texture\\D\\CLPH_hair.pyn";
moveStr[10] = "media\\swordCLPH\\texture\\D\\CLPH_wear.pyn";
moveStr[11] = "media\\swordCLPH\\texture\\D\\CLPH_face.pyn";
moveStr[12] = "media\\swordCLPH\\texture\\D\\CLPH_ex.pyn";
// プレイヤーの体力を表示する
moveStr[54] = "media\\UI\\clph_icon\\D.pyn";
moveStr[55] = "media\\UI\\no_name\\D.pyn";
moveStr[56] = "media\\UI\\gage\\D.pyn";
moveStr[57] = "media\\UI\\gageIn\\D.pyn";
}
if (!BASICPARAM::enemyTextureWhiteBlack || !BASICPARAM::lightStreetTextureWhiteBlack
|| !BASICPARAM::stairsRoadTextureWhiteBlack || !BASICPARAM::stairsTextureWhiteBlack
|| !BASICPARAM::anothreTextureWhiteBlack)
{
// 戦闘敵のデータ
moveStr[50] = "media\\ラスボス_光\\モーション\\motion_Boss1.fbm\\wing\\D.pyn";
moveStr[51] = "media\\ラスボス_光\\モーション\\motion_Boss1.fbm\\body\\D.pyn";
moveStr[52] = "media\\ラスボス_光\\モーション\\motion_Boss1.fbm\\head\\D.pyn";
// 敵の体力を表示する
moveStr[58] = "media\\UI\\enemy\\D.pyn";
}
if (!BASICPARAM::lightStreetTextureWhiteBlack)
{
// 街灯のテクスチャデータ
moveStr[14] = "media\\街灯\\D\\body_col.pyn";
moveStr[15] = "media\\街灯\\D\\lamp_COLandems.pyn";
}
if (!BASICPARAM::stairsRoadTextureWhiteBlack)
{
// 階段とそのあとの床のテクスチャデータ
moveStr[18] = "media\\階段と床合体\\D\\kaidan.pyn";
moveStr[19] = "media\\階段と床合体\\D\\yuka.pyn";
}
if (!BASICPARAM::stairsTextureWhiteBlack)
{
// 階段のテクスチャデータ
moveStr[13] = "media\\kaidan\\D\\kaidan.pyn";
}
if (!BASICPARAM::anothreTextureWhiteBlack)
{
// 人のデータ
moveStr[31] = "media\\move4\\people\\texture\\D.pyn";
// スカイボックスのテクスチャデータ
moveStr[16] = "media\\skyBox\\D.byn";
}
break;
default:
break;
}
} /// void Manager::Move6TextureReload()
/// --------------------------------------------------------------------------------------------------
void Manager::OptionProcess()
{
///常時-------------------------------------------------------------------------------------------------------
// BGM音量調整コマンドを選択していたら
if (optionSelectButtonNum == EOptionSelectButton::BGMSelect)
{
// 右にスティックを倒していたら
if (DLLXinput::GetPadThumbData(DLLXinput::GetPlayerPadNumber(), DLLXinput::XINPUT_PAD::STICK_LEFT_X) > 0)
{
// BGMの設定音量を上げる
SoundProcess::SetBGMVolumeEntire(SoundProcess::GetBGMVolumeEntire() < 1.00f ? SoundProcess::GetBGMVolumeEntire() + 0.01f : SoundProcess::GetBGMVolumeEntire());
}
// 左にスティックを倒していたら
else if (DLLXinput::GetPadThumbData(DLLXinput::GetPlayerPadNumber(), DLLXinput::XINPUT_PAD::STICK_LEFT_X) < 0)
{
// BGMの設定音量を下げる
SoundProcess::SetBGMVolumeEntire(SoundProcess::GetBGMVolumeEntire() > 0.00f ? SoundProcess::GetBGMVolumeEntire() - 0.01f : SoundProcess::GetBGMVolumeEntire());
}
}
// SE音量調整コマンドを選択していたら
else if (optionSelectButtonNum == EOptionSelectButton::SESelect)
{
// 61カウントのたびにSEを鳴らす
if (++seDoWaitTimer > 60)
{
seDoWaitTimer = 0;
// SEを流す
SoundProcess::DoSound(SoundProcess::ESOUNDNAME_SE::saveOn);
//PlaySoundMem(se_save, DX_PLAYTYPE_BACK);
}
// 右にスティックを倒していたら
if (DLLXinput::GetPadThumbData(DLLXinput::GetPlayerPadNumber(), DLLXinput::XINPUT_PAD::STICK_LEFT_X) > 0)
{
// SEの設定音量を上げる
SoundProcess::SetSEVolumeEntire(SoundProcess::GetSEVolumeEntire() < 1.00f ? SoundProcess::GetSEVolumeEntire() + 0.01f : SoundProcess::GetSEVolumeEntire());
}
// 左にスティックを倒していたら
else if (DLLXinput::GetPadThumbData(DLLXinput::GetPlayerPadNumber(), DLLXinput::XINPUT_PAD::STICK_LEFT_X) < 0)
{
// SEの設定音量を下げる
SoundProcess::SetSEVolumeEntire(SoundProcess::GetSEVolumeEntire() > 0.00f ? SoundProcess::GetSEVolumeEntire() - 0.01f : SoundProcess::GetSEVolumeEntire());
}
}
///常時-------------------------------------------------------------------------------------------------------
///決定-------------------------------------------------------------------------------------------------------
// 決定ボタンを押したときの動作
if (DLLXinput::GetPadButtonData(DLLXinput::GetPlayerPadNumber(), DLLXinput::XINPUT_PAD::BUTTON_A) == 1)
{
// BGMにカーソルがあったとき
if (optionSelectButtonNum == EOptionSelectButton::BGM)
{
// BGM設定音量に移る
optionSelectButtonNum = EOptionSelectButton::BGMSelect;
optionSelectMin = static_cast<int>(EOptionSelectButton::BGMSelect);
optionSelectMax = static_cast<int>(EOptionSelectButton::BGMSelect);
}
// SEにカーソルがあったとき
else if (optionSelectButtonNum == EOptionSelectButton::SE)
{
// SE設定音量に移る
optionSelectButtonNum = EOptionSelectButton::SESelect;
optionSelectMin = static_cast<int>(EOptionSelectButton::SESelect);
optionSelectMax = static_cast<int>(EOptionSelectButton::SESelect);
}
// テクスチャ色の通常にカーソルがあったとき
else if (optionSelectButtonNum == EOptionSelectButton::ColorNormal)
{
// 通常色に変える
BASICPARAM::e_TextureColor = ETextureColor::NORMAL;
if (BASICPARAM::e_TextureColor != BASICPARAM::e_preTextureColor)
{
BASICPARAM::e_preTextureColor = BASICPARAM::e_TextureColor;
p_baseMove->TextureReloadCountDoReset();
p_baseMove->ThsTextureReload(); // テクスチャ切り替え
}
}
// テクスチャ色のP型にカーソルがあったとき
else if (optionSelectButtonNum == EOptionSelectButton::ColorP)
{
// P型補正色に変える
BASICPARAM::e_TextureColor = ETextureColor::P_CORRECTION;
if (BASICPARAM::e_TextureColor != BASICPARAM::e_preTextureColor)
{
BASICPARAM::e_preTextureColor = BASICPARAM::e_TextureColor;
p_baseMove->TextureReloadCountDoReset();
p_baseMove->ThsTextureReload(); // テクスチャ切り替え
}
}
// テクスチャ色のD型にカーソルがあったとき
else if (optionSelectButtonNum == EOptionSelectButton::ColorD)
{
// D型補正色に変える
BASICPARAM::e_TextureColor = ETextureColor::D_CORRECTION;
if (BASICPARAM::e_TextureColor != BASICPARAM::e_preTextureColor)
{
BASICPARAM::e_preTextureColor = BASICPARAM::e_TextureColor;
p_baseMove->TextureReloadCountDoReset();
p_baseMove->ThsTextureReload(); // テクスチャ切り替え
}
}
// 色覚選択にカーソルがあったとき
else if (optionSelectButtonNum == EOptionSelectButton::ColorSelect
&& BASICPARAM::e_nowScene >= ESceneNumber::THIRDMOVE)
{
// 通常色にカーソルを移す
optionSelectButtonNum = EOptionSelectButton::ColorNormal;
optionSelectMin = static_cast<int>(EOptionSelectButton::ColorNormal);
optionSelectMax = static_cast<int>(EOptionSelectButton::ColorD);
}
// サウンドにカーソルがあったとき
else if (optionSelectButtonNum == EOptionSelectButton::Sound)
{
// BGMにカーソルを移す
SoundProcess::SetOptionMenuNow(false); // サウンドの音量をオプション用からやめる
optionSelectButtonNum = EOptionSelectButton::BGM;
optionSelectMin = static_cast<int>(EOptionSelectButton::BGM);
optionSelectMax = static_cast<int>(EOptionSelectButton::SE);
}
// BGMの設定音量にカーソルがあったとき(調整していたとき)
else if (optionSelectButtonNum == EOptionSelectButton::BGMSelect)
{
// BGMにカーソルを移す
optionSelectButtonNum = EOptionSelectButton::BGM;
optionSelectMin = static_cast<int>(EOptionSelectButton::BGM);
optionSelectMax = static_cast<int>(EOptionSelectButton::SE);
}
// SEの設定音量にカーソルがあったとき(調整していたとき)
else if (optionSelectButtonNum == EOptionSelectButton::SESelect)
{
// SEにカーソルを移す
optionSelectButtonNum = EOptionSelectButton::SE;
optionSelectMin = static_cast<int>(EOptionSelectButton::BGM);
optionSelectMax = static_cast<int>(EOptionSelectButton::SE);
}
// カメラにカーソルがあったとき
else if (optionSelectButtonNum == EOptionSelectButton::Camera)
{
// 遠近法カメラに移る
optionSelectButtonNum = EOptionSelectButton::CameraPerspective;
optionSelectMin = static_cast<int>(EOptionSelectButton::CameraPerspective);
optionSelectMax = static_cast<int>(EOptionSelectButton::CameraVReturn);
}
// 遠近法カメラにカーソルがあったとき
else if (optionSelectButtonNum == EOptionSelectButton::CameraPerspective)
{
// カメラを遠近法カメラに設定する
BASICPARAM::nowCameraOrtho = false;
}
// 正射影カメラにカーソルがあったとき
else if (optionSelectButtonNum == EOptionSelectButton::CameraOrtho)
{
// カメラを正射影カメラに設定する
BASICPARAM::nowCameraOrtho = true;
}
// 横回転カメラにカーソルがあったとき
else if (optionSelectButtonNum == EOptionSelectButton::CameraHReturn)
{
// 横回転のスティック方向を逆にする
BASICPARAM::cameraHorizonReturn = !BASICPARAM::cameraHorizonReturn;
}
// 縦回転カメラにカーソルがあったとき
else if (optionSelectButtonNum == EOptionSelectButton::CameraVReturn)
{
// 縦回転のスティック方向を逆にする
BASICPARAM::cameraVerticalReturn = !BASICPARAM::cameraVerticalReturn;
}
// セーブにカーソルがあったとき
else if (optionSelectButtonNum == EOptionSelectButton::DataSave)
{
// セーブにカーソルを移す
optionSelectButtonNum = EOptionSelectButton::SaveYes;
optionSelectMin = static_cast<int>(EOptionSelectButton::SaveYes);
optionSelectMax = static_cast<int>(EOptionSelectButton::SaveNo);
}
// ゲーム終了にカーソルがあったとき
else if (optionSelectButtonNum == EOptionSelectButton::GameEnd)
{
// ゲーム終了にカーソルを移す
optionSelectButtonNum = EOptionSelectButton::GameEndYes;
optionSelectMin = static_cast<int>(EOptionSelectButton::GameEndYes);
optionSelectMax = static_cast<int>(EOptionSelectButton::GameEndNo);
}
// セーブするにカーソルがあったとき
else if (optionSelectButtonNum == EOptionSelectButton::SaveYes)
{
// SEを流す
SoundProcess::DoSound(SoundProcess::ESOUNDNAME_SE::saveOn);
// セーブする
FileSaveLoad::Save();
// セーブにカーソルを移す
optionSelectButtonNum = EOptionSelectButton::DataSave;
optionSelectMin = static_cast<int>(EOptionSelectButton::Sound);
optionSelectMax = static_cast<int>(EOptionSelectButton::GameEnd);
}
// セーブしないにカーソルがあったとき
else if (optionSelectButtonNum == EOptionSelectButton::SaveNo)
{
// セーブにカーソルを移す
optionSelectButtonNum = EOptionSelectButton::DataSave;
optionSelectMin = static_cast<int>(EOptionSelectButton::Sound);
optionSelectMax = static_cast<int>(EOptionSelectButton::GameEnd);
}
// ゲーム終了にカーソルがあったとき
else if (optionSelectButtonNum == EOptionSelectButton::GameEndYes)
{
// ゲームを終了する
gameEnd = true;
}
// ゲーム終了しないにカーソルがあったとき
else if (optionSelectButtonNum == EOptionSelectButton::GameEndNo)
{
// ゲームを終了にカーソルを移す
optionSelectButtonNum = EOptionSelectButton::GameEnd;
optionSelectMin = static_cast<int>(EOptionSelectButton::Sound);
optionSelectMax = static_cast<int>(EOptionSelectButton::GameEnd);
}
} /// if (DLLXinput::GetPadButtonData(DLLXinput::GetPlayerPadNumber(), DLLXinput::XINPUT_PAD::BUTTON_A) == 1)
///決定------------------------------------------------------------------------------------------------------
///戻る-------------------------------------------------------------------------------------------------------
// 戻るボタンを押したときの動作
if (DLLXinput::GetPadButtonData(DLLXinput::GetPlayerPadNumber(), DLLXinput::XINPUT_PAD::BUTTON_B) == 1)
{
// BGMにカーソルがあったとき
if (optionSelectButtonNum == EOptionSelectButton::BGM
|| optionSelectButtonNum == EOptionSelectButton::SE)
{
// サウンドにカーソルを移す
SoundProcess::SetOptionMenuNow(true); // サウンドの音量をオプション用からに戻す
optionSelectButtonNum = EOptionSelectButton::Sound;
optionSelectMin = static_cast<int>(EOptionSelectButton::Sound);
optionSelectMax = static_cast<int>(EOptionSelectButton::GameEnd);
}
// 通常色にカーソルがあったとき
else if (optionSelectButtonNum == EOptionSelectButton::ColorNormal
|| optionSelectButtonNum == EOptionSelectButton::ColorP
|| optionSelectButtonNum == EOptionSelectButton::ColorD)
{
// 色覚選択にカーソルを移す
optionSelectButtonNum = EOptionSelectButton::ColorSelect;
optionSelectMin = static_cast<int>(EOptionSelectButton::Sound);
optionSelectMax = static_cast<int>(EOptionSelectButton::GameEnd);
}
// BGM音量調整にカーソルがあったとき
else if (optionSelectButtonNum == EOptionSelectButton::BGMSelect)
{
// BGMにカーソルを移す
optionSelectButtonNum = EOptionSelectButton::BGM;
optionSelectMin = static_cast<int>(EOptionSelectButton::BGM);
optionSelectMax = static_cast<int>(EOptionSelectButton::SE);
}
// SE音量調整にカーソルがあったとき
else if (optionSelectButtonNum == EOptionSelectButton::SESelect)
{
// SEにカーソルを移す
optionSelectButtonNum = EOptionSelectButton::SE;
optionSelectMin = static_cast<int>(EOptionSelectButton::BGM);
optionSelectMax = static_cast<int>(EOptionSelectButton::SE);
}
// カメラ関連にカーソルがあったとき
else if (optionSelectButtonNum == EOptionSelectButton::CameraPerspective
|| optionSelectButtonNum == EOptionSelectButton::CameraOrtho
|| optionSelectButtonNum == EOptionSelectButton::CameraHReturn
|| optionSelectButtonNum == EOptionSelectButton::CameraVReturn)
{
// カメラにカーソルを移す
optionSelectButtonNum = EOptionSelectButton::Camera;
optionSelectMin = static_cast<int>(EOptionSelectButton::Sound);
optionSelectMax = static_cast<int>(EOptionSelectButton::GameEnd);
}
// セーブ関連にカーソルがあったとき
else if (optionSelectButtonNum == EOptionSelectButton::SaveYes
|| optionSelectButtonNum == EOptionSelectButton::SaveNo)
{
// セーブにカーソルを移す
optionSelectButtonNum = EOptionSelectButton::DataSave;
optionSelectMin = static_cast<int>(EOptionSelectButton::Sound);
optionSelectMax = static_cast<int>(EOptionSelectButton::GameEnd);
}
// ゲーム終了関連にカーソルがあったとき
else if (optionSelectButtonNum == EOptionSelectButton::GameEndYes
|| optionSelectButtonNum == EOptionSelectButton::GameEndNo)
{
// ゲームを終了にカーソルを移す
optionSelectButtonNum = EOptionSelectButton::GameEnd;
optionSelectMin = static_cast<int>(EOptionSelectButton::Sound);
optionSelectMax = static_cast<int>(EOptionSelectButton::GameEnd);
}
} /// if (DLLXinput::GetPadButtonData(DLLXinput::GetPlayerPadNumber(), DLLXinput::XINPUT_PAD::BUTTON_B) == 1)
///戻る------------------------------------------------------------------------------------------------------
/// スティックの一回押し倒しで更新するよう調整-----------------------------------------------------------------
// 左スティックを上に倒したら
if (DLLXinput::GetPadThumbData(DLLXinput::GetPlayerPadNumber(), DLLXinput::XINPUT_PAD::STICK_LEFT_Y) > 0)
{
if(optionControllLeftStickY[0] < 2) optionControllLeftStickY[0]++;
}
// 左スティックを下に倒したら
else if (DLLXinput::GetPadThumbData(DLLXinput::GetPlayerPadNumber(), DLLXinput::XINPUT_PAD::STICK_LEFT_Y) < 0)
{
if (optionControllLeftStickY[1] < 2) optionControllLeftStickY[1]++;
}
// 左スティックを特に弄ってなかったら
else
{
optionControllLeftStickY[0] = 0;
optionControllLeftStickY[1] = 0;
}
// 上にスティックを倒したとき
if (optionControllLeftStickY[0] == 1)
{
// カーソルを上に移動する
int temp = static_cast<int>(optionSelectButtonNum);
optionSelectButtonNum = static_cast<EOptionSelectButton>(temp > optionSelectMin ? --temp : temp);
if (optionSelectButtonNum == EOptionSelectButton::ColorSelect) optionPageNowNumber = 0;
}
// 下にスティックを倒したとき
if (optionControllLeftStickY[1] == 1)
{
// カーソルを下に移動する
int temp = static_cast<int>(optionSelectButtonNum);
optionSelectButtonNum = static_cast<EOptionSelectButton>(temp < optionSelectMax ? ++temp : temp);
if (optionSelectButtonNum == EOptionSelectButton::Camera) optionPageNowNumber = 1;
}
/// スティックの一回押し倒しで更新するよう調整-----------------------------------------------------------------
} /// void Manager::OptionProcess()
/// --------------------------------------------------------------------------------------------------
void Manager::OptionDraw()
{
// 背景
DrawGraph(0, 0, gaussianScreen, false);
// モデル表示
p_baseMove->OptionActorModel();
// オプションから戻る説明画像
DrawGraph(1600, 800, optionDrawMedia[static_cast<int>(EOptionDraw::optionEnd)], true);
// 一列目のオプションのとき
if (optionPageNowNumber == 0)
{
/// サウンド関係オプション---------------------------------------------------------------
// UI:Sound
DrawGraph(95, 95, optionDrawMedia[static_cast<int>(EOptionDraw::Sound)], false);
// カーソルが当たっていたら
if (optionSelectButtonNum == EOptionSelectButton::Sound)
{
DrawBox(95 + 5, 95 + 5, 95 + 211 - 5, 95 + 86 - 5, GetColor(50, 50, 200), false);
DrawBox(95 + 4, 95 + 4, 95 + 211 - 4, 95 + 86 - 4, GetColor(50, 50, 200), false);
DrawBox(95 + 3, 95 + 3, 95 + 211 - 3, 95 + 86 - 3, GetColor(50, 50, 200), false);
}
// UI:BGM
DrawGraph(381, 114, optionDrawMedia[static_cast<int>(EOptionDraw::BGM)], false);
// カーソルが当たっていたら
if (optionSelectButtonNum == EOptionSelectButton::BGM)
{
DrawBox(381 + 5, 114 + 5, 381 + 87 - 5, 114 + 58 - 5, GetColor(50, 50, 200), false);
DrawBox(381 + 4, 114 + 4, 381 + 87 - 4, 114 + 58 - 4, GetColor(50, 50, 200), false);
DrawBox(381 + 3, 114 + 3, 381 + 87 - 3, 114 + 58 - 3, GetColor(50, 50, 200), false);
}
// UI:BGMバー
DrawBox(546, 100, 546 + 548, 100 + 81, GetColor(200, 200, 200), true);
DrawBox(546, 100, 546 + 548, 100 + 81, GetColor(0, 0, 0), false);
// カーソルが当たっていたら
if (optionSelectButtonNum == EOptionSelectButton::BGMSelect)
{
DrawBox(546 + 5, 100 + 5, 546 + 548 - 5, 100 + 81 - 5, GetColor(50, 50, 200), false);
DrawBox(546 + 4, 100 + 4, 546 + 548 - 4, 100 + 81 - 4, GetColor(50, 50, 200), false);
DrawBox(546 + 3, 100 + 3, 546 + 548 - 3, 100 + 81 - 3, GetColor(50, 50, 200), false);
}
DrawBox(546 - 5 + static_cast<int>(SoundProcess::GetBGMVolumeEntire() * 547)
, 100 - 10, 546 + 5 + static_cast<int>(SoundProcess::GetBGMVolumeEntire() * 548)
, 100 + 81 + 10, GetColor(255, 255, 255), true);
// UI:SE
DrawGraph(385, 266, optionDrawMedia[static_cast<int>(EOptionDraw::SE)], false);
// カーソルが当たっていたら
if (optionSelectButtonNum == EOptionSelectButton::SE)
{
DrawBox(385 + 5, 266 + 5, 385 + 86 - 5, 266 + 58 - 5, GetColor(50, 50, 200), false);
DrawBox(385 + 4, 266 + 4, 385 + 86 - 4, 266 + 58 - 4, GetColor(50, 50, 200), false);
DrawBox(385 + 3, 266 + 3, 385 + 86 - 3, 266 + 58 - 3, GetColor(50, 50, 200), false);
}
// UI:SEバー
DrawBox(548, 255, 548 + 547, 255 + 78, GetColor(200, 200, 200), true);
DrawBox(548, 255, 548 + 547, 255 + 78, GetColor(0, 0, 0), false);
// カーソルが当たっていたら
if (optionSelectButtonNum == EOptionSelectButton::SESelect)
{
DrawBox(548 + 5, 255 + 5, 548 + 547 - 5, 255 + 78 - 5, GetColor(50, 50, 200), false);
DrawBox(548 + 4, 255 + 4, 548 + 547 - 4, 255 + 78 - 4, GetColor(50, 50, 200), false);
DrawBox(548 + 3, 255 + 3, 548 + 547 - 3, 255 + 78 - 3, GetColor(50, 50, 200), false);
}
DrawBox(548 - 5 + static_cast<int>(SoundProcess::GetSEVolumeEntire() * 547)
, 255 - 10, 548 + 5 + static_cast<int>(SoundProcess::GetSEVolumeEntire() * 547)
, 255 + 78 + 10, GetColor(255, 255, 255), true);
/// サウンド関係オプション---------------------------------------------------------------
/// 色覚に関するオプション-----------------------------------------------------------------------
// 色覚補正できるムーブじゃなかったら
if (BASICPARAM::e_nowScene < ESceneNumber::THIRDMOVE) SetDrawBlendMode(DX_BLENDMODE_ALPHA, 50);
// UI:色覚調整
DrawGraph(96, 413, optionDrawMedia[static_cast<int>(EOptionDraw::Color)], false);
// UI:通常色
DrawGraph(385, 427, optionDrawMedia[static_cast<int>(EOptionDraw::ColorNormal)], false);
// カーソルが当たっていたら
if (optionSelectButtonNum == EOptionSelectButton::ColorNormal)
{
DrawBox(385 + 5, 427 + 5, 385 + 83 - 5, 427 + 58 - 5, GetColor(50, 50, 200), false);
DrawBox(385 + 4, 427 + 4, 385 + 83 - 4, 427 + 58 - 4, GetColor(50, 50, 200), false);
DrawBox(385 + 3, 427 + 3, 385 + 83 - 3, 427 + 58 - 3, GetColor(50, 50, 200), false);
}
// UI:P型
DrawGraph(386, 550, optionDrawMedia[static_cast<int>(EOptionDraw::ColorP)], false);
// カーソルが当たっていたら
if (optionSelectButtonNum == EOptionSelectButton::ColorP)
{
DrawBox(386 + 5, 550 + 5, 386 + 83 - 5, 550 + 59 - 5, GetColor(50, 50, 200), false);
DrawBox(386 + 4, 550 + 4, 386 + 83 - 4, 550 + 59 - 4, GetColor(50, 50, 200), false);
DrawBox(386 + 3, 550 + 3, 386 + 83 - 3, 550 + 59 - 3, GetColor(50, 50, 200), false);
}
// UI:D型
DrawGraph(385, 682, optionDrawMedia[static_cast<int>(EOptionDraw::ColorD)], false);
// カーソルが当たっていたら
if (optionSelectButtonNum == EOptionSelectButton::ColorD)
{
DrawBox(385 + 5, 682 + 5, 385 + 83 - 5, 682 + 58 - 5, GetColor(50, 50, 200), false);
DrawBox(385 + 4, 682 + 4, 385 + 83 - 4, 682 + 58 - 4, GetColor(50, 50, 200), false);
DrawBox(385 + 3, 682 + 3, 385 + 83 - 3, 682 + 58 - 3, GetColor(50, 50, 200), false);
}
if (BASICPARAM::e_nowScene < ESceneNumber::THIRDMOVE) SetDrawBlendMode(DX_BLENDMODE_NOBLEND, 255);
// 色覚補正にカーソルが当たっていたら(ブレンドから逃がすため
if (optionSelectButtonNum == EOptionSelectButton::ColorSelect)
{
DrawBox(96 + 5, 413 + 5, 96 + 112 - 5, 413 + 76 - 5, GetColor(50, 50, 200), false);
DrawBox(96 + 4, 413 + 4, 96 + 112 - 4, 413 + 76 - 4, GetColor(50, 50, 200), false);
DrawBox(96 + 3, 413 + 3, 96 + 112 - 3, 413 + 76 - 3, GetColor(50, 50, 200), false);
}
/// 色覚に関するオプション-----------------------------------------------------------------------
// 次のページ
DrawGraph(96, 815, optionDrawMedia[static_cast<int>(EOptionDraw::nextPage)], false);
} /// if (optionPageNowNumber == 0)
// 二ページ目の時
else if (optionPageNowNumber == 1)
{
// 前のページへ
DrawGraph(96, 95, optionDrawMedia[static_cast<int>(EOptionDraw::prevPage)], false);
/// カメラの関するオプション------------------------------------------------
// カメラ
DrawGraph(95, 247, optionDrawMedia[static_cast<int>(EOptionDraw::Camera)], false);
if (optionSelectButtonNum == EOptionSelectButton::Camera)
{
DrawBox(95 + 5, 247 + 5, 95 + 109 - 5, 247 + 68 - 5, GetColor(50, 50, 200), false);
DrawBox(95 + 4, 247 + 4, 95 + 109 - 4, 247 + 68 - 4, GetColor(50, 50, 200), false);
DrawBox(95 + 3, 247 + 3, 95 + 109 - 3, 247 + 68 - 3, GetColor(50, 50, 200), false);
}
// 遠近法
if (BASICPARAM::nowCameraOrtho) SetDrawBlendMode(DX_BLENDMODE_ALPHA, 125);
DrawGraph(385, 267, optionDrawMedia[static_cast<int>(EOptionDraw::Perspective)], false);
if (optionSelectButtonNum == EOptionSelectButton::CameraPerspective)
{
DrawBox(385 + 5, 267 + 5, 385 + 83 - 5, 267 + 58 - 5, GetColor(50, 50, 200), false);
DrawBox(385 + 4, 267 + 4, 385 + 83 - 4, 267 + 58 - 4, GetColor(50, 50, 200), false);
DrawBox(385 + 3, 267 + 3, 385 + 83 - 3, 267 + 58 - 3, GetColor(50, 50, 200), false);
}
if (BASICPARAM::nowCameraOrtho) SetDrawBlendMode(DX_BLENDMODE_NOBLEND, 255);
// 正射影
if (!BASICPARAM::nowCameraOrtho) SetDrawBlendMode(DX_BLENDMODE_ALPHA, 125);
DrawGraph(385, 400, optionDrawMedia[static_cast<int>(EOptionDraw::Ortho)], false);
if (optionSelectButtonNum == EOptionSelectButton::CameraOrtho)
{
DrawBox(385 + 5, 400 + 5, 385 + 83 - 5, 400 + 58 - 5, GetColor(50, 50, 200), false);
DrawBox(385 + 4, 400 + 4, 385 + 83 - 4, 400 + 58 - 4, GetColor(50, 50, 200), false);
DrawBox(385 + 3, 400 + 3, 385 + 83 - 3, 400 + 58 - 3, GetColor(50, 50, 200), false);
}
if (!BASICPARAM::nowCameraOrtho) SetDrawBlendMode(DX_BLENDMODE_NOBLEND, 255);
// 横反転
if (!BASICPARAM::cameraHorizonReturn) SetDrawBlendMode(DX_BLENDMODE_ALPHA, 125);
DrawGraph(385, 513, optionDrawMedia[static_cast<int>(EOptionDraw::HorizonReturn)], false);
if (optionSelectButtonNum == EOptionSelectButton::CameraHReturn)
{
DrawBox(385 + 5, 513 + 5, 385 + 83 - 5, 513 + 58 - 5, GetColor(50, 50, 200), false);
DrawBox(385 + 4, 513 + 4, 385 + 83 - 4, 513 + 58 - 4, GetColor(50, 50, 200), false);
DrawBox(385 + 3, 513 + 3, 385 + 83 - 3, 513 + 58 - 3, GetColor(50, 50, 200), false);
}
if (!BASICPARAM::cameraHorizonReturn) SetDrawBlendMode(DX_BLENDMODE_NOBLEND, 255);
// 縦反転
if (!BASICPARAM::cameraVerticalReturn) SetDrawBlendMode(DX_BLENDMODE_ALPHA, 125);
DrawGraph(385, 646, optionDrawMedia[static_cast<int>(EOptionDraw::VerticalReturn)], false);
if (optionSelectButtonNum == EOptionSelectButton::CameraVReturn)
{
DrawBox(385 + 5, 646 + 5, 385 + 83 - 5, 646 + 58 - 5, GetColor(50, 50, 200), false);
DrawBox(385 + 4, 646 + 4, 385 + 83 - 4, 646 + 58 - 4, GetColor(50, 50, 200), false);
DrawBox(385 + 3, 646 + 3, 385 + 83 - 3, 646 + 58 - 3, GetColor(50, 50, 200), false);
}
if (!BASICPARAM::cameraVerticalReturn) SetDrawBlendMode(DX_BLENDMODE_NOBLEND, 255);
// セーブ
DrawGraph(95, 760, optionDrawMedia[static_cast<int>(EOptionDraw::dataSave)], false);
if (optionSelectButtonNum == EOptionSelectButton::DataSave)
{
DrawBox(95 + 5, 760 + 5, 95 + 450 - 5, 760 + 69 - 5, GetColor(50, 50, 200), false);
DrawBox(95 + 4, 760 + 4, 95 + 450 - 4, 760 + 69 - 4, GetColor(50, 50, 200), false);
DrawBox(95 + 3, 760 + 3, 95 + 450 - 3, 760 + 69 - 3, GetColor(50, 50, 200), false);
}
// ゲーム終了
DrawGraph(95, 880, optionDrawMedia[static_cast<int>(EOptionDraw::gameEnd)], false);
if (optionSelectButtonNum == EOptionSelectButton::GameEnd)
{
DrawBox(95 + 5, 880 + 5, 95 + 450 - 5, 880 + 69 - 5, GetColor(50, 50, 200), false);
DrawBox(95 + 4, 880 + 4, 95 + 450 - 4, 880 + 69 - 4, GetColor(50, 50, 200), false);
DrawBox(95 + 3, 880 + 3, 95 + 450 - 3, 880 + 69 - 3, GetColor(50, 50, 200), false);
}
// セーブする
if (optionSelectButtonNum == EOptionSelectButton::SaveYes
|| optionSelectButtonNum == EOptionSelectButton::SaveNo)
{
DrawGraph(600, 660, optionDrawMedia[static_cast<int>(EOptionDraw::yes)], false);
if (optionSelectButtonNum == EOptionSelectButton::SaveYes)
{
DrawBox(600 + 5, 660 + 5, 600 + 275 - 5, 660 + 69 - 5, GetColor(50, 50, 200), false);
DrawBox(600 + 4, 660 + 4, 600 + 275 - 4, 660 + 69 - 4, GetColor(50, 50, 200), false);
DrawBox(600 + 3, 660 + 3, 600 + 275 - 3, 660 + 69 - 3, GetColor(50, 50, 200), false);
}
}
// セーブしない
if (optionSelectButtonNum == EOptionSelectButton::SaveYes
|| optionSelectButtonNum == EOptionSelectButton::SaveNo)
{
DrawGraph(600, 840, optionDrawMedia[static_cast<int>(EOptionDraw::no)], false);
if (optionSelectButtonNum == EOptionSelectButton::SaveNo)
{
DrawBox(600 + 5, 840 + 5, 600 + 275 - 5, 840 + 69 - 5, GetColor(50, 50, 200), false);
DrawBox(600 + 4, 840 + 4, 600 + 275 - 4, 840 + 69 - 4, GetColor(50, 50, 200), false);
DrawBox(600 + 3, 840 + 3, 600 + 275 - 3, 840 + 69 - 3, GetColor(50, 50, 200), false);
}
}
// ゲーム終了する
if (optionSelectButtonNum == EOptionSelectButton::GameEndNo
|| optionSelectButtonNum == EOptionSelectButton::GameEndYes)
{
DrawGraph(600, 760, optionDrawMedia[static_cast<int>(EOptionDraw::yes)], false);
if (optionSelectButtonNum == EOptionSelectButton::GameEndYes)
{
DrawBox(600 + 5, 760 + 5, 600 + 275 - 5, 760 + 69 - 5, GetColor(50, 50, 200), false);
DrawBox(600 + 4, 760 + 4, 600 + 275 - 4, 760 + 69 - 4, GetColor(50, 50, 200), false);
DrawBox(600 + 3, 760 + 3, 600 + 275 - 3, 760 + 69 - 3, GetColor(50, 50, 200), false);
}
}
// ゲーム終了しない
if (optionSelectButtonNum == EOptionSelectButton::GameEndNo
|| optionSelectButtonNum == EOptionSelectButton::GameEndYes)
{
DrawGraph(600, 940, optionDrawMedia[static_cast<int>(EOptionDraw::no)], false);
if (optionSelectButtonNum == EOptionSelectButton::GameEndNo)
{
DrawBox(600 + 5, 940 + 5, 600 + 275 - 5, 940 + 69 - 5, GetColor(50, 50, 200), false);
DrawBox(600 + 4, 940 + 4, 600 + 275 - 4, 940 + 69 - 4, GetColor(50, 50, 200), false);
DrawBox(600 + 3, 940 + 3, 600 + 275 - 3, 940 + 69 - 3, GetColor(50, 50, 200), false);
}
}
} /// else if (optionPageNowNumber == 1)
} /// void Manager::OptionDraw()
/// --------------------------------------------------------------------------------------------------
Manager::Manager()
{
// 初期化
BASICPARAM::e_preScene = ESceneNumber::FIRSTLOAD;
BASICPARAM::e_nowScene = ESceneNumber::FIRSTLOAD;
BASICPARAM::e_preTextureColor = ETextureColor::WHITEBLACK;
BASICPARAM::e_TextureColor = ETextureColor::WHITEBLACK;
BASICPARAM::nowCameraOrtho = false;
BASICPARAM::cameraHorizonReturn = false;
BASICPARAM::cameraVerticalReturn = false;
BASICPARAM::charaTextureWhiteBlack = true;
BASICPARAM::enemyTextureWhiteBlack = true;
BASICPARAM::lightStreetTextureWhiteBlack = true;
BASICPARAM::stairsRoadTextureWhiteBlack = true;
BASICPARAM::stairsTextureWhiteBlack = true;
BASICPARAM::anothreTextureWhiteBlack = true;
// メモリの初期化
p_baseMove = nullptr;
p_loadThread = nullptr;
moveStr.clear();
loadType.clear();
for (int i = 0; i != titleUINum; ++i)
{
titleUIDraw[i] = -1;
}
// 最初のロードを生成
p_loadThread = new LoadThread();
preLoadScene = false;
/// ゲームのタイトルに関する-------------------------------------------------------------------------------------
gameFirstStarting = FileSaveLoad::Load(); // ロードさせる、ファイルがあるかどうかでそのあとを判断
gameEnd = false;
// ロードファイルがあった場合
if (gameFirstStarting)
{
optionSelectMin = 0;
optionSelectMax = 2;
}
// ロードファイルがなかった場合
else
{
optionSelectMin = 0;
optionSelectMax = 4;
}
playBonus = false;
LoadFile::MyLoad("media\\First\\gameStart.pyn", titleUIDraw[0], ELOADFILE::graph);
LoadFile::MyLoad("media\\First\\dataLoad.pyn", titleUIDraw[1], ELOADFILE::graph);
LoadFile::MyLoad("media\\First\\gameEnd.pyn", titleUIDraw[2], ELOADFILE::graph);
LoadFile::MyLoad("media\\First\\omake.pyn", titleUIDraw[3], ELOADFILE::graph);
LoadFile::MyLoad("media\\First\\omake2.pyn", titleUIDraw[4], ELOADFILE::graph);
LoadFile::MyLoad("media\\First\\omake3.pyn", titleUIDraw[5], ELOADFILE::graph);
LoadFile::MyLoad("media\\First\\omake4.pyn", titleUIDraw[6], ELOADFILE::graph);
LoadFile::MyLoad("media\\First\\omake5.pyn", titleUIDraw[7], ELOADFILE::graph);
LoadFile::MyLoad("media\\First\\omake6.pyn", titleUIDraw[8], ELOADFILE::graph);
/// ゲームのタイトルに関する-------------------------------------------------------------------------------------
// 画面に関する
gaussianScreen = MakeScreen(1920, 1080);
// オプションに関する
optionMenuNow = false;
optionControllLeftStickY[0] = 0;
optionControllLeftStickY[1] = 0;
optionPageNowNumber = 0;
seDoWaitTimer = 0;
for (int i = 0; i != optionDrawNum; ++i)
{
optionDrawMedia[i] = -1;
}
se_save = -1;
LoadFile::MyLoad("media\\option\\BGM.pyn", optionDrawMedia[0], ELOADFILE::graph);
LoadFile::MyLoad("media\\option\\camera.pyn", optionDrawMedia[1], ELOADFILE::graph);
LoadFile::MyLoad("media\\option\\D.pyn", optionDrawMedia[2], ELOADFILE::graph);
LoadFile::MyLoad("media\\option\\P.pyn", optionDrawMedia[3], ELOADFILE::graph);
LoadFile::MyLoad("media\\option\\SE.pyn", optionDrawMedia[4], ELOADFILE::graph);
LoadFile::MyLoad("media\\option\\Sound.pyn", optionDrawMedia[5], ELOADFILE::graph);
LoadFile::MyLoad("media\\option\\perspective.pyn", optionDrawMedia[6], ELOADFILE::graph);
LoadFile::MyLoad("media\\option\\color_Vision_Adjustment.pyn", optionDrawMedia[7], ELOADFILE::graph);
LoadFile::MyLoad("media\\option\\orthographic_Projection.pyn", optionDrawMedia[8], ELOADFILE::graph);
LoadFile::MyLoad("media\\option\\normalColor.pyn", optionDrawMedia[9], ELOADFILE::graph);
LoadFile::MyLoad("media\\option\\horizontal_Flip.pyn", optionDrawMedia[10], ELOADFILE::graph);
LoadFile::MyLoad("media\\option\\vertical_Flip.pyn", optionDrawMedia[11], ELOADFILE::graph);
LoadFile::MyLoad("media\\option\\nextPage.pyn", optionDrawMedia[12], ELOADFILE::graph);
LoadFile::MyLoad("media\\option\\prevPage.pyn", optionDrawMedia[13], ELOADFILE::graph);
LoadFile::MyLoad("media\\option\\optionEnd.pyn", optionDrawMedia[14], ELOADFILE::graph);
LoadFile::MyLoad("media\\option\\gameEnd.pyn", optionDrawMedia[15], ELOADFILE::graph);
LoadFile::MyLoad("media\\option\\save.pyn", optionDrawMedia[16], ELOADFILE::graph);
LoadFile::MyLoad("media\\option\\yes.pyn", optionDrawMedia[17], ELOADFILE::graph);
LoadFile::MyLoad("media\\option\\no.pyn", optionDrawMedia[18], ELOADFILE::graph);
// フェード処理に関する
feedCount = 0;
BASICPARAM::endFeedNow = false;
BASICPARAM::startFeedNow = false;
feedDraw = GetColor(0, 0, 0);
// アンチエイリアシングに関する
SetCreateDrawValidGraphMultiSample(4, 4); // 4x4のアンチエイリアシングモードにする
antiAliasScreen = MakeScreen(1920, 1080, false); // アンチエイリアシング用の画面を作成
SetCreateDrawValidGraphMultiSample(0, 0); // 元に戻す
} /// Manager::Manager()
/// --------------------------------------------------------------------------------------------------
Manager::~Manager()
{
for (int i = 0; i != titleUINum; ++i)
{
GRAPHIC_RELEASE(titleUIDraw[i]);
}
for (int i = 0; i != optionDrawNum; ++i)
{
GRAPHIC_RELEASE(optionDrawMedia[i]);
}
GRAPHIC_RELEASE(gaussianScreen);
GRAPHIC_RELEASE(antiAliasScreen);
POINTER_RELEASE(p_baseMove);
POINTER_RELEASE(p_loadThread);
}
/// --------------------------------------------------------------------------------------------------
void Manager::Update()
{
// 最初の起動のとき
if (gameFirstStarting)
{
TitleProcess();
ClearDrawScreen();
TitleDraw();
ScreenFlip();
} /// if (gameFirstStarting)
// 最初の起動でないとき(つまり通常時
else
{
// 今のシーンと直前のシーンが同じ
if (BASICPARAM::e_nowScene == BASICPARAM::e_preScene)
{
// 最初のムーブのロードだったら
if (BASICPARAM::e_preScene == ESceneNumber::FIRSTLOAD)
{
// シーン1の素材ファイル
InitMove1Load();
p_loadThread->Process(max1, moveStr, loadType); // ロードをする
// ロードが終了したら
if (p_loadThread->GetNum() >= max1)
{
BASICPARAM::endFeedNow = true; // 終了フェードのフラッグを立てる
preLoadScene = true; // 直前がロードだったとする
BASICPARAM::e_nowScene = ESceneNumber::FIRSTMOVE; // 次のシーンを指定する
}
}
// 二番目のムーブのロードだったら
else if (BASICPARAM::e_preScene == ESceneNumber::SECONDLOAD)
{
// シーン2の素材ファイル
InitMove2Load();
p_loadThread->Process(max2, moveStr, loadType); // ロードをする
// ロードが終了したら
if (p_loadThread->GetNum() >= max2)
{
BASICPARAM::endFeedNow = true; // 終了フェードのフラッグを立てる
preLoadScene = true; // 直前がロードだったら
BASICPARAM::e_nowScene = ESceneNumber::SECONDMOVE; // 次のシーンを指定する
}
}
// 三番目のムーブのロードだったら
else if (BASICPARAM::e_preScene == ESceneNumber::THIRDLOAD)
{
// ムーブ3のロード素材
InitMove3Load();
p_loadThread->Process(max3, moveStr, loadType); // ロードをする
// ロードが終了したら
if (p_loadThread->GetNum() >= max3)
{
BASICPARAM::endFeedNow = true; // 終了フェードのフラッグを立てる
preLoadScene = true; // 直前がロードだったら
BASICPARAM::e_nowScene = ESceneNumber::THIRDMOVE; // 次のシーンを指定する
}
}
// 四番目のムーブのロードだったら
else if (BASICPARAM::e_preScene == ESceneNumber::FOURTHLOAD)
{
// ムーブ4のロード素材
InitMove4Load();
Move4TextureReload();
p_loadThread->Process(max4, moveStr, loadType); // ロードをする
// ロードが終了したら
if (p_loadThread->GetNum() >= max4)
{
BASICPARAM::endFeedNow = true; // 終了フェードのフラッグを立てる
preLoadScene = true; // 直前がロードだったら
BASICPARAM::e_nowScene = ESceneNumber::FOURTHMOVE; // 次のシーンを指定する
}
}
// 五番目のムーブのロードだったら
else if (BASICPARAM::e_preScene == ESceneNumber::FIFTHLOAD)
{
// ムーブ5のロード素材
InitMove5Load();
Move5TextureReload();
p_loadThread->Process(max5, moveStr, loadType); // ロードをする
// ロードが終了したら
if (p_loadThread->GetNum() >= max5)
{
BASICPARAM::endFeedNow = true; // 終了フェードのフラッグを立てる
preLoadScene = true; // 直前がロードだったら
BASICPARAM::e_nowScene = ESceneNumber::FIFTHMOVE; // 次のシーンを指定する
}
}
// 六番目のムーブのロードだったら
else if (BASICPARAM::e_preScene == ESceneNumber::SIXLOAD)
{
// ムーブ6のロード素材
InitMove6Load();
Move6TextureReload();
p_loadThread->Process(max6, moveStr, loadType); // ロードをする
// ロードが終了したら
if (p_loadThread->GetNum() >= max6)
{
BASICPARAM::endFeedNow = true; // 終了フェードのフラッグを立てる
preLoadScene = true; // 直前がロードだったら
BASICPARAM::e_nowScene = ESceneNumber::SIXMOVE; // 次のシーンを指定する
}
}
// ロードではなくゲームだったら
else
{
preLoadScene = false; // 直前がロードではないとする
// オプションメニューでないとき
if (!optionMenuNow)
{
// 開始フェードが終了していたら
if (!BASICPARAM::startFeedNow)
{
// アンチエイリアス画面に対して描画処理を行う
SetDrawScreen(antiAliasScreen);
ClearDrawScreen();
// ゲームに関する
p_baseMove->CameraProcess();
p_baseMove->Draw();
// Effekseerにより再生中のエフェクトを描画する。
DrawEffekseer3D();
// Effekseerにより再生中のエフェクトを描画する。
DrawEffekseer2D();
BASICPARAM::e_nowScene = p_baseMove->GetScene();
// アンチエイリアス画面に描画したものを裏画面に書き込む
SetDrawScreen(DX_SCREEN_BACK);
DrawGraph(0, 0, antiAliasScreen, false);
// ゲームに関する
p_baseMove->CameraProcess(); // SetDrawScreenを行うとカメラの設定がなくなるので再設定を行う
p_baseMove->Process();
// Effekseerにより再生中のエフェクトを更新する。
UpdateEffekseer3D();
// Effekseerにより再生中のエフェクトを更新する。
UpdateEffekseer2D();
// オプション画面に移行するコマンドを押されたら、またはウィンドウズが非アクティブになったら
if (DLLXinput::GetPadButtonData(DLLXinput::GetPlayerPadNumber(), DLLXinput::XINPUT_PAD::BUTTON_START) == 1
|| !GetWindowActiveFlag())
{
// 現在の画面をキャプチャする
GetDrawScreenGraph(0, 0, BASICPARAM::winWidth, BASICPARAM::winHeight, gaussianScreen);
GraphFilter(gaussianScreen, DX_GRAPH_FILTER_GAUSS, 8, 1400); // 現在の画面にガウスフィルタかけてぼかす
p_baseMove->OptionActorModelBefore(); // オプション用のモデル表示の準備
optionMenuNow = true; // オプションメニューに移行するフラッグを立てる
optionSelectButtonNum = EOptionSelectButton::Sound; // オプションメニューのボタン位置を初期化
optionPageNowNumber = 0; // オプションのページを1ページ目にする
SoundProcess::SetOptionMenuNow(true); // サウンド音量をオプションメニュー用に下げるよう命令
}
#ifdef _DEBUG
MyDebug::DebugProcess();
#endif // _DEBUG
ScreenFlip();
} /// if (!BASICPARAM::startFeedNow)
// 開始フェードが立っていたら
else
{
feedCount -= 5; // フェードカウントを下げる
// 画面に関する一連
ClearDrawScreen();
SetDrawScreen(DX_SCREEN_BACK);
// ゲームに関する一連
p_baseMove->CameraProcess();
p_baseMove->Draw();
// フェードイン処理
SetDrawBlendMode(DX_BLENDMODE_ALPHA, feedCount);
DrawBox(0, 0, BASICPARAM::winWidth, BASICPARAM::winHeight, feedDraw, true);
SetDrawBlendMode(DX_BLENDMODE_NOBLEND, 255);
// フェードカウントが下がりまくったら開始フェードフラッグを下す
if (feedCount <= 0)
{
feedCount = 0;
BASICPARAM::startFeedNow = false;
}
ScreenFlip();
} /// else(!if (!BASICPARAM::startFeedNow))
} /// if (!optionMenuNow)
// オプションメニューのとき
else
{
// 画面に関する一連
ClearDrawScreen();
// オプションに関する
OptionDraw();
OptionProcess();
// オプション画面から戻る
if (DLLXinput::GetPadButtonData(DLLXinput::GetPlayerPadNumber(), DLLXinput::XINPUT_PAD::BUTTON_START) == 1)
{
optionSelectMin = static_cast<int>(EOptionSelectButton::Sound);
optionSelectMax = static_cast<int>(EOptionSelectButton::GameEnd);
p_baseMove->OptionActorModelAfter();
p_baseMove->CameraProcess(); // カメラ切り替え
SoundProcess::SetOptionMenuNow(false); // サウンド音量をオプション用から戻す
optionMenuNow = false;
}
ScreenFlip();
} /// else(!if (!optionMenuNow))
} /// else
} /// if (BASICPARAM::e_nowScene == BASICPARAM::e_preScene)
// シーンを移行するように指定されたら
else
{
// 現在のシーンの終了フェードが終わったら
if (!BASICPARAM::endFeedNow)
{
// ムーブ6だったら終了させる
if (BASICPARAM::e_preScene == ESceneNumber::SIXMOVE)
{
// セーブデータがあるか調べる
int temp = FileSaveLoad::Load();
// セーブデータがなかった場合セーブする
if (!temp)
{
BASICPARAM::e_nowScene = ESceneNumber::FIRSTMOVE;
FileSaveLoad::Save();
}
// タイトルに遷移させる
gameFirstStarting = true;
}
// シーンを変える
SceneChange();
// 直前のシーンと今のシーンを同じにする
BASICPARAM::e_preScene = BASICPARAM::e_nowScene;
} /// if (!BASICPARAM::endFeedNow)
// 現在のシーンの終了フェードのとき
else
{
// 終了シーンがロードではないとき
if (!preLoadScene)
{
// フェードを加算する
feedCount += 5;
// 画面に関する一連
SetDrawScreen(DX_SCREEN_BACK);
ClearDrawScreen();
// ゲームの描画に関するのだけを残してゲームに関するもの
p_baseMove->CameraProcess();
p_baseMove->Draw();
// フェードアウト処理
SetDrawBlendMode(DX_BLENDMODE_ALPHA, feedCount);
DrawBox(0, 0, BASICPARAM::winWidth, BASICPARAM::winHeight, feedDraw, true);
SetDrawBlendMode(DX_BLENDMODE_NOBLEND, 255);
ScreenFlip();
// フェードカウントが一定に達したらフラッグを下す
if (feedCount >= 255)
{
// エフェクトを終了する
DrawEffekseer2D_End();
DrawEffekseer3D_End();
feedCount = 0;
BASICPARAM::endFeedNow = false;
}
} /// if (!preLoadScene)
// 終了シーンがロードのとき
else
{
// フェードを加算する
feedCount += 15;
// 画面に関する一連
SetDrawScreen(DX_SCREEN_BACK);
ClearDrawScreen();
// ゲームの描画に関するのだけを残してゲームに関するもの
p_loadThread->Draw();
// フェードアウト処理
SetDrawBlendMode(DX_BLENDMODE_ALPHA, feedCount);
DrawBox(0, 0, BASICPARAM::winWidth, BASICPARAM::winHeight, feedDraw, true);
SetDrawBlendMode(DX_BLENDMODE_NOBLEND, 255);
ScreenFlip();
// フェードカウントが一定に達したらフラッグを下す
if (feedCount >= 255)
{
feedCount = 0;
BASICPARAM::endFeedNow = false;
}
} /// else(!if (!preLoadScene))
} /// else(!if (!BASICPARAM::endFeedNow))
} /// else(!if (BASICPARAM::e_nowScene == BASICPARAM::e_preScene))
} /// else(!if (gameFirstStarting))
} /// void Manager::Update() | [
"kingwasheart@yahoo.co.jp"
] | kingwasheart@yahoo.co.jp |
3baac1b6f852226e5c204b01ccf0161c8b3cf4b9 | 9cc1984c2f8989cf0781be6a430eacaa34688b61 | /fitness.cpp | 3288a867c3fb7ab6d6cf4035b4c27cdecf68012a | [] | no_license | cmmp/markowitz | 39f876c60902603e6dc3742cf775d2a04ae1bf27 | 3395394ea89ab09f63aa462e4b278ee4b86fd1af | refs/heads/main | 2023-02-10T16:20:34.168566 | 2021-01-08T15:33:18 | 2021-01-08T15:33:18 | 327,941,784 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 592 | cpp | #include <Rcpp.h>
using namespace Rcpp;
// [[Rcpp::export]]
double fitnessCpp(const NumericVector& w, const double lambda,
const NumericVector& mean_returns, const NumericMatrix& covs) {
double riskFactor = 0;
double returnFactor = 0;
int n = w.size();
for(int i = 0; i < n; i++) {
returnFactor += w[i] * mean_returns[i];
}
returnFactor *= -(1 - lambda);
for(int i = 0; i < (n - 1); i++) {
for(int j = i + 1; j < n; j++) {
riskFactor += w[i] * w[j] * covs(i, j);
}
}
riskFactor *= lambda;
return - (riskFactor + returnFactor);
}
| [
"cassiomartini@gmail.com"
] | cassiomartini@gmail.com |
185d592cd6ee216e7086fa1f9f48ce4ea3737646 | 7632d9203909fa16d162446d6a63e7c333cf6034 | /sample_gdi/comparator.cpp | bae92430e56589894f57e884abf240cc85a38988 | [] | no_license | Philiphil/Prof-Phils-Pokedex | 0f60556e218c5a23d349c745c31d9dc58d28b7db | c07090129ec88ed06d129ca2d6a904f01a5554c7 | refs/heads/master | 2021-10-28T16:25:27.490901 | 2021-10-08T17:58:07 | 2021-10-08T17:58:07 | 62,450,314 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,553 | cpp | #include "nature.h"
#include "type.h"
#include "pokemon.h"
#include "db.h"
#include "json.hpp"
#include <string>
#include <vector>
#include <Awesomium/WebCore.h>
#include <Awesomium/STLHelpers.h>
#include <Awesomium\DataPak.h>
#include <string>
#include "pokemon.h"
using namespace std;
vector<pokemon> compareToOthers(pokemon pkmn)
{
nlohmann::json retour;
vector<pokemon> comparables = vector<pokemon>();
for (int i = 0; i < pokemon::pokedex.size(); i++)
{
int foo = pokemon::pokedex.at(i).level - pkmn.level;
if (foo > -6 && foo < 6)
{
comparables.push_back(pokemon::pokedex.at(i));
}
}
if (comparables.size() > 0)
{
for (int i = 0; i < comparables.size(); i++)
{
for (int j = 0; j < comparables.size(); j++)
{
if (comparables.at(i).id == comparables.at(j).id && j != i)
{
comparables.at(i).atk += comparables.at(j).atk;
comparables.at(i).pv += comparables.at(j).pv;
comparables.at(i).def += comparables.at(j).def;
comparables.at(i).ats += comparables.at(j).ats;
comparables.at(i).des += comparables.at(j).des;
comparables.at(i).spd += comparables.at(j).spd;
comparables.at(i).atk = comparables.at(i).atk / 2;
comparables.at(i).pv = comparables.at(i).pv / 2;
comparables.at(i).def = comparables.at(i).def / 2;
comparables.at(i).ats = comparables.at(i).ats / 2;
comparables.at(i).des = comparables.at(i).des / 2;
comparables.at(i).spd = comparables.at(i).spd / 2;
comparables.erase(comparables.begin() + j);
}
}
}
}
return comparables;
} | [
"necromastah@pavorem.com"
] | necromastah@pavorem.com |
b1e2db345d149b80acb0b80041147c3b3a34576f | a36663c9c212488b729f54715fe86bfbe446e62f | /Log.h | 4d9c57087f1a76ecc00ca06369b8c4541fceb52e | [
"Apache-2.0"
] | permissive | fprumbau/PegelControl | e7728a4cce25d4552e124661030cd43acdd1c466 | 15634562b33f95104e20c9a1fb11e9f86db7b0d8 | refs/heads/master | 2020-06-14T20:48:45.892905 | 2019-10-06T09:36:33 | 2019-10-06T09:36:33 | 195,122,023 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 527 | h | #ifndef LOG_H
#define LOG_H
#define LOGSIZE 10
#define BUFFSIZE LOGSIZE * 80
//SPIFFS config disk
#include <ArduinoJson.h>
#include <FS.h>
class LOG {
private:
bool debug = false;
int eventCount=0;
int eventIndex=0;
int oldest=0;
String logEvents[LOGSIZE];
public:
int length();
String get(int index);
String load();
String save();
void print();
bool append(String logEntry);
void setDebug(bool d);
};
#endif
| [
"fprumbau@linux.site"
] | fprumbau@linux.site |
a0e184659eaded51f974164cc56db59a7a83d016 | eb3bb69e4228fa720673d0d053206ab0b2c4da19 | /travellingsalesman.cpp | 433ab0d2d7e81e39ad11aa3c065795e0727a1e87 | [] | no_license | Ayushsinhahaha/Open-Source | 4fcbfe5549ab7968d95e47c580ae1e2968afae8f | d91851f902a7178813c2e9c3cc11bc74369519a4 | refs/heads/main | 2023-08-29T06:48:56.092606 | 2021-10-13T05:48:23 | 2021-10-13T05:48:23 | 412,857,994 | 5 | 12 | null | 2021-10-05T10:01:52 | 2021-10-02T16:57:18 | C++ | UTF-8 | C++ | false | false | 1,045 | cpp | #include<iostream>
using namespace std;
int ary[10][10],completed[10],n,cost=0;
void takeInput()
{
int i,j;
cout<<"Enter the number of villages: ";
cin>>n;
cout<<"\nEnter the Cost Matrix\n";
for(i=0;i < n;i++)
{
cout<<"\nEnter Elements of Row: "<<i+1<<"\n";
for( j=0;j < n;j++)
cin>>ary[i][j];
completed[i]=0;
}
cout<<"\n\nThe cost list is:";
for( i=0;i < n;i++)
{
cout<<"\n";
for(j=0;j < n;j++)
cout<<"\t"<<ary[i][j];
}
}
int least(int c)
{
int i,nc=999;
int min=999,kmin;
for(i=0;i < n;i++)
{
if((ary[c][i]!=0)&&(completed[i]==0))
if(ary[c][i]+ary[i][c] < min)
{
min=ary[i][0]+ary[c][i];
kmin=ary[c][i];
nc=i;
}
}
if(min!=999)
cost+=kmin;
return nc;
}
void mincost(int city)
{
int i,ncity;
completed[city]=1;
cout<<city+1<<"--->";
ncity=least(city);
if(ncity==999)
{
ncity=0;
cout<<ncity+1;
cost+=ary[city][ncity];
return;
}
mincost(ncity);
}
int main()
{
takeInput();
cout<<"\n\nThe Path is:\n";
mincost(0); //passing 0 because starting vertex
cout<<"\n\nMinimum cost is "<<cost;
return 0;
}
| [
"noreply@github.com"
] | noreply@github.com |
fae14027c073a55a6c5d4b12c827b4a6d8498e1b | bb585865346cceab40c08e8261bb88baf6c1d1a8 | /237G_Computational/Projects/Project1/ComputationalFinance_Project1/ComputationalFinance_Project1/ComputationalFinance_Project1.cpp | 8a0e01c3d77ae4a7d749365215962fa7d3cae3f6 | [] | no_license | deshpande-arjun/Quarter3 | a925cb6721ecce0e741bf85472455afc6f189ecb | 1d5eda13bd195113850c2d054575a88d888349df | refs/heads/master | 2020-06-01T16:21:30.119835 | 2017-07-27T06:54:52 | 2017-07-27T06:54:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,964 | cpp | // ComputationalFinance_Project1.cpp : Defines the entry point for the application.
//
#include "stdafx.h"
#include "ComputationalFinance_Project1.h"
#define MAX_LOADSTRING 100
// Global Variables:
HINSTANCE hInst; // current instance
WCHAR szTitle[MAX_LOADSTRING]; // The title bar text
WCHAR szWindowClass[MAX_LOADSTRING]; // the main window class name
// Forward declarations of functions included in this code module:
ATOM MyRegisterClass(HINSTANCE hInstance);
BOOL InitInstance(HINSTANCE, int);
LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);
INT_PTR CALLBACK About(HWND, UINT, WPARAM, LPARAM);
int APIENTRY wWinMain(_In_ HINSTANCE hInstance,
_In_opt_ HINSTANCE hPrevInstance,
_In_ LPWSTR lpCmdLine,
_In_ int nCmdShow)
{
UNREFERENCED_PARAMETER(hPrevInstance);
UNREFERENCED_PARAMETER(lpCmdLine);
// TODO: Place code here.
// Initialize global strings
LoadStringW(hInstance, IDS_APP_TITLE, szTitle, MAX_LOADSTRING);
LoadStringW(hInstance, IDC_COMPUTATIONALFINANCE_PROJECT1, szWindowClass, MAX_LOADSTRING);
MyRegisterClass(hInstance);
// Perform application initialization:
if (!InitInstance (hInstance, nCmdShow))
{
return FALSE;
}
HACCEL hAccelTable = LoadAccelerators(hInstance, MAKEINTRESOURCE(IDC_COMPUTATIONALFINANCE_PROJECT1));
MSG msg;
// Main message loop:
while (GetMessage(&msg, nullptr, 0, 0))
{
if (!TranslateAccelerator(msg.hwnd, hAccelTable, &msg))
{
TranslateMessage(&msg);
DispatchMessage(&msg);
}
}
return (int) msg.wParam;
}
//
// FUNCTION: MyRegisterClass()
//
// PURPOSE: Registers the window class.
//
ATOM MyRegisterClass(HINSTANCE hInstance)
{
WNDCLASSEXW wcex;
wcex.cbSize = sizeof(WNDCLASSEX);
wcex.style = CS_HREDRAW | CS_VREDRAW;
wcex.lpfnWndProc = WndProc;
wcex.cbClsExtra = 0;
wcex.cbWndExtra = 0;
wcex.hInstance = hInstance;
wcex.hIcon = LoadIcon(hInstance, MAKEINTRESOURCE(IDI_COMPUTATIONALFINANCE_PROJECT1));
wcex.hCursor = LoadCursor(nullptr, IDC_ARROW);
wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW+1);
wcex.lpszMenuName = MAKEINTRESOURCEW(IDC_COMPUTATIONALFINANCE_PROJECT1);
wcex.lpszClassName = szWindowClass;
wcex.hIconSm = LoadIcon(wcex.hInstance, MAKEINTRESOURCE(IDI_SMALL));
return RegisterClassExW(&wcex);
}
//
// FUNCTION: InitInstance(HINSTANCE, int)
//
// PURPOSE: Saves instance handle and creates main window
//
// COMMENTS:
//
// In this function, we save the instance handle in a global variable and
// create and display the main program window.
//
BOOL InitInstance(HINSTANCE hInstance, int nCmdShow)
{
hInst = hInstance; // Store instance handle in our global variable
HWND hWnd = CreateWindowW(szWindowClass, szTitle, WS_OVERLAPPEDWINDOW,
CW_USEDEFAULT, 0, CW_USEDEFAULT, 0, nullptr, nullptr, hInstance, nullptr);
if (!hWnd)
{
return FALSE;
}
ShowWindow(hWnd, nCmdShow);
UpdateWindow(hWnd);
return TRUE;
}
//
// FUNCTION: WndProc(HWND, UINT, WPARAM, LPARAM)
//
// PURPOSE: Processes messages for the main window.
//
// WM_COMMAND - process the application menu
// WM_PAINT - Paint the main window
// WM_DESTROY - post a quit message and return
//
//
LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
{
switch (message)
{
case WM_COMMAND:
{
int wmId = LOWORD(wParam);
// Parse the menu selections:
switch (wmId)
{
case IDM_ABOUT:
DialogBox(hInst, MAKEINTRESOURCE(IDD_ABOUTBOX), hWnd, About);
break;
case IDM_EXIT:
DestroyWindow(hWnd);
break;
default:
return DefWindowProc(hWnd, message, wParam, lParam);
}
}
break;
case WM_PAINT:
{
PAINTSTRUCT ps;
HDC hdc = BeginPaint(hWnd, &ps);
// TODO: Add any drawing code that uses hdc here...
EndPaint(hWnd, &ps);
}
break;
case WM_DESTROY:
PostQuitMessage(0);
break;
default:
return DefWindowProc(hWnd, message, wParam, lParam);
}
return 0;
}
// Message handler for about box.
INT_PTR CALLBACK About(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
{
UNREFERENCED_PARAMETER(lParam);
switch (message)
{
case WM_INITDIALOG:
return (INT_PTR)TRUE;
case WM_COMMAND:
if (LOWORD(wParam) == IDOK || LOWORD(wParam) == IDCANCEL)
{
EndDialog(hDlg, LOWORD(wParam));
return (INT_PTR)TRUE;
}
break;
}
return (INT_PTR)FALSE;
}
| [
"Nitish Ramkumar"
] | Nitish Ramkumar |
783042da7dd70eafcd8ea1ce406904513278eab4 | be663f51aa417c0939b3efef29d5837ac2e7c99f | /Code/WSFeatureExtensionTJM/TestExtendPtInterfaces/TestExtendPtItfCPP.m/src/TstIFactory.cpp | 9bc907a08d0d3b522fdd7ca98a7bc2207d7596e7 | [
"MIT"
] | permissive | msdos41/CATIA_CAA_V5 | d87598923797867ae322478773e2372a2febb11b | 1274de43e1ebfffc5398f34ed1b63093cae27fc2 | refs/heads/master | 2022-06-01T23:05:20.419221 | 2022-05-10T07:23:41 | 2022-05-10T07:23:41 | 220,181,165 | 11 | 7 | null | null | null | null | UTF-8 | C++ | false | false | 273 | cpp | #include "TstIFactory.h"
#ifndef LOCAL_DEFINITION_FOR_IID
IID IID_TstIFactory = { 0x61d376a9, 0x599b, 0x445c, { 0x82, 0x66, 0xfe, 0xa8, 0xe3, 0x28, 0xdc, 0x4d} };
#endif
CATImplementInterface(TstIFactory, CATBaseUnknown);
CATImplementHandler(TstIFactory,CATBaseUnknown);
| [
"tjm.mosquito@gmail.com"
] | tjm.mosquito@gmail.com |
4fcba15cbf69df9bf8273c701db353ece7817be7 | 03c63bf846c23765451724e1c6d9594ac56e35b8 | /tokenize.cc | 13339ea45087e2913388ee63f7835f31dbb92580 | [] | no_license | btyddg/Multi-Threaded-Server | 0fffd2ad8755195285ff3a7412debd2d5b0ce5ef | 8f3e4570a844e278b8480f164dc5c4336e9ea0f7 | refs/heads/main | 2023-03-17T18:44:20.007213 | 2021-02-09T01:30:58 | 2021-02-09T01:30:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 550 | cc | /*
* In-place string tokenizer, by Stefan Bruda. Read the comments in
* the header before using it.
*/
#include "tokenize.h"
size_t str_tokenize(char* str, char** tokens, const size_t n,char saperator) {
size_t tok_size = 1;
tokens[0] = str;
size_t i = 0;
while (i < n) {
if (str[i] == saperator) {
str[i] = '\0';
i++;
for (; i < n && str[i] == ' '; i++)
/* NOP */;
if (i < n) {
tokens[tok_size] = str + i;
tok_size++;
}
}
else
i++;
}
return tok_size;
}
| [
"lancer.akraj@gmail.com"
] | lancer.akraj@gmail.com |
7e6cc9c9ad4eaf0210e42f4e7d5f293337b536b2 | d06d2f45fd4a35b9c1fd3d278d3e1a74549985ce | /CodePart05/src/CppInterface.cpp | be35d53ca667f6c557225c9b0b0a2e92eccab04d | [] | no_license | QuantDevHacks/RcppBlogCode | 4e9793c2e666bdca352caff564f017a58fb9404d | 372baa83d03d2c611130092fa8b4919a98131db9 | refs/heads/master | 2022-12-23T05:58:14.132220 | 2020-09-21T22:34:12 | 2020-09-21T22:34:12 | 287,658,363 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,096 | cpp | #include "NonmemberCppFcns.h"
#include <vector>
#include <Rcpp.h>
// This seems to be optional...at least for Windows/Rtools:
// [[Rcpp::plugins(cpp17)]]
// Nonmember Function Interfaces:
// [[Rcpp::export]]
int rAdd(double x, double y)
{
// Call the add(.) function in the reusable C++ code base:
return add(x, y);
}
// [[Rcpp::export]]
Rcpp::NumericVector rSortVec(Rcpp::NumericVector v)
{
// Transfer data from NumericVector to std::vector<double>
auto stlVec = Rcpp::as<std::vector<double>>(v);
// Call the reusable sortVec(.) function, with the expected
// std::vector<double> argument:
stlVec = sortVec(stlVec);
// Reassign the results from the vector<double> return object
// to the same NumericVector v, using Rcpp::wrap(.):
v = Rcpp::wrap(stlVec);
// Return as an Rcpp::NumericVector:
return v;
}
// C++17 example:
// [[Rcpp::export]]
int rProdLcmGcd(int m, int n)
{
return prodLcmGcd(m, n);
}
/*
Copyright 2020 Daniel Hanson
Permission is hereby granted, free of charge, to any person obtaining a copy of this software
and associated documentation files (the "Software"), to deal in the Software without restriction,
including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission
notice shall be included in all copies
or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
| [
"noreply@github.com"
] | noreply@github.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.