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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
b0328b0b637169dbfc01188a0d03ca0fde6d27d4 | fbf5efb0f9278afc3f77c0a71cf7f483443eef2f | /RegistroEliminacionAlumnos.cpp | 0ca84ab86c5a995880fd709b711846bff9927b21 | [] | no_license | ArturomxA/TallerProgra_RegistroAlumos | 65dee0018978b22b158219fd542755d8c9f14976 | f79b86f1f12e24182d780d613a89e2ec82b77cc1 | refs/heads/main | 2023-03-20T06:33:05.681148 | 2021-03-12T02:41:05 | 2021-03-12T02:41:05 | 346,454,788 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,113 | cpp | #include<iostream>
#include <fstream>
using namespace std ;
int main(){
int clave , opcion ,Bclave;
char nombre[30] ,Nnombre[30];
ifstream Leer;
ofstream Guardar;
ofstream Temp;
Guardar.open("Fichero.txt" ,ios::app);
while(true){
cout<<"1.- Guardar"<<endl;
cout<<"2.- Leer"<<endl;
cout<<"3.- Buscar"<<endl;
cout<<"4.- Eliminar"<<endl;
cout<<"5.- Ingrese opcion"<<endl;
cin>>opcion;
switch (opcion)
{
case 1: {
cout<<"Ingrese un nombre"<<endl;
cin>>nombre;
cout<<"Ingresa tu clave"<<endl;
cin>>clave;
Guardar<<nombre<<" "<<clave<<endl;
break;
}/*Cierre del case1*/
case 2:{
Leer.open("Fichero.txt");
Leer>>nombre;
while (!Leer.eof())/*final del fichero hasta que devuelva un valor*/
{
Leer>>clave;
cout<<"Nombre: "<<nombre<<endl;
cout<<"Clave: "<<clave<<endl;
cout<<endl;
Leer>>nombre;
}/*Fin de while en final*/
Leer.close();
break;
}/*Cierre del case2*/
case 3:{
Leer.open("Fichero.txt");
Leer>>nombre;
bool encontrado=false;
cout<<"Ingrese clave a buscar"<<endl;
cin>>Bclave;
while(!Leer.eof()){
Leer>>clave;
if(clave==Bclave)
{
encontrado=true;
cout<<"Nombre..."<<nombre<<endl;
cout<<"Clave..."<<clave<<endl;
cout<<endl;
}/*Ciere del condicional*/
Leer>>nombre;
}/*Cierre while para terminar de leer-econtrar*/
if(encontrado==false)
{
cout<<"Clave no encontrada"<<endl;
}/*segundo if fuera del while*/
Leer.close();
break;
} /*Cierre del case 3*/
case 4:{
Leer.open("Fichero.txt");
Temp.open("Temp.txt");
Leer>>nombre;
bool encontrado=false;
cout<<"Ingrese clave a eliminar"<<endl;
cin>>Bclave;
while(!Leer.eof()){
Leer>>clave;
if(clave==Bclave)
{
encontrado=true;
cout<<"Nombre..."<<nombre<<endl;
cout<<"Clave..."<<clave<<endl;
cout<<endl;
cout<<"Eliminado"<<endl;
}/*Ciere del condicional*/
else{
Temp<<nombre<<" "<<clave<<endl;
}
Leer>>nombre;
}/*Cierre while para terminar de leer-econtrar*/
if(encontrado==false)
{
cout<<"Clave no encontrada"<<endl;
}/*segundo if fuera del while*/
Leer.close();
Temp.close();
remove("Fichero.txt");
rename("Temp.txt", "Fichero.txt");
break;
} /*Cierre del case 4*/
case 5:{
Leer.open("Fichero.txt");
Temp.open("Temp.txt");
Leer>>nombre;
bool encontrado=false;
cout<<"Ingrese clave a modificar"<<endl;
cin>>Bclave;
while(!Leer.eof()){
Leer>>clave;
if(clave==Bclave)
{
encontrado=true;
cout<<"Nombre..."<<nombre<<endl;
cout<<"Clave..."<<clave<<endl;
cout<<endl;
cout<<"Ingrese nuevo nombre:"<<endl;
cin>>Nnombre;
Temp<<Nnombre<<" "<<clave<<endl;
}/*Ciere del condicional*/
else{
Temp<<nombre<<" "<<clave<<endl;
}
Leer>>nombre;
}/*Cierre while para terminar de leer-econtrar*/
if(encontrado==false)
{
cout<<"Clave no encontrada"<<endl;
}/*segundo if fuera del while*/
Leer.close();
Temp.close();
remove("Fichero.txt");
rename("Temp.txt", "Fichero.txt");
break;
} /*Cierre del case 5*/
}/*Cierre del switch*/
}/*Cierre del ciclo while*/
}
| [
"77910306+ArturomxA@users.noreply.github.com"
] | 77910306+ArturomxA@users.noreply.github.com |
8579a087dfd02e469c3030974c8559281cdae7de | 4209e2f5025efeb46d557513f64eb4d86dba7ef5 | /UnionFind3.cpp | cd37c4833931920666730479477db3ab1f3152f0 | [] | no_license | emerisly/olympiad_informatics | 51855541097f9dcba2d8558ae98bf93f31d49aea | 98794621d9b440572015ae9ef75cf1f1fb51eb36 | refs/heads/master | 2023-03-25T03:15:39.340828 | 2021-03-19T05:43:34 | 2021-03-19T05:43:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 255 | cpp | const int MAXN=1000000;
int f[MAXN];
void init(){
memset(f,-1,sizeof f);
}
int getf(int x) return f[x]<0?x:f[x]=getf(f[x]);
void merge(int x,int y){
x=getf(x),y=getf(y);
if(x!=y){
if(-f[x]<-f[y]) swap(x,y);
f[x]+=f[y];
f[y]=x;
}
}
| [
"noreply@github.com"
] | noreply@github.com |
d200dff0c8859d87d601976488f8c2f209581bdd | 6ee026fb2882c4768433c0a7cdfae4c908e06b4e | /remove_const.h | 531023ea5ce3c10f193cd1bd624e6c14a62e4d23 | [
"MIT"
] | permissive | makramkd/metaprogramming-cpp | e9edefdb900ab36636c3470d9d2662bdab0de535 | 1284e4a10c56e49f443924030e672c54b8806db9 | refs/heads/master | 2021-01-10T07:50:43.700489 | 2015-12-10T16:51:27 | 2015-12-10T16:51:27 | 47,666,063 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 883 | h | //
// Created by Makram Kamaleddine on 10/28/15.
//
#ifndef MY_MPL_REMOVE_CONST_H
#define MY_MPL_REMOVE_CONST_H
namespace mpl {
// a metafunction that takes a type
// that is const or volatile qualified
// and removes this qualifier
// no cv qualifiers: return the type given
template<typename T>
struct remove_cv {
using type = T;
};
// const qualifier
template<typename U>
struct remove_cv<U const> {
using type = U;
};
// volatile qualifier
template<typename V>
struct remove_cv<V volatile> {
using type = V;
};
// const volatile
template<typename W>
struct remove_cv<W const volatile> {
using type = W;
};
// alias template for better readability
template<typename T>
using remove_cv_t = typename remove_cv<T>::type;
}
#endif //MY_MPL_REMOVE_CONST_H
| [
"makram.kd@gmail.com"
] | makram.kd@gmail.com |
70ccf3539c692e24c6f038750e99d63883b91b3e | 29d2de39b5da6ad22fcc3ace73d8a5a91de69a5a | /ESP32/RandomDataToAdafruitIO/RandomDataToAdafruitIO.ino | beb78fc64722766dcde9af3f9cb8de7b88a9842e | [] | no_license | FARmer037/MelonSmartFarmProject | 7e1d367fe1136d1a1441a67ad636e4677e850d93 | 969952021d406ae208c10374877473413e368622 | refs/heads/master | 2020-04-21T16:24:04.934363 | 2019-10-16T08:35:20 | 2019-10-16T08:35:20 | 169,699,598 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,620 | ino | /////////////////////////////////
// Generated with a lot of love//
// with TUNIOT FOR ESP32 //
// Website: Easycoding.tn //
/////////////////////////////////
#include "Adafruit_MQTT.h"
#include "Adafruit_MQTT_Client.h"
#include <WiFi.h>
#define AIO_SERVER "io.adafruit.com"
#define AIO_SERVERPORT 1883
#define AIO_USERNAME "FARmer037"
#define AIO_KEY "f7fc3c178a014d4bbada37a32acaf9cb"
WiFiClient client;
Adafruit_MQTT_Client mqtt(&client, AIO_SERVER, AIO_SERVERPORT, AIO_USERNAME, AIO_KEY);
int i;
boolean MQTT_connect();
boolean MQTT_connect() {
int8_t ret;
if (mqtt.connected()) {
return true;
}
uint8_t retries = 3;
while ((ret = mqtt.connect()) != 0) {
mqtt.disconnect(); delay(2000);
retries--;
if (retries == 0) {
return false;
}
}
return true;
}
Adafruit_MQTT_Publish mydata = Adafruit_MQTT_Publish(&mqtt, AIO_USERNAME "/feeds/mydata");
void setup()
{
i = 0;
Serial.begin(9600);
WiFi.disconnect();
delay(3000);
Serial.println("START");
WiFi.begin("AndroidAP","fnei9721");
while ((!(WiFi.status() == WL_CONNECTED))){
delay(300);
Serial.print("..");
}
Serial.println("Connected");
Serial.println("Your IP is");
Serial.println((WiFi.localIP()));
}
void loop()
{
i = (random(100,200));
if (MQTT_connect()) {
if (mydata.publish(i)) {
Serial.println("Random data sent:");
Serial.println(i);
}
else {
Serial.println("Problem to send the random data.");
}
}
else {
Serial.println("Problem connect to the site.");
}
delay(10000);
}
| [
"mustofa0367@gmail.com"
] | mustofa0367@gmail.com |
244c71f6f71d9d900cceb12a1996250f32449594 | b8c04205327d5920000981d929ba1c000b23c1ed | /LeetCode226.cpp | 4e51ab96233be8ef3e690710c93632415b8c7399 | [] | no_license | malusheng/LeetCode | 554906c36fa93e895ddfdfd22ae2fe2a8eaf4751 | 8c6d4b465c557cdccf0e5269047fc190bf569a92 | refs/heads/master | 2021-01-16T04:22:04.005532 | 2020-03-04T14:46:19 | 2020-03-04T14:46:19 | 242,975,224 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 666 | cpp | /*************************************************************************
> File Name: LeetCode226.cpp
> Author:
> Mail:
> Created Time: 2020年03月04日 星期三 22时43分30秒
************************************************************************/
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* struct TreeNode *left;
* struct TreeNode *right;
* };
*/
struct TreeNode* invertTree(struct TreeNode* root){
if (root == NULL) return NULL;
struct TreeNode *p = root->left;
root->left = root->right;
root->right = p;
invertTree(root->left);
invertTree(root->right);
return root;
}
| [
"2532157864@qq.com"
] | 2532157864@qq.com |
678524ec2b3c127e4588359f0f3a8cab2b0a14c4 | 96a87553258506c9249360f07dff71f53d1a2046 | /remoter/remoter.ino | a279ff5ec2e5c5ec41807512b864af3bd43b2d47 | [] | no_license | lancatlin/SuperCar | 5b5f839b4046d8860e3b992150358804710c0bb4 | 5b163b124373d84fc7120ed92b15fac40bf8bafc | refs/heads/master | 2021-05-11T11:02:14.935446 | 2018-01-19T03:50:40 | 2018-01-19T03:50:40 | 118,119,381 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,492 | ino | #include <IRremote.h>
#include <IRremoteInt.h>
#define st 0x66
#define up 0xAA
#define dw 0xBB
#define rt 0xCC
#define lt 0xDD
#define ur 0xAC
#define ul 0xAD
#define dr 0xBC
#define dl 0xBD
IRsend ir;
int x = 0;
int y = 0;
int xx = 0;
int yy = 0;
int mode = 0;
int last_mode=0;
void setup() {
// put your setup code here, to run once:
pinMode(3,OUTPUT);
Serial.begin(9600);
Serial.println("begin");
}
void loop() {
// put your main code here, to run repeatedly:
x = analogRead(A0);
y = analogRead(A1);
if (x>800){
xx= 1;
}else if(x<250){
xx=-1;
}else{
xx=0;
}
if (y>900){
yy=10;
}else if(y<150){
yy=-10;
}else{
yy=0;
}
mode=xx+yy;
switch(mode){
case 10: //當為上
ir.sendSony(up,8);
Serial.println("up");
break;
case -10: //當為下
ir.sendSony(dw,8);
Serial.println("down");
break;
case 1: //當為右
ir.sendSony(rt,8);
Serial.println("right");
break;
case -1: //當為左
ir.sendSony(lt,8);
Serial.println("left");
break;
case 11: //當為右上
ir.sendSony(ur,8);
Serial.println("up and right");
break;
case 9: //當為左上
ir.sendSony(ul,8);
Serial.println("up and left");
break;
case -9: //當為右下
ir.sendSony(dr,8);
Serial.println("down and right");
break;
case -11: //當為左下
ir.sendSony(dl,8);
Serial.println("down and left");
break;
case 0: //當為中間
ir.sendSony(st,8);
//Serial.println("stop");
break;
}
delay(50);
}
| [
"lancat1499@gmail.com"
] | lancat1499@gmail.com |
a462aec0ecd6518afd1b3b07e41e4034eeee7893 | c3bbdbbbc5f47577e332a280f81bd905617423c9 | /Source/AllProjects/Tests2/TestORB/TestORB_Basic.cpp | 52983bbe6f61ead1e40af0d133f66883f9aaed40 | [
"MIT"
] | permissive | DeanRoddey/CIDLib | 65850f56cb60b16a63bbe7d6d67e4fddd3ecce57 | 82014e064eef51cad998bf2c694ed9c1c8cceac6 | refs/heads/develop | 2023-03-11T03:08:59.207530 | 2021-11-06T16:40:44 | 2021-11-06T16:40:44 | 174,652,391 | 227 | 33 | MIT | 2020-09-16T11:33:26 | 2019-03-09T05:26:26 | C++ | UTF-8 | C++ | false | false | 9,859 | cpp | //
// FILE NAME: TestORB_Basic.cpp
//
// AUTHOR: Dean Roddey
//
// CREATED: 11/26/2009
//
// COPYRIGHT: Charmed Quark Systems, Ltd @ 2019
//
// This software is copyrighted by 'Charmed Quark Systems, Ltd' and
// the author (Dean Roddey.) It is licensed under the MIT Open Source
// license:
//
// https://opensource.org/licenses/MIT
//
// DESCRIPTION:
//
// This file does some basic tests of ORB functionality, prior to actually
// cranking up the two sides of the ORB and doing communications.
//
// CAVEATS/GOTCHAS:
//
// LOG:
//
// $_CIDLib_Log_$
//
// ---------------------------------------------------------------------------
// Include our main header and anything else we need
// ---------------------------------------------------------------------------
#include "TestORB.hpp"
// ---------------------------------------------------------------------------
// Magic macros
// ---------------------------------------------------------------------------
RTTIDecls(TTest_ORBBasic,TTestFWTest)
// ---------------------------------------------------------------------------
// CLASS: TTest_ORBBasic
// PREFIX: tfwt
// ---------------------------------------------------------------------------
// ---------------------------------------------------------------------------
// TTest_ORBBasic: Constructor and Destructor
// ---------------------------------------------------------------------------
TTest_ORBBasic::TTest_ORBBasic() :
TTestFWTest
(
L"ORB Basic", L"Basic tests of ORB support code", 3
)
{
}
TTest_ORBBasic::~TTest_ORBBasic()
{
}
// ---------------------------------------------------------------------------
// TTest_ORBBasic: Public, inherited methods
// ---------------------------------------------------------------------------
tTestFWLib::ETestRes
TTest_ORBBasic::eRunTest(TTextStringOutStream& strmOut
, tCIDLib::TBoolean& bWarning)
{
tTestFWLib::ETestRes eRes = tTestFWLib::ETestRes::Success;
//
// A fixed interface and instance id we work with here. They are not
// for any actual interface.
//
const TString strIntfId(L"5EE5012A0A5595B0-1B796F127BC99BF7");
const TString strInstId(L"BF81F04E647D5D53-DF785C220333FF4B");
//
// Just some basic tests of the ORB Id class. Just make sure what we
// put in comes out.
//
{
TOrbId oidTest;
oidTest.Set(strIntfId, strInstId);
if (!oidTest.bIsInterfaceId(strIntfId))
{
eRes = tTestFWLib::ETestRes::Failed;
strmOut << TFWCurLn << L"Interface id was not recognized" << L"\n\n";
}
//
// We know what the hash of this one should be, so check it in order
// to catch any change in the hashing algorithm.
//
if (oidTest.hshThis() != 29)
{
eRes = tTestFWLib::ETestRes::Failed;
strmOut << TFWCurLn << L"Did not get known id hash" << L"\n\n";
}
//
// Get the hash, and then ask for a hash using what we know is the
// modulus it uses. They should be the same.
//
const tCIDLib::THashVal hshInt = oidTest.hshCalcHash(kCIDOrb::c4IdModulus);
if (hshInt != oidTest.hshThis())
{
eRes = tTestFWLib::ETestRes::Failed;
strmOut << TFWCurLn << L"Interface hash is inconsistent" << L"\n\n";
}
//
// Create another one that we set through the binary hashes instead
// of the ASCII format as above.
//
TOrbId oidTest2;
TMD5Hash mhashIntf;
TMD5Hash mhashInst;
mhashIntf.ParseFormatted(strIntfId);
mhashInst.ParseFormatted(strInstId);
oidTest2.Set(mhashIntf, mhashInst);
// We should get these hashes back out
if (oidTest2.mhashInterface() != mhashIntf)
{
eRes = tTestFWLib::ETestRes::Failed;
strmOut << TFWCurLn << L"Got incorrect intf hash back" << L"\n\n";
}
if (oidTest2.mhashInstance() != mhashInst)
{
eRes = tTestFWLib::ETestRes::Failed;
strmOut << TFWCurLn << L"Got incorrect instance hash back" << L"\n\n";
}
// And it also should have the known hash value
if (oidTest2.hshThis() != 29)
{
eRes = tTestFWLib::ETestRes::Failed;
strmOut << TFWCurLn << L"Did not get known id hash" << L"\n\n";
}
// And test that we still get the interface id recognized via string
if (!oidTest2.bIsInterfaceId(strIntfId))
{
eRes = tTestFWLib::ETestRes::Failed;
strmOut << TFWCurLn << L"Interface id was not recognized" << L"\n\n";
}
// And, for completenes, do one via constructor using string and hash
TOrbId oidTest3(strIntfId, mhashInst);
// It should be equal to the ones above
if (oidTest3 != oidTest)
{
eRes = tTestFWLib::ETestRes::Failed;
strmOut << TFWCurLn << L"Ctor vs Set created differences" << L"\n\n";
}
// Do round trip assignment and copy ctor testing
TOrbId oidTest4(oidTest3);
TOrbId oidTest5;
oidTest5 = oidTest4;
if (oidTest5 != oidTest)
{
eRes = tTestFWLib::ETestRes::Failed;
strmOut << TFWCurLn << L"Round trip copy/assign failed" << L"\n\n";
}
}
//
// OK, let's test up another level for the orb object id, which is
// used to represent an actual in place interface, and uses the above
// object id as the identifier, but includes target host and port
// info as well.
//
// In this case, since we are not using the name server or the usual
// auto-rebinder, we use the version of the end point that will do
// a name resolution to get the IP address and use localhost as the
// host name since this test always runs both sides locally.
//
{
TOrbObjId ooidTest
(
strIntfId
, strInstId
, L"localhost"
, 9999
, L"TTestOrbIntfClientProxy"
);
// The key should be the same as above
TOrbId oidTest(strIntfId, strInstId);
if (ooidTest.oidKey() != oidTest)
{
eRes = tTestFWLib::ETestRes::Failed;
strmOut << TFWCurLn << L"The obj id key is wrong" << L"\n\n";
}
if (ooidTest.ippnHost() != 9999)
{
eRes = tTestFWLib::ETestRes::Failed;
strmOut << TFWCurLn << L"The host port was not set correctly" << L"\n\n";
}
if (ooidTest.strClientProxyClass() != L"TTestOrbIntfClientProxy")
{
eRes = tTestFWLib::ETestRes::Failed;
strmOut << TFWCurLn << L"The client proxy class was not set correctly"
<< L"\n\n";
}
// Do a round trip copy/assign
TOrbObjId ooidTest2(ooidTest);
TOrbObjId ooidTest3;
ooidTest3 = ooidTest2;
if (ooidTest3 != ooidTest)
{
eRes = tTestFWLib::ETestRes::Failed;
strmOut << TFWCurLn << L"Round trip copy/assign failed" << L"\n\n";
}
}
// Test the command class (and by extension the reply class it derives from)
{
// Create an id for testing purposes
TOrbId oidTest;
oidTest.Set(strIntfId, strInstId);
// Create a reply and round trip the id through it
TOrbCmd ocmdTest(64);
ocmdTest.SetTarget(oidTest);
if (ocmdTest.oidKey() != oidTest)
{
eRes = tTestFWLib::ETestRes::Failed;
strmOut << TFWCurLn << L"The orb cmd target id round trip failed"
<< L"\n\n";
}
// The return status should initially be false
if (ocmdTest.bRetStatus())
{
eRes = tTestFWLib::ETestRes::Failed;
strmOut << TFWCurLn << L"Initial reply status was incorrect"
<< L"\n\n";
}
// Set it and read it back out
ocmdTest.bRetStatus(kCIDLib::True);
if (!ocmdTest.bRetStatus())
{
eRes = tTestFWLib::ETestRes::Failed;
strmOut << TFWCurLn << L"The return status was not set correctly"
<< L"\n\n";
}
// The sequence id should initially be zero
if (ocmdTest.c4SequenceId())
{
eRes = tTestFWLib::ETestRes::Failed;
strmOut << TFWCurLn << L"Initial sequence id was incorrect"
<< L"\n\n";
}
// Set it and read it back out
ocmdTest.c4SequenceId(15);
if (ocmdTest.c4SequenceId() != 15)
{
eRes = tTestFWLib::ETestRes::Failed;
strmOut << TFWCurLn << L"The sequence id was not set correctly"
<< L"\n\n";
}
// Stream an object into the command, and round trip it
ocmdTest.Reset(128);
{
TArea areaIn(1,2,3,4);
ocmdTest.strmOut() << areaIn;
tCIDLib::TCard4 c4Bytes;
THeapBuf mbufTmp(1024UL);
{
TBinMBufOutStream strmOut(&mbufTmp);
strmOut << ocmdTest << kCIDLib::FlushIt;
c4Bytes = strmOut.c4CurPos();
}
TOrbCmd ocmdNew(c4Bytes + 64);
{
TBinMBufInStream strmIn(&mbufTmp, c4Bytes);
strmIn >> ocmdNew;
}
TArea areaOut;
ocmdNew.strmIn() >> areaOut;
if (areaIn != areaOut)
{
eRes = tTestFWLib::ETestRes::Failed;
strmOut << TFWCurLn << L"Cmd object round trip stream failed"
<< L"\n\n";
}
}
}
return eRes;
}
| [
"droddey@charmedquark.com"
] | droddey@charmedquark.com |
2eaf69ec3de302a0535c109ac487073277e82840 | cf6ebecf4fb96537519977b992e71b71cbcda9ff | /plugins/HLXRenderPlugin.cc | 859fd20cc5df47ce623f75eb7419d7bcfbf863ca | [] | no_license | srimanob/dqmgui | 594753893a4c855b3c526280e32d0c3f6c6c0fbc | a805e1e7247154c72f3417cdb8773d892179d06f | refs/heads/master | 2023-04-30T10:27:24.300255 | 2021-04-02T17:06:21 | 2021-04-02T17:06:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,482 | cc | // -*- C++ -*-
//
// Package: RenderPlugins
// Class : HLXRenderPlugin
//
// Implementation:
// <Notes on implementation>
//
// Original Author:
// Created: Sat Apr 19 20:02:57 CEST 2008
// $Id: HLXRenderPlugin.cc,v 1.21 2011/09/09 11:53:42 lilopera Exp $
//
// user include files
#include "../src/DQMRenderPlugin.h"
#include "utils.h"
#include "TH1F.h"
#include "TH2F.h"
#include "TProfile.h"
#include "TStyle.h"
#include "TCanvas.h"
#include "TColor.h"
#include "TGraph.h"
#include "TLine.h"
#include "TROOT.h"
#include <iostream>
#include <cassert>
class HLXRenderPlugin : public DQMRenderPlugin {
public:
bool applies(const VisDQMObject &o, const VisDQMImgInfo &) override {
if (o.name.find("HLX/Luminosity") != std::string::npos)
return true;
if (o.name.find("HLX/HFMinus") != std::string::npos)
return true;
if (o.name.find("HLX/HFPlus") != std::string::npos)
return true;
if (o.name.find("HLX/HFCompare") != std::string::npos)
return true;
if (o.name.find("HLX/Average") != std::string::npos)
return true;
if (o.name.find("HLX/CheckSums") != std::string::npos)
return true;
if (o.name.find("HLX/SigBkgLevels") != std::string::npos)
return true;
if (o.name.find("HLX/History") != std::string::npos)
return true;
if (o.name.find("HLX/EventInfo") != std::string::npos)
return true;
return false;
}
void preDraw(TCanvas *c, const VisDQMObject &o, const VisDQMImgInfo &, VisDQMRenderInfo &r) override {
c->cd();
gStyle->Reset("Plain");
gStyle->SetErrorX(0);
gStyle->SetEndErrorSize(10);
gStyle->SetCanvasColor(10);
gStyle->SetPadColor(10);
gStyle->SetFillColor(10);
gStyle->SetOptTitle(kTRUE);
gStyle->SetTitleBorderSize(0);
gStyle->SetOptStat(kTRUE);
gStyle->SetStatBorderSize(1);
gStyle->SetStatColor(kWhite);
gStyle->SetTitleFillColor(kWhite);
gStyle->SetPadTickX(1);
gStyle->SetPadTickY(1);
gStyle->SetPadLeftMargin(0.15);
gROOT->ForceStyle();
r.drawOptions = "";
if (dynamic_cast<TProfile *>(o.object)) {
preDrawTProfile(c, o);
} else if (dynamic_cast<TH1F *>(o.object)) {
preDrawTH1F(c, o);
} else if (dynamic_cast<TH2F *>(o.object)) {
preDrawTH2F(c, o);
//r.drawOptions = "colz";
}
}
private:
void preDrawTProfile(TCanvas *, const VisDQMObject &o) {
//std::cout << "NADIA: Here in predraw PROFILE!!!!" << std::endl;
TProfile *obj = dynamic_cast<TProfile *>(o.object);
assert(obj);
// Average plots for Etsum/Tower Occupancy
obj->SetStats(kTRUE);
obj->GetYaxis()->SetTitleOffset(1.3);
if ((o.name.find("AvgEtSum") != std::string::npos || o.name.find("AvgOcc") != std::string::npos) &&
(o.name.find("Lumi") == std::string::npos && o.name.find("Hist") == std::string::npos)) {
// If there isn't a big range we need more room for the
// fractions ...
if ((obj->GetMaximum() - obj->GetMinimum()) < 0.001 && obj->GetMaximum() > 0.1) {
gPad->SetLeftMargin(0.20);
obj->GetYaxis()->SetLabelSize(0.03);
obj->GetYaxis()->SetTitleOffset(2.2);
}
if (o.name.find("AvgEtSum") != std::string::npos) {
gPad->SetTopMargin(0.15);
} else {
obj->SetErrorOption("");
}
obj->SetMarkerStyle(21);
obj->SetMarkerSize(0.6);
obj->SetMarkerColor(kBlue);
}
if (o.name.find("LumiAvg") != std::string::npos) {
obj->SetMarkerStyle(kPlus);
obj->SetMarkerColor(kBlue);
}
// Sum All Occupancy plots (check sums)
if (o.name.find("SumAllOcc") != std::string::npos) {
obj->SetMaximum(1.25 * obj->GetMaximum());
obj->SetMinimum(0.75 * obj->GetMinimum());
obj->SetMarkerStyle(21);
obj->SetMarkerSize(0.6);
obj->SetMarkerColor(6);
}
// History histograms ...
if (o.name.find("Hist") != std::string::npos) {
obj->SetMarkerStyle(kFullCircle);
obj->SetMarkerSize(0.8);
// Loop over the bins and find the first empty one
int firstEmptyBin = obj->GetNbinsX();
for (int iBin = 1; iBin <= obj->GetNbinsX(); ++iBin) {
if (obj->GetBinContent(iBin) == 0) {
firstEmptyBin = iBin;
break;
}
}
if (firstEmptyBin < 2)
firstEmptyBin = 2;
// Now set the new range
obj->GetXaxis()->SetRange(0, firstEmptyBin - 1);
}
}
void preDrawTH1F(TCanvas *, const VisDQMObject &o) {
TH1F *obj = dynamic_cast<TH1F *>(o.object);
assert(obj);
// Average plots for Etsum/Tower Occupancy
obj->SetStats(kTRUE);
obj->GetYaxis()->SetTitleOffset(1.3);
if (o.name.find("Lumi") == std::string::npos) {
obj->SetFillColor(kBlue);
obj->SetLineColor(kBlue);
obj->SetFillStyle(1001);
}
if (o.name.find("MaxInstLumiBXNum") != std::string::npos) {
obj->SetFillColor(kBlue);
obj->SetLineColor(kBlue);
obj->SetFillStyle(1001);
}
// HF comparison histograms
if (o.name.find("HFCompareOcc") != std::string::npos) {
if ((obj->GetMaximum() - obj->GetMinimum()) < 0.001 && obj->GetMaximum() > 0.1) {
gPad->SetLeftMargin(0.20);
obj->GetYaxis()->SetLabelSize(0.03);
obj->GetYaxis()->SetTitleOffset(2.2);
}
}
// Wedge by wedge histograms
if (o.name.find("ETSum") != std::string::npos || o.name.find("Set1_") != std::string::npos ||
o.name.find("Set2_") != std::string::npos) {
gPad->SetLeftMargin(0.15);
//obj->GetYaxis()->SetLabelSize(0.03);
obj->GetYaxis()->SetTitleOffset(1.7);
if ((obj->GetMaximum() - obj->GetMinimum()) < 0.001 && obj->GetMaximum() > 0.1) {
gPad->SetLeftMargin(0.20);
obj->GetYaxis()->SetLabelSize(0.03);
obj->GetYaxis()->SetTitleOffset(2.2);
}
}
if ((o.name.find("EtSum") != std::string::npos && o.name.find("Lumi") == std::string::npos) ||
o.name.find("ETSum") != std::string::npos) {
int maxBin = obj->GetMaximumBin();
int minBin = obj->GetMinimumBin();
double objMax = obj->GetBinContent(maxBin);
double objMin = obj->GetBinContent(minBin);
if (objMax > 0 && objMin > 0) {
if ((objMax / objMin) > 1e4)
gPad->SetLogy();
}
obj->SetMaximum(objMax * 1.02);
obj->SetMinimum(objMin * 0.98);
}
if (o.name.find("Lumi") != std::string::npos && o.name.find("HistInstantLumi") == std::string::npos &&
o.name.find("HistIntegratedLumi") == std::string::npos) {
obj->SetLineColor(kBlack);
obj->SetMarkerStyle(kPlus);
if (o.name.find("LumiInstant") != std::string::npos)
obj->SetMarkerColor(8);
else if (o.name.find("LumiIntegrated") != std::string::npos)
obj->SetMarkerColor(kRed);
}
if (o.name.find("MaxInstLumiBX") != std::string::npos && o.name.find("MaxInstLumiBXNum") == std::string::npos) {
obj->SetLineColor(kBlack);
obj->SetMarkerStyle(21);
obj->SetMarkerSize(0.6);
obj->SetMarkerColor(kBlue);
obj->SetOption("e0");
}
if (o.name.find("HistInstantLumi") != std::string::npos || o.name.find("HistIntegratedLumi") != std::string::npos) {
if (o.name.find("Error") == std::string::npos) {
obj->SetMarkerStyle(kFullCircle);
obj->SetMarkerSize(0.8);
obj->SetLineColor(kBlack);
obj->SetOption("e0");
} else {
obj->SetMarkerStyle(21);
obj->SetMarkerColor(kRed);
obj->SetMarkerSize(1.2);
obj->SetOption("p");
}
// Loop over the bins and find the first empty one
int firstEmptyBin = obj->GetNbinsX();
for (int iBin = 1; iBin <= obj->GetNbinsX(); ++iBin) {
if (obj->GetBinContent(iBin) == 0) {
firstEmptyBin = iBin;
break;
}
}
if (firstEmptyBin < 2)
firstEmptyBin = 2;
// Now set the new range
obj->GetXaxis()->SetRange(0, firstEmptyBin - 1);
}
}
void preDrawTH2F(TCanvas *c, const VisDQMObject &o) {
TH2F *obj = dynamic_cast<TH2F *>(o.object);
assert(obj);
obj->SetStats(kFALSE);
if (o.name.find("Time") != std::string::npos) {
// Loop over the bins and find the first empty one
int firstEmptyBin = obj->GetNbinsX();
for (int iBin = 1; iBin <= obj->GetNbinsX(); ++iBin) {
if (obj->GetBinContent(iBin, 1) == 0) {
firstEmptyBin = iBin;
break;
}
}
if (firstEmptyBin <= 2)
firstEmptyBin = 1;
else
firstEmptyBin -= 2;
// Now set the new range
obj->GetXaxis()->SetRange(0, firstEmptyBin);
unsigned int Number = 3;
double Red[] = {0.00, 0.00, 1.00};
double Green[] = {0.00, 1.00, 0.00};
double Blue[] = {1.00, 0.00, 0.00};
double Stops[] = {0.00, 0.50, 1.00};
int nb = 100;
TColor::CreateGradientColorTable(Number, Stops, Blue, Green, Red, nb);
obj->SetOption("colz");
c->SetRightMargin(2 * c->GetRightMargin());
} else {
obj->SetMinimum(-.001);
obj->SetMaximum(1.02);
gStyle->SetPaintTextFormat("5.4g");
dqm::utils::reportSummaryMapPalette(obj);
obj->SetMarkerSize(3);
obj->GetYaxis()->SetLabelSize(0.07);
obj->GetXaxis()->SetTitleSize(0.05);
obj->GetXaxis()->SetTitleOffset(0.8);
obj->SetOption("colztext90");
}
// //gStyle->SetPalette(1);
}
};
static HLXRenderPlugin instance;
| [
"andrius.kirilovas@cern.ch"
] | andrius.kirilovas@cern.ch |
38f8f3b5c3f3ce1aea23a9f5e0d1dbd5f4fc9304 | cfeac52f970e8901871bd02d9acb7de66b9fb6b4 | /generated/src/aws-cpp-sdk-organizations/source/model/CreateOrganizationRequest.cpp | b155d425bd93797223fea8abae77735345edc7ea | [
"Apache-2.0",
"MIT",
"JSON"
] | permissive | aws/aws-sdk-cpp | aff116ddf9ca2b41e45c47dba1c2b7754935c585 | 9a7606a6c98e13c759032c2e920c7c64a6a35264 | refs/heads/main | 2023-08-25T11:16:55.982089 | 2023-08-24T18:14:53 | 2023-08-24T18:14:53 | 35,440,404 | 1,681 | 1,133 | Apache-2.0 | 2023-09-12T15:59:33 | 2015-05-11T17:57:32 | null | UTF-8 | C++ | false | false | 1,068 | cpp | /**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/organizations/model/CreateOrganizationRequest.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::Organizations::Model;
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
CreateOrganizationRequest::CreateOrganizationRequest() :
m_featureSet(OrganizationFeatureSet::NOT_SET),
m_featureSetHasBeenSet(false)
{
}
Aws::String CreateOrganizationRequest::SerializePayload() const
{
JsonValue payload;
if(m_featureSetHasBeenSet)
{
payload.WithString("FeatureSet", OrganizationFeatureSetMapper::GetNameForOrganizationFeatureSet(m_featureSet));
}
return payload.View().WriteReadable();
}
Aws::Http::HeaderValueCollection CreateOrganizationRequest::GetRequestSpecificHeaders() const
{
Aws::Http::HeaderValueCollection headers;
headers.insert(Aws::Http::HeaderValuePair("X-Amz-Target", "AWSOrganizationsV20161128.CreateOrganization"));
return headers;
}
| [
"sdavtaker@users.noreply.github.com"
] | sdavtaker@users.noreply.github.com |
0b68bf42069e7850a6b67eacd104ed53648956eb | 0e5629e4f8d6b7d1b7b0239a3c673576198d103e | /000HelloWorld/HelloWorld.cpp | 38fbce4ccb4cb77f6622f120a386a22b19bbe490 | [] | no_license | xmandy/CppTest | 2edb6125e4fca098aca1a71698b54a13b6641969 | 6a96fef560d0ed8016201be4210be9b2b1ffd5c4 | refs/heads/master | 2021-07-17T05:08:58.601852 | 2020-10-12T14:51:13 | 2020-10-12T14:52:50 | 219,537,154 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 310 | cpp | #include <iostream>
struct Types
{
//typedef int TypeSlot0;
//typedef float TypeSlot1;
//typedef double TypeSlot2;
};
int main(int argc, const char** argv) {
Types b;
//Types::TypeSlot0 a = 10;
int a;
std::cout << "Hello World\n" << a << "\n" << sizeof(b) << "\n";
return 0;
} | [
"shenxm06@gmail.com"
] | shenxm06@gmail.com |
1268caa32d989d67b247fd017129b415373418c8 | 973bdd75c4239b72d0edb3966fc28dc4407b6ef2 | /HeroLogic/HeroGenerator.cpp | cedee4539e964527735b85ca3d1d97c651589786 | [] | no_license | krystaLove/Turn_Based_Game | cb332889934fc6e0f122389e0e290f20c0249000 | aa44382e2e5efe653e4d05fb1b518fc7c86096e3 | refs/heads/master | 2021-01-02T12:49:09.566992 | 2020-02-24T15:41:44 | 2020-02-24T15:41:44 | 239,631,486 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,132 | cpp | #include "HeroGenerator.h"
#include "../Model/Heroes/Zero Tier/Peasant.h"
#include "../Model/Heroes/First Tier/Archer.h"
#include "../Model/Heroes/First Tier/Apprentice.h"
#include "../Model/Heroes/First Tier/Swordsman.h"
#include "../Model/Heroes/Second Tier/Monk.h"
#include "../Model/Heroes/Second Tier/Gunner.h"
#include "../Model/Heroes/Second Tier/Knight.h"
#include "../Model/Heroes/Second Tier/Inquisitor.h"
#include "../Configs/GameConfig.h"
#include "../Utils/Console.h"
std::shared_ptr<Hero> HeroGenerator::generateHero(Hero::Class type)
{
switch (type)
{
case Hero::Class::NONE:
return std::make_shared<Peasant>();
case Hero::Class::ARCHER:
return std::make_shared<Archer>();
case Hero::Class::APPRENTICE:
return std::make_shared<Apprentice>();
case Hero::Class::SWORDSMAN:
return std::make_shared<Swordsman>();
case Hero::Class::PEASANT:
return std::make_shared<Peasant>();
case Hero::Class::GUNNER:
return std::make_shared<Gunner>();
case Hero::Class::KNIGHT:
return std::make_shared<Knight>();
case Hero::Class::MONK:
return std::make_shared<Monk>();
case Hero::Class::INQUISITOR:
return std::make_shared<Inquisitor>();
}
}
std::shared_ptr<Hero> HeroGenerator::generateRandomHero()
{
int random = rand() % (static_cast<int>(Hero::Class::SWORDSMAN) + 1);
return generateHero(static_cast<Hero::Class>(random));
}
std::vector<std::shared_ptr<Hero> > HeroGenerator::generateRandomTeam()
{
std::vector<std::shared_ptr<Hero> > heroes;
for(int i = 0; i < MAX_HEROES_PER_PLAYER; ++i)
{
std::shared_ptr<Hero> hero = generateRandomHero();
heroes.push_back(hero);
}
return heroes;
}
char HeroGenerator::getCharForHero(Hero::Class heroClass)
{
switch(heroClass)
{
case Hero::Class::NONE:
return '.';
case Hero::Class::PEASANT:
return 'P';
case Hero::Class::SWORDSMAN:
return 'S';
case Hero::Class::APPRENTICE:
return 'A';
case Hero::Class::ARCHER:
return 'R';
case Hero::Class::GUNNER:
return 'G';
case Hero::Class::KNIGHT:
return 'K';
case Hero::Class::MONK:
return 'M';
case Hero::Class::INQUISITOR:
return 'I';
}
}
void HeroGenerator::showEncyclopedia()
{
std::cout << "[ Tier 0 ]" << std::endl;
generateHero(Hero::Class::PEASANT)->showShortInfo();
std::cout << "\n[ Tier 1 ]" << std::endl;
generateHero(Hero::Class::SWORDSMAN)->showShortInfo();
generateHero(Hero::Class::APPRENTICE)->showShortInfo();
generateHero(Hero::Class::ARCHER)->showShortInfo();
std::cout << "\n[ Tier 2 ]" << std::endl;
generateHero(Hero::Class::KNIGHT)->showShortInfo();
generateHero(Hero::Class::INQUISITOR)->showShortInfo();
generateHero(Hero::Class::MONK)->showShortInfo();
generateHero(Hero::Class::GUNNER)->showShortInfo();
std::cout << std::endl;
}
| [
"denis.zhuravkov@gmail.com"
] | denis.zhuravkov@gmail.com |
7552c404131385fb5c61143f45063176dded4e05 | 3db48713c39b90d5967615e3d1c874d88055ba70 | /tests/std/tests/GH_002711_Zc_alignedNew-/test.compile.pass.cpp | b54745d1f7a2f218c3a010496cbb98b73630d824 | [
"Apache-2.0",
"LLVM-exception",
"LicenseRef-scancode-object-form-exception-to-mit",
"LicenseRef-scancode-unicode",
"MIT",
"LicenseRef-scancode-mit-old-style",
"LicenseRef-scancode-other-permissive",
"CC0-1.0",
"BSL-1.0",
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-generic-cla",
"... | permissive | microsoft/STL | 4b1a6a625402e04b857e8dfc3c22efd9bc798f01 | 6c69a73911b33892919ec628c0ea5bbf0caf8a6a | refs/heads/main | 2023-09-04T08:50:17.559497 | 2023-08-31T16:49:43 | 2023-08-31T16:49:43 | 204,593,825 | 9,862 | 1,629 | NOASSERTION | 2023-09-14T21:57:47 | 2019-08-27T01:31:18 | C++ | UTF-8 | C++ | false | false | 275 | cpp | // Copyright (c) Microsoft Corporation.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// GH-2711 <functional>: incompatible with /std:c++latest and /Zc:alignedNew-
// GH-3294 <chrono>: building with -J emits C4365
#include <__msvc_all_public_headers.hpp>
| [
"noreply@github.com"
] | noreply@github.com |
9094b948aea3db7b69a2392cf61586b4df77262e | 6d52562ae0561cb164dbed3c15a3c846c0225c3b | /07-texture/src/engine/include/engine/service/glrenderer/gl_renderer_service.h | 659fab31c5e047642eba6b3e9c8e2d351549c373 | [
"MIT"
] | permissive | vitoOmbero/pep-proto | 159a72b332bd20148ce9139c5284d748f1848164 | cb83937dd8b2cee26acabd026d7549fb5c85e153 | refs/heads/master | 2023-01-21T13:42:41.747484 | 2020-11-29T09:19:38 | 2020-11-29T09:19:38 | 299,979,708 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 521 | h | #ifndef INC_05_GUESS_NUMBER_GL_RENDERER_SERVICE_H
#define INC_05_GUESS_NUMBER_GL_RENDERER_SERVICE_H
#include "gl_renderer.h"
#include "SDL.h"
#include "gl_types.h"
#include "gl_color.h"
namespace GlRendererService{
void SetActiveWindow(SDL_Window* window);
void Render();
void InitFor(size_t level_id);
void Destroy();
void SwitchGlPolygonMode(GlPolygonMode mode);
void SetGlClearColor(gl_color color);
gl_color GetGlClearColor();
}
#endif //INC_05_GUESS_NUMBER_GL_RENDERER_SERVICE_H
| [
"vito.ombero@gmail.com"
] | vito.ombero@gmail.com |
84c2ab9376a22e75bc448b3bf5a7ac1d1530da87 | 18571b48f98c4a077ccab1565e9e50e5625c1907 | /qmlcplus/updateprogressc.cpp | 4b17a3bef3f7648d6121546fb23e9f0e49ba17bd | [] | no_license | xiaoxiaodx/DoubleLight | e0452b0a50da71c0c451fe66d82cc9fac541a627 | 984ef4a0c76b9cb5b84d88f0e55bae7865d08cc2 | refs/heads/master | 2021-05-17T12:13:45.798837 | 2020-05-12T01:46:18 | 2020-05-12T01:46:18 | 250,769,472 | 1 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 3,928 | cpp | #include "updateprogressc.h"
using namespace std;
#define UNIT_KB 1024 //KB
#define UNIT_MB 1024*1024 //MB
#define UNIT_GB 1024*1024*1024 //GB
#define TIME_INTERVAL 300 //0.3s
updateProgressC::updateProgressC(QObject *parent) : QObject(parent)
{
upcontrol =new CUpControl;
connect(upcontrol,SIGNAL(signalFinishied(int)),this,SLOT(on_finishied(int)));
connect(upcontrol,SIGNAL(signalError()),this,SLOT(on_err()));
connect(upcontrol,SIGNAL(signalProgressUpdate(qint64 ,qint64)),this,SLOT(on_progress(qint64,qint64)));
}
void updateProgressC::on_err()
{
qDebug()<<"send error"<<endl;
}
QString updateProgressC::getupToDid()
{
return m_did;
}
void updateProgressC::startupLoad(QString did,QString url,QString file)
{
qDebug()<<"url "<<url<<" "<<file;
QTimer::singleShot(7*1000,this, SLOT(on_start()));
m_did=did;
m_url=url;
m_filename=file;
}
void updateProgressC::on_start()
{
if(!m_url.isEmpty()&&!m_filename.isEmpty())
{
upcontrol->startsendFile(m_url,m_filename);
}
}
void updateProgressC::on_finishied(int status)
{
if(status==200)
{
qDebug()<<"ok"<<endl;
emit signal_updateState(true);
}
else
{
qDebug()<<"Faild"<<endl;
emit signal_updateState(false);
}
}
void updateProgressC::on_progress(qint64 bytessend,qint64 bytesTotal)
{
//ui->progressBar->setMaximum(bytesTotal);
//ui->progressBar->setValue(bytessend);
//qDebug()<<"on_progress "<<bytessend<<" "<<bytesTotal;
if(bytesTotal == 0)
return;
int progressv = bytessend*100/bytesTotal;
emit signal_updateProgress(progressv);
}
// 转换单位;
QString updateProgressC::transformUnit(qint64 bytes , bool isSpeed)
{
QString strUnit = " B";
if (bytes <= 0)
{
bytes = 0;
}
else if (bytes < UNIT_KB)
{
}
else if (bytes < UNIT_MB)
{
bytes /= UNIT_KB;
strUnit = " KB";
}
else if (bytes < UNIT_GB)
{
bytes /= UNIT_MB;
strUnit = " MB";
}
else if (bytes > UNIT_GB)
{
bytes /= UNIT_GB;
strUnit = " GB";
}
if (isSpeed)
{
strUnit += "/S";
}
QString tmp= QString("%1%2").arg(bytes).arg(strUnit);
return tmp;
}
// 转换时间;
QString updateProgressC::transformTime(qint64 seconds)
{
QString strValue;
QString strSpacing(" ");
if (seconds <= 0)
{
strValue = QString("%1s").arg(0);
}
else if (seconds < 60)
{
strValue = QString("%1s").arg(seconds);
}
else if (seconds < 60 * 60)
{
int nMinute = seconds / 60;
int nSecond = seconds - nMinute * 60;
strValue = QString("%1m").arg(nMinute);
if (nSecond > 0)
strValue += strSpacing + QString("%1s").arg(nSecond);
}
else if (seconds < 60 * 60 * 24)
{
int nHour = seconds / (60 * 60);
int nMinute = (seconds - nHour * 60 * 60) / 60;
int nSecond = seconds - nHour * 60 * 60 - nMinute * 60;
strValue = QString("%1h").arg(nHour);
if (nMinute > 0)
strValue += strSpacing + QString("%1m").arg(nMinute);
if (nSecond > 0)
strValue += strSpacing + QString("%1s").arg(nSecond);
}
else
{
int nDay = seconds / (60 * 60 * 24);
int nHour = (seconds - nDay * 60 * 60 * 24) / (60 * 60);
int nMinute = (seconds - nDay * 60 * 60 * 24 - nHour * 60 * 60) / 60;
int nSecond = seconds - nDay * 60 * 60 * 24 - nHour * 60 * 60 - nMinute * 60;
strValue = QString("%1d").arg(nDay);
if (nHour > 0)
strValue += strSpacing + QString("%1h").arg(nHour);
if (nMinute > 0)
strValue += strSpacing + QString("%1m").arg(nMinute);
if (nSecond > 0)
strValue += strSpacing + QString("%1s").arg(nSecond);
}
return strValue;
}
| [
"363904613@qq.com"
] | 363904613@qq.com |
746b082154dcaaae8286e57da4646da22c21ab85 | 307a78a98ba3e5344c6464036fa138511592a78c | /src/Engine/animation/AnimationController.h | 2fd59ed1114912c5d764f1e379f7cdfeb5da2a95 | [] | no_license | cnsuhao/3dpanda | b0a2edb891aceee44bcf48e86038c0f222d7cee2 | 4c0cc31debe3b4e7d22f1eeab770b721f5816b2d | refs/heads/master | 2021-08-23T13:42:20.770552 | 2016-01-19T15:23:36 | 2016-01-19T15:23:36 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,543 | h | //
// Copyright(c) 1986-2100, TT, All Rights Reserved
// 作者: htz
// 日期: 2014/5/9 10:51:47_
// 描述:
//
#ifndef _ANIMATIONCONTROLLER_201459105147_
#define _ANIMATIONCONTROLLER_201459105147_
#include "animation/IAnimationController.h"
#include "AniObject.h"
#include <vector>
#include "resources/ResRefDefine.h"
namespace panda
{
class AnimationEntity;
class AnimationController:public IAnimationController, public AniObject
{
public:
AnimationController(SceneMgrImpl* sceneMgr);
virtual void Update(f32 tick);
// blendTime:融和时间
virtual void Play(IAnimationEntity* pAni, f32 blendTime);
// 重置动画播放器
virtual void Reset(void);
// 手动模式
virtual void ManualAdd(IAnimationEntity* entity);
virtual void ManualRemove(IAnimationEntity* entity);
virtual IAnimationEntity* GetEntity(const tstring& name)const;
virtual IAnimationEntity* GetEntity(u32 index)const;
virtual u32 GetEntityNum(void)const;
// 自动更新
virtual void SetAutoUpdate(bool automatic);
virtual bool GetAutoUpdate(void)const;
void InitWithSkn(ResSkeletion skn);
// 应用动画
void Apply(void);
void Release(void);
public:
typedef std::vector<AnimationEntity*> EntityList;
EntityList mEntitys;
EntityList mCurEntity;
bool mAutoUpdate; // 自动更新
//typedef std::vector<IAnimation*> AniList;
//AniList mAnis;
};
}
#endif // _ANIMATIONCONTROLLER_201459105147_ | [
"htz92127@7ab85fd3-f5a8-4271-b782-947eb919ca2b"
] | htz92127@7ab85fd3-f5a8-4271-b782-947eb919ca2b |
86e7a6a35e22364193b116782d37b445eee1f86e | 5ec06dab1409d790496ce082dacb321392b32fe9 | /clients/cpp-restbed-server/generated/model/OrgApacheJackrabbitOakPluginsObservationChangeCollectorProviderInfo.h | 61429d7bcb8bb3010d4e80cec27de2fa788a9bc9 | [
"Apache-2.0"
] | permissive | shinesolutions/swagger-aem-osgi | e9d2385f44bee70e5bbdc0d577e99a9f2525266f | c2f6e076971d2592c1cbd3f70695c679e807396b | refs/heads/master | 2022-10-29T13:07:40.422092 | 2021-04-09T07:46:03 | 2021-04-09T07:46:03 | 190,217,155 | 3 | 3 | Apache-2.0 | 2022-10-05T03:26:20 | 2019-06-04T14:23:28 | null | UTF-8 | C++ | false | false | 2,648 | h | /**
* Adobe Experience Manager OSGI config (AEM) API
* Swagger AEM OSGI is an OpenAPI specification for Adobe Experience Manager (AEM) OSGI Configurations API
*
* OpenAPI spec version: 1.0.0-pre.0
* Contact: opensource@shinesolutions.com
*
* NOTE: This class is auto generated by OpenAPI-Generator 3.2.1-SNAPSHOT.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/*
* OrgApacheJackrabbitOakPluginsObservationChangeCollectorProviderInfo.h
*
*
*/
#ifndef OrgApacheJackrabbitOakPluginsObservationChangeCollectorProviderInfo_H_
#define OrgApacheJackrabbitOakPluginsObservationChangeCollectorProviderInfo_H_
#include <string>
#include "OrgApacheJackrabbitOakPluginsObservationChangeCollectorProviderProperties.h"
#include <memory>
namespace org {
namespace openapitools {
namespace server {
namespace model {
/// <summary>
///
/// </summary>
class OrgApacheJackrabbitOakPluginsObservationChangeCollectorProviderInfo
{
public:
OrgApacheJackrabbitOakPluginsObservationChangeCollectorProviderInfo();
virtual ~OrgApacheJackrabbitOakPluginsObservationChangeCollectorProviderInfo();
std::string toJsonString();
void fromJsonString(std::string const& jsonString);
/////////////////////////////////////////////
/// OrgApacheJackrabbitOakPluginsObservationChangeCollectorProviderInfo members
/// <summary>
///
/// </summary>
std::string getPid() const;
void setPid(std::string value);
/// <summary>
///
/// </summary>
std::string getTitle() const;
void setTitle(std::string value);
/// <summary>
///
/// </summary>
std::string getDescription() const;
void setDescription(std::string value);
/// <summary>
///
/// </summary>
std::shared_ptr<OrgApacheJackrabbitOakPluginsObservationChangeCollectorProviderProperties> getProperties() const;
void setProperties(std::shared_ptr<OrgApacheJackrabbitOakPluginsObservationChangeCollectorProviderProperties> value);
/// <summary>
///
/// </summary>
std::string getBundleLocation() const;
void setBundleLocation(std::string value);
/// <summary>
///
/// </summary>
std::string getServiceLocation() const;
void setServiceLocation(std::string value);
protected:
std::string m_Pid;
std::string m_Title;
std::string m_Description;
std::shared_ptr<OrgApacheJackrabbitOakPluginsObservationChangeCollectorProviderProperties> m_Properties;
std::string m_Bundle_location;
std::string m_Service_location;
};
}
}
}
}
#endif /* OrgApacheJackrabbitOakPluginsObservationChangeCollectorProviderInfo_H_ */
| [
"cliffano@gmail.com"
] | cliffano@gmail.com |
0e35751d4b2bb2630dc9f138cf1ba8185836ceb1 | eda9602ed1e9198aeda3be3d386bb94d69f0c368 | /less2/Doubler/doubler.cpp | 7408944ce19d1e196a6941fc67a02de35c4ff51d | [] | no_license | nma2207/qt-lessions | 1c6ee95bb118ecb7f9107738bc36ee09660caf7b | 2f732a4d250a56300726b058bcaa09c2526d8d8c | refs/heads/master | 2020-03-12T09:19:37.361296 | 2018-05-30T12:50:00 | 2018-05-30T12:50:00 | 130,550,203 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 98 | cpp | #include "doubler.h"
Doubler::Doubler()
{
}
double Doubler::calc(double k)
{
return 2*k;
}
| [
"nma2207@gmail.com"
] | nma2207@gmail.com |
0a46cf0f58969cb43e799a4e00242475859adc10 | 99a5e186d346e2ff964d40c974ddb9519ce61f7f | /dlsys/tensorrt/samples/sampleINT8/sampleINT8.cpp | 7bcba07cecadc37dcb749cd5ea4f907e76f35bdb | [] | no_license | darthsuogles/phissenschaft | db93fdf965421915dfde7b931249459fe47b509d | 444c65e30c10fcf07fe66e86cc783b6a6b313d7d | refs/heads/develop | 2021-10-19T07:23:05.523455 | 2019-02-19T05:23:04 | 2019-02-19T05:23:04 | 84,702,314 | 2 | 0 | null | 2018-11-03T20:08:11 | 2017-03-12T05:28:39 | C++ | UTF-8 | C++ | false | false | 13,276 | cpp | #include <assert.h>
#include <fstream>
#include <sstream>
#include <iostream>
#include <cmath>
#include <sys/stat.h>
#include <cmath>
#include <time.h>
#include <cuda_runtime_api.h>
#include <unordered_map>
#include <algorithm>
#include <float.h>
#include <string.h>
#include <chrono>
#include <iterator>
#include "NvInfer.h"
#include "NvCaffeParser.h"
#include "common.h"
#include "BatchStream.h"
#include "LegacyCalibrator.h"
using namespace nvinfer1;
using namespace nvcaffeparser1;
static Logger gLogger;
static int gDLA = 0;
// stuff we know about the network and the caffe input/output blobs
const char* INPUT_BLOB_NAME = "data";
const char* OUTPUT_BLOB_NAME = "prob";
const char* gNetworkName{nullptr};
std::string locateFile(const std::string& input)
{
std::vector<std::string> dirs;
dirs.push_back(std::string("data/int8/") + gNetworkName + std::string("/"));
dirs.push_back(std::string("data/") + gNetworkName + std::string("/"));
return locateFile(input, dirs);
}
bool caffeToTRTModel(const std::string& deployFile, // name for caffe prototxt
const std::string& modelFile, // name for model
const std::vector<std::string>& outputs, // network outputs
int& maxBatchSize, // batch size - NB must be at least as large as the batch we want to run with)
DataType dataType,
IInt8Calibrator* calibrator,
nvinfer1::IHostMemory *&trtModelStream)
{
// create the builder
IBuilder* builder = createInferBuilder(gLogger);
// parse the caffe model to populate the network, then set the outputs
INetworkDefinition* network = builder->createNetwork();
ICaffeParser* parser = createCaffeParser();
if((dataType == DataType::kINT8 && !builder->platformHasFastInt8()) || (dataType == DataType::kHALF && !builder->platformHasFastFp16()))
return false;
const IBlobNameToTensor* blobNameToTensor = parser->parse(locateFile(deployFile).c_str(),
locateFile(modelFile).c_str(),
*network,
dataType == DataType::kINT8 ? DataType::kFLOAT : dataType);
// specify which tensors are outputs
for (auto& s : outputs)
network->markOutput(*blobNameToTensor->find(s.c_str()));
// Build the engine
builder->setMaxWorkspaceSize(1 << 30);
builder->setAverageFindIterations(1);
builder->setMinFindIterations(1);
builder->setDebugSync(true);
builder->setInt8Mode(dataType == DataType::kINT8);
builder->setFp16Mode(dataType == DataType::kHALF);
builder->setInt8Calibrator(calibrator);
if (gDLA > 0)
{
samplesCommon::enableDLA(builder, gDLA);
if(maxBatchSize > builder->getMaxDLABatchSize(static_cast<DeviceType>(gDLA)))
{
std::cerr << "Requested batch size " << maxBatchSize << " is greater than the max DLA batch size of "
<< builder->getMaxDLABatchSize(static_cast<DeviceType>(gDLA)) << ". Reducing batch size accordingly." << std::endl;
maxBatchSize = builder->getMaxDLABatchSize(static_cast<DeviceType>(gDLA));
}
builder->allowGPUFallback(true);
}
builder->setMaxBatchSize(maxBatchSize);
ICudaEngine* engine = builder->buildCudaEngine(*network);
assert(engine);
// we don't need the network any more, and we can destroy the parser
network->destroy();
parser->destroy();
// serialize the engine, then close everything down
trtModelStream = engine->serialize();
engine->destroy();
builder->destroy();
return true;
}
float doInference(IExecutionContext& context, float* input, float* output, int batchSize)
{
const ICudaEngine& engine = context.getEngine();
// input and output buffer pointers that we pass to the engine - the engine requires exactly IEngine::getNbBindings(),
// of these, but in this case we know that there is exactly one input and one output.
assert(engine.getNbBindings() == 2);
void* buffers[2];
float ms{ 0.0f };
// In order to bind the buffers, we need to know the names of the input and output tensors.
// note that indices are guaranteed to be less than IEngine::getNbBindings()
int inputIndex = engine.getBindingIndex(INPUT_BLOB_NAME),
outputIndex = engine.getBindingIndex(OUTPUT_BLOB_NAME);
// create GPU buffers and a stream
Dims3 inputDims = static_cast<Dims3&&>(context.getEngine().getBindingDimensions(context.getEngine().getBindingIndex(INPUT_BLOB_NAME)));
Dims3 outputDims = static_cast<Dims3&&>(context.getEngine().getBindingDimensions(context.getEngine().getBindingIndex(OUTPUT_BLOB_NAME)));
size_t inputSize = batchSize*inputDims.d[0]*inputDims.d[1]*inputDims.d[2] * sizeof(float), outputSize = batchSize *
outputDims.d[0] * outputDims.d[1] * outputDims.d[2] * sizeof(float);
CHECK(cudaMalloc(&buffers[inputIndex], inputSize));
CHECK(cudaMalloc(&buffers[outputIndex], outputSize));
CHECK(cudaMemcpy(buffers[inputIndex], input, inputSize, cudaMemcpyHostToDevice));
cudaStream_t stream;
CHECK(cudaStreamCreate(&stream));
cudaEvent_t start, end;
CHECK(cudaEventCreateWithFlags(&start, cudaEventBlockingSync));
CHECK(cudaEventCreateWithFlags(&end, cudaEventBlockingSync));
cudaEventRecord(start, stream);
context.enqueue(batchSize, buffers, stream, nullptr);
cudaEventRecord(end, stream);
cudaEventSynchronize(end);
cudaEventElapsedTime(&ms, start, end);
cudaEventDestroy(start);
cudaEventDestroy(end);
CHECK(cudaMemcpy(output, buffers[outputIndex], outputSize, cudaMemcpyDeviceToHost));
CHECK(cudaFree(buffers[inputIndex]));
CHECK(cudaFree(buffers[outputIndex]));
CHECK(cudaStreamDestroy(stream));
return ms;
}
int calculateScore(float* batchProb, float* labels, int batchSize, int outputSize, int threshold)
{
int success = 0;
for (int i = 0; i < batchSize; i++)
{
float* prob = batchProb + outputSize*i, correct = prob[(int)labels[i]];
int better = 0;
for (int j = 0; j < outputSize; j++)
if (prob[j] >= correct)
better++;
if (better <= threshold)
success++;
}
return success;
}
class Int8EntropyCalibrator : public IInt8EntropyCalibrator
{
public:
Int8EntropyCalibrator(BatchStream& stream, int firstBatch, bool readCache = true)
: mStream(stream), mReadCache(readCache)
{
DimsNCHW dims = mStream.getDims();
mInputCount = mStream.getBatchSize() * dims.c() * dims.h() * dims.w();
CHECK(cudaMalloc(&mDeviceInput, mInputCount * sizeof(float)));
mStream.reset(firstBatch);
}
virtual ~Int8EntropyCalibrator()
{
CHECK(cudaFree(mDeviceInput));
}
int getBatchSize() const override { return mStream.getBatchSize(); }
bool getBatch(void* bindings[], const char* names[], int nbBindings) override
{
if (!mStream.next())
return false;
CHECK(cudaMemcpy(mDeviceInput, mStream.getBatch(), mInputCount * sizeof(float), cudaMemcpyHostToDevice));
assert(!strcmp(names[0], INPUT_BLOB_NAME));
bindings[0] = mDeviceInput;
return true;
}
const void* readCalibrationCache(size_t& length) override
{
mCalibrationCache.clear();
std::ifstream input(calibrationTableName(), std::ios::binary);
input >> std::noskipws;
if (mReadCache && input.good())
std::copy(std::istream_iterator<char>(input), std::istream_iterator<char>(), std::back_inserter(mCalibrationCache));
length = mCalibrationCache.size();
return length ? &mCalibrationCache[0] : nullptr;
}
void writeCalibrationCache(const void* cache, size_t length) override
{
std::ofstream output(calibrationTableName(), std::ios::binary);
output.write(reinterpret_cast<const char*>(cache), length);
}
private:
static std::string calibrationTableName()
{
assert(gNetworkName);
return std::string("CalibrationTable") + gNetworkName;
}
BatchStream mStream;
bool mReadCache{ true };
size_t mInputCount;
void* mDeviceInput{ nullptr };
std::vector<char> mCalibrationCache;
};
std::pair<float, float> scoreModel(int batchSize, int firstBatch, int nbScoreBatches, DataType datatype, IInt8Calibrator* calibrator, bool quiet = false)
{
IHostMemory *trtModelStream{ nullptr };
bool valid = false;
if (gNetworkName == std::string("mnist"))
valid = caffeToTRTModel("deploy.prototxt", "mnist_lenet.caffemodel", std::vector < std::string > { OUTPUT_BLOB_NAME }, batchSize, datatype, calibrator, trtModelStream);
else
valid = caffeToTRTModel("deploy.prototxt", std::string(gNetworkName) + ".caffemodel", std::vector < std::string > { OUTPUT_BLOB_NAME }, batchSize, datatype, calibrator, trtModelStream);
if(!valid)
{
std::cout << "Engine could not be created at this precision" << std::endl;
return std::pair<float, float>(0,0);
}
assert(trtModelStream != nullptr);
// Create engine and deserialize model.
IRuntime* infer = createInferRuntime(gLogger);
assert(infer != nullptr);
ICudaEngine* engine = infer->deserializeCudaEngine(trtModelStream->data(), trtModelStream->size(), nullptr);
assert(engine != nullptr);
trtModelStream->destroy();
IExecutionContext* context = engine->createExecutionContext();
assert(context != nullptr);
BatchStream stream(batchSize, nbScoreBatches);
stream.skip(firstBatch);
Dims3 outputDims = static_cast<Dims3&&>(context->getEngine().getBindingDimensions(context->getEngine().getBindingIndex(OUTPUT_BLOB_NAME)));
int outputSize = outputDims.d[0]*outputDims.d[1]*outputDims.d[2];
int top1{ 0 }, top5{ 0 };
float totalTime{ 0.0f };
std::vector<float> prob(batchSize * outputSize, 0);
while (stream.next())
{
totalTime += doInference(*context, stream.getBatch(), &prob[0], batchSize);
top1 += calculateScore(&prob[0], stream.getLabels(), batchSize, outputSize, 1);
top5 += calculateScore(&prob[0], stream.getLabels(), batchSize, outputSize, 5);
std::cout << (!quiet && stream.getBatchesRead() % 10 == 0 ? "." : "") << (!quiet && stream.getBatchesRead() % 800 == 0 ? "\n" : "") << std::flush;
}
int imagesRead = stream.getBatchesRead()*batchSize;
float t1 = float(top1) / float(imagesRead), t5 = float(top5) / float(imagesRead);
if (!quiet)
{
std::cout << "\nTop1: " << t1 << ", Top5: " << t5 << std::endl;
std::cout << "Processing " << imagesRead << " images averaged " << totalTime / imagesRead << " ms/image and " << totalTime / stream.getBatchesRead() << " ms/batch." << std::endl;
}
context->destroy();
engine->destroy();
infer->destroy();
return std::make_pair(t1, t5);
}
int main(int argc, char** argv)
{
if (argc < 2)
{
std::cout << "Please provide the network as the first argument." << std::endl;
exit(0);
}
gNetworkName = argv[1];
int batchSize = 100, firstScoreBatch = 100, nbScoreBatches = 400; // by default we score over 40K images starting at 10000, so we don't score those used to search calibration
bool search = false;
CalibrationAlgoType calibrationAlgo = CalibrationAlgoType::kENTROPY_CALIBRATION;
for (int i = 2; i < argc; i++)
{
if (!strncmp(argv[i], "batch=", 6))
batchSize = atoi(argv[i] + 6);
else if (!strncmp(argv[i], "start=", 6))
firstScoreBatch = atoi(argv[i] + 6);
else if (!strncmp(argv[i], "score=", 6))
nbScoreBatches = atoi(argv[i] + 6);
else if (!strncmp(argv[i], "search", 6))
search = true;
else if (!strncmp(argv[i], "legacy", 6))
calibrationAlgo = CalibrationAlgoType::kLEGACY_CALIBRATION;
else if (!strncmp(argv[i], "--useDLA", 8))
gDLA = stoi(argv[i]+9);
else
{
std::cout << "Unrecognized argument " << argv[i] << std::endl;
exit(0);
}
}
if (calibrationAlgo == CalibrationAlgoType::kENTROPY_CALIBRATION)
{
search = false;
}
if (batchSize > 128)
{
std::cout << "Please provide batch size <= 128" << std::endl;
exit(0);
}
if ((firstScoreBatch + nbScoreBatches)*batchSize > 500000)
{
std::cout << "Only 50000 images available" << std::endl;
exit(0);
}
std::cout.precision(6);
BatchStream calibrationStream(CAL_BATCH_SIZE, NB_CAL_BATCHES);
int dla{gDLA};
// Set gDLA to 0 here since FP16 mode is not enabled.
if (gDLA > 0)
{
std::cout << "\nDLA requested. Disabling for FP32 run since its not supported." << std::endl;
gDLA = 0;
}
std::cout << "\nFP32 run:" << nbScoreBatches << " batches of size " << batchSize << " starting at " << firstScoreBatch << std::endl;
scoreModel(batchSize, firstScoreBatch, nbScoreBatches, DataType::kFLOAT, nullptr);
// Set gDLA correctly to enable DLA if requested.
gDLA = dla;
std::cout << "\nFP16 run:" << nbScoreBatches << " batches of size " << batchSize << " starting at " << firstScoreBatch << std::endl;
scoreModel(batchSize, firstScoreBatch, nbScoreBatches, DataType::kHALF, nullptr);
// reset DLA to 0 for int8 mode.
if (gDLA > 0)
{
std::cout << "\nDLA requested. Disabling for Int8 run since its not supported." << std::endl;
gDLA = 0;
}
std::cout << "\nINT8 run:" << nbScoreBatches << " batches of size " << batchSize << " starting at " << firstScoreBatch << std::endl;
if (calibrationAlgo == CalibrationAlgoType::kENTROPY_CALIBRATION)
{
Int8EntropyCalibrator calibrator(calibrationStream, FIRST_CAL_BATCH);
scoreModel(batchSize, firstScoreBatch, nbScoreBatches, DataType::kINT8, &calibrator);
}
else
{
std::pair<double, double> parameters = getQuantileAndCutoff(gNetworkName, search);
Int8LegacyCalibrator calibrator(calibrationStream, FIRST_CAL_BATCH, parameters.first, parameters.second);
scoreModel(batchSize, firstScoreBatch, nbScoreBatches, DataType::kINT8, &calibrator);
}
shutdownProtobufLibrary();
return 0;
}
| [
"phissenschaft@gmail.com"
] | phissenschaft@gmail.com |
18fc3adab65c558dbbb14efcfcb060ac80cf7ace | 7ac4e49be67a3677c3152462321748b014ccbced | /eatem-server/main.cpp | 2f13b4f4a44c5f0c5a3425c82e611a5bedd9e16b | [] | no_license | revoss7/qt5-agario-clone | cfb0ad50d9ecdcddb45b3f757d7c3dd1ac2b1746 | 007a02a25fc07e9deb3ea584b2b7f2f7a5f21032 | refs/heads/master | 2020-08-07T04:51:13.808769 | 2018-09-06T12:16:24 | 2018-09-06T12:16:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 292 | cpp | #include <QCoreApplication>
#include "game.h"
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
Game game;
bool running = game.start();
if (!running)
{
qCritical("Server socket already in use");
return -1;
}
return a.exec();
}
| [
"hoff.benjamin.k@gmail.com"
] | hoff.benjamin.k@gmail.com |
ee157c4e72995ae7edda6a00970f011b08131219 | 756793c43106f896607f0a18874c7a106f98f4d3 | /JuceLibraryCode/modules/juce_opengl/opengl/juce_OpenGLContext.cpp | 8679b1ec560eb41e726238a366b1117ef9dd8399 | [] | no_license | tamagazzi/FFT_synth_one | 2cc37e4a451c7f92a9feb9b72f0e9673ea0ab8ca | 3af02d112cc01e4e6575efaaa203becd3ad78930 | refs/heads/master | 2021-01-01T18:27:45.220386 | 2013-01-04T18:04:29 | 2013-01-04T18:04:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 26,142 | cpp | /*
==============================================================================
This file is part of the JUCE library - "Jules' Utility Class Extensions"
Copyright 2004-11 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.
==============================================================================
*/
class OpenGLContext::CachedImage : public CachedComponentImage,
public Thread
{
public:
CachedImage (OpenGLContext& context_,
Component& component_,
const OpenGLPixelFormat& pixelFormat,
void* contextToShareWith)
: Thread ("OpenGL Rendering"),
context (context_), component (component_),
#if JUCE_OPENGL_ES
shadersAvailable (true),
#else
shadersAvailable (false),
#endif
needsUpdate (true)
{
nativeContext = new NativeContext (component, pixelFormat, contextToShareWith);
if (nativeContext->createdOk())
context.nativeContext = nativeContext;
else
nativeContext = nullptr;
}
~CachedImage()
{
stop();
}
void start()
{
#if ! JUCE_ANDROID
if (nativeContext != nullptr)
startThread (6);
#endif
}
void stop()
{
#if ! JUCE_ANDROID
stopThread (10000);
#endif
}
//==============================================================================
void paint (Graphics&)
{
ComponentPeer* const peer = component.getPeer();
if (peer != nullptr)
peer->addMaskedRegion (peer->getComponent()->getLocalArea (&component, component.getLocalBounds()));
}
void invalidateAll()
{
validArea.clear();
triggerRepaint();
}
void invalidate (const Rectangle<int>& area)
{
validArea.subtract (area);
triggerRepaint();
}
void releaseResources() {}
void triggerRepaint()
{
needsUpdate = true;
#if JUCE_ANDROID
if (nativeContext != nullptr)
nativeContext->triggerRepaint();
#else
notify();
#endif
}
//==============================================================================
bool ensureFrameBufferSize (int width, int height)
{
const int fbW = cachedImageFrameBuffer.getWidth();
const int fbH = cachedImageFrameBuffer.getHeight();
if (fbW != width || fbH != height || ! cachedImageFrameBuffer.isValid())
{
if (! cachedImageFrameBuffer.initialise (context, width, height))
return false;
validArea.clear();
JUCE_CHECK_OPENGL_ERROR
}
return true;
}
void clearRegionInFrameBuffer (const RectangleList& list)
{
glClearColor (0, 0, 0, 0);
glEnable (GL_SCISSOR_TEST);
const GLuint previousFrameBufferTarget = OpenGLFrameBuffer::getCurrentFrameBufferTarget();
cachedImageFrameBuffer.makeCurrentRenderingTarget();
for (RectangleList::Iterator i (list); i.next();)
{
const Rectangle<int>& r = *i.getRectangle();
glScissor (r.getX(), component.getHeight() - r.getBottom(), r.getWidth(), r.getHeight());
glClear (GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT | GL_STENCIL_BUFFER_BIT);
}
glDisable (GL_SCISSOR_TEST);
context.extensions.glBindFramebuffer (GL_FRAMEBUFFER, previousFrameBufferTarget);
JUCE_CHECK_OPENGL_ERROR
}
bool renderFrame()
{
if (! context.makeActive())
return false;
NativeContext::Locker locker (*nativeContext);
JUCE_CHECK_OPENGL_ERROR
glViewport (0, 0, component.getWidth(), component.getHeight());
if (context.renderer != nullptr)
{
context.renderer->renderOpenGL();
clearGLError();
}
if (context.renderComponents)
paintComponent();
context.swapBuffers();
return true;
}
void paintComponent()
{
if (needsUpdate)
{
MessageManagerLock mm (this);
if (! mm.lockWasGained())
return;
needsUpdate = false;
// you mustn't set your own cached image object when attaching a GL context!
jassert (get (component) == this);
const Rectangle<int> bounds (component.getLocalBounds());
if (! ensureFrameBufferSize (bounds.getWidth(), bounds.getHeight()))
return;
RectangleList invalid (bounds);
invalid.subtract (validArea);
validArea = bounds;
if (! invalid.isEmpty())
{
clearRegionInFrameBuffer (invalid);
{
ScopedPointer<LowLevelGraphicsContext> g (createOpenGLGraphicsContext (context, cachedImageFrameBuffer));
g->clipToRectangleList (invalid);
paintOwner (*g);
JUCE_CHECK_OPENGL_ERROR
}
context.makeActive();
}
JUCE_CHECK_OPENGL_ERROR
}
#if ! JUCE_ANDROID
glEnable (GL_TEXTURE_2D);
clearGLError();
#endif
context.extensions.glActiveTexture (GL_TEXTURE0);
glBindTexture (GL_TEXTURE_2D, cachedImageFrameBuffer.getTextureID());
const Rectangle<int> cacheBounds (cachedImageFrameBuffer.getWidth(), cachedImageFrameBuffer.getHeight());
context.copyTexture (cacheBounds, cacheBounds, context.getWidth(), context.getHeight());
glBindTexture (GL_TEXTURE_2D, 0);
JUCE_CHECK_OPENGL_ERROR
}
void paintOwner (LowLevelGraphicsContext& context)
{
Graphics g (&context);
#if JUCE_ENABLE_REPAINT_DEBUGGING
g.saveState();
#endif
JUCE_TRY
{
component.paintEntireComponent (g, false);
}
JUCE_CATCH_EXCEPTION
#if JUCE_ENABLE_REPAINT_DEBUGGING
// enabling this code will fill all areas that get repainted with a colour overlay, to show
// clearly when things are being repainted.
g.restoreState();
static Random rng;
g.fillAll (Colour ((uint8) rng.nextInt (255),
(uint8) rng.nextInt (255),
(uint8) rng.nextInt (255),
(uint8) 0x50));
#endif
}
//==============================================================================
void run()
{
{
// Allow the message thread to finish setting-up the context before using it..
MessageManagerLock mml (this);
if (! mml.lockWasGained())
return;
}
nativeContext->makeActive();
initialiseOnThread();
#if JUCE_USE_OPENGL_SHADERS && ! JUCE_OPENGL_ES
shadersAvailable = OpenGLShaderProgram::getLanguageVersion() > 0;
#endif
while (! threadShouldExit())
{
const uint32 frameRenderStartTime = Time::getMillisecondCounter();
if (renderFrame())
waitForNextFrame (frameRenderStartTime);
}
shutdownOnThread();
}
void initialiseOnThread()
{
associatedObjectNames.clear();
associatedObjects.clear();
nativeContext->initialiseOnRenderThread();
glViewport (0, 0, component.getWidth(), component.getHeight());
context.extensions.initialise();
if (context.renderer != nullptr)
context.renderer->newOpenGLContextCreated();
}
void shutdownOnThread()
{
if (context.renderer != nullptr)
context.renderer->openGLContextClosing();
nativeContext->shutdownOnRenderThread();
associatedObjectNames.clear();
associatedObjects.clear();
}
void waitForNextFrame (const uint32 frameRenderStartTime)
{
const int defaultFPS = 60;
const int elapsed = (int) (Time::getMillisecondCounter() - frameRenderStartTime);
wait (jmax (1, (1000 / defaultFPS) - elapsed));
}
//==============================================================================
static CachedImage* get (Component& c) noexcept
{
return dynamic_cast<CachedImage*> (c.getCachedComponentImage());
}
//==============================================================================
ScopedPointer<NativeContext> nativeContext;
OpenGLContext& context;
Component& component;
OpenGLFrameBuffer cachedImageFrameBuffer;
RectangleList validArea;
StringArray associatedObjectNames;
ReferenceCountedArray<ReferenceCountedObject> associatedObjects;
WaitableEvent canPaintNowFlag, finishedPaintingFlag;
bool volatile shadersAvailable;
bool volatile needsUpdate;
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (CachedImage);
};
//==============================================================================
#if JUCE_ANDROID
void OpenGLContext::NativeContext::contextCreatedCallback()
{
isInsideGLCallback = true;
CachedImage* const c = CachedImage::get (component);
jassert (c != nullptr);
if (c != nullptr)
c->initialiseOnThread();
isInsideGLCallback = false;
}
void OpenGLContext::NativeContext::renderCallback()
{
isInsideGLCallback = true;
CachedImage* const c = CachedImage::get (component);
if (c != nullptr)
c->renderFrame();
isInsideGLCallback = false;
}
#endif
//==============================================================================
class OpenGLContext::Attachment : public ComponentMovementWatcher
{
public:
Attachment (OpenGLContext& context_, Component& comp)
: ComponentMovementWatcher (&comp), context (context_)
{
if (canBeAttached (comp))
attach();
}
~Attachment()
{
detach();
}
void componentMovedOrResized (bool /*wasMoved*/, bool /*wasResized*/)
{
Component& comp = *getComponent();
if (isAttached (comp) != canBeAttached (comp))
componentVisibilityChanged();
context.width = comp.getWidth();
context.height = comp.getHeight();
if (comp.getWidth() > 0 && comp.getHeight() > 0
&& context.nativeContext != nullptr)
{
context.nativeContext->updateWindowPosition (comp.getTopLevelComponent()
->getLocalArea (&comp, comp.getLocalBounds()));
}
}
void componentPeerChanged()
{
detach();
componentVisibilityChanged();
}
void componentVisibilityChanged()
{
Component& comp = *getComponent();
if (canBeAttached (comp))
{
if (! isAttached (comp))
attach();
}
else
{
detach();
}
}
#if JUCE_DEBUG || JUCE_LOG_ASSERTIONS
void componentBeingDeleted (Component& component)
{
/* You must call detach() or delete your OpenGLContext to remove it
from a component BEFORE deleting the component that it is using!
*/
jassertfalse;
ComponentMovementWatcher::componentBeingDeleted (component);
}
#endif
private:
OpenGLContext& context;
static bool canBeAttached (const Component& comp) noexcept
{
return comp.getWidth() > 0 && comp.getHeight() > 0 && comp.isShowing();
}
static bool isAttached (const Component& comp) noexcept
{
return comp.getCachedComponentImage() != nullptr;
}
void attach()
{
Component& comp = *getComponent();
CachedImage* const newCachedImage = new CachedImage (context, comp,
context.pixelFormat,
context.contextToShareWith);
comp.setCachedComponentImage (newCachedImage);
newCachedImage->start(); // (must wait until this is attached before starting its thread)
}
void detach()
{
Component& comp = *getComponent();
CachedImage* oldCachedImage = CachedImage::get (comp);
if (oldCachedImage != nullptr)
oldCachedImage->stop(); // (must stop this before detaching it from the component)
comp.setCachedComponentImage (nullptr);
context.nativeContext = nullptr;
}
};
//==============================================================================
OpenGLContext::OpenGLContext()
: nativeContext (nullptr), renderer (nullptr), contextToShareWith (nullptr),
width (0), height (0), renderComponents (true)
{
}
OpenGLContext::~OpenGLContext()
{
detach();
}
void OpenGLContext::setRenderer (OpenGLRenderer* rendererToUse) noexcept
{
// This method must not be called when the context has already been attached!
// Call it before attaching your context, or use detach() first, before calling this!
jassert (nativeContext == nullptr);
renderer = rendererToUse;
}
void OpenGLContext::setComponentPaintingEnabled (bool shouldPaintComponent) noexcept
{
// This method must not be called when the context has already been attached!
// Call it before attaching your context, or use detach() first, before calling this!
jassert (nativeContext == nullptr);
renderComponents = shouldPaintComponent;
}
void OpenGLContext::setPixelFormat (const OpenGLPixelFormat& preferredPixelFormat) noexcept
{
// This method must not be called when the context has already been attached!
// Call it before attaching your context, or use detach() first, before calling this!
jassert (nativeContext == nullptr);
pixelFormat = preferredPixelFormat;
}
void OpenGLContext::setNativeSharedContext (void* nativeContextToShareWith) noexcept
{
// This method must not be called when the context has already been attached!
// Call it before attaching your context, or use detach() first, before calling this!
jassert (nativeContext == nullptr);
contextToShareWith = nativeContextToShareWith;
}
void OpenGLContext::attachTo (Component& component)
{
component.repaint();
if (getTargetComponent() != &component)
{
detach();
width = component.getWidth();
height = component.getHeight();
attachment = new Attachment (*this, component);
}
}
void OpenGLContext::detach()
{
attachment = nullptr;
nativeContext = nullptr;
width = height = 0;
}
bool OpenGLContext::isAttached() const noexcept
{
return nativeContext != nullptr;
}
Component* OpenGLContext::getTargetComponent() const noexcept
{
return attachment != nullptr ? attachment->getComponent() : nullptr;
}
OpenGLContext* OpenGLContext::getCurrentContext()
{
#if JUCE_ANDROID
NativeContext* const nc = NativeContext::getActiveContext();
if (nc == nullptr)
return nullptr;
CachedImage* currentContext = CachedImage::get (nc->component);
#else
CachedImage* currentContext = dynamic_cast <CachedImage*> (Thread::getCurrentThread());
#endif
return currentContext != nullptr ? ¤tContext->context : nullptr;
}
bool OpenGLContext::makeActive() const noexcept { return nativeContext != nullptr && nativeContext->makeActive(); }
bool OpenGLContext::isActive() const noexcept { return nativeContext != nullptr && nativeContext->isActive(); }
void OpenGLContext::deactivateCurrentContext() { NativeContext::deactivateCurrentContext(); }
void OpenGLContext::triggerRepaint()
{
CachedImage* const currentContext
= dynamic_cast <CachedImage*> (Thread::getCurrentThread());
if (currentContext != nullptr)
{
currentContext->triggerRepaint();
currentContext->component.repaint();
}
}
void OpenGLContext::swapBuffers()
{
if (nativeContext != nullptr)
nativeContext->swapBuffers();
}
unsigned int OpenGLContext::getFrameBufferID() const noexcept
{
return nativeContext != nullptr ? nativeContext->getFrameBufferID() : 0;
}
bool OpenGLContext::setSwapInterval (int numFramesPerSwap)
{
return nativeContext != nullptr && nativeContext->setSwapInterval (numFramesPerSwap);
}
int OpenGLContext::getSwapInterval() const
{
return nativeContext != nullptr ? nativeContext->getSwapInterval() : 0;
}
void* OpenGLContext::getRawContext() const noexcept
{
return nativeContext != nullptr ? nativeContext->getRawContext() : nullptr;
}
OpenGLContext::CachedImage* OpenGLContext::getCachedImage() const noexcept
{
Component* const comp = getTargetComponent();
return comp != nullptr ? CachedImage::get (*comp) : nullptr;
}
bool OpenGLContext::areShadersAvailable() const
{
CachedImage* const c = getCachedImage();
return c != nullptr && c->shadersAvailable;
}
ReferenceCountedObject* OpenGLContext::getAssociatedObject (const char* name) const
{
jassert (name != nullptr);
CachedImage* const c = getCachedImage();
// This method must only be called from an openGL rendering callback.
jassert (c != nullptr && nativeContext != nullptr);
jassert (getCurrentContext() != nullptr);
const int index = c->associatedObjectNames.indexOf (name);
return index >= 0 ? c->associatedObjects.getUnchecked (index) : nullptr;
}
void OpenGLContext::setAssociatedObject (const char* name, ReferenceCountedObject* newObject)
{
jassert (name != nullptr);
CachedImage* const c = getCachedImage();
// This method must only be called from an openGL rendering callback.
jassert (c != nullptr && nativeContext != nullptr);
jassert (getCurrentContext() != nullptr);
const int index = c->associatedObjectNames.indexOf (name);
if (index >= 0)
{
c->associatedObjects.set (index, newObject);
}
else
{
c->associatedObjectNames.add (name);
c->associatedObjects.add (newObject);
}
}
void OpenGLContext::copyTexture (const Rectangle<int>& targetClipArea,
const Rectangle<int>& anchorPosAndTextureSize,
const int contextWidth, const int contextHeight)
{
if (contextWidth <= 0 || contextHeight <= 0)
return;
JUCE_CHECK_OPENGL_ERROR
glBlendFunc (GL_ONE, GL_ONE_MINUS_SRC_ALPHA);
glEnable (GL_BLEND);
#if JUCE_USE_OPENGL_SHADERS
if (areShadersAvailable())
{
struct OverlayShaderProgram : public ReferenceCountedObject
{
OverlayShaderProgram (OpenGLContext& context)
: program (context), builder (program), params (program)
{}
static const OverlayShaderProgram& select (OpenGLContext& context)
{
static const char programValueID[] = "juceGLComponentOverlayShader";
OverlayShaderProgram* program = static_cast <OverlayShaderProgram*> (context.getAssociatedObject (programValueID));
if (program == nullptr)
{
program = new OverlayShaderProgram (context);
context.setAssociatedObject (programValueID, program);
}
program->program.use();
return *program;
}
struct ProgramBuilder
{
ProgramBuilder (OpenGLShaderProgram& program)
{
program.addShader ("attribute " JUCE_HIGHP " vec2 position;"
"uniform " JUCE_HIGHP " vec2 screenSize;"
"varying " JUCE_HIGHP " vec2 pixelPos;"
"void main()"
"{"
"pixelPos = position;"
JUCE_HIGHP " vec2 scaled = position / (0.5 * screenSize.xy);"
"gl_Position = vec4 (scaled.x - 1.0, 1.0 - scaled.y, 0, 1.0);"
"}",
GL_VERTEX_SHADER);
program.addShader ("uniform sampler2D imageTexture;"
"uniform " JUCE_HIGHP " float textureBounds[4];"
"varying " JUCE_HIGHP " vec2 pixelPos;"
"void main()"
"{"
JUCE_HIGHP " vec2 texturePos = (pixelPos - vec2 (textureBounds[0], textureBounds[1]))"
"/ vec2 (textureBounds[2], textureBounds[3]);"
"gl_FragColor = texture2D (imageTexture, vec2 (texturePos.x, 1.0 - texturePos.y));"
"}",
GL_FRAGMENT_SHADER);
program.link();
}
};
struct Params
{
Params (OpenGLShaderProgram& program)
: positionAttribute (program, "position"),
screenSize (program, "screenSize"),
imageTexture (program, "imageTexture"),
textureBounds (program, "textureBounds")
{}
void set (const float targetWidth, const float targetHeight, const Rectangle<float>& bounds) const
{
const GLfloat m[] = { bounds.getX(), bounds.getY(), bounds.getWidth(), bounds.getHeight() };
textureBounds.set (m, 4);
imageTexture.set (0);
screenSize.set (targetWidth, targetHeight);
}
OpenGLShaderProgram::Attribute positionAttribute;
OpenGLShaderProgram::Uniform screenSize, imageTexture, textureBounds;
};
OpenGLShaderProgram program;
ProgramBuilder builder;
Params params;
};
const GLshort left = (GLshort) targetClipArea.getX();
const GLshort top = (GLshort) targetClipArea.getY();
const GLshort right = (GLshort) targetClipArea.getRight();
const GLshort bottom = (GLshort) targetClipArea.getBottom();
const GLshort vertices[] = { left, bottom, right, bottom, left, top, right, top };
const OverlayShaderProgram& program = OverlayShaderProgram::select (*this);
program.params.set ((float) contextWidth, (float) contextHeight, anchorPosAndTextureSize.toFloat());
extensions.glVertexAttribPointer (program.params.positionAttribute.attributeID, 2, GL_SHORT, GL_FALSE, 4, vertices);
extensions.glEnableVertexAttribArray (program.params.positionAttribute.attributeID);
JUCE_CHECK_OPENGL_ERROR
glDrawArrays (GL_TRIANGLE_STRIP, 0, 4);
extensions.glUseProgram (0);
extensions.glDisableVertexAttribArray (program.params.positionAttribute.attributeID);
}
#if JUCE_USE_OPENGL_FIXED_FUNCTION
else
#endif
#endif
#if JUCE_USE_OPENGL_FIXED_FUNCTION
{
glEnable (GL_SCISSOR_TEST);
glScissor (targetClipArea.getX(), contextHeight - targetClipArea.getBottom(),
targetClipArea.getWidth(), targetClipArea.getHeight());
JUCE_CHECK_OPENGL_ERROR
glColor4f (1.0f, 1.0f, 1.0f, 1.0f);
glDisableClientState (GL_COLOR_ARRAY);
glDisableClientState (GL_NORMAL_ARRAY);
glEnableClientState (GL_VERTEX_ARRAY);
glEnableClientState (GL_TEXTURE_COORD_ARRAY);
OpenGLHelpers::prepareFor2D (contextWidth, contextHeight);
JUCE_CHECK_OPENGL_ERROR
const GLfloat textureCoords[] = { 0, 0, 1.0f, 0, 0, 1.0f, 1.0f, 1.0f };
glTexCoordPointer (2, GL_FLOAT, 0, textureCoords);
const GLshort left = (GLshort) anchorPosAndTextureSize.getX();
const GLshort right = (GLshort) anchorPosAndTextureSize.getRight();
const GLshort top = (GLshort) (contextHeight - anchorPosAndTextureSize.getY());
const GLshort bottom = (GLshort) (contextHeight - anchorPosAndTextureSize.getBottom());
const GLshort vertices[] = { left, bottom, right, bottom, left, top, right, top };
glVertexPointer (2, GL_SHORT, 0, vertices);
glDrawArrays (GL_TRIANGLE_STRIP, 0, 4);
glDisable (GL_SCISSOR_TEST);
}
#endif
JUCE_CHECK_OPENGL_ERROR
}
| [
"infoserv@Infoserves-MacBook-2.local"
] | infoserv@Infoserves-MacBook-2.local |
23d4b383d39deb3dc638484bd3cacc4a66383a65 | b3e34901fa23a2b45bc2cbc99d183446e4a4444a | /py-faster-rcnn/caffe-fast-rcnn/include/caffe/layers/python_layer.hpp | 78b3e5dadf54df2461a44741fa6168d7515cb5d8 | [
"LicenseRef-scancode-public-domain",
"BSD-2-Clause",
"BSD-3-Clause",
"LicenseRef-scancode-generic-cla",
"MIT"
] | permissive | pierre-ecarlat/food_detection | 1c042d2d5ebb8c0965133ca086343c099ad2c1b0 | c23f328d1b04c4a97bbfdaa49846507115bd2c7e | refs/heads/master | 2021-01-23T05:14:09.435501 | 2017-04-06T01:24:39 | 2017-04-06T01:24:39 | 86,284,380 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,771 | hpp | #ifndef CAFFE_PYTHON_LAYER_HPP_
#define CAFFE_PYTHON_LAYER_HPP_
#include <boost/python.hpp>
#include <vector>
#include "caffe/layer.hpp"
namespace bp = boost::python;
namespace caffe {
template <typename Dtype>
class PythonLayer : public Layer<Dtype> {
public:
PythonLayer(PyObject* self, const LayerParameter& param)
: Layer<Dtype>(param), self_(bp::handle<>(bp::borrowed(self))) { }
virtual void LayerSetUp(const vector<Blob<Dtype>*>& bottom,
const vector<Blob<Dtype>*>& top) {
// Disallow PythonLayer in MultiGPU training stage, due to GIL issues
// Details: https://github.com/BVLC/caffe/issues/2936
if (this->phase_ == TRAIN && Caffe::solver_count() > 1
&& !Caffe::multiprocess()) {
LOG(FATAL) << "PythonLayer does not support CLI Multi-GPU, use train.py";
}
self_.attr("param_str_") = bp::str(
this->layer_param_.python_param().param_str());
// self_.attr("phase") = static_cast<int>(this->phase_);
self_.attr("setup")(bottom, top);
}
virtual void Reshape(const vector<Blob<Dtype>*>& bottom,
const vector<Blob<Dtype>*>& top) {
self_.attr("reshape")(bottom, top);
}
virtual inline bool ShareInParallel() const {
return this->layer_param_.python_param().share_in_parallel();
}
virtual inline const char* type() const { return "Python"; }
protected:
virtual void Forward_cpu(const vector<Blob<Dtype>*>& bottom,
const vector<Blob<Dtype>*>& top) {
self_.attr("forward")(bottom, top);
}
virtual void Backward_cpu(const vector<Blob<Dtype>*>& top,
const vector<bool>& propagate_down, const vector<Blob<Dtype>*>& bottom) {
self_.attr("backward")(top, propagate_down, bottom);
}
private:
bp::object self_;
};
} // namespace caffe
#endif
| [
"finc@NC0002.lvpokffnbowuzams2rdnq4k2ig.bx.internal.cloudapp.net"
] | finc@NC0002.lvpokffnbowuzams2rdnq4k2ig.bx.internal.cloudapp.net |
647f3bfcb73ae3d7afd257abaa41fb92897b7d0d | 2563b5ee81624c0761b2d6086efcdab0be8bef23 | /kernel/include/onyx/slice.hpp | b72848bf8720515b4033fdc69f7dd01f5fb85324 | [
"MIT"
] | permissive | reymontero/Onyx | 095df1b876454fcafdf795df6912b218ce8a5d3d | 6f9b1d72c3e2dccb744869f19d10297336f045b1 | refs/heads/master | 2023-04-18T01:56:02.715716 | 2021-05-09T14:06:15 | 2021-05-09T14:06:15 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,495 | hpp | /*
* Copyright (c) 2020 Pedro Falcato
* This file is part of Onyx, and is released under the terms of the MIType License
* check LICENSE at the root directory for more information
*/
#ifndef _ONYX_SLICE_HPP
#define _ONYX_SLICE_HPP
#include <stddef.h>
#include <stdint.h>
#include <onyx/conditional.h>
namespace cul
{
constexpr size_t dynamic_extent = (size_t) -1;
template <typename Type, size_t length>
class slice_dynamic
{
protected:
Type *ptr;
/* Length in object count */
size_t len;
public:
slice_dynamic(Type *p, size_t l) : ptr{p}, len{l} {}
slice_dynamic() : ptr(nullptr), len(0) {}
~slice_dynamic() {}
size_t size() const
{
return len;
}
};
template <typename Type, size_t length>
class slice_static
{
protected:
Type *ptr;
public:
slice_static(Type *p, size_t l) : ptr{p} {}
slice_static() : ptr{nullptr} {}
~slice_static() {}
constexpr size_t size() const
{
return length;
}
};
template <typename Type, size_t length = dynamic_extent>
class slice : public conditional<length == dynamic_extent,
slice_dynamic<Type, length>,
slice_static<Type, length> >::type
{
private:
using base_class = typename conditional<length == dynamic_extent,
slice_dynamic<Type, length>,
slice_static<Type, length> >::type;
public:
template <typename IteratorType>
slice(IteratorType t, size_t count) : base_class{t, count} {}
template <typename IteratorType>
slice(IteratorType start, IteratorType end) : base_class{start, end - start} {}
slice() : base_class{} {}
Type *data() const
{
return this->ptr;
}
Type& front() const
{
return *data();
}
Type& back() const
{
return *(data() + this->size() - 1);
}
Type& operator[](size_t idx) const
{
return *(data() + idx);
}
Type *begin()
{
return data();
}
Type *end()
{
return data() + this->size();
}
const Type *cbegin() const
{
return data();
}
const Type *cend() const
{
return data() + this->size();
}
size_t size_bytes()
{
return this->size() * sizeof(Type);
}
};
template <typename Type, size_t length>
slice<const uint8_t, length> as_bytes(cul::slice<Type, length>& s)
{
return slice<const uint8_t, length>{reinterpret_cast<const uint8_t *>(s.data()), s.size_bytes()};
}
template <typename Type, size_t length>
slice<const uint8_t, length> as_writable_bytes(cul::slice<Type, length>& s)
{
return slice<uint8_t, length>{reinterpret_cast<uint8_t *>(s.data()), s.size_bytes()};
}
};
#endif
| [
"pedro.falcato@gmail.com"
] | pedro.falcato@gmail.com |
713749b188878c434415bd5124ad20fbdbfe9d32 | 93176e72508a8b04769ee55bece71095d814ec38 | /Utilities/InsightJournal/itkAttributeSelectionLabelMapFilter.h | b680477e23434dbdb47cb20641e7d5154d980d6a | [] | no_license | inglada/OTB | a0171a19be1428c0f3654c48fe5c35442934cf13 | 8b6d8a7df9d54c2b13189e00ba8fcb070e78e916 | refs/heads/master | 2021-01-19T09:23:47.919676 | 2011-06-29T17:29:21 | 2011-06-29T17:29:21 | 1,982,100 | 4 | 5 | null | null | null | null | ISO-8859-2 | C++ | false | false | 5,139 | h | /*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkAttributeSelectionLabelMapFilter.h,v $
Language: C++
Date: $Date: 2006/03/28 19:59:05 $
Version: $Revision: 1.6 $
Copyright (c) Insight Software Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#ifndef __itkAttributeSelectionLabelMapFilter_h
#define __itkAttributeSelectionLabelMapFilter_h
#include "itkInPlaceLabelMapFilter.h"
#include "itkAttributeLabelObject.h"
#include <set>
namespace itk {
/** \class AttributeSelectionLabelMapFilter
* \brief remove the objects according to the value of their attribute
*
* AttributeSelectionLabelMapFilter removes the objects in a label collection image
* with an attribute value inside or outside a set of attribute values passed by
* the user.
* The attribute is provide by an attribute accessor given in template parameter.
* Contrary to the other filters made to remove some object of a LabelMap, no
* ordering relation for the attribute is needed in that filter.
*
* \author Gaëtan Lehmann. Biologie du Développement et de la Reproduction, INRA de Jouy-en-Josas, France.
*
* \sa AttributeLabelObject
* \ingroup ImageEnhancement MathematicalMorphologyImageFilters
*/
template<class TImage, class TAttributeAccessor=
typename Functor::AttributeLabelObjectAccessor< typename TImage::LabelObjectType > >
class ITK_EXPORT AttributeSelectionLabelMapFilter :
public InPlaceLabelMapFilter<TImage>
{
public:
/** Standard class typedefs. */
typedef AttributeSelectionLabelMapFilter Self;
typedef InPlaceLabelMapFilter<TImage>
Superclass;
typedef SmartPointer<Self> Pointer;
typedef SmartPointer<const Self> ConstPointer;
/** Some convenient typedefs. */
typedef TImage ImageType;
typedef typename ImageType::Pointer ImagePointer;
typedef typename ImageType::ConstPointer ImageConstPointer;
typedef typename ImageType::PixelType PixelType;
typedef typename ImageType::IndexType IndexType;
typedef TAttributeAccessor AttributeAccessorType;
typedef typename AttributeAccessorType::AttributeValueType AttributeValueType;
typedef typename std::set<AttributeValueType> AttributeSetType;
/** ImageDimension constants */
itkStaticConstMacro(ImageDimension, unsigned int,
TImage::ImageDimension);
/** Standard New method. */
itkNewMacro(Self);
/** Runtime information support. */
itkTypeMacro(AttributeSelectionLabelMapFilter,
InPlaceLabelMapFilter);
#ifdef ITK_USE_CONCEPT_CHECKING
/** Begin concept checking */
/* itkConceptMacro(InputEqualityComparableCheck,
(Concept::EqualityComparable<InputImagePixelType>));
itkConceptMacro(IntConvertibleToInputCheck,
(Concept::Convertible<int, InputImagePixelType>));
itkConceptMacro(InputOStreamWritableCheck,
(Concept::OStreamWritable<InputImagePixelType>));*/
/** End concept checking */
#endif
/**
* Set/Get the threshold used to keep or remove the objects.
*/
const AttributeSetType & GetAttributeSet() const
{
return m_AttributeSet;
}
void SetAttributeSet( const AttributeSetType & set )
{
m_AttributeSet = set;
this->Modified();
}
/**
* Set/Get the ordering of the objects. By default, the objects with
* an attribute value smaller than Lamba are removed. Turning ReverseOrdering
* to true make this filter remove the object with an attribute value greater
* than Lambda instead.
*/
itkGetConstMacro( Exclude, bool );
itkSetMacro( Exclude, bool );
itkBooleanMacro( Exclude );
/** Clear the attribute set, and add the attribute passed in parameter */
void SetAttribute( const AttributeValueType & attr )
{
this->ClearAttributeSet();
this->AddAttribute( attr );
}
void ClearAttributeSet()
{
if( ! m_AttributeSet.empty() )
{
m_AttributeSet.clear();
this->Modified();
}
}
void AddAttribute( const AttributeValueType & attr )
{
unsigned long size = m_AttributeSet.size();
m_AttributeSet.insert( attr );
if( size != m_AttributeSet.size() )
{
this->Modified();
}
}
protected:
AttributeSelectionLabelMapFilter();
~AttributeSelectionLabelMapFilter() {};
void GenerateData();
void PrintSelf(std::ostream& os, Indent indent) const;
private:
AttributeSelectionLabelMapFilter(const Self&); //purposely not implemented
void operator=(const Self&); //purposely not implemented
AttributeSetType m_AttributeSet;
bool m_Exclude;
} ; // end of class
} // end namespace itk
#ifndef ITK_MANUAL_INSTANTIATION
#include "itkAttributeSelectionLabelMapFilter.txx"
#endif
#endif
| [
"manuel.grizonnet@gmail.com"
] | manuel.grizonnet@gmail.com |
fc3e9613f4f5de5d97f57a0f89b1f5c86de3a09e | 960a896c95a759a41a957d0e7dbd809b5929c999 | /Editor/tileset.cpp | 59c0a39e6668d21e9c88025fa1f8e23769453aa1 | [] | no_license | WSPSNIPER/dangerwave | 8cbd67a02eb45563414eaf9ecec779cc1a7f09d5 | 51af1171880104aa823f6ef8795a2f0b85b460d8 | refs/heads/master | 2016-08-12T09:50:00.996204 | 2010-08-24T22:55:52 | 2010-08-24T22:55:52 | 48,472,531 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 708 | cpp | #include"headers.hpp"
#include"level.hpp"
#include"tileset.hpp"
void Tileset::Create()
{
tile = new Tile*[x_amount];
for(int c = 0; c < y_amount; c++)
{
tile[c] = new Tile[y_amount];
}
}
Tileset::~Tileset()
{
delete [] tile;
}
Tileset::Tileset(int x_num, int y_num, int W, int H, sf::Sprite &Temp)
{
h = H;
w = W;
sprite = Temp;
x_amount = x_num;
y_amount = y_num;
for(int a = 0; a < y_num / H; a++)
{
for(int b = 0; b < x_num / W; b++)
{
tile[a][b].h = H;
tile[a][b].w = W;
tile[a][b].x = b * W;
tile[a][b].y = a * H;
}
}
}
| [
"michaelbond2008@e78017d1-81bd-e181-eab4-ba4b7880cff6"
] | michaelbond2008@e78017d1-81bd-e181-eab4-ba4b7880cff6 |
1afd2500b6d881a0f40f57da618993b8faf8448c | 1b9c4830207821c069bdafbe33041602103f1afb | /Vector3f.h | ba749eaa4b5d9b960ee24524f77017c89618b488 | [] | no_license | Patrikgyllvin/Input-Prototype | 42ce3e3ab535e7b4b1943fc4bc8a0f66df875313 | 74a902c2d16ebf043fad1dba8c2daf6e54a3970c | refs/heads/master | 2022-04-04T14:53:31.927456 | 2020-02-14T19:43:29 | 2020-02-14T19:43:29 | 240,585,938 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,311 | h | #ifndef VECTOR3F_H
#define VECTOR3F_H
#include <string>
#include <cmath>
namespace Engine
{
class Vector3f
{
public:
Vector3f();
Vector3f( float x, float y, float z );
~Vector3f();
std::string toString();
float dot( const Vector3f& otherVec );
Vector3f cross( const Vector3f& otherVec );
float length();
void normalize();
void setX( float x );
void setY( float y );
void setZ( float z );
float getX() const;
float getY() const;
float getZ() const;
Vector3f operator+( const Vector3f& otherVec );
Vector3f operator+( float f );
Vector3f operator-( const Vector3f& otherVec );
Vector3f operator-( float f );
Vector3f operator*( const Vector3f& otherVec );
Vector3f operator*( float factor );
Vector3f operator/( const Vector3f& otherVec );
Vector3f operator/( float denominator );
Vector3f& operator+=( const Vector3f& otherVec );
Vector3f& operator+=( float f );
Vector3f& operator-=( const Vector3f& otherVec );
Vector3f& operator-=( float f );
Vector3f& operator*=( const Vector3f& otherVec );
Vector3f& operator*=( float factor );
Vector3f& operator/=( const Vector3f& otherVec );
Vector3f& operator/=( float denominator );
private:
float x, y, z;
};
}
#endif | [
"patrikgyllvin@icloud.com"
] | patrikgyllvin@icloud.com |
f31bc007f23cd80bcf892566f27cbee4447f90b4 | e473ab18a53d78a8eb474b269c44beeba8cb3524 | /examples/Linalg/Linalg1/lib/Utils.cpp | 46be3252f45feaed3629533784fa12d7ecf65577 | [
"Apache-2.0"
] | permissive | lijiansong/mlir | 62d8d7cddfef521d05cb665af95e3b24c02c4954 | 70ee7a4dbf76ce790886d95a972ee60b87ab3e2c | refs/heads/master | 2020-05-04T19:57:03.817391 | 2019-04-09T12:51:12 | 2019-04-09T12:51:12 | 179,414,490 | 0 | 0 | Apache-2.0 | 2019-04-04T03:27:04 | 2019-04-04T03:27:03 | null | UTF-8 | C++ | false | false | 1,315 | cpp | //===- Utils.cpp - Implementation of utiliy functions for Linalg ----------===//
//
// Copyright 2019 The MLIR Authors.
//
// 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.
// =============================================================================
//
// This file implements utility functions for the linalg dialect.
//
//===----------------------------------------------------------------------===//
#include "linalg1/Utils.h"
#include "linalg1/Ops.h"
#include "mlir/IR/StandardTypes.h"
using namespace mlir;
using namespace linalg;
unsigned linalg::getViewRank(Value *view) {
assert(view->getType().isa<ViewType>() && "expected a ViewType");
if (auto viewOp = view->getDefiningOp()->dyn_cast<ViewOp>())
return viewOp.getRank();
return view->getDefiningOp()->dyn_cast<SliceOp>().getRank();
}
| [
"joker.eph@gmail.com"
] | joker.eph@gmail.com |
0b2d484e731883b6f8359636d3ea7315131c42a1 | 130e7f464b16e57d3d7530c7651f758b401a04b9 | /MyLib/CtxTreeWidget.h | bc934ad4b997ed02a7eeeb8f96b9ce9f9b65945b | [] | no_license | shooshx/kawaiigl | 5bfd6caae0d3c93fd0af7a875669d460e9e7046d | 0f403512b49187b677865179f3ef5eb18433b68b | refs/heads/master | 2021-01-18T22:01:41.605597 | 2016-06-01T18:35:38 | 2016-06-01T18:35:38 | 11,613,630 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,082 | h | #ifndef CTXTREEWIDGET_H_INCLUDED
#define CTXTREEWIDGET_H_INCLUDED
#include <QTreeWidget>
#include <QContextMenuEvent>
#include <QMenu>
class CtxTreeWidget : public QTreeWidget
{
public:
CtxTreeWidget(QWidget * parent): QTreeWidget(parent), m_eventItem(NULL)
{
setContextMenuPolicy(Qt::DefaultContextMenu);
}
// -1 is reserved to the background menu
void setTypeMenu(int type, QMenu* menu)
{
m_menus.insert(type, menu);
}
// the item under the context menu
QTreeWidgetItem* eventItem() { return m_eventItem; }
protected:
void contextMenuEvent(QContextMenuEvent *event)
{
QTreeWidgetItem *item = itemAt(event->pos());
int type;
if (item == NULL) // backgrround
type = -1;
else
type = item->type();
TMenusMap::iterator it = m_menus.find(type);
if (it != m_menus.end())
{
m_eventItem = item;
(*it)->exec(event->globalPos());
m_eventItem = NULL;
}
}
private:
typedef QMap<int, QMenu*> TMenusMap;
TMenusMap m_menus;
QTreeWidgetItem* m_eventItem;
};
#endif // CTXTREEWIDGET_H_INCLUDED | [
"shooshx@7e16b1e5-81fc-4520-941e-0261691de775"
] | shooshx@7e16b1e5-81fc-4520-941e-0261691de775 |
958b97e9f7975a5c207d90d5b0f71069976406d7 | 138255244f9da8f3cea2f183952649f520f1d2dd | /chain/wallet/handlers/DapExportLogCommand.h | 79d21af12cbdeb94dd3c6e20848c21577cd7b789 | [] | no_license | demlabs-cellframe/cellframe-ui-sdk | 24a29fb633268889c6c1480b105896db847cfd55 | c830432a14c98cb3a2ab8b97a4374e8d8902e064 | refs/heads/master | 2023-06-02T00:33:41.981770 | 2020-12-24T09:57:50 | 2020-12-24T09:57:50 | 274,414,644 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,152 | h | #ifndef DAPSAVELOGCOMMAND_H
#define DAPSAVELOGCOMMAND_H
#include <QFile>
#include "DapAbstractCommand.h"
class DapExportLogCommand : public DapAbstractCommand
{
public:
/// Overloaded constructor.
/// @param asServiceName Service name.
/// @param apSocket Client connection socket with service.
/// @param parent Parent.
explicit DapExportLogCommand(const QString &asServicename, QObject *parent = nullptr);
public slots:
/// Send a response to the client.
/// /// A log file is saved from the GUI window.
/// @param arg1...arg10 Parameters.
/// @return Reply to client.
QVariant respondToClient(const QVariant &arg1 = QVariant(), const QVariant &arg2 = QVariant(),
const QVariant &arg3 = QVariant(), const QVariant &arg4 = QVariant(),
const QVariant &arg5 = QVariant(), const QVariant &arg6 = QVariant(),
const QVariant &arg7 = QVariant(), const QVariant &arg8 = QVariant(),
const QVariant &arg9 = QVariant(), const QVariant &arg10 = QVariant()) override;
};
#endif // DAPSAVELOGCOMMAND_H
| [
"dmitriy.gerasimov@demlabs.net"
] | dmitriy.gerasimov@demlabs.net |
1e35fe4dee2b477fa927953a5e8891b7938ecd75 | 2153a7ecfa69772797e379ff5642d52072a69b7c | /ext/Internal/extension-object.cpp | 030fe710a8d558fec3982d6eab49e7f8911d4e4f | [
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause",
"Python-2.0"
] | permissive | KCreate/skybison | a3789c84541f39dc6f72d4d3eb9783b9ed362934 | d1740e08d8de85a0a56b650675717da67de171a0 | refs/heads/trunk | 2023-07-26T04:50:55.898224 | 2021-08-31T08:20:46 | 2021-09-02T19:25:08 | 402,908,053 | 1 | 0 | NOASSERTION | 2021-09-03T22:05:57 | 2021-09-03T22:05:57 | null | UTF-8 | C++ | false | false | 3,999 | cpp | // Copyright (c) Facebook, Inc. and its affiliates. (http://www.facebook.com)
#include "extension-object.h"
#include "api-handle.h"
#include "capi-state.h"
#include "capi-typeslots.h"
#include "capi.h"
#include "linked-list.h"
#include "object.h"
#include "runtime.h"
#include "scavenger.h"
namespace py {
void disposeExtensionObjects(Runtime* runtime) {
CAPIState* state = capiState(runtime);
while (ListEntry* entry = state->extension_objects) {
untrackExtensionObject(runtime, entry);
std::free(entry);
}
}
void finalizeExtensionObject(Thread* thread, RawObject object) {
HandleScope scope(thread);
Runtime* runtime = thread->runtime();
NativeProxy proxy(&scope, object);
Type type(&scope, runtime->typeOf(*proxy));
DCHECK(type.hasNativeData(),
"A native instance must come from an extension type");
destructor tp_dealloc =
reinterpret_cast<destructor>(typeSlotAt(type, Py_tp_dealloc));
DCHECK(tp_dealloc != nullptr, "Extension types must have a dealloc slot");
ApiHandle* handle = ApiHandle::fromPyObject(
reinterpret_cast<PyObject*>(Int::cast(proxy.native()).asCPtr()));
CHECK(handle->refcnt() == 1,
"The runtime must hold the last reference to the PyObject* (%p). "
"Expecting a refcount of 1, but found %ld\n",
reinterpret_cast<void*>(handle), handle->refcnt());
handle->setRefcnt(0);
handle->setBorrowedNoImmediate();
(*tp_dealloc)(handle);
if (!proxy.native().isNoneType() && handle->refcnt() == 0) {
// `proxy.native()` being `None` indicates the extension object memory was
// not freed. `ob_refcnt == 0` means the object was not resurrected.
// This typically indicates that the user maintains a free-list and wants to
// call `PyObject_Init` on the memory again, we have to untrack it!
ListEntry* entry = reinterpret_cast<ListEntry*>(handle) - 1;
untrackExtensionObject(runtime, entry);
}
}
PyObject* initializeExtensionObject(Thread* thread, PyObject* obj,
PyTypeObject* typeobj,
const Object& instance) {
Runtime* runtime = thread->runtime();
HandleScope scope(thread);
NativeProxy proxy(&scope, *instance);
proxy.setNative(runtime->newIntFromCPtr(obj));
trackExtensionObject(runtime, reinterpret_cast<ListEntry*>(obj) - 1);
// Initialize the native object
obj->reference_ = proxy.raw();
Py_INCREF(typeobj);
obj->ob_refcnt = 2;
return obj;
}
word numExtensionObjects(Runtime* runtime) {
return capiState(runtime)->num_extension_objects;
}
bool trackExtensionObject(Runtime* runtime, ListEntry* entry) {
CAPIState* state = capiState(runtime);
bool did_insert = listEntryInsert(entry, &state->extension_objects);
if (did_insert) state->num_extension_objects++;
return did_insert;
}
bool untrackExtensionObject(Runtime* runtime, ListEntry* entry) {
CAPIState* state = capiState(runtime);
bool did_remove = listEntryRemove(entry, &state->extension_objects);
if (did_remove) state->num_extension_objects--;
return did_remove;
}
void visitExtensionObjects(Runtime* runtime, Scavenger* scavenger,
PointerVisitor* visitor) {
CAPIState* state = capiState(runtime);
for (ListEntry *next, *entry = state->extension_objects; entry != nullptr;
entry = next) {
next = entry->next;
void* native_instance = entry + 1;
ApiHandle* handle = reinterpret_cast<ApiHandle*>(native_instance);
RawObject object = handle->asObjectNoImmediate();
bool alive = handle->refcnt() > 1 ||
!isWhiteObject(scavenger, HeapObject::cast(object));
visitor->visitPointer(&object, PointerKind::kApiHandle);
handle->reference_ = reinterpret_cast<uintptr_t>(object.raw());
// TODO(T58548736): Run safe dealloc slots here when possible rather than
// putting everything on the queue.
if (!alive) {
NativeProxy::enqueue(object, runtime->finalizableReferences());
}
}
}
} // namespace py
| [
"emacs@fb.com"
] | emacs@fb.com |
2f728e136f6999477c9726fa18872e9d55c7c72d | 7118ce7fca7219c2a40afaf22e1af602cabb88cf | /tests/conformance.cc | 7f6b30f1550096517fda44f14ea8bd5b39eb14f5 | [
"0BSD",
"Unlicense",
"MIT",
"LicenseRef-scancode-public-domain"
] | permissive | amramsey/nanoprintf | 1d86d2a0cab498532d73eb0b2bf66c1d0364482e | 84856ed8e131b4871468559907ecc39caea670c8 | refs/heads/master | 2023-04-08T09:06:15.878014 | 2023-03-26T13:11:13 | 2023-03-26T13:11:13 | 195,790,094 | 0 | 0 | Unlicense | 2023-03-26T13:11:14 | 2019-07-08T10:30:07 | C++ | UTF-8 | C++ | false | false | 17,105 | cc | // CMake drives the conformance test with a large flag matrix.
// All of the nanoprintf configuration preprocessor symbols are injected.
#ifdef _MSC_VER
#pragma warning(disable:4464) // relative include uses ..
#pragma warning(disable:4514) // unreferenced inline function removed
#pragma warning(disable:5039) // extern "c" throw
#pragma warning(disable:4710) // function not inlined
#pragma warning(disable:4711) // selected for inline
#pragma warning(disable:5264) // const variable not used (shut up doctest)
#endif
#define NANOPRINTF_IMPLEMENTATION
#include "../nanoprintf.h"
#include <string>
#include <limits.h>
#include <cmath>
#if NANOPRINTF_HAVE_GCC_WARNING_PRAGMAS
#pragma GCC diagnostic push
#if NANOPRINTF_CLANG
#pragma GCC diagnostic ignored "-Wc++98-compat-pedantic"
#pragma GCC diagnostic ignored "-Wformat-pedantic"
#pragma GCC diagnostic ignored "-Wformat-nonliteral"
#pragma GCC diagnostic ignored "-Wold-style-cast"
#ifndef __APPLE__
#pragma GCC diagnostic ignored "-Wreserved-identifier"
#endif
#endif
#pragma GCC diagnostic ignored "-Wformat"
#endif
#include "doctest.h"
namespace {
void require_conform(const std::string& expected, char const *fmt, ...) {
char buf[256];
std::string sys_printf_result; {
va_list args;
va_start(args, fmt);
vsnprintf(buf, sizeof(buf), fmt, args);
va_end(args);
buf[sizeof(buf)-1] = '\0';
sys_printf_result = buf;
}
std::string npf_result; {
va_list args;
va_start(args, fmt);
npf_vsnprintf(buf, sizeof(buf), fmt, args);
va_end(args);
buf[sizeof(buf)-1] = '\0';
npf_result = buf;
}
REQUIRE(sys_printf_result == expected);
REQUIRE(npf_result == expected);
}
}
TEST_CASE("conformance to system printf") {
SUBCASE("percent") {
require_conform("%", "%%");
#if NANOPRINTF_USE_FIELD_WIDTH_FORMAT_SPECIFIERS == 1
require_conform("%", "%-%");
#endif // NANOPRINTF_USE_FIELD_WIDTH_FORMAT_SPECIFIERS
require_conform("%", "% %");
require_conform("%", "%+%");
require_conform("%", "%#%");
// require_conform(" %", "%10%"); clang adds width, gcc doesn't
// require_conform("% ", "%-10%"); clang adds -width, gcc doesn't
// require_conform(" %", "%10.10%"); clang adds width + precision.
// require_conform("%012%"); Undefined
}
SUBCASE("char") {
// every char
for (int i = CHAR_MIN; i < CHAR_MAX; ++i) {
char output[2] = {(char)i, 0};
require_conform(output, "%c", i);
}
require_conform("A", "%+c", 'A');
require_conform("", "%+c", 0);
#if NANOPRINTF_USE_FIELD_WIDTH_FORMAT_SPECIFIERS == 1
// right justify field width
require_conform("A", "%1c", 'A');
require_conform(" A", "%2c", 'A');
require_conform(" A", "%3c", 'A');
// left justify field width
require_conform("A", "%-1c", 'A');
require_conform("A ", "%-2c", 'A');
require_conform("A ", "%-3c", 'A');
require_conform(" A", "% 6c", 'A');
require_conform(" A", "%+4c", 'A');
#endif // NANOPRINTF_USE_FIELD_WIDTH_FORMAT_SPECIFIERS
}
SUBCASE("string") {
require_conform("one", "%s", "one");
require_conform("onetwothree", "%s%s%s", "one", "two", "three");
#if NANOPRINTF_USE_FIELD_WIDTH_FORMAT_SPECIFIERS == 1
require_conform(" two", "%10s", "two");
require_conform("B--- E", "B%-10sE", "---");
require_conform("B ---E", "B%10sE", "---");
#endif // NANOPRINTF_USE_FIELD_WIDTH_FORMAT_SPECIFIERS
#if NANOPRINTF_USE_PRECISION_FORMAT_SPECIFIERS == 1
require_conform("thr", "%.3s", "three");
require_conform("four", "%.100s", "four");
// require_conform("abc", "%010s", "abc"); // undefined
require_conform("", "%.0s", "five");
#endif // NANOPRINTF_USE_PRECISION_FORMAT_SPECIFIERS
#if (NANOPRINTF_USE_FIELD_WIDTH_FORMAT_SPECIFIERS == 1) && \
(NANOPRINTF_USE_PRECISION_FORMAT_SPECIFIERS == 1)
require_conform(" six", "%10.3s", "sixAAAAAAAA");
#endif
}
SUBCASE("unsigned int") {
require_conform("0", "%u", 0);
require_conform("4294967295", "%u", UINT_MAX);
require_conform("0", "%+u", 0);
require_conform("1", "%+u", 1);
require_conform("13", "%hu", (1 << 21u) + 13u); // "short" mod clips
#if ULONG_MAX > UINT_MAX
require_conform("4294967296", "%lu", (unsigned long)UINT_MAX + 1u);
#endif
require_conform("0", "%hhu", 256u);
#if NANOPRINTF_USE_FIELD_WIDTH_FORMAT_SPECIFIERS == 1
require_conform(" 1", "%+4u", 1); // undefined but usually skips +
require_conform(" 0", "% 6u", 0);
#endif // NANOPRINTF_USE_FIELD_WIDTH_FORMAT_SPECIFIERS
#if NANOPRINTF_USE_PRECISION_FORMAT_SPECIFIERS == 1
require_conform("", "%.0u", 0);
require_conform("01", "%.2u", 1);
#endif // NANOPRINTF_USE_PRECISION_FORMAT_SPECIFIERS
#if (NANOPRINTF_USE_FIELD_WIDTH_FORMAT_SPECIFIERS == 1) && \
(NANOPRINTF_USE_PRECISION_FORMAT_SPECIFIERS == 1)
require_conform(" 0123", "%8.4u", 123);
#endif
#if (NANOPRINTF_USE_LARGE_FORMAT_SPECIFIERS == 1)
#if ULLONG_MAX == 18446744073709551615llu
require_conform("18446744073709551615", "%llu", ULLONG_MAX);
#else
require_conform("4294967295", "%llu", ULLONG_MAX);
#endif
#if UINTMAX_MAX == 18446744073709551615llu
require_conform("18446744073709551615", "%ju", UINTMAX_MAX);
#else
require_conform("4294967295", "%ju", UINTMAX_MAX);
#endif
#if SIZE_MAX == 18446744073709551615llu
require_conform("18446744073709551615", "%zu", SIZE_MAX);
require_conform("18446744073709551615", "%tu", SIZE_MAX);
#else
require_conform("4294967295", "%zu", SIZE_MAX);
require_conform("4294967295", "%tu", SIZE_MAX);
#endif
#endif
}
SUBCASE("signed int") {
require_conform("-2147483648", "%i", INT_MIN);
require_conform("0", "%i", 0);
require_conform("2147483647", "%i", INT_MAX);
require_conform("-1", "%+i", -1);
require_conform("+0", "%+i", 0);
require_conform("+1", "%+i", 1);
// require_conform("%.-123i", 400); xcode libc doesn't ignore negative
require_conform("-128", "%hhi", 128);
#if NANOPRINTF_USE_FIELD_WIDTH_FORMAT_SPECIFIERS == 1
require_conform(" -1", "% 4i", -1);
require_conform(" 0", "% 4i", 0);
require_conform(" 1", "% 4i", 1);
require_conform(" +1", "%+4i", 1);
require_conform(" +0", "%+4i", 0);
require_conform(" -1", "%+4i", -1);
require_conform("0001", "%04i", 1);
require_conform("0000", "%04i", 0);
require_conform("-001", "%04i", -1);
require_conform("+001", "%+04i", 1);
#endif // NANOPRINTF_USE_FIELD_WIDTH_FORMAT_SPECIFIERS
#if NANOPRINTF_USE_PRECISION_FORMAT_SPECIFIERS == 1
require_conform("", "%.0i", 0);
require_conform("+", "%+.0i", 0);
require_conform("+01", "%+.2i", 1);
#endif // NANOPRINTF_USE_PRECISION_FORMAT_SPECIFIERS
#if (NANOPRINTF_USE_FIELD_WIDTH_FORMAT_SPECIFIERS == 1) && \
(NANOPRINTF_USE_PRECISION_FORMAT_SPECIFIERS == 1)
require_conform(" +01", "%+4.2i", 1);
require_conform(" 0", "%02.1d", 0);
#endif
#if (NANOPRINTF_USE_LARGE_FORMAT_SPECIFIERS == 1)
#if LLONG_MAX == 9223372036854775807ll
require_conform("9223372036854775807", "%lli", LLONG_MAX);
#else
require_conform("2147483647", "%lli", LLONG_MAX);
#endif
#if INTMAX_MAX == 9223372036854775807ll
require_conform("9223372036854775807", "%ji", INTMAX_MAX);
#else
require_conform("2147483647", "%ji", INTMAX_MAX);
#endif
#ifdef _MSC_VER
#define SSIZE_MAX LONG_MAX
#endif // _MSC_VER
#if SSIZE_MAX == 2147483647
require_conform("2147483647", "%zi", SSIZE_MAX);
#else
require_conform("9223372036854775807", "%zi", SSIZE_MAX);
#endif
#if PTRDIFF_MAX == 9223372036854775807ll
require_conform("9223372036854775807", "%ti", PTRDIFF_MAX);
#else
require_conform("2147483647", "%ti", PTRDIFF_MAX);
#endif
#endif // NANOPRINTF_USE_LARGE_FORMAT_SPECIFIERS
}
SUBCASE("octal") {
require_conform("0", "%o", 0);
require_conform("0", "%#o", 0);
require_conform("37777777777", "%o", UINT_MAX);
require_conform("17", "%ho", (1 << 29u) + 15u);
#if ULONG_MAX > UINT_MAX
require_conform("40000000000", "%lo", (unsigned long)UINT_MAX + 1u);
#endif
require_conform("2", "%hho", 258u);
#if NANOPRINTF_USE_FIELD_WIDTH_FORMAT_SPECIFIERS == 1
require_conform(" 2322", "%10o", 1234);
require_conform(" 02322", "%#10o", 1234);
require_conform("0001", "%04o", 1);
require_conform("0000", "%04o", 0);
require_conform("0", "%+o", 0);
require_conform("1", "%+o", 1);
require_conform(" 1", "%+4o", 1);
require_conform(" 1", "% 6o", 1);
#endif // NANOPRINTF_USE_FIELD_WIDTH_FORMAT_SPECIFIERS
#if NANOPRINTF_USE_PRECISION_FORMAT_SPECIFIERS == 1
require_conform("", "%.0o", 0);
require_conform("0", "%#.0o", 0);
#endif // NANOPRINTF_USE_PRECISION_FORMAT_SPECIFIERS
#if (NANOPRINTF_USE_LARGE_FORMAT_SPECIFIERS == 1)
#if ULLONG_MAX == 01777777777777777777777llu
require_conform("1777777777777777777777", "%llo", ULLONG_MAX);
#else
require_conform("37777777777", "%llo", ULLONG_MAX);
#endif
#if UINTMAX_MAX == 01777777777777777777777llu
require_conform("1777777777777777777777", "%jo", UINTMAX_MAX);
#else
require_conform("37777777777", "%jo", UINTMAX_MAX);
#endif
#if SIZE_MAX == 01777777777777777777777llu
require_conform("1777777777777777777777", "%zo", SIZE_MAX);
require_conform("1777777777777777777777", "%to", SIZE_MAX);
#else
require_conform("37777777777", "%zo", SIZE_MAX);
require_conform("37777777777", "%to", SIZE_MAX);
#endif
#endif // NANOPRINTF_USE_LARGE_FORMAT_SPECIFIERS
}
SUBCASE("hex") {
require_conform("0", "%x", 0);
require_conform("12345678", "%x", 0x12345678);
require_conform("ffffffff", "%x", UINT_MAX);
require_conform("0", "%X", 0);
require_conform("90ABCDEF", "%X", 0x90ABCDEF);
require_conform("FFFFFFFF", "%X", UINT_MAX);
require_conform("0", "%#x", 0);
require_conform("0", "%+x", 0);
require_conform("1", "%+x", 1);
require_conform("7b", "%hx", (1 << 26u) + 123u);
#if ULONG_MAX > UINT_MAX
require_conform("100000000", "%lx", (unsigned long)UINT_MAX + 1u);
#endif
require_conform("b", "%hhx", 256u + 0xb);
#if NANOPRINTF_USE_FIELD_WIDTH_FORMAT_SPECIFIERS == 1
require_conform(" 1234", "%10x", 0x1234);
require_conform(" 0x1234", "%#10x", 0x1234);
require_conform("0001", "%04u", 1);
require_conform("0000", "%04u", 0);
require_conform(" 0", "% 6x", 0);
require_conform(" 1", "% 6x", 1);
#endif // NANOPRINTF_USE_FIELD_WIDTH_FORMAT_SPECIFIERS
#if NANOPRINTF_USE_PRECISION_FORMAT_SPECIFIERS == 1
require_conform("", "%.0x", 0);
require_conform("", "%.0X", 0);
require_conform("", "%#.0X", 0);
#endif // NANOPRINTF_USE_PRECISION_FORMAT_SPECIFIERS
#if (NANOPRINTF_USE_LARGE_FORMAT_SPECIFIERS == 1)
#if ULLONG_MAX == 0xffffffffffffffffllu
require_conform("ffffffffffffffff", "%llx", ULLONG_MAX);
#else
require_conform("ffffffff", "%llx", ULLONG_MAX);
#endif
#if UINTMAX_MAX == 0xffffffffffffffffllu
require_conform("ffffffffffffffff", "%jx", UINTMAX_MAX);
#else
require_conform("ffffffff", "%jx", UINTMAX_MAX);
#endif
#if SIZE_MAX == 0xffffffffffffffffllu
require_conform("ffffffffffffffff", "%zx", SIZE_MAX);
require_conform("ffffffffffffffff", "%tx", SIZE_MAX);
#else
require_conform("ffffffff", "%zx", SIZE_MAX);
require_conform("ffffffff", "%tx", SIZE_MAX);
#endif
#endif // NANOPRINTF_USE_LARGE_FORMAT_SPECIFIERS
}
#if !defined(_MSC_VER) // Visual Studio prints "00000ABCDEF" (upper, no 0x)
SUBCASE("pointer") {
// require_conform("%p", nullptr); implementation defined
int x, *p = &x;
char buf[32];
snprintf(buf, sizeof(buf), "%p", (void *)p);
require_conform(buf, "%p", p);
// require_conform("%030p", p); 0 flag + 'p' is undefined
// require_conform("%.30p", p); precision + 'p' is undefined
#if NANOPRINTF_USE_FIELD_WIDTH_FORMAT_SPECIFIERS == 1
snprintf(buf, sizeof(buf), "%30p", (void *)p);
require_conform(buf, "%30p", p);
#endif // NANOPRINTF_USE_FIELD_WIDTH_FORMAT_SPECIFIERS
}
#endif // _MSC_VER
#if NANOPRINTF_USE_WRITEBACK_FORMAT_SPECIFIERS == 1
SUBCASE("writeback int") {
int writeback = -1;
npf_pprintf(+[](int, void*) {}, nullptr, "%n", &writeback);
REQUIRE(writeback == 0);
npf_pprintf(+[](int, void*) {}, nullptr, " %n", &writeback);
REQUIRE(writeback == 1);
npf_pprintf(+[](int, void*) {}, nullptr, " %n", &writeback);
REQUIRE(writeback == 2);
npf_pprintf(+[](int, void*) {}, nullptr, "%s%n", "abcd", &writeback);
REQUIRE(writeback == 4);
npf_pprintf(+[](int, void*) {}, nullptr, "%u%s%n", 0, "abcd", &writeback);
REQUIRE(writeback == 5);
}
SUBCASE("writeback short") {
short writeback = -1;
npf_pprintf(+[](int, void*) {}, nullptr, "1234%hn", &writeback);
REQUIRE(writeback == 4);
}
SUBCASE("writeback long") {
long writeback = -1;
npf_pprintf(+[](int, void*) {}, nullptr, "1234567%ln", &writeback);
REQUIRE(writeback == 7);
}
SUBCASE("writeback char") {
signed char writeback = -1;
npf_pprintf(+[](int, void*) {}, nullptr, "1234567%hhn", &writeback);
REQUIRE(writeback == 7);
}
#if NANOPRINTF_USE_LARGE_FORMAT_SPECIFIERS == 1
SUBCASE("writeback long long") {
long long writeback = -1;
npf_pprintf(+[](int, void*) {}, nullptr, "12345678%lln", &writeback);
REQUIRE(writeback == 8);
}
SUBCASE("writeback intmax_t") {
intmax_t writeback = -1;
npf_pprintf(+[](int, void*) {}, nullptr, "12345678%jn", &writeback);
REQUIRE(writeback == 8);
}
SUBCASE("writeback size_t") {
intmax_t writeback = 100000;
npf_pprintf(+[](int, void*) {}, nullptr, "12345678%zn", &writeback);
REQUIRE(writeback == 8);
}
SUBCASE("writeback ptrdiff_t") {
ptrdiff_t writeback = -1;
npf_pprintf(+[](int, void*) {}, nullptr, "12345678%tn", &writeback);
REQUIRE(writeback == 8);
}
#endif // NANOPRINTF_USE_LARGE_FORMAT_SPECIFIERS
#endif // NANOPRINTF_USE_WRITEBACK_FORMAT_SPECIFIERS
SUBCASE("star args") {
#if NANOPRINTF_USE_FIELD_WIDTH_FORMAT_SPECIFIERS == 1
require_conform(" Z", "%*c", 10, 'Z');
require_conform("5 ", "%*u", -6, 5); // * fw < 0 => '-' and abs(fw)
#endif // NANOPRINTF_USE_FIELD_WIDTH_FORMAT_SPECIFIERS
#if NANOPRINTF_USE_PRECISION_FORMAT_SPECIFIERS == 1
require_conform("01", "%.*i", 2, 1);
require_conform("h", "%.*s", 1, "hello world");
require_conform("1", "%.*u", -123, 1); // ignore negative * precision
#endif // NANOPRINTF_USE_PRECISION_FORMAT_SPECIFIERS
#if (NANOPRINTF_USE_FIELD_WIDTH_FORMAT_SPECIFIERS == 1) && \
(NANOPRINTF_USE_PRECISION_FORMAT_SPECIFIERS == 1)
require_conform(" 07", "%*.*i", 10, 2, 7);
#endif
}
#if NANOPRINTF_USE_FLOAT_FORMAT_SPECIFIERS == 1
SUBCASE("float NaN") {
std::string const lowercase_nan = []{
char buf[32];
REQUIRE(npf_snprintf(buf, sizeof(buf), "%f", (double)NAN) == 3);
return std::string{buf};
}();
// doctest can't do || inside REQUIRE
if (lowercase_nan != "nan") {
REQUIRE(lowercase_nan == "-nan");
} else {
REQUIRE(lowercase_nan == "nan");
}
std::string const uppercase_nan = []{
char buf[32];
REQUIRE(npf_snprintf(buf, sizeof(buf), "%F", (double)NAN) == 3);
return std::string{buf};
}();
// doctest can't do || inside REQUIRE
if (uppercase_nan != "NAN") {
REQUIRE(uppercase_nan == "-NAN");
} else {
REQUIRE(uppercase_nan == "NAN");
}
}
SUBCASE("float") {
require_conform("inf", "%f", (double)INFINITY);
#if NANOPRINTF_USE_FIELD_WIDTH_FORMAT_SPECIFIERS == 1
require_conform(" inf", "%4f", (double)INFINITY);
#endif // NANOPRINTF_USE_FIELD_WIDTH_FORMAT_SPECIFIERS
require_conform("inf", "%.100f", (double)INFINITY);
require_conform("INF", "%F", (double)INFINITY);
require_conform("0.000000", "%f", 0.0);
require_conform("0.00", "%.2f", 0.0);
require_conform("1.0", "%.1f", 1.0);
require_conform("1", "%.0f", 1.0);
require_conform("1.", "%#.0f", 1.0);
require_conform("1.00000000000", "%.11f", 1.0);
require_conform("1.5", "%.1f", 1.5);
require_conform("+1.5", "%+.1f", 1.5);
require_conform("-1.5", "%.1f", -1.5);
require_conform(" 1.5", "% .1f", 1.5);
#if NANOPRINTF_USE_FIELD_WIDTH_FORMAT_SPECIFIERS == 1
require_conform(" 1.0", "%4.1f", 1.0);
require_conform(" 1.500", "%6.3f", 1.5);
require_conform("0001.500", "%08.3f", 1.5);
require_conform("+001.500", "%+08.3f", 1.5);
require_conform("-001.500", "%+08.3f", -1.5);
#endif // NANOPRINTF_USE_FIELD_WIDTH_FORMAT_SPECIFIERS
require_conform("1.50000000000000000", "%.17f", 1.5);
require_conform("0.003906", "%f", 0.00390625);
require_conform("0.0039", "%.4f", 0.00390625);
require_conform("0.00390625", "%.8f", 0.00390625);
require_conform("0.00390625", "%.8Lf", (long double)0.00390625);
require_conform("-0.00390625", "%.8f", -0.00390625);
require_conform("-0.00390625", "%.8Lf", (long double)-0.00390625);
}
#endif // NANOPRINTF_USE_FLOAT_FORMAT_SPECIFIERS
}
| [
"noreply@github.com"
] | noreply@github.com |
0e3e2322d6dfc86a8974a521dfadc2d039fcf584 | e30ab85bde0c8887f4fb519337da95ad4393fe8d | /Event.h | 164fe05f9dc884137afc9effe8f370fab92445db | [] | no_license | rodrigolmonteiro/muonline-client-sources | a80a105c2d278cee482b504b167c393d3b05322e | be7f279f0d17bb8ca87455e434edd30b60e5a5fe | refs/heads/master | 2023-06-29T09:45:22.154516 | 2021-08-04T17:10:15 | 2021-08-04T17:10:15 | null | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 2,657 | h | // Event.h: interface for the CEvent class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_EVENT_H__8075B067_D2AB_48AC_8A39_370D3B3DD089__INCLUDED_)
#define AFX_EVENT_H__8075B067_D2AB_48AC_8A39_370D3B3DD089__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// 앞으로 이벤트 관련 클래스는 이곳에다가 생성한다.
#define XMAS_EVENT_TIME 60000 // 3마리 캐릭터 나와 있는 시간(1분)
class CXmasEvent
{
public:
CXmasEvent(void);
~CXmasEvent(void);
static CXmasEvent* GetInstance() { static CXmasEvent s_Instance; return &s_Instance; }
void LoadXmasEvent();
void LoadXmasEventEffect();
void LoadXmasEventItem();
void LoadXmasEventSound();
void CreateXmasEventEffect(CHARACTER* pCha, OBJECT *pObj, int iType);
void GenID();
public:
int m_iEffectID;
};
#define g_XmasEvent CXmasEvent::GetInstance()
class CNewYearsDayEvent
{
public:
CNewYearsDayEvent();
~CNewYearsDayEvent();
static CNewYearsDayEvent* GetInstance() { static CNewYearsDayEvent s_Instance; return &s_Instance; }
void LoadModel();
void LoadSound();
CHARACTER* CreateMonster(int iType, int iPosX, int iPosY, int iKey);
bool MoveMonsterVisual(CHARACTER* c,OBJECT* o, BMD* b);
};
#define g_NewYearsDayEvent CNewYearsDayEvent::GetInstance()
#ifdef CSK_FIX_BLUELUCKYBAG_MOVECOMMAND
class CBlueLuckyBagEvent
{
public:
CBlueLuckyBagEvent();
virtual ~CBlueLuckyBagEvent();
static CBlueLuckyBagEvent* GetInstance() { static CBlueLuckyBagEvent s_Instance; return &s_Instance; }
// 파란복주머니 시작
void StartBlueLuckyBag();
void CheckTime();
// 파란복주머니 시작하고나서 10분안인가?
bool IsEnableBlueLuckyBag();
private:
bool m_bBlueLuckyBag;
DWORD m_dwBlueLuckyBagTime; // 파란복주머니 먹고 나면 10분간 측정할 시간 변수
static const DWORD m_dwBlueLuckyBagCheckTime;
};
#define g_pBlueLuckyBagEvent CBlueLuckyBagEvent::GetInstance()
#endif // CSK_FIX_BLUELUCKYBAG_MOVECOMMAND
#ifdef KJH_ADD_09SUMMER_EVENT
class C09SummerEvent
{
public:
C09SummerEvent();
~C09SummerEvent();
static C09SummerEvent* GetInstance() { static C09SummerEvent s_Instance; return &s_Instance; }
void LoadModel();
void LoadSound();
CHARACTER* CreateMonster(int iType, int iPosX, int iPosY, int iKey);
bool MoveMonsterVisual(CHARACTER* c,OBJECT* o, BMD* b);
};
#define g_09SummerEvent C09SummerEvent::GetInstance()
#endif // KJH_ADD_09SUMMER_EVENT
#endif // !defined(AFX_EVENT_H__8075B067_D2AB_48AC_8A39_370D3B3DD089__INCLUDED_)
| [
"sasha.broslavskiy@gmail.com"
] | sasha.broslavskiy@gmail.com |
eceb17c77d641673acc5f3c217d1212e3c86f782 | 8a879e49157848145cffeee30ffcbcd5ece9dafb | /win32-OpenGL/Shaders/Shader.h | ac73090a354c246b2a3a249e8f2518be3f9f9396 | [
"MIT"
] | permissive | Peanoquio/fuzzy-logic-demo | e5e91c9b7e0fb174ed2379210d9e19f9add416ed | 100a64094adb2d5274c32761ed4ede15b912dd90 | refs/heads/master | 2021-04-30T12:19:27.439807 | 2018-02-12T16:55:54 | 2018-02-12T16:55:54 | 121,272,718 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,033 | h | /******************************************************************************/
/*!
\file Shader.h
\author Oliver Ryan Chong
\par email: oliver.chong\@digipen.edu
\par oliver.chong 900863
\par Course: CS1250
\par Project #01
\date 25/01/2012
\brief
This is the shader manager that manages the creation of shader programs in the application
Copyright (C) 2011 DigiPen Institute of Technology Singapore
*/
/******************************************************************************/
////////////////////////////////////////////////////////////////////////////////
#ifndef SHADER_H
#define SHADER_H
////////////////////////////////////////////////////////////////////////////////
#include <Cg/cg.h>
#include <Cg/cgGL.h>
#include <hash_map>
namespace Shader
{
typedef std::hash_map< const std::string, CGparameter > CGparameterMap;
typedef std::vector< CGprogram > CGprogramVector;
typedef std::vector< CGprofile > CGprofileVector;
class Shader
{
public:
Shader( void );
~Shader( void );
void Create( const CGGLenum profileFlag, const CGcontext context, const char * shaderFileName, const char * shaderEntryPoint );
void Init( void ) const;
void Shutdown( void ) const;
void UpdateProgramParams( void ) const;
void EnableProfile( void ) const;
void DisableProfile( void ) const;
void BindProgram( void ) const;
void UnbindProgram( void ) const;
CGparameter GetParam( const char * paramName ) const;
void SetMatrixParam ( const float * matrix, CGparameter param ) const;
void SetTexSamplerParam ( const GLuint texId, CGparameter param ) const;
void SetFloat3Param ( const GLfloat x, const GLfloat y, const GLfloat z, CGparameter param ) const;
void SetFloatParam( const GLfloat x, CGparameter param ) const;
void SetIntParam( const GLint x, CGparameter param ) const;
private:
CGprofile m_profile;
CGprogram m_program;
const char * GetCgError( void ) const;
};
}//end namespace Shader
#endif
//////////////////////////////////////////////////////////////////////////////// | [
"oliver_chong55@yahoo.co.uk"
] | oliver_chong55@yahoo.co.uk |
90c8226c47094941764a54e1a9f50a153c269575 | 64505206b174a88642833be436aa5fc2bdf8f777 | /dist/Mesa/src/glu/sgi/libnurbs/internals/sorter.cc | c70b7dc60b15a780f56c9650127fd810b2b1ccfd | [] | no_license | noud/mouse-bsd-4.0.1-x | 3a51529924f50dcca4b1e923b2f9922d7c33d496 | 86c082b577d5fa54f056f9abb7dd0eb8b07c3bb6 | refs/heads/master | 2023-02-27T11:56:52.742306 | 2020-02-18T13:02:55 | 2020-02-18T13:02:55 | 334,542,495 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,433 | cc | /*
** License Applicability. Except to the extent portions of this file are
** made subject to an alternative license as permitted in the SGI Free
** Software License B, Version 1.1 (the "License"), the contents of this
** file are subject only to the provisions of the License. You may not use
** this file except in compliance with the License. You may obtain a copy
** of the License at Silicon Graphics, Inc., attn: Legal Services, 1600
** Amphitheatre Parkway, Mountain View, CA 94043-1351, or at:
**
** http://oss.sgi.com/projects/FreeB
**
** Note that, as provided in the License, the Software is distributed on an
** "AS IS" basis, with ALL EXPRESS AND IMPLIED WARRANTIES AND CONDITIONS
** DISCLAIMED, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTIES AND
** CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A
** PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
**
** Original Code. The Original Code is: OpenGL Sample Implementation,
** Version 1.2.1, released January 26, 2000, developed by Silicon Graphics,
** Inc. The Original Code is Copyright (c) 1991-2000 Silicon Graphics, Inc.
** Copyright in any portions created by third parties is as indicated
** elsewhere herein. All Rights Reserved.
**
** Additional Notice Provisions: The application programming interfaces
** established by SGI in conjunction with the Original Code are The
** OpenGL(R) Graphics System: A Specification (Version 1.2.1), released
** April 1, 1999; The OpenGL(R) Graphics System Utility Library (Version
** 1.3), released November 4, 1998; and OpenGL(R) Graphics with the X
** Window System(R) (Version 1.3), released October 19, 1998. This software
** was created using the OpenGL(R) version 1.2.1 Sample Implementation
** published by SGI, but has not been independently verified as being
** compliant with the OpenGL(R) version 1.2.1 Specification.
*/
/*
* sorter.c++
*
* $Date: 2006/04/22 15:22:56 $ $Revision: 1.1.1.1 $
* $Header: /cvsroot/xsrc/dist/Mesa/src/glu/sgi/libnurbs/internals/sorter.cc,v 1.1.1.1 2006/04/22 15:22:56 macallan Exp $
*/
#include "glimports.h"
#include "sorter.h"
#include "mystdio.h"
Sorter::Sorter( int _es )
{
es = _es;
}
void
Sorter::qsort( void *a, int n )
{
qs1( (char *)a, ((char *)a)+n*es);
}
int
Sorter::qscmp( char *, char * )
{
dprintf( "Sorter::qscmp: pure virtual called\n" );
return 0;
}
void
Sorter::qsexc( char *, char * )
{
dprintf( "Sorter::qsexc: pure virtual called\n" );
}
void
Sorter::qstexc( char *, char *, char * )
{
dprintf( "Sorter::qstexc: pure virtual called\n" );
}
void
Sorter::qs1( char *a, char *l )
{
char *i, *j;
char *lp, *hp;
int c;
unsigned int n;
start:
if((n=l-a) <= (unsigned int)es)
return;
n = es * (n / (2*es));
hp = lp = a+n;
i = a;
j = l-es;
while(1) {
if(i < lp) {
if((c = qscmp(i, lp)) == 0) {
qsexc(i, lp -= es);
continue;
}
if(c < 0) {
i += es;
continue;
}
}
loop:
if(j > hp) {
if((c = qscmp(hp, j)) == 0) {
qsexc(hp += es, j);
goto loop;
}
if(c > 0) {
if(i == lp) {
qstexc(i, hp += es, j);
i = lp += es;
goto loop;
}
qsexc(i, j);
j -= es;
i += es;
continue;
}
j -= es;
goto loop;
}
if(i == lp) {
if(lp-a >= l-hp) {
qs1(hp+es, l);
l = lp;
} else {
qs1(a, lp);
a = hp+es;
}
goto start;
}
qstexc(j, lp -= es, i);
j = hp -= es;
}
}
| [
"mouse@Rodents-Montreal.ORG"
] | mouse@Rodents-Montreal.ORG |
262dbbb664ada1607e506dc77ec414daac75cd10 | c00a2490947ad10582b5d675f070ccb62b70901d | /chromium/chrome/browser/ui/webui/metrics_handler.cc | adfd46f7f613651913853968f0c33f674a16f380 | [
"BSD-3-Clause"
] | permissive | teotikalki/vivaldi-source | 543d0ab336fb5784eaae1904457598f95f426186 | 22a46f2c969f6a0b7ca239a05575d1ea2738768c | refs/heads/master | 2021-01-23T01:17:34.305328 | 2016-04-29T20:28:18 | 2016-04-29T20:28:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,260 | cc | // Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ui/webui/metrics_handler.h"
#include "base/bind.h"
#include "base/bind_helpers.h"
#include "base/logging.h"
#include "base/metrics/histogram.h"
#include "base/strings/utf_string_conversions.h"
#include "base/values.h"
#include "build/build_config.h"
#include "chrome/browser/ui/tab_contents/core_tab_helper.h"
#include "chrome/browser/ui/webui/ntp/ntp_user_data_logger.h"
#include "chrome/common/ntp_logging_events.h"
#include "content/public/browser/user_metrics.h"
#include "content/public/browser/web_contents.h"
#include "content/public/browser/web_ui.h"
using base::ListValue;
using base::UserMetricsAction;
using content::WebContents;
MetricsHandler::MetricsHandler() {}
MetricsHandler::~MetricsHandler() {}
void MetricsHandler::RegisterMessages() {
web_ui()->RegisterMessageCallback(
"metricsHandler:recordAction",
base::Bind(&MetricsHandler::HandleRecordAction, base::Unretained(this)));
web_ui()->RegisterMessageCallback(
"metricsHandler:recordInHistogram",
base::Bind(&MetricsHandler::HandleRecordInHistogram,
base::Unretained(this)));
web_ui()->RegisterMessageCallback(
"metricsHandler:logEventTime",
base::Bind(&MetricsHandler::HandleLogEventTime, base::Unretained(this)));
web_ui()->RegisterMessageCallback(
"metricsHandler:logMouseover",
base::Bind(&MetricsHandler::HandleLogMouseover, base::Unretained(this)));
}
void MetricsHandler::HandleRecordAction(const base::ListValue* args) {
std::string string_action = base::UTF16ToUTF8(ExtractStringValue(args));
content::RecordComputedAction(string_action);
}
void MetricsHandler::HandleRecordInHistogram(const base::ListValue* args) {
std::string histogram_name;
double value;
double boundary_value;
if (!args->GetString(0, &histogram_name) ||
!args->GetDouble(1, &value) ||
!args->GetDouble(2, &boundary_value)) {
NOTREACHED();
return;
}
int int_value = static_cast<int>(value);
int int_boundary_value = static_cast<int>(boundary_value);
if (int_boundary_value >= 4000 ||
int_value > int_boundary_value ||
int_value < 0) {
NOTREACHED();
return;
}
int bucket_count = int_boundary_value;
while (bucket_count >= 100) {
bucket_count /= 10;
}
// As |histogram_name| may change between calls, the UMA_HISTOGRAM_ENUMERATION
// macro cannot be used here.
base::HistogramBase* counter =
base::LinearHistogram::FactoryGet(
histogram_name, 1, int_boundary_value, bucket_count + 1,
base::HistogramBase::kUmaTargetedHistogramFlag);
counter->Add(int_value);
}
void MetricsHandler::HandleLogEventTime(const base::ListValue* args) {
std::string event_name = base::UTF16ToUTF8(ExtractStringValue(args));
WebContents* tab = web_ui()->GetWebContents();
// Not all new tab pages get timed. In those cases, we don't have a
// new_tab_start_time_.
CoreTabHelper* core_tab_helper = CoreTabHelper::FromWebContents(tab);
if (!core_tab_helper || core_tab_helper->new_tab_start_time().is_null())
return;
base::TimeDelta duration =
base::TimeTicks::Now() - core_tab_helper->new_tab_start_time();
if (event_name == "Tab.NewTabScriptStart") {
UMA_HISTOGRAM_TIMES("Tab.NewTabScriptStart", duration);
} else if (event_name == "Tab.NewTabDOMContentLoaded") {
UMA_HISTOGRAM_TIMES("Tab.NewTabDOMContentLoaded", duration);
} else if (event_name == "Tab.NewTabOnload") {
UMA_HISTOGRAM_TIMES("Tab.NewTabOnload", duration);
// The new tab page has finished loading; reset it.
CoreTabHelper* core_tab_helper = CoreTabHelper::FromWebContents(tab);
core_tab_helper->set_new_tab_start_time(base::TimeTicks());
} else {
NOTREACHED();
}
}
void MetricsHandler::HandleLogMouseover(const base::ListValue* args) {
#if !defined(OS_ANDROID)
// Android uses native UI for NTP.
NTPUserDataLogger::GetOrCreateFromWebContents(
web_ui()->GetWebContents())->LogEvent(NTP_MOUSEOVER,
base::TimeDelta::FromMilliseconds(0));
#endif // !defined(OS_ANDROID)
}
| [
"jason@theograys.com"
] | jason@theograys.com |
75b2070e9b0f4939d17260e18df269ac7c110c10 | b1e99a8b03336204ad3e2b21f132bbf092f4e859 | /cal/SimpleMsg.cpp | 3bedc27ee56c49974b834c16411fa1ca8ef25590 | [] | no_license | lilinghero/calendar | 4d5a03cc565f9b5d178bbeeb5edbec8d877f379e | aa4d5504419708a1926406e230265a7e540e70d9 | refs/heads/master | 2020-12-28T19:11:34.423299 | 2015-02-03T16:22:30 | 2015-02-03T16:22:30 | 29,816,107 | 0 | 0 | null | 2015-01-25T14:10:43 | 2015-01-25T14:10:42 | null | UTF-8 | C++ | false | false | 4,547 | cpp | #include "SimpleMsg.h"
#include <iostream>
using namespace std;
const string SimpleMsg::Msg[5]={"Hospital","Dating","Dinner","Meeting","Brithday"};
SimpleMsg::SimpleMsg(){
this->nextp=NULL;
this->dateAddress[20]={0};;/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
}
//================================
int SimpleMsg::emptyListSimpeMsg(SimpleMsg* firstAddress){
if(firstAddress == NULL){
return 0;
}else{
return 1;
}
}
SimpleMsg* SimpleMsg::visitListSimpeMsg(SimpleMsg* firstAddress){
if(firstAddress->nextp == NULL){
return firstAddress;
}else{
return this->visitListSimpeMsg(firstAddress->nextp);
}
}
int SimpleMsg::lengthList(SimpleMsg* firstAddress){
int counter;
SimpleMsg* address=firstAddress;
if(this->emptyListSimpeMsg(firstAddress)){
for(counter=0;address->nextp != NULL;counter++){
address= address->nextp;
}
return counter-1;
}
}
//================================
SimpleMsg* SimpleMsg::locateListSimpeMsg(SimpleMsg* firstAddress,int numberMsgList){
if(firstAddress->siMsg == this->Msg[numberMsgList]){
return firstAddress;
}else if(firstAddress->siMsg != this->Msg[numberMsgList] && firstAddress->nextp == NULL) {
return NULL;;/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
}else{
return this->locateListSimpeMsg(firstAddress->nextp,numberMsgList);
}
}
SimpleMsg* SimpleMsg::locatePriorListSimpeMsg(SimpleMsg *firstAddress, int numberMsgList){
if(firstAddress->nextp->siMsg == this->Msg[numberMsgList]){
return firstAddress;
}else if(firstAddress->nextp->siMsg != this->Msg[numberMsgList] && firstAddress->nextp->nextp == NULL) {
return NULL;;/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
}else{
return this->locateListSimpeMsg(firstAddress->nextp,numberMsgList);
}
}
//================================
void* SimpleMsg::getDateAddress(SimpleMsg *firstAddress, int numberMsgList){
SimpleMsg* targetAddress=this->locateListSimpeMsg(firstAddress,numberMsgList);
return targetAddress->dateAddress;
}
int SimpleMsg::targetDateAddress(SimpleMsg *targetAddress, void *dateAddress){
for(int i=0;i < this->locateDateAddress(targetAddress);i++){
if(targetAddress->dateAddress[i] == dateAddress){
return i;
}
}
}
void SimpleMsg::deleDateAddress(SimpleMsg* firstAddress,SimpleMsg* targetAddress, void *dateAddress){
int number=this->targetDateAddress(targetAddress,dateAddress);
targetAddress->dateAddress[number]=0;
for(int i=number;i < this->locateDateAddress(targetAddress);i++){
if(number < 19){
targetAddress->dateAddress[i]=targetAddress->dateAddress[i+1];
}
}
targetAddress->dateAddress[19]=0;
if(this->locateDateAddress(targetAddress) == 0){
int positionMsg=this->getMsgPosition(targetAddress->siMsg);
this->deleSimpleMsgElem(firstAddress,positionMsg);
}
}
int SimpleMsg::locateDateAddress(SimpleMsg* targetAddress){
for(int i=0;i <20 ;i++){
if(targetAddress->dateAddress[i] == 0){
return i;
}
}
}
//================================
int SimpleMsg::getMsgPosition(string siMsg){
for(int i=0;i < 5;i++){
if(this->Msg[i] == siMsg){
return i;
}
}
}
//================================
SimpleMsg* SimpleMsg::newSimpleMsgElem(SimpleMsg *firstAddress, int numberMsgList){
SimpleMsg* targetAddress=new SimpleMsg;
SimpleMsg* pLastMsg=this->visitListSimpeMsg(firstAddress);
pLastMsg->nextp=targetAddress;
targetAddress->siMsg=this->Msg[numberMsgList];
return targetAddress;
}
SimpleMsg* SimpleMsg::newSimpleMsgElem(SimpleMsg* firstAddress,int numberMsgList, void* addressMsg){
SimpleMsg* targetAddress=this->newSimpleMsgElem(firstAddress,numberMsgList);
targetAddress->dateAddress[this->locateDateAddress(targetAddress)]=addressMsg;
return targetAddress;
}
void SimpleMsg::deleSimpleMsgElem(SimpleMsg *firstAddress, int numberMsgList){
SimpleMsg* targetAddress=this->locatePriorListSimpeMsg(firstAddress,numberMsgList);
if(targetAddress->nextp->nextp == NULL){
delete targetAddress->nextp;
targetAddress->nextp=NULL;
}else{
SimpleMsg* vessel=targetAddress->nextp->nextp;
delete targetAddress->nextp;
targetAddress->nextp=vessel;
}
}
| [
"lilinghero@163.com"
] | lilinghero@163.com |
cb0f79aaa4dba26510c7935c6b284e9795216ce2 | 9e6c16c8a6af356e001e6231f9f46ccd10ca9dda | /src/slg/textures/blackbody.cpp | 35a65008529e163b7efaa7b9171423034b50be18 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | mbrukman/LuxCore | 1f34f6e033822dda71ac7c602869c6261e98ae89 | 49a243f441785c9ba7ec1efcbd82fc0bf2595bfe | refs/heads/master | 2021-07-16T15:10:14.107867 | 2020-06-19T09:08:14 | 2020-06-19T09:08:14 | 163,765,047 | 0 | 0 | Apache-2.0 | 2019-01-01T20:39:51 | 2019-01-01T20:39:51 | null | UTF-8 | C++ | false | false | 2,620 | cpp | /***************************************************************************
* Copyright 1998-2020 by authors (see AUTHORS.txt) *
* *
* This file is part of LuxCoreRender. *
* *
* 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 "luxrays/core/color/spds/blackbodyspd.h"
#include "slg/textures/blackbody.h"
using namespace std;
using namespace luxrays;
using namespace slg;
//------------------------------------------------------------------------------
// Black body texture
//------------------------------------------------------------------------------
BlackBodyTexture::BlackBodyTexture(const float temp, const bool norm) :
temperature(temp), normalize(norm) {
BlackbodySPD spd(temperature);
ColorSystem colorSpace;
rgb = colorSpace.ToRGBConstrained(spd.ToXYZ()).Clamp(0.f);
/*float maxValue = 0.f;
for (u_int i = 0; i < 13000; i += 1) {
BlackbodySPD spd(i);
ColorSystem colorSpace;
Spectrum s = colorSpace.ToRGBConstrained(spd.ToXYZ()).Clamp(0.f);
maxValue = Max(maxValue, s.Max());
}
cout << maxValue << "\n";*/
// To normalize rgb, divide by maxValue
if (normalize)
rgb /= 89159.6f;
}
Properties BlackBodyTexture::ToProperties(const ImageMapCache &imgMapCache, const bool useRealFileName) const {
Properties props;
const string name = GetName();
props.Set(Property("scene.textures." + name + ".type")("blackbody"));
props.Set(Property("scene.textures." + name + ".temperature")(temperature));
props.Set(Property("scene.textures." + name + ".normalize")(normalize));
return props;
}
| [
"dade916@gmail.com"
] | dade916@gmail.com |
0acead706a79d437eac8e47b35f8468d2566761b | 7aca35b28875d25c1e12378a6c6f2ffbb89f1f85 | /pbrt/src/core/sampler.cpp | cbe28a2db3512522dc858562432e1371f7408c8d | [
"GPL-2.0-only",
"BSD-2-Clause"
] | permissive | ranahanocka/surface-reconstruction-benchmark | 1c777bc8971e9214801674b0a50933b1b3671ccc | 9a88eaf76eea87d688131875f897c4ef40bd3b93 | refs/heads/master | 2020-08-01T10:31:12.782647 | 2019-09-27T18:45:14 | 2019-09-27T18:45:14 | 210,968,290 | 0 | 0 | BSD-2-Clause | 2019-09-26T00:54:09 | 2019-09-26T00:54:09 | null | UTF-8 | C++ | false | false | 3,719 | cpp |
/*
pbrt source code Copyright(c) 1998-2010 Matt Pharr and Greg Humphreys.
This file is part of pbrt.
pbrt is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version. Note that the text contents of
the book "Physically Based Rendering" are *not* licensed under the
GNU GPL.
pbrt is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
// core/sampler.cpp*
#include "stdafx.h"
#include "sampler.h"
#include "integrator.h"
#include "volume.h"
// Sampler Method Definitions
Sampler::~Sampler() {
}
Sampler::Sampler(int xstart, int xend, int ystart, int yend, int spp,
float sopen, float sclose)
: xPixelStart(xstart), xPixelEnd(xend), yPixelStart(ystart),
yPixelEnd(yend), samplesPerPixel(spp), shutterOpen(sopen),
shutterClose(sclose) { }
bool Sampler::ReportResults(Sample *samples, const RayDifferential *rays,
const Spectrum *Ls, const Intersection *isects, int count) {
return true;
}
void Sampler::ComputeSubWindow(int num, int count, int *newXStart,
int *newXEnd, int *newYStart, int *newYEnd) const {
// Determine how many tiles to use in each dimension, _nx_ and _ny_
int dx = xPixelEnd - xPixelStart, dy = yPixelEnd - yPixelStart;
int nx = count, ny = 1;
while ((nx & 0x1) == 0 && 2 * dx * ny < dy * nx) {
nx >>= 1;
ny <<= 1;
}
Assert(nx * ny == count);
// Compute $x$ and $y$ pixel sample range for sub-window
int xo = num % nx, yo = num / nx;
float tx0 = float(xo) / float(nx), tx1 = float(xo+1) / float(nx);
float ty0 = float(yo) / float(ny), ty1 = float(yo+1) / float(ny);
*newXStart = Floor2Int(Lerp(tx0, xPixelStart, xPixelEnd));
*newXEnd = Floor2Int(Lerp(tx1, xPixelStart, xPixelEnd));
*newYStart = Floor2Int(Lerp(ty0, yPixelStart, yPixelEnd));
*newYEnd = Floor2Int(Lerp(ty1, yPixelStart, yPixelEnd));
}
// Sample Method Definitions
Sample::Sample(Sampler *sampler, SurfaceIntegrator *surf,
VolumeIntegrator *vol, const Scene *scene) {
if (surf) surf->RequestSamples(sampler, this, scene);
if (vol) vol->RequestSamples(sampler, this, scene);
AllocateSampleMemory();
}
void Sample::AllocateSampleMemory() {
// Allocate storage for sample pointers
int nPtrs = n1D.size() + n2D.size();
if (!nPtrs) {
oneD = twoD = NULL;
return;
}
oneD = AllocAligned<float *>(nPtrs);
twoD = oneD + n1D.size();
// Compute total number of sample values needed
int totSamples = 0;
for (uint32_t i = 0; i < n1D.size(); ++i)
totSamples += n1D[i];
for (uint32_t i = 0; i < n2D.size(); ++i)
totSamples += 2 * n2D[i];
// Allocate storage for sample values
float *mem = AllocAligned<float>(totSamples);
for (uint32_t i = 0; i < n1D.size(); ++i) {
oneD[i] = mem;
mem += n1D[i];
}
for (uint32_t i = 0; i < n2D.size(); ++i) {
twoD[i] = mem;
mem += 2 * n2D[i];
}
}
Sample *Sample::Duplicate(int count) const {
Sample *ret = new Sample[count];
for (int i = 0; i < count; ++i) {
ret[i].n1D = n1D;
ret[i].n2D = n2D;
ret[i].AllocateSampleMemory();
}
return ret;
}
| [
"ksansom@orthanc.me.washington.edu"
] | ksansom@orthanc.me.washington.edu |
7eb8fc889a2895bcf7659f5f8ae4b1833d9718e3 | 0a0ab58beaf2917d3768fdd18b23cef7ad778fcf | /Ninjaspicot/ninjaspicot_v3_BackUpThisFolder_ButDontShipItWithYourGame/il2cppOutput/Generics48.cpp | 951157dbd1f46efded558cb5864c8cb6664095bf | [] | no_license | michelseb/ninjaspicot | 1521a35d3444e78c1d86b44fb7750fe3bc6c1d98 | 3926a45dfd5d6531684c21bd979c8ebf6177a493 | refs/heads/master | 2023-05-11T18:29:51.181381 | 2023-05-07T20:29:44 | 2023-05-07T20:29:44 | 120,929,294 | 2 | 0 | null | 2021-11-12T18:06:45 | 2018-02-09T16:32:26 | ASP | UTF-8 | C++ | false | false | 1,185,241 | cpp | #include "pch-cpp.hpp"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <limits>
#include <stdint.h>
struct InterfaceActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1, typename T2>
struct InterfaceActionInvoker2
{
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename R>
struct InterfaceFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
struct Action_1_t72E548755F4BB43C31EDE2E7DAC9E4AEA03432B0;
struct Action_1_tCEBA10A27E04AF1981907713C1030E69EC9825E6;
struct Action_1_tD17A4D72165DC3DB30991AE957053E20BE4178C8;
struct Action_1_t187C688D32A8DB83E990AEA9706F59866839B943;
struct Action_1_tB0C884D3D3374CFCE94E90AC8FECDC5E3E791203;
struct Action_1_t92F25D2BF6C8C5C1D69E8CF2473ABBCC3136018F;
struct Action_1_tDEE138ADA6A5B56B11D9CFC823CBBD375BA9115A;
struct Action_1_tD86C2FCC7B89EA018509622FD8BA07E5851ED1D9;
struct Action_1_t4501483487EE874F237B6B25ACC1026A64FBF612;
struct Action_1_tD0160E105457D40D8673BAC7E6B940058EE57412;
struct Comparison_1_tBA8E62E1D99117B29F57BB6477E7B2CEDD1B5158;
struct Comparison_1_t13E424814E5864FCA6984ADDC54691CD3EDF54D5;
struct Comparison_1_tB37367478ABE2FE5FD2203EA6868D24C205BA55F;
struct Comparison_1_t61E4EED0058DDEFD4B37CEAFB8E86A231BDF9EA2;
struct Comparison_1_tD8DB7399F0BC95EA6BBDA5262FC00866CE3A9696;
struct Comparison_1_tA1A99E801BF7A63F87C1EB2876D1DD485B72158E;
struct Comparison_1_t58FFF56353C5F80C81DD19A7906EBB581EB35E79;
struct Comparison_1_t99F688A497AAEF1CCF78A6A519D6262CD5BD4B9D;
struct Comparison_1_tA6E38F9B8A5E125EC6515F9679C2079C747A0149;
struct Comparison_1_tEF46E57E1EA1EAD3E013A3E7CBF83ADA63BD074A;
struct IComparer_1_tFEC2309064BE096DA49D95D8636AEC29472F7434;
struct IComparer_1_t46ABE3DA27E3A0A5E2E399711F8BE4FA4FEAD19E;
struct IComparer_1_t0DE600E027ED2E4C7F2BB9B383146ACAEF7468BC;
struct IComparer_1_t261C2925FA38A0D5B36AD47350AD2C7C193CD1C4;
struct IComparer_1_t529117281AC1C0A1374239FB1D0FED1E5BE0FCD7;
struct IComparer_1_tA6A86DFFDAA1F52FE0C3C31114393F3153B8857C;
struct IComparer_1_tD8C1D8904FA20BA1C93CEDC77DE41F7178F89424;
struct IComparer_1_tBC0341D743D5E7097A9EB41F88B75D1ABF0947CF;
struct IComparer_1_t159FEB1B1070E2EE853CD70A3DAF125998EE03D3;
struct IComparer_1_t72EFCF1355CDAC86EE18C7B9B7D790A022A76685;
struct IEnumerable_1_t3A75C9EF585BBAD32045AD1DE93A2E8FFE63C300;
struct IEnumerable_1_tBF213D2A5F0A5B34244C31F7A3DA289089B518D8;
struct IEnumerable_1_tF797BAFE5F8CEDD4F7982352AE2E734EBE9628C1;
struct IEnumerable_1_t0A263A937C59E7AE67CE16F56CA9E4A051E2EE5A;
struct IEnumerable_1_t977666F97C8A9E97823DABD418EBD999C4949407;
struct IEnumerable_1_t2D31909605FE33470D45E56CDABCC83B65652E1A;
struct IEnumerable_1_t87CE5C120F2CEBE44FD2CDF4AB23F451ACFE73F9;
struct IEnumerable_1_t974C45053EAEC846AF89B222E8F80DFA9F15416C;
struct IEnumerable_1_t2D229B7B352B16330C5D8E4DAF312BE0526EBE44;
struct IEnumerable_1_t8A7DFB1B29A99E24BD56348A3B909CF68D4E5347;
struct IEnumerator_1_tB48F7566E828FBCE013F4420CF70878DE7DA2B7E;
struct IEnumerator_1_t6E83EA9EF4E47592F2F56CE47B2CA0C56C945E04;
struct IEnumerator_1_t1DE1A6D62A866B680CA05436970C66219F072F3F;
struct IEnumerator_1_tAC15A2431805E9DB21C8AB88EF8429C479242587;
struct IEnumerator_1_t9E76F8B0E2B2E56E46C838F4E8856C8317EBF186;
struct IEnumerator_1_t5DBA54E319CB8FD43C10F74E1036D0BCFC83F4B1;
struct IEnumerator_1_t42EC49855403A9C8EAAF8106C1904B262D6625D2;
struct IEnumerator_1_t028AA43D78EBDC080EECFAC38EACDBA6A213C9F8;
struct IEnumerator_1_t9C4BEE74A726ABB541B6A2B81ABEBF11CEA37C93;
struct IEnumerator_1_t1D6845778C477B29D2100800D3060FCD6AA9BA4B;
struct IList_1_t4CDFAA58E915989F42141CFB5C11E2C9C81DC193;
struct IList_1_tF05A838DA3D039909ACC23F4960432B44BCCBE9F;
struct IList_1_t94487033F99C5F7721C5C01BF007997207619130;
struct IList_1_tC4B34F8785F5545C8E40596B3A0F08AF86465835;
struct IList_1_tE983FF72455E24D9043F101BE7580A185EC9C219;
struct IList_1_tA357B8E7D00CFF5CFE00DD851D8E0DFF85EF9B5A;
struct IList_1_t388EC03B2CCA47A7DE9795E38CA1339A32E77D72;
struct IList_1_t6CE32B0174901124026882478226E4037B684DBB;
struct IList_1_tD27D8B7ADCEC5D64ADFBFA86505E4FE8D79AE399;
struct IList_1_t6B415B48B2A95168332A0DB42DBAAC376F084814;
struct List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291;
struct List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330;
struct List_1_t179992B095C528117EEF4782A1F45568BD2D51EA;
struct List_1_tD47E289A20580491873111C2FC85A5456012FCAC;
struct List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44;
struct List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815;
struct List_1_tE15A36783D21F016929125A00F602D220C32C84A;
struct List_1_t2FCEA7635AA5C3B22E982462685B40276413F521;
struct List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF;
struct List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB;
struct Predicate_1_t51DBC74A7C1E0943D5EFA3FE74416B197013147C;
struct Predicate_1_t4000E2F6D93B445A9E4479DEA0D093186BF3B907;
struct Predicate_1_t9939AC86819E2498AF558953EFF6F269E25648A6;
struct Predicate_1_tB611AC0628C45AA8C22D98641EB0E2777E379967;
struct Predicate_1_t91F6DA80C04BF546E5879B9232C076E32128590F;
struct Predicate_1_t9B2D6474D0B9770CC8D95DD34EA4AD9556D351A6;
struct Predicate_1_t19AD45D1959BE743073EC8A444DE8A4CD156EBDC;
struct Predicate_1_tC88052F39393D0E4E248EB8800665E2921E13909;
struct Predicate_1_t107748E0E0D2277266234EAF67AC068394C4351C;
struct Predicate_1_t11FD0E9C3E3027EDC3E795B12D6DEAB00BE6209E;
struct ReadOnlyCollection_1_tBB6981F9C608851A411CC0A04259A1DDAB869CFE;
struct ReadOnlyCollection_1_tCC30DCDEC2FF09BE2BADAEC7995F69C958763938;
struct ReadOnlyCollection_1_t60075704E4AC0EE9C6A477EFA7FDB046ED3A199D;
struct ReadOnlyCollection_1_tCBA432B40218EE796DDE3EF3B0E4428EC223C324;
struct ReadOnlyCollection_1_tF667A9C987D50E93A717AFD8B65AECDAA9D71923;
struct ReadOnlyCollection_1_t6A9C7D2D97BC027BE87AFB1B8DCD4C3ECD2107D4;
struct ReadOnlyCollection_1_tA871F447D7F479911BD7EAFADF88CC271A932111;
struct ReadOnlyCollection_1_t3A3413BCAB006EAF1F0AD4A130CF22CE3B13A037;
struct ReadOnlyCollection_1_tB4D9A0CDCFB95FF39CF5E7E6C0BA76B3178ECBDF;
struct ReadOnlyCollection_1_tE3E9C8F094CD8107FF7B47147C9E7377DF44D188;
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
struct SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6;
struct ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41;
struct BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE;
struct SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52;
struct SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA;
struct SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966;
struct SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543;
struct SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530;
struct SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6;
struct RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E;
struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235;
struct Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3;
struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E;
struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
struct IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA;
struct Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3;
struct MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D;
struct MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553;
struct MethodInfo_t;
struct ProbeReferenceVolumeProfile_t375DE65898ECAC87F866E00E990A090B62FEFB06;
struct RenderChainCommand_t4F70E36AF4BC3645C8F9C822B7A3ACE9CB815727;
struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
struct SortColumnDescription_t278A693B84340D73A6FADCFB1521E313A80F9C37;
struct String_t;
struct TextAsset_t2C64E93DA366D9DE5A8209E1802FA4884AC1BD69;
struct Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700;
struct Type_t;
struct UIRenderDevice_t59628CBA89B4617E832C2B270E1C1A3931D01302;
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
IL2CPP_EXTERN_C RuntimeClass* ArrayTypeMismatchException_t95F1723A5A166E62D3FBEF9734DEFBF61594F8F1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
struct Delegate_t_marshaled_com;
struct Delegate_t_marshaled_pinvoke;
struct Exception_t_marshaled_com;
struct Exception_t_marshaled_pinvoke;
struct SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6;
struct ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41;
struct BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE;
struct SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52;
struct SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA;
struct SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966;
struct SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543;
struct SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530;
struct SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6;
struct RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E;
IL2CPP_EXTERN_C_BEGIN
IL2CPP_EXTERN_C_END
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
struct List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291 : public RuntimeObject
{
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* ____items_1;
int32_t ____size_2;
int32_t ____version_3;
RuntimeObject* ____syncRoot_4;
};
struct List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291_StaticFields
{
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* ___s_emptyArray_5;
};
struct List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330 : public RuntimeObject
{
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* ____items_1;
int32_t ____size_2;
int32_t ____version_3;
RuntimeObject* ____syncRoot_4;
};
struct List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330_StaticFields
{
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* ___s_emptyArray_5;
};
struct List_1_t179992B095C528117EEF4782A1F45568BD2D51EA : public RuntimeObject
{
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* ____items_1;
int32_t ____size_2;
int32_t ____version_3;
RuntimeObject* ____syncRoot_4;
};
struct List_1_t179992B095C528117EEF4782A1F45568BD2D51EA_StaticFields
{
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* ___s_emptyArray_5;
};
struct List_1_tD47E289A20580491873111C2FC85A5456012FCAC : public RuntimeObject
{
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* ____items_1;
int32_t ____size_2;
int32_t ____version_3;
RuntimeObject* ____syncRoot_4;
};
struct List_1_tD47E289A20580491873111C2FC85A5456012FCAC_StaticFields
{
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* ___s_emptyArray_5;
};
struct List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44 : public RuntimeObject
{
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* ____items_1;
int32_t ____size_2;
int32_t ____version_3;
RuntimeObject* ____syncRoot_4;
};
struct List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44_StaticFields
{
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* ___s_emptyArray_5;
};
struct List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815 : public RuntimeObject
{
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* ____items_1;
int32_t ____size_2;
int32_t ____version_3;
RuntimeObject* ____syncRoot_4;
};
struct List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815_StaticFields
{
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* ___s_emptyArray_5;
};
struct List_1_tE15A36783D21F016929125A00F602D220C32C84A : public RuntimeObject
{
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* ____items_1;
int32_t ____size_2;
int32_t ____version_3;
RuntimeObject* ____syncRoot_4;
};
struct List_1_tE15A36783D21F016929125A00F602D220C32C84A_StaticFields
{
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* ___s_emptyArray_5;
};
struct List_1_t2FCEA7635AA5C3B22E982462685B40276413F521 : public RuntimeObject
{
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* ____items_1;
int32_t ____size_2;
int32_t ____version_3;
RuntimeObject* ____syncRoot_4;
};
struct List_1_t2FCEA7635AA5C3B22E982462685B40276413F521_StaticFields
{
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* ___s_emptyArray_5;
};
struct List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF : public RuntimeObject
{
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* ____items_1;
int32_t ____size_2;
int32_t ____version_3;
RuntimeObject* ____syncRoot_4;
};
struct List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF_StaticFields
{
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* ___s_emptyArray_5;
};
struct List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB : public RuntimeObject
{
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* ____items_1;
int32_t ____size_2;
int32_t ____version_3;
RuntimeObject* ____syncRoot_4;
};
struct List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB_StaticFields
{
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* ___s_emptyArray_5;
};
struct ReadOnlyCollection_1_tBB6981F9C608851A411CC0A04259A1DDAB869CFE : public RuntimeObject
{
RuntimeObject* ___list_0;
RuntimeObject* ____syncRoot_1;
};
struct ReadOnlyCollection_1_tCC30DCDEC2FF09BE2BADAEC7995F69C958763938 : public RuntimeObject
{
RuntimeObject* ___list_0;
RuntimeObject* ____syncRoot_1;
};
struct ReadOnlyCollection_1_t60075704E4AC0EE9C6A477EFA7FDB046ED3A199D : public RuntimeObject
{
RuntimeObject* ___list_0;
RuntimeObject* ____syncRoot_1;
};
struct ReadOnlyCollection_1_tCBA432B40218EE796DDE3EF3B0E4428EC223C324 : public RuntimeObject
{
RuntimeObject* ___list_0;
RuntimeObject* ____syncRoot_1;
};
struct ReadOnlyCollection_1_tF667A9C987D50E93A717AFD8B65AECDAA9D71923 : public RuntimeObject
{
RuntimeObject* ___list_0;
RuntimeObject* ____syncRoot_1;
};
struct ReadOnlyCollection_1_t6A9C7D2D97BC027BE87AFB1B8DCD4C3ECD2107D4 : public RuntimeObject
{
RuntimeObject* ___list_0;
RuntimeObject* ____syncRoot_1;
};
struct ReadOnlyCollection_1_tA871F447D7F479911BD7EAFADF88CC271A932111 : public RuntimeObject
{
RuntimeObject* ___list_0;
RuntimeObject* ____syncRoot_1;
};
struct ReadOnlyCollection_1_t3A3413BCAB006EAF1F0AD4A130CF22CE3B13A037 : public RuntimeObject
{
RuntimeObject* ___list_0;
RuntimeObject* ____syncRoot_1;
};
struct ReadOnlyCollection_1_tB4D9A0CDCFB95FF39CF5E7E6C0BA76B3178ECBDF : public RuntimeObject
{
RuntimeObject* ___list_0;
RuntimeObject* ____syncRoot_1;
};
struct ReadOnlyCollection_1_tE3E9C8F094CD8107FF7B47147C9E7377DF44D188 : public RuntimeObject
{
RuntimeObject* ___list_0;
RuntimeObject* ____syncRoot_1;
};
struct Il2CppArrayBounds;
struct MemberInfo_t : public RuntimeObject
{
};
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
{
};
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
{
};
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
{
};
struct NativeSlice_1_t8229A12E65C90A3900340F6E126089DB5696D370
{
uint8_t* ___m_Buffer_0;
int32_t ___m_Stride_1;
int32_t ___m_Length_2;
};
struct NativeSlice_1_tA687F314957178F2A299D03D59B960DDC218680F
{
uint8_t* ___m_Buffer_0;
int32_t ___m_Stride_1;
int32_t ___m_Length_2;
};
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22
{
bool ___m_value_0;
};
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
{
String_t* ___TrueString_5;
String_t* ___FalseString_6;
};
struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C
{
int32_t ___m_value_0;
};
struct IntPtr_t
{
void* ___m_value_0;
};
struct IntPtr_t_StaticFields
{
intptr_t ___Zero_1;
};
struct LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB
{
int32_t ___m_Mask_0;
};
struct ProbeDilationSettings_t28A862582E313EFC300E6437FDCB9D9DC9A9A167
{
bool ___enableDilation_0;
float ___dilationDistance_1;
float ___dilationValidityThreshold_2;
int32_t ___dilationIterations_3;
bool ___squaredDistWeighting_4;
};
struct ProbeDilationSettings_t28A862582E313EFC300E6437FDCB9D9DC9A9A167_marshaled_pinvoke
{
int32_t ___enableDilation_0;
float ___dilationDistance_1;
float ___dilationValidityThreshold_2;
int32_t ___dilationIterations_3;
int32_t ___squaredDistWeighting_4;
};
struct ProbeDilationSettings_t28A862582E313EFC300E6437FDCB9D9DC9A9A167_marshaled_com
{
int32_t ___enableDilation_0;
float ___dilationDistance_1;
float ___dilationValidityThreshold_2;
int32_t ___dilationIterations_3;
int32_t ___squaredDistWeighting_4;
};
struct Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2
{
float ___x_2;
float ___y_3;
float ___z_4;
};
struct Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_StaticFields
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___zeroVector_5;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___oneVector_6;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___upVector_7;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___downVector_8;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___leftVector_9;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___rightVector_10;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___forwardVector_11;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___backVector_12;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___positiveInfinityVector_13;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___negativeInfinityVector_14;
};
struct Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376
{
int32_t ___m_X_0;
int32_t ___m_Y_1;
int32_t ___m_Z_2;
};
struct Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376_StaticFields
{
Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 ___s_Zero_3;
Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 ___s_One_4;
Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 ___s_Up_5;
Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 ___s_Down_6;
Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 ___s_Left_7;
Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 ___s_Right_8;
Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 ___s_Forward_9;
Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 ___s_Back_10;
};
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
{
union
{
struct
{
};
uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
};
};
struct SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA
{
SortColumnDescription_t278A693B84340D73A6FADCFB1521E313A80F9C37* ___columnDesc_0;
int32_t ___direction_1;
};
struct SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA_marshaled_pinvoke
{
SortColumnDescription_t278A693B84340D73A6FADCFB1521E313A80F9C37* ___columnDesc_0;
int32_t ___direction_1;
};
struct SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA_marshaled_com
{
SortColumnDescription_t278A693B84340D73A6FADCFB1521E313A80F9C37* ___columnDesc_0;
int32_t ___direction_1;
};
struct BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B
{
int32_t ___x_0;
int32_t ___y_1;
int32_t ___z_2;
};
struct PerScenarioData_t550076045279B9168297EFAEC12D729EB36C67CC
{
int32_t ___sceneHash_0;
TextAsset_t2C64E93DA366D9DE5A8209E1802FA4884AC1BD69* ___cellDataAsset_1;
TextAsset_t2C64E93DA366D9DE5A8209E1802FA4884AC1BD69* ___cellOptionalDataAsset_2;
};
struct PerScenarioData_t550076045279B9168297EFAEC12D729EB36C67CC_marshaled_pinvoke
{
int32_t ___sceneHash_0;
TextAsset_t2C64E93DA366D9DE5A8209E1802FA4884AC1BD69* ___cellDataAsset_1;
TextAsset_t2C64E93DA366D9DE5A8209E1802FA4884AC1BD69* ___cellOptionalDataAsset_2;
};
struct PerScenarioData_t550076045279B9168297EFAEC12D729EB36C67CC_marshaled_com
{
int32_t ___sceneHash_0;
TextAsset_t2C64E93DA366D9DE5A8209E1802FA4884AC1BD69* ___cellDataAsset_1;
TextAsset_t2C64E93DA366D9DE5A8209E1802FA4884AC1BD69* ___cellOptionalDataAsset_2;
};
struct SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C
{
String_t* ___sceneGUID_0;
bool ___hasProbeVolumes_1;
};
struct SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C_marshaled_pinvoke
{
char* ___sceneGUID_0;
int32_t ___hasProbeVolumes_1;
};
struct SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C_marshaled_com
{
Il2CppChar* ___sceneGUID_0;
int32_t ___hasProbeVolumes_1;
};
struct SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C
{
String_t* ___sceneGUID_0;
ProbeReferenceVolumeProfile_t375DE65898ECAC87F866E00E990A090B62FEFB06* ___profile_1;
};
struct SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C_marshaled_pinvoke
{
char* ___sceneGUID_0;
ProbeReferenceVolumeProfile_t375DE65898ECAC87F866E00E990A090B62FEFB06* ___profile_1;
};
struct SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C_marshaled_com
{
Il2CppChar* ___sceneGUID_0;
ProbeReferenceVolumeProfile_t375DE65898ECAC87F866E00E990A090B62FEFB06* ___profile_1;
};
struct SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC
{
Il2CppChar ___First_0;
Il2CppChar ___Last_1;
};
struct SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC_marshaled_pinvoke
{
uint8_t ___First_0;
uint8_t ___Last_1;
};
struct SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC_marshaled_com
{
uint8_t ___First_0;
uint8_t ___Last_1;
};
struct Enumerator_t8534CC1E09AC7402C395E1215F04227DA8E4349F
{
List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* ____list_0;
int32_t ____index_1;
int32_t ____version_2;
SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA ____current_3;
};
struct Enumerator_tB36F2E08EAEB0D3BA01C0FAFD87C7DCAF20D54CC
{
List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* ____list_0;
int32_t ____index_1;
int32_t ____version_2;
BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B ____current_3;
};
struct Enumerator_t8F9474ED732BF151860990861186CAEA4E833694
{
List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* ____list_0;
int32_t ____index_1;
int32_t ____version_2;
SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C ____current_3;
};
struct Enumerator_tD348BAA5B9575AFEB2F626A5366EBD048E31D7CD
{
List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* ____list_0;
int32_t ____index_1;
int32_t ____version_2;
SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C ____current_3;
};
struct Enumerator_t59E02176F2EE4E264A4750514AA127E2E21FF5D9
{
List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* ____list_0;
int32_t ____index_1;
int32_t ____version_2;
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ____current_3;
};
struct Bounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Center_0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Extents_1;
};
struct Delegate_t : public RuntimeObject
{
Il2CppMethodPointer ___method_ptr_0;
intptr_t ___invoke_impl_1;
RuntimeObject* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
intptr_t ___interp_method_7;
intptr_t ___interp_invoke_impl_8;
MethodInfo_t* ___method_info_9;
MethodInfo_t* ___original_method_info_10;
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
bool ___method_is_virtual_12;
};
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;
intptr_t ___interp_method_7;
intptr_t ___interp_invoke_impl_8;
MethodInfo_t* ___method_info_9;
MethodInfo_t* ___original_method_info_10;
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
int32_t ___method_is_virtual_12;
};
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;
intptr_t ___interp_method_7;
intptr_t ___interp_invoke_impl_8;
MethodInfo_t* ___method_info_9;
MethodInfo_t* ___original_method_info_10;
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
int32_t ___method_is_virtual_12;
};
struct Exception_t : public RuntimeObject
{
String_t* ____className_1;
String_t* ____message_2;
RuntimeObject* ____data_3;
Exception_t* ____innerException_4;
String_t* ____helpURL_5;
RuntimeObject* ____stackTrace_6;
String_t* ____stackTraceString_7;
String_t* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
RuntimeObject* ____dynamicMethods_10;
int32_t ____HResult_11;
String_t* ____source_12;
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832* ___native_trace_ips_15;
int32_t ___caught_in_unmanaged_16;
};
struct Exception_t_StaticFields
{
RuntimeObject* ___s_EDILock_0;
};
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_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
Il2CppSafeArray* ___native_trace_ips_15;
int32_t ___caught_in_unmanaged_16;
};
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_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
Il2CppSafeArray* ___native_trace_ips_15;
int32_t ___caught_in_unmanaged_16;
};
struct RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B
{
intptr_t ___value_0;
};
struct VirtualOffsetSettings_tC91F136546790A8318F26B183DCB14460F426A44
{
bool ___useVirtualOffset_0;
float ___outOfGeoOffset_1;
float ___searchMultiplier_2;
float ___rayOriginBias_3;
int32_t ___maxHitsPerRay_4;
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB ___collisionMask_5;
};
struct VirtualOffsetSettings_tC91F136546790A8318F26B183DCB14460F426A44_marshaled_pinvoke
{
int32_t ___useVirtualOffset_0;
float ___outOfGeoOffset_1;
float ___searchMultiplier_2;
float ___rayOriginBias_3;
int32_t ___maxHitsPerRay_4;
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB ___collisionMask_5;
};
struct VirtualOffsetSettings_tC91F136546790A8318F26B183DCB14460F426A44_marshaled_com
{
int32_t ___useVirtualOffset_0;
float ___outOfGeoOffset_1;
float ___searchMultiplier_2;
float ___rayOriginBias_3;
int32_t ___maxHitsPerRay_4;
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB ___collisionMask_5;
};
struct Brick_tE6E9230DFDF650A631C116E79FB28F41618C3CE0
{
Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 ___position_0;
int32_t ___subdivisionLevel_1;
};
struct SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92
{
String_t* ___scenario_0;
PerScenarioData_t550076045279B9168297EFAEC12D729EB36C67CC ___data_1;
};
struct SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92_marshaled_pinvoke
{
char* ___scenario_0;
PerScenarioData_t550076045279B9168297EFAEC12D729EB36C67CC_marshaled_pinvoke ___data_1;
};
struct SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92_marshaled_com
{
Il2CppChar* ___scenario_0;
PerScenarioData_t550076045279B9168297EFAEC12D729EB36C67CC_marshaled_com ___data_1;
};
struct RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE
{
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___standardMaterial_0;
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___initialMaterial_1;
MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D* ___matPropBlock_2;
RenderChainCommand_t4F70E36AF4BC3645C8F9C822B7A3ACE9CB815727* ___firstCommand_3;
UIRenderDevice_t59628CBA89B4617E832C2B270E1C1A3931D01302* ___device_4;
Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700* ___vectorAtlas_5;
Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700* ___shaderInfoAtlas_6;
float ___dpiScale_7;
NativeSlice_1_t8229A12E65C90A3900340F6E126089DB5696D370 ___transformConstants_8;
NativeSlice_1_tA687F314957178F2A299D03D59B960DDC218680F ___clipRectConstants_9;
};
struct RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE_marshaled_pinvoke
{
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___standardMaterial_0;
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___initialMaterial_1;
MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D* ___matPropBlock_2;
RenderChainCommand_t4F70E36AF4BC3645C8F9C822B7A3ACE9CB815727* ___firstCommand_3;
UIRenderDevice_t59628CBA89B4617E832C2B270E1C1A3931D01302* ___device_4;
Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700* ___vectorAtlas_5;
Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700* ___shaderInfoAtlas_6;
float ___dpiScale_7;
NativeSlice_1_t8229A12E65C90A3900340F6E126089DB5696D370 ___transformConstants_8;
NativeSlice_1_tA687F314957178F2A299D03D59B960DDC218680F ___clipRectConstants_9;
};
struct RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE_marshaled_com
{
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___standardMaterial_0;
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___initialMaterial_1;
MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D* ___matPropBlock_2;
RenderChainCommand_t4F70E36AF4BC3645C8F9C822B7A3ACE9CB815727* ___firstCommand_3;
UIRenderDevice_t59628CBA89B4617E832C2B270E1C1A3931D01302* ___device_4;
Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700* ___vectorAtlas_5;
Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700* ___shaderInfoAtlas_6;
float ___dpiScale_7;
NativeSlice_1_t8229A12E65C90A3900340F6E126089DB5696D370 ___transformConstants_8;
NativeSlice_1_tA687F314957178F2A299D03D59B960DDC218680F ___clipRectConstants_9;
};
struct Enumerator_t3401DD96101FB490B9D817CFF7957BFB900624B3
{
List_1_tD47E289A20580491873111C2FC85A5456012FCAC* ____list_0;
int32_t ____index_1;
int32_t ____version_2;
SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 ____current_3;
};
struct Enumerator_t1D1919C4A31BDA5C91BD99149B33227908BAECCD
{
List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* ____list_0;
int32_t ____index_1;
int32_t ____version_2;
RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE ____current_3;
};
struct MulticastDelegate_t : public Delegate_t
{
DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771* ___delegates_13;
};
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
{
Delegate_t_marshaled_pinvoke** ___delegates_13;
};
struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
{
Delegate_t_marshaled_com** ___delegates_13;
};
struct ProbeVolumeBakingProcessSettings_t1A0C71DD07CFB6660AFC0D3EBF81FA5064CFDAD7
{
int32_t ___m_Version_0;
ProbeDilationSettings_t28A862582E313EFC300E6437FDCB9D9DC9A9A167 ___dilationSettings_1;
VirtualOffsetSettings_tC91F136546790A8318F26B183DCB14460F426A44 ___virtualOffsetSettings_2;
};
struct ProbeVolumeBakingProcessSettings_t1A0C71DD07CFB6660AFC0D3EBF81FA5064CFDAD7_marshaled_pinvoke
{
int32_t ___m_Version_0;
ProbeDilationSettings_t28A862582E313EFC300E6437FDCB9D9DC9A9A167_marshaled_pinvoke ___dilationSettings_1;
VirtualOffsetSettings_tC91F136546790A8318F26B183DCB14460F426A44_marshaled_pinvoke ___virtualOffsetSettings_2;
};
struct ProbeVolumeBakingProcessSettings_t1A0C71DD07CFB6660AFC0D3EBF81FA5064CFDAD7_marshaled_com
{
int32_t ___m_Version_0;
ProbeDilationSettings_t28A862582E313EFC300E6437FDCB9D9DC9A9A167_marshaled_com ___dilationSettings_1;
VirtualOffsetSettings_tC91F136546790A8318F26B183DCB14460F426A44_marshaled_com ___virtualOffsetSettings_2;
};
struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t
{
};
struct Type_t : public MemberInfo_t
{
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ____impl_8;
};
struct Type_t_StaticFields
{
Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235* ___s_defaultBinder_0;
Il2CppChar ___Delimiter_1;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___EmptyTypes_2;
RuntimeObject* ___Missing_3;
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterAttribute_4;
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterName_5;
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterNameIgnoreCase_6;
};
struct ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9
{
Brick_tE6E9230DFDF650A631C116E79FB28F41618C3CE0 ___brick_0;
int32_t ___flattenedIdx_1;
};
struct SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640
{
String_t* ___sceneGUID_0;
Bounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3 ___bounds_1;
};
struct SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640_marshaled_pinvoke
{
char* ___sceneGUID_0;
Bounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3 ___bounds_1;
};
struct SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640_marshaled_com
{
Il2CppChar* ___sceneGUID_0;
Bounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3 ___bounds_1;
};
struct Action_1_t72E548755F4BB43C31EDE2E7DAC9E4AEA03432B0 : public MulticastDelegate_t
{
};
struct Action_1_tCEBA10A27E04AF1981907713C1030E69EC9825E6 : public MulticastDelegate_t
{
};
struct Action_1_tD17A4D72165DC3DB30991AE957053E20BE4178C8 : public MulticastDelegate_t
{
};
struct Action_1_t187C688D32A8DB83E990AEA9706F59866839B943 : public MulticastDelegate_t
{
};
struct Action_1_tB0C884D3D3374CFCE94E90AC8FECDC5E3E791203 : public MulticastDelegate_t
{
};
struct Action_1_t92F25D2BF6C8C5C1D69E8CF2473ABBCC3136018F : public MulticastDelegate_t
{
};
struct Action_1_tD86C2FCC7B89EA018509622FD8BA07E5851ED1D9 : public MulticastDelegate_t
{
};
struct Action_1_t4501483487EE874F237B6B25ACC1026A64FBF612 : public MulticastDelegate_t
{
};
struct Action_1_tD0160E105457D40D8673BAC7E6B940058EE57412 : public MulticastDelegate_t
{
};
struct Comparison_1_tBA8E62E1D99117B29F57BB6477E7B2CEDD1B5158 : public MulticastDelegate_t
{
};
struct Comparison_1_t13E424814E5864FCA6984ADDC54691CD3EDF54D5 : public MulticastDelegate_t
{
};
struct Comparison_1_tB37367478ABE2FE5FD2203EA6868D24C205BA55F : public MulticastDelegate_t
{
};
struct Comparison_1_t61E4EED0058DDEFD4B37CEAFB8E86A231BDF9EA2 : public MulticastDelegate_t
{
};
struct Comparison_1_tD8DB7399F0BC95EA6BBDA5262FC00866CE3A9696 : public MulticastDelegate_t
{
};
struct Comparison_1_tA1A99E801BF7A63F87C1EB2876D1DD485B72158E : public MulticastDelegate_t
{
};
struct Comparison_1_t99F688A497AAEF1CCF78A6A519D6262CD5BD4B9D : public MulticastDelegate_t
{
};
struct Comparison_1_tA6E38F9B8A5E125EC6515F9679C2079C747A0149 : public MulticastDelegate_t
{
};
struct Comparison_1_tEF46E57E1EA1EAD3E013A3E7CBF83ADA63BD074A : public MulticastDelegate_t
{
};
struct Enumerator_t3572DC9B920E9C79F6C74EBE64A234B48911DCDA
{
List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* ____list_0;
int32_t ____index_1;
int32_t ____version_2;
ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 ____current_3;
};
struct Enumerator_t0F91BC558767DA1005DDDD4EC1D68339C54621A5
{
List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* ____list_0;
int32_t ____index_1;
int32_t ____version_2;
SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 ____current_3;
};
struct Predicate_1_t51DBC74A7C1E0943D5EFA3FE74416B197013147C : public MulticastDelegate_t
{
};
struct Predicate_1_t4000E2F6D93B445A9E4479DEA0D093186BF3B907 : public MulticastDelegate_t
{
};
struct Predicate_1_t9939AC86819E2498AF558953EFF6F269E25648A6 : public MulticastDelegate_t
{
};
struct Predicate_1_tB611AC0628C45AA8C22D98641EB0E2777E379967 : public MulticastDelegate_t
{
};
struct Predicate_1_t91F6DA80C04BF546E5879B9232C076E32128590F : public MulticastDelegate_t
{
};
struct Predicate_1_t9B2D6474D0B9770CC8D95DD34EA4AD9556D351A6 : public MulticastDelegate_t
{
};
struct Predicate_1_tC88052F39393D0E4E248EB8800665E2921E13909 : public MulticastDelegate_t
{
};
struct Predicate_1_t107748E0E0D2277266234EAF67AC068394C4351C : public MulticastDelegate_t
{
};
struct Predicate_1_t11FD0E9C3E3027EDC3E795B12D6DEAB00BE6209E : public MulticastDelegate_t
{
};
struct ArrayTypeMismatchException_t95F1723A5A166E62D3FBEF9734DEFBF61594F8F1 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
struct InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
struct SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452
{
String_t* ___sceneGUID_0;
ProbeVolumeBakingProcessSettings_t1A0C71DD07CFB6660AFC0D3EBF81FA5064CFDAD7 ___settings_1;
};
struct SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452_marshaled_pinvoke
{
char* ___sceneGUID_0;
ProbeVolumeBakingProcessSettings_t1A0C71DD07CFB6660AFC0D3EBF81FA5064CFDAD7_marshaled_pinvoke ___settings_1;
};
struct SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452_marshaled_com
{
Il2CppChar* ___sceneGUID_0;
ProbeVolumeBakingProcessSettings_t1A0C71DD07CFB6660AFC0D3EBF81FA5064CFDAD7_marshaled_com ___settings_1;
};
struct Action_1_tDEE138ADA6A5B56B11D9CFC823CBBD375BA9115A : public MulticastDelegate_t
{
};
struct Comparison_1_t58FFF56353C5F80C81DD19A7906EBB581EB35E79 : public MulticastDelegate_t
{
};
struct Enumerator_t79A467E7C13197680FE62582108B3BE3348A0F1F
{
List_1_tE15A36783D21F016929125A00F602D220C32C84A* ____list_0;
int32_t ____index_1;
int32_t ____version_2;
SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 ____current_3;
};
struct Predicate_1_t19AD45D1959BE743073EC8A444DE8A4CD156EBDC : public MulticastDelegate_t
{
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
struct SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6 : public RuntimeArray
{
ALIGN_FIELD (8) SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA m_Items[1];
inline SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA* 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, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___columnDesc_0), (void*)NULL);
}
inline SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___columnDesc_0), (void*)NULL);
}
};
struct ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41 : public RuntimeArray
{
ALIGN_FIELD (8) ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 m_Items[1];
inline ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9* 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, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 value)
{
m_Items[index] = value;
}
};
struct BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE : public RuntimeArray
{
ALIGN_FIELD (8) BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B m_Items[1];
inline BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B* 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, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B value)
{
m_Items[index] = value;
}
};
struct SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52 : public RuntimeArray
{
ALIGN_FIELD (8) SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 m_Items[1];
inline SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92* 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, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___scenario_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___data_1))->___cellDataAsset_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___data_1))->___cellOptionalDataAsset_2), (void*)NULL);
#endif
}
inline SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___scenario_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___data_1))->___cellDataAsset_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___data_1))->___cellOptionalDataAsset_2), (void*)NULL);
#endif
}
};
struct SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA : public RuntimeArray
{
ALIGN_FIELD (8) SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 m_Items[1];
inline SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640* 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, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___sceneGUID_0), (void*)NULL);
}
inline SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___sceneGUID_0), (void*)NULL);
}
};
struct SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966 : public RuntimeArray
{
ALIGN_FIELD (8) SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C m_Items[1];
inline SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C* 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, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___sceneGUID_0), (void*)NULL);
}
inline SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___sceneGUID_0), (void*)NULL);
}
};
struct SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543 : public RuntimeArray
{
ALIGN_FIELD (8) SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 m_Items[1];
inline SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452* 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, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___sceneGUID_0), (void*)NULL);
}
inline SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___sceneGUID_0), (void*)NULL);
}
};
struct SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530 : public RuntimeArray
{
ALIGN_FIELD (8) SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C m_Items[1];
inline SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C* 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, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___sceneGUID_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___profile_1), (void*)NULL);
#endif
}
inline SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___sceneGUID_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___profile_1), (void*)NULL);
#endif
}
};
struct SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6 : public RuntimeArray
{
ALIGN_FIELD (8) SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC m_Items[1];
inline SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC* 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, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC value)
{
m_Items[index] = value;
}
};
struct RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E : public RuntimeArray
{
ALIGN_FIELD (8) RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE m_Items[1];
inline RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE* 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, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___standardMaterial_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___initialMaterial_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___matPropBlock_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___firstCommand_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___device_4), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___vectorAtlas_5), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___shaderInfoAtlas_6), (void*)NULL);
#endif
}
inline RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___standardMaterial_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___initialMaterial_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___matPropBlock_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___firstCommand_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___device_4), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___vectorAtlas_5), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___shaderInfoAtlas_6), (void*)NULL);
#endif
}
};
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_AddEnumerable_mF944156800D1ABF28E1A6E0E68A529D33F8FF410_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, RuntimeObject* ___enumerable0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA List_1_get_Item_m546712C3F18A3D10E171C8485DE785E2FDE2A9DD_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, int32_t ___index0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisSortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA_m8E2F39121BFB80C4847516EF67E5A0DF9CAF056E_gshared (RuntimeObject* ___value0, int32_t ___argName1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Item_m696C57EAEC38B6416DD43897543A10EAD7742B4E_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, int32_t ___index0, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA ___value1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void List_1_AddWithResize_m11DE4AC99EEC52EC53735CB3AAAA2163F0B3C341_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA ___item0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_EnsureCapacity_mCA1B6D886E31C8FDED39DDE12080B39C08E9B22B_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, int32_t ___min0, const RuntimeMethod* method) ;
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mAF5BD8A6F522C955DCE46B933758304D5018C7E6_gshared_inline (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA ___item0, const RuntimeMethod* method) ;
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m8C08AC7F86F1E8919954A207A2FD41980A55B1F9_gshared_inline (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_InsertRange_m1CE44A23B4C1D05A14C43D8A5EBC20F06C7BAEA6_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, int32_t ___index0, RuntimeObject* ___collection1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1__ctor_m232124F0DE47676A643112CF25B36CE7BA820B52_gshared (ReadOnlyCollection_1_tBB6981F9C608851A411CC0A04259A1DDAB869CFE* __this, RuntimeObject* ___list0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisSortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA_mB7AB3C7651CB129ACB932CF5BD114A59E9BBCEF1_gshared (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* ___array0, int32_t ___index1, int32_t ___length2, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_m5AF7900D68A7F7DDD4FE47F6876D2E24EE2D6539_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, int32_t ___index0, int32_t ___count1, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA ___item2, RuntimeObject* ___comparer3, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_IndexOf_mEF7AC07A501541D204CE1A2ACBB593D6291EEEFF_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA ___item0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_IsCompatibleObject_mEA6F32F1402D810F23DFA8684CA2003F36A19BBB_gshared (RuntimeObject* ___value0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Contains_m3EF097D9235FCD72E2B00A9EADAFB452B9B7327E_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA ___item0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_CopyTo_mEF9368708EC5FBEA8C8624AE6AAD8DBCB8088D2D_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Capacity_mF2FB6E4E52AB12CFA86240205E18C4554195F51F_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, int32_t ___value0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_m1ABAFE47B37E6FD38FEB0B498FDB2E0E95FFC60D_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, Predicate_1_t51DBC74A7C1E0943D5EFA3FE74416B197013147C* ___match0, const RuntimeMethod* method) ;
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mDDF814C07EAAA75700F17BC0D5628DC091DC8843_gshared_inline (Predicate_1_t51DBC74A7C1E0943D5EFA3FE74416B197013147C* __this, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA ___obj0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mCABD1D2634A284F3C0C14AFE436D370D565FA719_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_m3DB790ECBCC017F61C5A7FE9D6B204486D6E99F2_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, int32_t ___startIndex0, int32_t ___count1, Predicate_1_t51DBC74A7C1E0943D5EFA3FE74416B197013147C* ___match2, const RuntimeMethod* method) ;
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_m72F1143242F61E8C2FF0978434DF277335511C40_gshared_inline (Action_1_t72E548755F4BB43C31EDE2E7DAC9E4AEA03432B0* __this, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA ___obj0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m28AD71B8BB6284A2906232316B293DB7D0FFB27D_gshared (Enumerator_t8534CC1E09AC7402C395E1215F04227DA8E4349F* __this, List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* ___list0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mF1C69BC5F8445BC7A751D66D0E1D983641C713F4_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, int32_t ___capacity0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisSortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA_m18BD516D6FA4BF174C04E5DA27C7AAE4495A4753_gshared (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* ___array0, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Insert_mA1A92AE011B10506AD6241DCADC21F693CCBCBA7_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, int32_t ___index0, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA ___item1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveAt_mD4F5B121932BBAB625D3A851C906B42198E2CA78_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, int32_t ___index0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Remove_mA10D7AAB5E069915C600E5D4257E226453CFF47D_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA ___item0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Reverse_m02C052EAF56988547DE9DFC7514AEF315608767B_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Reverse_TisSortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA_m349C7F78DEB039498EBE6308CA8990F50C767514_gshared (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_mEF379A9F9502F7EB2FC978F1CFB002EF9139EDF3_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, int32_t ___index0, int32_t ___count1, RuntimeObject* ___comparer2, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_TisSortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA_m7D9D485AEBA5700BA17FF2812E155D5A8997FA02_gshared (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* ___array0, int32_t ___index1, int32_t ___length2, RuntimeObject* ___comparer3, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_Sort_mE4B6553DD61913FAEC9A9AE59D6093A1CE2809A3_gshared (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* ___keys0, int32_t ___index1, int32_t ___length2, Comparison_1_tBA8E62E1D99117B29F57BB6477E7B2CEDD1B5158* ___comparer3, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_AddEnumerable_m4D26D9CABE5C12FC4566282350265B1C7D07DF41_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, RuntimeObject* ___enumerable0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 List_1_get_Item_m06C8179BEE795A8BB801481B512E96F6FE98988C_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, int32_t ___index0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9_m8CAEDB26B2273DBF6BF9A71CFD779D1D25B1E254_gshared (RuntimeObject* ___value0, int32_t ___argName1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Item_m2C96392ABE330B10CD609E1CEDCF0ACE8EE4E1CC_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, int32_t ___index0, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 ___value1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void List_1_AddWithResize_mA1A4564FC0DADFAEC0FFC004CCB8CC9D80FD2023_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 ___item0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_EnsureCapacity_m846619F1154B81C4FC6194E873B43AB2A9BA4C3F_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, int32_t ___min0, const RuntimeMethod* method) ;
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m2B80351888D9BCB1461C8808A0B2278006B46AC5_gshared_inline (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 ___item0, const RuntimeMethod* method) ;
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m09B76BBFD57FC2975CE5920E87397B946A6E88D7_gshared_inline (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_InsertRange_mCE762F4482E0F0BDAEDC06E12E9E123D20B05B26_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, int32_t ___index0, RuntimeObject* ___collection1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1__ctor_mB5B22FC8521666C46A4213013B9CF2BDF96C6854_gshared (ReadOnlyCollection_1_tCC30DCDEC2FF09BE2BADAEC7995F69C958763938* __this, RuntimeObject* ___list0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9_mC464533EF1296FB5E4B2E81CF274383B8E77052B_gshared (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* ___array0, int32_t ___index1, int32_t ___length2, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_m9000AE7EDB1E9387C2F6B38B0706ABC9986B7CBD_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, int32_t ___index0, int32_t ___count1, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 ___item2, RuntimeObject* ___comparer3, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_IndexOf_m90289A4558EBA3D1F5510843371FBC39B0FB7367_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 ___item0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_IsCompatibleObject_mD259170D800B6BA5F5647D16FA60F2F7782C96DE_gshared (RuntimeObject* ___value0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Contains_m394F6BD939B7E515F8537E965E95D78F89A8FA07_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 ___item0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_CopyTo_m1FA03B0495AB9DA2D64B5EF3839051B7DFD0B675_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Capacity_mEC645CC150E96311EF5AF7EC8488EFE8CE9FE6E9_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, int32_t ___value0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_m30EB30B6A4FA111C8F2B053683A9C621CDB5E4D3_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, Predicate_1_t4000E2F6D93B445A9E4479DEA0D093186BF3B907* ___match0, const RuntimeMethod* method) ;
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m91E2DD4011E6B92F0BF4D54948CA5F53D1DE0E7B_gshared_inline (Predicate_1_t4000E2F6D93B445A9E4479DEA0D093186BF3B907* __this, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 ___obj0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m136F4770965B504261CA1110319AF965DE6CF736_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_m168C3A0BF0167510F7D01B995FE853A2256DA3F0_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, int32_t ___startIndex0, int32_t ___count1, Predicate_1_t4000E2F6D93B445A9E4479DEA0D093186BF3B907* ___match2, const RuntimeMethod* method) ;
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_m785F59026951A944FC1FBFFA5FC45A41B5A46A43_gshared_inline (Action_1_tCEBA10A27E04AF1981907713C1030E69EC9825E6* __this, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 ___obj0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mD69F6398F657E620141A54CF5F8F04EEA18D6301_gshared (Enumerator_t3572DC9B920E9C79F6C74EBE64A234B48911DCDA* __this, List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* ___list0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mD88117600E70EEBD6C7893010B82AD4A0F9B73B4_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, int32_t ___capacity0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9_m141DE04C9DC8A5C3ACBC182888A3F685A3E2F8F0_gshared (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* ___array0, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Insert_mEBFAF4D02C7828002704E7BECE21B2238257DCFA_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, int32_t ___index0, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 ___item1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveAt_m7D5A417923BDAE2ABF10528FE6CFD76F2A2E19F8_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, int32_t ___index0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Remove_m521BBB51265FA4ED213DB11A0C91647A5B03D112_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 ___item0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Reverse_mD7105DA6EF608144AC780D3A15F8B86C8AFA9436_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Reverse_TisReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9_m9575864003B0044B365F9BD1BB2FBCACE5C01CD1_gshared (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m1B2F635B73BE96D949CD2B26567774F1A82E4A81_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, int32_t ___index0, int32_t ___count1, RuntimeObject* ___comparer2, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_TisReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9_m80C0BC14E59F371D713E1636696E3230AFD4A341_gshared (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* ___array0, int32_t ___index1, int32_t ___length2, RuntimeObject* ___comparer3, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_Sort_mF169981CF6414984AFB235EA430235E94726F756_gshared (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* ___keys0, int32_t ___index1, int32_t ___length2, Comparison_1_t13E424814E5864FCA6984ADDC54691CD3EDF54D5* ___comparer3, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_AddEnumerable_m7D838F63101A0FAA329FACD80059C7A08166BFA2_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, RuntimeObject* ___enumerable0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B List_1_get_Item_m330C3E8039DF34D5342C6D638F93AD4D53BC8CBF_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, int32_t ___index0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisBrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B_mB7684C5D60A7664FA6ECF70A68C12EA72C7307E6_gshared (RuntimeObject* ___value0, int32_t ___argName1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Item_m67626EC6AAC470B2D00B53284595D567D0895181_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, int32_t ___index0, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B ___value1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void List_1_AddWithResize_m0F60A70AFEE910197AA0D83E7ADE883278413E49_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B ___item0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_EnsureCapacity_m3BB9E15F845FA3E40B60AE512E823C408DDB115B_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, int32_t ___min0, const RuntimeMethod* method) ;
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mBD25BC6E762DE994E1326749F2C4A552BC2CC79F_gshared_inline (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B ___item0, const RuntimeMethod* method) ;
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m6C34C2E4F4CAE3C6FFE13DC11181ADD0D19C0253_gshared_inline (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_InsertRange_mFC7B3BF6B76A6830295AE017A58FA96113D09AF4_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, int32_t ___index0, RuntimeObject* ___collection1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1__ctor_m9D50F3C6C18B66D8CB539452DE98EF74404F48DE_gshared (ReadOnlyCollection_1_t60075704E4AC0EE9C6A477EFA7FDB046ED3A199D* __this, RuntimeObject* ___list0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisBrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B_mE00F338DF4166B0E4C898B957806B60A9F4ED333_gshared (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* ___array0, int32_t ___index1, int32_t ___length2, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_m8308C4A568BD75E355203707AC13632B796AF435_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, int32_t ___index0, int32_t ___count1, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B ___item2, RuntimeObject* ___comparer3, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_IndexOf_m7D1D48748EA8801BEB6C3D4BFEAC1A7DA9119717_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B ___item0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_IsCompatibleObject_mE4C75F023067E208BBF2826CF811EC67B3A1D648_gshared (RuntimeObject* ___value0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Contains_m6D2106CECD1C22A869D6CDB504DCA9157A3F83DC_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B ___item0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_CopyTo_m7621EDF705E43D719083ABC12B6C0133A8F1B61A_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Capacity_mF4511A846BF63FD6759EDE3236ACE3156B6F7122_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, int32_t ___value0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_mB8B81289498583C92FE6FC2EF95120E2561C495D_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, Predicate_1_t9939AC86819E2498AF558953EFF6F269E25648A6* ___match0, const RuntimeMethod* method) ;
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m686502E8E7E7D0BA4C6D18B5F9FEBE3CFC179470_gshared_inline (Predicate_1_t9939AC86819E2498AF558953EFF6F269E25648A6* __this, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B ___obj0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m0D06C9FECB7283237183AF8A1EE82A6363365B46_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_mB0B71913AF102BBE2D5718E3708E84AA2178DC59_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, int32_t ___startIndex0, int32_t ___count1, Predicate_1_t9939AC86819E2498AF558953EFF6F269E25648A6* ___match2, const RuntimeMethod* method) ;
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_m1CABBE687A5B8796B2623B610500C202E7582ADC_gshared_inline (Action_1_tD17A4D72165DC3DB30991AE957053E20BE4178C8* __this, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B ___obj0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m112951DDF78AFF37B87FA815DFE216738F93EBF7_gshared (Enumerator_tB36F2E08EAEB0D3BA01C0FAFD87C7DCAF20D54CC* __this, List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* ___list0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m3F0FF6E493BF0BC4CDADBFFC8FD20E4DF7638CD3_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, int32_t ___capacity0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisBrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B_mECF77C930EB6670332947CB6BE27E328607CFCA1_gshared (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* ___array0, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Insert_mEA0390354E58C8EC74A0F293F8A3F5618CDBE98A_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, int32_t ___index0, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B ___item1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveAt_mDA2E3E09B92E6489005D57AA458DBCED30D215CD_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, int32_t ___index0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Remove_m04631DA6616D397199A8C512E2247E252F859E55_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B ___item0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Reverse_m9D843F8745ED0314F73F1B36F6B82FEEBBCD8C48_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Reverse_TisBrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B_mB6CCE99DB05B2EA67B8B27DF092D59874017C834_gshared (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_mF694E3B15873025CEC3D33F74F0C6BBD28574292_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, int32_t ___index0, int32_t ___count1, RuntimeObject* ___comparer2, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_TisBrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B_m05CCD2AF54A2D4EA995020F1AEA55DED55D0749A_gshared (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* ___array0, int32_t ___index1, int32_t ___length2, RuntimeObject* ___comparer3, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_Sort_mD71AF68A6A40286226609C455F65D1062B3C95C6_gshared (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* ___keys0, int32_t ___index1, int32_t ___length2, Comparison_1_tB37367478ABE2FE5FD2203EA6868D24C205BA55F* ___comparer3, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_AddEnumerable_mB305C2917891211C606013DCEA970966D0B1026C_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, RuntimeObject* ___enumerable0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 List_1_get_Item_mBB503A92064BE6675F71901A29545531F6D81C9C_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, int32_t ___index0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisSerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92_m20C9E63C73062F14CE6D23FF2EF366CEFC522DDD_gshared (RuntimeObject* ___value0, int32_t ___argName1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Item_m76B13A2CCCC4D89B3C84A6FF38F3AB73D640DE1C_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, int32_t ___index0, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 ___value1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void List_1_AddWithResize_m199942A4F45DF9A26AE2BF3F5F83EB6872EF1296_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 ___item0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_EnsureCapacity_m3B9DA3D8520F069599E1B6F91322ADDE69A24DD8_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, int32_t ___min0, const RuntimeMethod* method) ;
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m789F885930480A60CC99D85E28B6D92CEDA74EF1_gshared_inline (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 ___item0, const RuntimeMethod* method) ;
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m62E98B115ACDF79B5558CFC3F21D107DCC98D9BB_gshared_inline (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_InsertRange_m4E98A2CE935633F7D04BBBFC141EA7A4B95A3C6E_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, int32_t ___index0, RuntimeObject* ___collection1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1__ctor_mC0CA4A8705EB2EF1681EC022B6DBA788CBE22343_gshared (ReadOnlyCollection_1_tCBA432B40218EE796DDE3EF3B0E4428EC223C324* __this, RuntimeObject* ___list0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisSerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92_m263ECCDC182F2E301047F12A645FCBD4A0D1976E_gshared (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* ___array0, int32_t ___index1, int32_t ___length2, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_m32EB1E6B18AC45C4BF593EC977A204CD1CE44330_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, int32_t ___index0, int32_t ___count1, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 ___item2, RuntimeObject* ___comparer3, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_IndexOf_mA5D723B92DEA3515BA2BFD33D736304CE9D040A9_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 ___item0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_IsCompatibleObject_mF53B290317C6EBC6EC62D420F81D2CCA24B43733_gshared (RuntimeObject* ___value0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Contains_m7F1D9F4388035B5F6BB0650561A0E76E5EB00609_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 ___item0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_CopyTo_m86813324FC57F48338DA034F92DA7F1EA483BAC7_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Capacity_mD0217C58B2E251FA259AFE4383C5FE3EBA6F929D_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, int32_t ___value0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_m25584DCC2D2EC5344B16FD55FD15AF9430C14D9F_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, Predicate_1_tB611AC0628C45AA8C22D98641EB0E2777E379967* ___match0, const RuntimeMethod* method) ;
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m7F899F9611DAC1AC03EEDF59AA231010CA8F99F0_gshared_inline (Predicate_1_tB611AC0628C45AA8C22D98641EB0E2777E379967* __this, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 ___obj0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mE93A42B8E7E2C13C1A1F7658D34ABB7B25EEC5D5_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_m2BC80847EC4A8C20F0C314B8DE71C351F3E89988_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, int32_t ___startIndex0, int32_t ___count1, Predicate_1_tB611AC0628C45AA8C22D98641EB0E2777E379967* ___match2, const RuntimeMethod* method) ;
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_mE8864E52B8F99441E9CE69FE4157842E40E94DD5_gshared_inline (Action_1_t187C688D32A8DB83E990AEA9706F59866839B943* __this, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 ___obj0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mBDCE4434468C2809613EF641B87E27527CAB552A_gshared (Enumerator_t3401DD96101FB490B9D817CFF7957BFB900624B3* __this, List_1_tD47E289A20580491873111C2FC85A5456012FCAC* ___list0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mAEFD61889C036CF46420354D03CDB378A02C6629_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, int32_t ___capacity0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisSerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92_mBD8DC01514895B25728AD175138D8C4EA74558FC_gshared (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* ___array0, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Insert_m027C014EE37B55B729D05969787E0052B4433249_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, int32_t ___index0, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 ___item1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveAt_mD03977F2AD546CF2E7014AC88125D6B5814D1BB3_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, int32_t ___index0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Remove_mCA93EB575579C2E8A7BACEC1E0B1825547B451AC_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 ___item0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Reverse_mA4700E1B3040D345415206D6EB2283061FA65266_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Reverse_TisSerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92_mB1072C66EC4B549BBC03D581A18D153D024BAD5F_gshared (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m0E61F53BB5469566CF4419EEDC59C44AEC3106A0_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, int32_t ___index0, int32_t ___count1, RuntimeObject* ___comparer2, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_TisSerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92_m9354585E3294CAE99197AE2FF30CFA85D25D0928_gshared (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* ___array0, int32_t ___index1, int32_t ___length2, RuntimeObject* ___comparer3, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_Sort_mD85472105E04C2089F81AE565C919E72B51FEF5F_gshared (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* ___keys0, int32_t ___index1, int32_t ___length2, Comparison_1_t61E4EED0058DDEFD4B37CEAFB8E86A231BDF9EA2* ___comparer3, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_AddEnumerable_m1FFBCDD1F53FB9E08420B59502ECD26862BD847F_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, RuntimeObject* ___enumerable0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 List_1_get_Item_mB6E9A7F89235A4021767ACD0A477D23FF7CC71AE_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, int32_t ___index0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisSerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640_m2D7601E9306F0547F18D75C01F5D9E40C03F929C_gshared (RuntimeObject* ___value0, int32_t ___argName1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Item_m86B327CDF56EC996EACF6628DFAD6ED9748B9F99_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, int32_t ___index0, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 ___value1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void List_1_AddWithResize_mFD764274879592E1088C9DAB36E8B76DB1114FEB_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 ___item0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_EnsureCapacity_mF6A15B6F8CC4F683A4B6D69BB6FBF86118F6D4C2_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, int32_t ___min0, const RuntimeMethod* method) ;
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m1C31C862D450C02A5085E473D157F7AC7B76D046_gshared_inline (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 ___item0, const RuntimeMethod* method) ;
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m9EDF914E652D5A671B9E6B3C1AF001CBADC12B01_gshared_inline (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_InsertRange_m648A0FC682BC48EAF72A3B9DC1544BD10268399E_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, int32_t ___index0, RuntimeObject* ___collection1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1__ctor_m1EC8604AB99B1EDF54963DD7A11C3CBA160406D5_gshared (ReadOnlyCollection_1_tF667A9C987D50E93A717AFD8B65AECDAA9D71923* __this, RuntimeObject* ___list0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisSerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640_m04D9D84B4CE234B2217FF354205ABF4B21157B02_gshared (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* ___array0, int32_t ___index1, int32_t ___length2, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_mB6CDD1B47C6BC03174D5E527A722E3FFA1DC4B6D_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, int32_t ___index0, int32_t ___count1, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 ___item2, RuntimeObject* ___comparer3, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_IndexOf_m2A46931F8A959DE3DE830D36806FF4DBE11FE354_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 ___item0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_IsCompatibleObject_mBBC38F26C6CD0121E7AC55FA7A14328DED51E6A2_gshared (RuntimeObject* ___value0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Contains_mF47686AE4ACB8FD938B2B860F7D4F8D46F25CEDB_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 ___item0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_CopyTo_m2566CA20E4A1F6ADB5AF33D7A89EA03B38E218AB_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Capacity_m956C519DBD89C600007B02E58D157CEC93164122_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, int32_t ___value0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_mDF39EA18BFFD2DDF2D09080C2F09E80E47709CBF_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, Predicate_1_t91F6DA80C04BF546E5879B9232C076E32128590F* ___match0, const RuntimeMethod* method) ;
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m9EA6BB06561BD8025D11A4F544802CD868048653_gshared_inline (Predicate_1_t91F6DA80C04BF546E5879B9232C076E32128590F* __this, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 ___obj0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m33B64BB7982C5EC16903EEA39B4BCAF51775FD55_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_m15EE8D35202F0C0C58F35EA757D4EDF970B5A5AD_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, int32_t ___startIndex0, int32_t ___count1, Predicate_1_t91F6DA80C04BF546E5879B9232C076E32128590F* ___match2, const RuntimeMethod* method) ;
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_m96CD6B978BAA81562C4223643F24E228A2347BCD_gshared_inline (Action_1_tB0C884D3D3374CFCE94E90AC8FECDC5E3E791203* __this, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 ___obj0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mAC9A9412B410D3E3F9728ACD4C218FFC3A0FBEFE_gshared (Enumerator_t0F91BC558767DA1005DDDD4EC1D68339C54621A5* __this, List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* ___list0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mB722EE7250EC243F0C9BEC91E1C406174C2F5E2E_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, int32_t ___capacity0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisSerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640_m56D608A24247B8638FA6BC48D19E740CDE53E4B4_gshared (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* ___array0, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Insert_m3F613D65C0836903F3B22EAF35FE46FB4375B4A5_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, int32_t ___index0, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 ___item1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveAt_m3D4A00CF25A102794DB9043B532A6DCB7D7C86BF_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, int32_t ___index0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Remove_mAFFE727EFE187CC0CA3F8E830F371DCC2828BCD1_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 ___item0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Reverse_mD97E2DAF651F931A3BF2DB55C51DD97949779595_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Reverse_TisSerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640_mDE26757691DDE81D4472FC616765F9A0085CE8F4_gshared (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_mD0DBA3A3C39F27C739CE6DF10A382AA4DCC44E7C_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, int32_t ___index0, int32_t ___count1, RuntimeObject* ___comparer2, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_TisSerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640_m8EE0162994D135F46B7220992820F435B0E8057F_gshared (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* ___array0, int32_t ___index1, int32_t ___length2, RuntimeObject* ___comparer3, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_Sort_mE33B9576D4C0DB1B28FF7083D7201DC312247DB8_gshared (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* ___keys0, int32_t ___index1, int32_t ___length2, Comparison_1_tD8DB7399F0BC95EA6BBDA5262FC00866CE3A9696* ___comparer3, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_AddEnumerable_m87C48FCA36E0912F8A7AD1E8E4E46DF3E1DFDB76_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, RuntimeObject* ___enumerable0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C List_1_get_Item_m2BBE1D9BBDF114B65FBEA541538C9FD703BF822D_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, int32_t ___index0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisSerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C_m8DADC2BA85D5549B154DFD9F1650AEF7C74F61C2_gshared (RuntimeObject* ___value0, int32_t ___argName1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Item_m7C72A3A94E1CD66AB3E09FD44EAF980AC2883646_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, int32_t ___index0, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C ___value1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void List_1_AddWithResize_m8B89217448277604B1CE90E00676070757A181B7_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C ___item0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_EnsureCapacity_mDBC90FF9CA64C67537E8ED8033A579EF34C309C5_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, int32_t ___min0, const RuntimeMethod* method) ;
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m57A1BE88ECE375428E12EB373147D1FA8751D4FB_gshared_inline (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C ___item0, const RuntimeMethod* method) ;
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mD5B39B9B0F072CA06C68377531E0886E3538F716_gshared_inline (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_InsertRange_m7BC160CBD52B9F43D973382D90E4AF062D0AA032_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, int32_t ___index0, RuntimeObject* ___collection1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1__ctor_m9091FD27D6A3BDF27EE576AF2145C906E80830B1_gshared (ReadOnlyCollection_1_t6A9C7D2D97BC027BE87AFB1B8DCD4C3ECD2107D4* __this, RuntimeObject* ___list0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisSerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C_m32A94D794F0046AA96DB4F5B299F2D47F7EC5F2D_gshared (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* ___array0, int32_t ___index1, int32_t ___length2, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_m1B6CC9CC5006DBB00A6862470B58C7C32D03B1E2_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, int32_t ___index0, int32_t ___count1, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C ___item2, RuntimeObject* ___comparer3, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_IndexOf_mC99AB8A9463EC032657BE69C8525BD1D6B7D0805_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C ___item0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_IsCompatibleObject_m7C1E6F06277E578E9DC09F7BFEF9AA3A63E96132_gshared (RuntimeObject* ___value0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Contains_m2AED8A99D7A91E1A56D9AF7E927E9AF7F6BD598A_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C ___item0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_CopyTo_mBFDCD07EF497384244674DF2C3404E862A4BEFE8_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Capacity_m03D9F7B4486E0C89B6CE34672960A93C0CFE56FC_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, int32_t ___value0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_m3BAB8AD448E3D95B7D04511DC8344EF400A34B69_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, Predicate_1_t9B2D6474D0B9770CC8D95DD34EA4AD9556D351A6* ___match0, const RuntimeMethod* method) ;
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mCF9BF523FD024AF55E93F13ED6D2E00AEB0A484F_gshared_inline (Predicate_1_t9B2D6474D0B9770CC8D95DD34EA4AD9556D351A6* __this, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C ___obj0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m38BCEBB3B7287799DFAEC7FC2A7046A88E178C99_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_m15B238C9CBD0C974E244CFAC7E27A4B50C9A3AC3_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, int32_t ___startIndex0, int32_t ___count1, Predicate_1_t9B2D6474D0B9770CC8D95DD34EA4AD9556D351A6* ___match2, const RuntimeMethod* method) ;
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_mA8F1A4AF0D247CFBFFA0A11F02BE172A36AB1197_gshared_inline (Action_1_t92F25D2BF6C8C5C1D69E8CF2473ABBCC3136018F* __this, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C ___obj0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mA14143588C2ED97B53B74AFF2E0A75CC2A7FFB7A_gshared (Enumerator_t8F9474ED732BF151860990861186CAEA4E833694* __this, List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* ___list0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m45076B52D78C658B91912503692A546791D64CD0_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, int32_t ___capacity0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisSerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C_mA66676495A12753F739106C34E5FB7F4FAB1518D_gshared (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* ___array0, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Insert_mE53C039B315575F93E887B6FB5F124625E25C2AE_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, int32_t ___index0, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C ___item1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveAt_mC883F2A82A5DB486D7EBC252F328438DE588AA08_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, int32_t ___index0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Remove_m8721CE2ECC3CBA4E94BC59B4584BB6A845A7BEED_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C ___item0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Reverse_mD288BC8B03A107C7344B418432831BE6E34DFD16_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Reverse_TisSerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C_m11A2E0BDD4159C67CCBEBF3F8E2B4499A71957CE_gshared (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m077B2424F2A34A75B62F594DFE2EA5C12ADBD95E_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, int32_t ___index0, int32_t ___count1, RuntimeObject* ___comparer2, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_TisSerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C_mD92AE5D59E91DD6595F0458EB373B13E6E624907_gshared (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* ___array0, int32_t ___index1, int32_t ___length2, RuntimeObject* ___comparer3, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_Sort_m07E110A10F5F07D58048D3CCEA65A951471620C5_gshared (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* ___keys0, int32_t ___index1, int32_t ___length2, Comparison_1_tA1A99E801BF7A63F87C1EB2876D1DD485B72158E* ___comparer3, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_AddEnumerable_m9606977025BDE1ECF8FC27BAB22B2BEA3325E06C_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, RuntimeObject* ___enumerable0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 List_1_get_Item_mA652DB20CF39CC245CE6699B6C655FB2DCAA4946_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, int32_t ___index0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisSerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452_m5940DE1E01EF1CD879C88A40FC90B65D56008AC8_gshared (RuntimeObject* ___value0, int32_t ___argName1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Item_m10E26EC0C062E48963C4C2AC92DF0F3BEBE5688C_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, int32_t ___index0, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 ___value1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void List_1_AddWithResize_m917A6AD1D7ADF266FC1E66DCCC79AE49E725066C_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 ___item0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_EnsureCapacity_mFC7CE2DAD1486472AD9C32D20031FBF334B93A76_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, int32_t ___min0, const RuntimeMethod* method) ;
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m2A67FD5726B4822A0635AE943CF6D96A403D71CD_gshared_inline (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 ___item0, const RuntimeMethod* method) ;
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m69AE2AA581A9F7CC56C2A779BA4524E1900ADF55_gshared_inline (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_InsertRange_mE92D40D4770019281B6BA2C330D63A165F9BF993_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, int32_t ___index0, RuntimeObject* ___collection1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1__ctor_m3D7A0EA9BAD84E7C7FA03675BDC3CD3EFF39F32F_gshared (ReadOnlyCollection_1_tA871F447D7F479911BD7EAFADF88CC271A932111* __this, RuntimeObject* ___list0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisSerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452_m0F80796B946772F68B9E7EBA56C447ECE1FDCDE9_gshared (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* ___array0, int32_t ___index1, int32_t ___length2, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_m1984A999BA27A2FFD51B3C1CD503BD664DEFB62C_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, int32_t ___index0, int32_t ___count1, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 ___item2, RuntimeObject* ___comparer3, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_IndexOf_mE4A1E26F51C7E76116D2B46425DB16CA1747633A_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 ___item0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_IsCompatibleObject_m03CEF85CD52AE36C26074DB0A55BFD107909060B_gshared (RuntimeObject* ___value0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Contains_mF9800FA1BDF6A933AF36362076483B1BE82EBC20_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 ___item0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_CopyTo_m1B3BDDEB542B9E9E75DF1442B5B69058E0391CBB_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Capacity_m25F4ABEEA51BFABF34BD833A3234A863F012B1EE_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, int32_t ___value0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_m82093DAEFEB13F65D340D87279CBE1B0E37630FE_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, Predicate_1_t19AD45D1959BE743073EC8A444DE8A4CD156EBDC* ___match0, const RuntimeMethod* method) ;
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mCAAFFB8B975CC9C9EB0020ABC8FC6826A53CBC68_gshared_inline (Predicate_1_t19AD45D1959BE743073EC8A444DE8A4CD156EBDC* __this, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 ___obj0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m9F7DDF65A5DEE6C99AF06E0CD8522D259BAA070C_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_m4627A14E4CCA05915176D272C6B2711C8DEE8303_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, int32_t ___startIndex0, int32_t ___count1, Predicate_1_t19AD45D1959BE743073EC8A444DE8A4CD156EBDC* ___match2, const RuntimeMethod* method) ;
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_m1AE5DA812CC78579382FC604F31F5C324DFA5DAC_gshared_inline (Action_1_tDEE138ADA6A5B56B11D9CFC823CBBD375BA9115A* __this, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 ___obj0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m076C4519BED94CBC69AF27F7F77E90B2627BF052_gshared (Enumerator_t79A467E7C13197680FE62582108B3BE3348A0F1F* __this, List_1_tE15A36783D21F016929125A00F602D220C32C84A* ___list0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mD955D5B642510166CAF5FB380761AB96C7EABED9_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, int32_t ___capacity0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisSerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452_m902D1500A5E9C164C4BEA4454F170BE71E50886E_gshared (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* ___array0, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Insert_m5BF63154DFD5997ED5CA0B1E502BD5C7B1695262_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, int32_t ___index0, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 ___item1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveAt_mB59317CB5118CD2B5049B80787D942A2ED5BAEC7_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, int32_t ___index0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Remove_m80247B271593D484141E189A27FE385AF3809231_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 ___item0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Reverse_m169C7F26335AC27556DA2D5E9CAC53879600837A_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Reverse_TisSerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452_m862D6739F2B4F4D2D442A15E0804E6DDDD77F30B_gshared (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m1B48F59950323FDA69E911DCBE9C87A9C0CFB8D3_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, int32_t ___index0, int32_t ___count1, RuntimeObject* ___comparer2, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_TisSerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452_m4D85E4FE7CE167DEA83D2CEEC2F18355E9C65754_gshared (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* ___array0, int32_t ___index1, int32_t ___length2, RuntimeObject* ___comparer3, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_Sort_m39997300262F456AB52A60AA096AFE04D9A2A1AF_gshared (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* ___keys0, int32_t ___index1, int32_t ___length2, Comparison_1_t58FFF56353C5F80C81DD19A7906EBB581EB35E79* ___comparer3, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_AddEnumerable_m1F86EBB0D8E529AD1BA9B31671194AAEC1FA64C7_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, RuntimeObject* ___enumerable0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C List_1_get_Item_m19D55B15E3A425B61A510C4D4FBE7F6363161D82_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, int32_t ___index0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisSerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C_m5D352935B6834839DA3DFCCBAA0A844FC09EB8EE_gshared (RuntimeObject* ___value0, int32_t ___argName1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Item_mA031C25469EFCA152935F57B6E857621B046FB7A_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, int32_t ___index0, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C ___value1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void List_1_AddWithResize_mAE7B1D480FC532D533FA051FA8E394D1ADDF3757_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C ___item0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_EnsureCapacity_m3A7C5ABA9FB19F100803F8147B514C6FE6C5A133_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, int32_t ___min0, const RuntimeMethod* method) ;
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m90D4191082A9625E71B5BC4A7BC252C5BD7E8299_gshared_inline (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C ___item0, const RuntimeMethod* method) ;
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mE81A223E9D4AA4DCA2561161DEB7272C270767F7_gshared_inline (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_InsertRange_m46A473BEFE2D9C907045B0035F9312D0D978BC13_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, int32_t ___index0, RuntimeObject* ___collection1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1__ctor_m947C2CC67594BB34D0D6EE6B94D8C19A2AF3445B_gshared (ReadOnlyCollection_1_t3A3413BCAB006EAF1F0AD4A130CF22CE3B13A037* __this, RuntimeObject* ___list0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisSerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C_m21E5604C94719811E7C2BBE5D7CA5EDA0EA4D3B4_gshared (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* ___array0, int32_t ___index1, int32_t ___length2, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_m61E7AF69A5BCFF7F971653572B0A46DD2C0E5ECF_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, int32_t ___index0, int32_t ___count1, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C ___item2, RuntimeObject* ___comparer3, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_IndexOf_m524C2D0526AD60FEB7BD841C9A1DBFBB82CA6486_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C ___item0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_IsCompatibleObject_mB94663A5C1A0011DE9A7F868D03E39280C9CAC80_gshared (RuntimeObject* ___value0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Contains_mC04FFCB9EBA1CD48953C861DAD7BFC6D20680B03_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C ___item0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_CopyTo_m0E6361A596C027F8333A552518F4FBFB1E79758A_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Capacity_m975C9D90192F7A73264947E27D693CC232ABF90C_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, int32_t ___value0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_mA8C399896D8BC725B18D20518A34B18283F5484F_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, Predicate_1_tC88052F39393D0E4E248EB8800665E2921E13909* ___match0, const RuntimeMethod* method) ;
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m8AE9297F7EBFDF86DC2736E37B03A98E7CEE6208_gshared_inline (Predicate_1_tC88052F39393D0E4E248EB8800665E2921E13909* __this, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C ___obj0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mDF511B6612E1E5D593A0191B2109B9D43EE273A9_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_mDADADD15306435E68B7C2B9DEAA02573ECC0B51A_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, int32_t ___startIndex0, int32_t ___count1, Predicate_1_tC88052F39393D0E4E248EB8800665E2921E13909* ___match2, const RuntimeMethod* method) ;
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_m8186B7CA741A9C5ACC10D5B1572DB2B8A5800C00_gshared_inline (Action_1_tD86C2FCC7B89EA018509622FD8BA07E5851ED1D9* __this, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C ___obj0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m1EC4A0FEE0303C1C2DE4379C588489BF390331CE_gshared (Enumerator_tD348BAA5B9575AFEB2F626A5366EBD048E31D7CD* __this, List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* ___list0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m5FFC90993678E1D6423051286E157146062A0593_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, int32_t ___capacity0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisSerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C_m4A83F5748E8869794593BC1EB839E7038BB571FD_gshared (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* ___array0, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Insert_m75F6C8341EC07139DE8440C481068B3D64CA69D5_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, int32_t ___index0, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C ___item1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveAt_mB4E1987A0D4D6F6D53A06D4C18DCD7863499137E_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, int32_t ___index0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Remove_mF8D55CF31B558EBA0DFACC22240B272EDAADEE4D_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C ___item0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Reverse_m70E68459859E2C8BC615437D92B5B9B1A5D72BFF_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Reverse_TisSerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C_mD3A257991DAB7EAD1DD8487EC2F9DE58215C7592_gshared (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m5254C176BB64840E14C149B31066CF9044F2D2CF_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, int32_t ___index0, int32_t ___count1, RuntimeObject* ___comparer2, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_TisSerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C_mA58CCDCCF75E20773ED8435ABB3D91AE775C757E_gshared (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* ___array0, int32_t ___index1, int32_t ___length2, RuntimeObject* ___comparer3, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_Sort_mA360D8B1440745F35A3F6FC4CB3A22BB56FB3FEF_gshared (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* ___keys0, int32_t ___index1, int32_t ___length2, Comparison_1_t99F688A497AAEF1CCF78A6A519D6262CD5BD4B9D* ___comparer3, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_AddEnumerable_mDF2147E522AD80A7B6A79CF8E7F00EC7DBF8A032_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, RuntimeObject* ___enumerable0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC List_1_get_Item_mAAE7FBDBD94CC48BA01C01ACFC3C66EE219110D0_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___index0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisSingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC_m85CB6FEF509A4859399929F09F545FA1133C3051_gshared (RuntimeObject* ___value0, int32_t ___argName1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Item_m58893707EC3B663186D1550A23DE96C818416CBD_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___index0, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ___value1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void List_1_AddWithResize_m594A4155F206677F45ECD9AAE7E9EFD0AE6137ED_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ___item0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_EnsureCapacity_m1A140613D2D236E9CF413F81D549E39415DF0058_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___min0, const RuntimeMethod* method) ;
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m624C469B79ADC28E429B7A3CA96DA72345621643_gshared_inline (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ___item0, const RuntimeMethod* method) ;
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mF3540C84790DAB9D381F00753BA20A85694C3446_gshared_inline (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_InsertRange_m8C743BAB2CDB84037FE830DF12A8B561EFEEEA60_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___index0, RuntimeObject* ___collection1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1__ctor_m236FFEDF5196507C82BBA262351A75F0337621F3_gshared (ReadOnlyCollection_1_tB4D9A0CDCFB95FF39CF5E7E6C0BA76B3178ECBDF* __this, RuntimeObject* ___list0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisSingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC_mADCDA1C9B37E3A0E4E43BC98F1CC6A028AB4A020_gshared (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* ___array0, int32_t ___index1, int32_t ___length2, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_mC33A081AC70A6F890BD1F7EB86A505EFB85B2A34_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___index0, int32_t ___count1, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ___item2, RuntimeObject* ___comparer3, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_IndexOf_mF5A7DA78EA07100BDE8044CA37C505F36AD7ACB1_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ___item0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_IsCompatibleObject_mC9CB5EB21839923C050E6922FE7050867F374865_gshared (RuntimeObject* ___value0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Contains_mA5832B215E464CAC8345E7ECC45562E884AE146D_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ___item0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_CopyTo_m15B9FC56E0418F730FC3A37C8E482F7108D73B62_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Capacity_m40FE27C2AB4F6F5F863957210FA90C1BF581D293_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___value0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_mF2AFA5B913B4B2AA7DD0D1016973A79A93BBFD38_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, Predicate_1_t107748E0E0D2277266234EAF67AC068394C4351C* ___match0, const RuntimeMethod* method) ;
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mADD6CFDE192E3E822D5296926054ED8A41DB09C4_gshared_inline (Predicate_1_t107748E0E0D2277266234EAF67AC068394C4351C* __this, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ___obj0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mFEF8BE0609A5B0185A946E4BE78E3AE078DCDFDF_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_mA8A19319FB31E9FB37C309AB8938A9FE57AA5C9F_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___startIndex0, int32_t ___count1, Predicate_1_t107748E0E0D2277266234EAF67AC068394C4351C* ___match2, const RuntimeMethod* method) ;
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_m6A44347B678A89104F91C3A85581DCC41A21AD5B_gshared_inline (Action_1_t4501483487EE874F237B6B25ACC1026A64FBF612* __this, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ___obj0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m159144864209387AA18DEABE7B7985388F8F3452_gshared (Enumerator_t59E02176F2EE4E264A4750514AA127E2E21FF5D9* __this, List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* ___list0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m9D4C783EADEFE471AE4694A264FC274077D002B4_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___capacity0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisSingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC_m5A2EB67A073F2BFF5B3DCDDBD15D75BC3CFB909C_gshared (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* ___array0, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Insert_mC8E7189F3D9D95975CFE821AC3B560B2EA7AB7A8_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___index0, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ___item1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveAt_m911F1AFFA59FD181BA9363E0B6C8B5B95067EC3B_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___index0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Remove_mA8E72E7CFB72101AA88E01A84F746ECBD8E91B3F_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ___item0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Reverse_m6558ECB96638BF339DAB6BDB70413BA7570A84F9_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Reverse_TisSingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC_mD8F006C0A007C05BB69E417FA65A5A66965F997C_gshared (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m4F48B52D720DB8E76904DB4647F7BDA63FDEC552_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___index0, int32_t ___count1, RuntimeObject* ___comparer2, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_TisSingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC_mE6A4B57DE0CB3DEC8371BDC3DAAAD29D6C9E3B2B_gshared (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* ___array0, int32_t ___index1, int32_t ___length2, RuntimeObject* ___comparer3, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_Sort_m3182DABDA1EFACFF8268887837CA976A3577C3E6_gshared (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* ___keys0, int32_t ___index1, int32_t ___length2, Comparison_1_tA6E38F9B8A5E125EC6515F9679C2079C747A0149* ___comparer3, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_AddEnumerable_m7088ED3394FFF962AB1A50214F6D8008985A47A1_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, RuntimeObject* ___enumerable0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE List_1_get_Item_m6F50163981F18AD78856766254735B84087CEB3A_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, int32_t ___index0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisRenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE_m76CAF61428C4E009D1A428123021D438127BE97A_gshared (RuntimeObject* ___value0, int32_t ___argName1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Item_m1E6C8D90BA9A30407DAEF89982AD3CDF11CF6B32_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, int32_t ___index0, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE ___value1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void List_1_AddWithResize_mC8CCF79EEFA3DFA94ED1D51F5BE288209FBBDA6F_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE ___item0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_EnsureCapacity_mA0D0641DCB08BA2E8610EDD5AD2C37E3F638BD69_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, int32_t ___min0, const RuntimeMethod* method) ;
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mD3E9E49A0FA7E3FB0E9EAAEB94864A1E9161612D_gshared_inline (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE ___item0, const RuntimeMethod* method) ;
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mAAEDC1FC4B64FF31F3BCA12217394EF6F745A0CB_gshared_inline (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_InsertRange_m160564DB4C2AF522F842222EC1BE470BD4D2BFBC_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, int32_t ___index0, RuntimeObject* ___collection1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1__ctor_m1F8DFD7DA2A310E5F329E7FED4F657741C0864F3_gshared (ReadOnlyCollection_1_tE3E9C8F094CD8107FF7B47147C9E7377DF44D188* __this, RuntimeObject* ___list0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisRenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE_mE95F7B0B9C6C11DDCBA587DDB499F531EFDAE0A6_gshared (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* ___array0, int32_t ___index1, int32_t ___length2, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_m09B361D3D35A2062535FFCE496DA4925E98CB326_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, int32_t ___index0, int32_t ___count1, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE ___item2, RuntimeObject* ___comparer3, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_IndexOf_m312D2557BE560A3C9B669F02117579E3AE2A177F_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE ___item0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_IsCompatibleObject_m3AD55A212B79AE5A71A921515B5B560ED09AA679_gshared (RuntimeObject* ___value0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Contains_m8B083500B9C34ABB12D552B8C24E2ED1B8576986_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE ___item0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_CopyTo_m4D10EE8519FA0749CB92DDB500BC753CBB15266E_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Capacity_m50BEC845EFC6BDB5291D5D4560E39559571A249E_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, int32_t ___value0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_m689D20041B03ABFAF7409FFC4C933E4C44478C44_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, Predicate_1_t11FD0E9C3E3027EDC3E795B12D6DEAB00BE6209E* ___match0, const RuntimeMethod* method) ;
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m135269208DD6D8EA90E641BC8AE589799BE775CE_gshared_inline (Predicate_1_t11FD0E9C3E3027EDC3E795B12D6DEAB00BE6209E* __this, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE ___obj0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m255703238033B967D14582C45A7BE4E83FF82D04_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_mABC7CD3C41F16438834ACA413E5108A28E2264E6_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, int32_t ___startIndex0, int32_t ___count1, Predicate_1_t11FD0E9C3E3027EDC3E795B12D6DEAB00BE6209E* ___match2, const RuntimeMethod* method) ;
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_m02B1A77D2272E9F41F217EA15AB3CB64FA07A90C_gshared_inline (Action_1_tD0160E105457D40D8673BAC7E6B940058EE57412* __this, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE ___obj0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mE479DEDD234610FC12442D75F584E580F0623542_gshared (Enumerator_t1D1919C4A31BDA5C91BD99149B33227908BAECCD* __this, List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* ___list0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mAA23C6DF65BC54A74F0E73AC8624AEEA85C18B19_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, int32_t ___capacity0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisRenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE_m8404E87C4C2E6DEB5A8A922233858FD8C0D17365_gshared (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* ___array0, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Insert_m6EB4592E7BFBB59116CB9AD0E8072935A552FB58_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, int32_t ___index0, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE ___item1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveAt_m52674F68DEF606EE087935A700047C6620AA6320_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, int32_t ___index0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Remove_m2CB15F6E16DCC6B604EA75C76BD3F871444CEC72_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE ___item0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Reverse_m49E28EF8B84FB51101331978C42C5B880FC4B2AB_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Reverse_TisRenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE_m3709CEB1FB33EB083714D1508DABEDDF386C3A78_gshared (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m55FED7081F7709CED68D3FADA0AA87FB723B8F60_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, int32_t ___index0, int32_t ___count1, RuntimeObject* ___comparer2, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_TisRenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE_m19948B5288B62FAD71D8C6EDD3B19F6801FD1F28_gshared (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* ___array0, int32_t ___index1, int32_t ___length2, RuntimeObject* ___comparer3, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_Sort_m032EFA2DFE420C882B8672A45726329F5E2CDCA9_gshared (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* ___keys0, int32_t ___index1, int32_t ___length2, Comparison_1_tEF46E57E1EA1EAD3E013A3E7CBF83ADA63BD074A* ___comparer3, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2 (RuntimeObject* __this, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F (int32_t ___argument0, int32_t ___resource1, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC (int32_t ___argument0, const RuntimeMethod* method) ;
inline void List_1_AddEnumerable_mF944156800D1ABF28E1A6E0E68A529D33F8FF410 (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, RuntimeObject* ___enumerable0, const RuntimeMethod* method)
{
(( void (*) (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291*, RuntimeObject*, const RuntimeMethod*))List_1_AddEnumerable_mF944156800D1ABF28E1A6E0E68A529D33F8FF410_gshared)(__this, ___enumerable0, method);
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41 (RuntimeArray* ___sourceArray0, int32_t ___sourceIndex1, RuntimeArray* ___destinationArray2, int32_t ___destinationIndex3, int32_t ___length4, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRange_IndexException_mC7661B8C6DD827679C95FC6B6C08F8724174936D (const RuntimeMethod* method) ;
inline SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA List_1_get_Item_m546712C3F18A3D10E171C8485DE785E2FDE2A9DD (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA (*) (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291*, int32_t, const RuntimeMethod*))List_1_get_Item_m546712C3F18A3D10E171C8485DE785E2FDE2A9DD_gshared)(__this, ___index0, method);
}
inline void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisSortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA_m8E2F39121BFB80C4847516EF67E5A0DF9CAF056E (RuntimeObject* ___value0, int32_t ___argName1, const RuntimeMethod* method)
{
(( void (*) (RuntimeObject*, int32_t, const RuntimeMethod*))ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisSortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA_m8E2F39121BFB80C4847516EF67E5A0DF9CAF056E_gshared)(___value0, ___argName1, method);
}
inline void List_1_set_Item_m696C57EAEC38B6416DD43897543A10EAD7742B4E (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, int32_t ___index0, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA ___value1, const RuntimeMethod* method)
{
(( void (*) (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291*, int32_t, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA, const RuntimeMethod*))List_1_set_Item_m696C57EAEC38B6416DD43897543A10EAD7742B4E_gshared)(__this, ___index0, ___value1, method);
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57 (RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ___handle0, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowWrongValueTypeArgumentException_mC1A6BBE43C360583C1E2C463D5B0AADF1E3E1910 (RuntimeObject* ___value0, Type_t* ___targetType1, const RuntimeMethod* method) ;
inline void List_1_AddWithResize_m11DE4AC99EEC52EC53735CB3AAAA2163F0B3C341 (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291*, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA, const RuntimeMethod*))List_1_AddWithResize_m11DE4AC99EEC52EC53735CB3AAAA2163F0B3C341_gshared)(__this, ___item0, method);
}
inline void List_1_EnsureCapacity_mCA1B6D886E31C8FDED39DDE12080B39C08E9B22B (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, int32_t ___min0, const RuntimeMethod* method)
{
(( void (*) (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291*, int32_t, const RuntimeMethod*))List_1_EnsureCapacity_mCA1B6D886E31C8FDED39DDE12080B39C08E9B22B_gshared)(__this, ___min0, method);
}
inline void List_1_Add_mAF5BD8A6F522C955DCE46B933758304D5018C7E6_inline (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291*, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA, const RuntimeMethod*))List_1_Add_mAF5BD8A6F522C955DCE46B933758304D5018C7E6_gshared_inline)(__this, ___item0, method);
}
inline int32_t List_1_get_Count_m8C08AC7F86F1E8919954A207A2FD41980A55B1F9_inline (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291*, const RuntimeMethod*))List_1_get_Count_m8C08AC7F86F1E8919954A207A2FD41980A55B1F9_gshared_inline)(__this, method);
}
inline void List_1_InsertRange_m1CE44A23B4C1D05A14C43D8A5EBC20F06C7BAEA6 (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, int32_t ___index0, RuntimeObject* ___collection1, const RuntimeMethod* method)
{
(( void (*) (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291*, int32_t, RuntimeObject*, const RuntimeMethod*))List_1_InsertRange_m1CE44A23B4C1D05A14C43D8A5EBC20F06C7BAEA6_gshared)(__this, ___index0, ___collection1, method);
}
inline void ReadOnlyCollection_1__ctor_m232124F0DE47676A643112CF25B36CE7BA820B52 (ReadOnlyCollection_1_tBB6981F9C608851A411CC0A04259A1DDAB869CFE* __this, RuntimeObject* ___list0, const RuntimeMethod* method)
{
(( void (*) (ReadOnlyCollection_1_tBB6981F9C608851A411CC0A04259A1DDAB869CFE*, RuntimeObject*, const RuntimeMethod*))ReadOnlyCollection_1__ctor_m232124F0DE47676A643112CF25B36CE7BA820B52_gshared)(__this, ___list0, method);
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F (const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA (int32_t ___resource0, const RuntimeMethod* method) ;
inline int32_t Array_BinarySearch_TisSortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA_mB7AB3C7651CB129ACB932CF5BD114A59E9BBCEF1 (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* ___array0, int32_t ___index1, int32_t ___length2, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
return (( int32_t (*) (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*, int32_t, int32_t, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA, RuntimeObject*, const RuntimeMethod*))Array_BinarySearch_TisSortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA_mB7AB3C7651CB129ACB932CF5BD114A59E9BBCEF1_gshared)(___array0, ___index1, ___length2, ___value3, ___comparer4, method);
}
inline int32_t List_1_BinarySearch_m5AF7900D68A7F7DDD4FE47F6876D2E24EE2D6539 (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, int32_t ___index0, int32_t ___count1, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA ___item2, RuntimeObject* ___comparer3, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291*, int32_t, int32_t, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA, RuntimeObject*, const RuntimeMethod*))List_1_BinarySearch_m5AF7900D68A7F7DDD4FE47F6876D2E24EE2D6539_gshared)(__this, ___index0, ___count1, ___item2, ___comparer3, method);
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB (RuntimeArray* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method) ;
inline int32_t List_1_IndexOf_mEF7AC07A501541D204CE1A2ACBB593D6291EEEFF (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA ___item0, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291*, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA, const RuntimeMethod*))List_1_IndexOf_mEF7AC07A501541D204CE1A2ACBB593D6291EEEFF_gshared)(__this, ___item0, method);
}
inline bool List_1_IsCompatibleObject_mEA6F32F1402D810F23DFA8684CA2003F36A19BBB (RuntimeObject* ___value0, const RuntimeMethod* method)
{
return (( bool (*) (RuntimeObject*, const RuntimeMethod*))List_1_IsCompatibleObject_mEA6F32F1402D810F23DFA8684CA2003F36A19BBB_gshared)(___value0, method);
}
inline bool List_1_Contains_m3EF097D9235FCD72E2B00A9EADAFB452B9B7327E (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA ___item0, const RuntimeMethod* method)
{
return (( bool (*) (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291*, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA, const RuntimeMethod*))List_1_Contains_m3EF097D9235FCD72E2B00A9EADAFB452B9B7327E_gshared)(__this, ___item0, method);
}
inline void List_1_CopyTo_mEF9368708EC5FBEA8C8624AE6AAD8DBCB8088D2D (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
(( void (*) (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291*, SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*, int32_t, const RuntimeMethod*))List_1_CopyTo_mEF9368708EC5FBEA8C8624AE6AAD8DBCB8088D2D_gshared)(__this, ___array0, ___arrayIndex1, method);
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Rank_m9383A200A2ECC89ECA44FE5F812ECFB874449C5F (RuntimeArray* __this, const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentException_Argument_InvalidArrayType_m469A6A5731A0F1E94D8B609ED9D001C3A1652A58 (const RuntimeMethod* method) ;
inline void List_1_set_Capacity_mF2FB6E4E52AB12CFA86240205E18C4554195F51F (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, int32_t ___value0, const RuntimeMethod* method)
{
(( void (*) (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291*, int32_t, const RuntimeMethod*))List_1_set_Capacity_mF2FB6E4E52AB12CFA86240205E18C4554195F51F_gshared)(__this, ___value0, method);
}
inline int32_t List_1_FindIndex_m1ABAFE47B37E6FD38FEB0B498FDB2E0E95FFC60D (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, Predicate_1_t51DBC74A7C1E0943D5EFA3FE74416B197013147C* ___match0, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291*, Predicate_1_t51DBC74A7C1E0943D5EFA3FE74416B197013147C*, const RuntimeMethod*))List_1_FindIndex_m1ABAFE47B37E6FD38FEB0B498FDB2E0E95FFC60D_gshared)(__this, ___match0, method);
}
inline bool Predicate_1_Invoke_mDDF814C07EAAA75700F17BC0D5628DC091DC8843_inline (Predicate_1_t51DBC74A7C1E0943D5EFA3FE74416B197013147C* __this, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA ___obj0, const RuntimeMethod* method)
{
return (( bool (*) (Predicate_1_t51DBC74A7C1E0943D5EFA3FE74416B197013147C*, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA, const RuntimeMethod*))Predicate_1_Invoke_mDDF814C07EAAA75700F17BC0D5628DC091DC8843_gshared_inline)(__this, ___obj0, method);
}
inline void List_1__ctor_mCABD1D2634A284F3C0C14AFE436D370D565FA719 (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291*, const RuntimeMethod*))List_1__ctor_mCABD1D2634A284F3C0C14AFE436D370D565FA719_gshared)(__this, method);
}
inline int32_t List_1_FindIndex_m3DB790ECBCC017F61C5A7FE9D6B204486D6E99F2 (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, int32_t ___startIndex0, int32_t ___count1, Predicate_1_t51DBC74A7C1E0943D5EFA3FE74416B197013147C* ___match2, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291*, int32_t, int32_t, Predicate_1_t51DBC74A7C1E0943D5EFA3FE74416B197013147C*, const RuntimeMethod*))List_1_FindIndex_m3DB790ECBCC017F61C5A7FE9D6B204486D6E99F2_gshared)(__this, ___startIndex0, ___count1, ___match2, method);
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowStartIndexArgumentOutOfRange_ArgumentOutOfRange_Index_m94BADCC6D7EBBD12BE8323775FFB43AF01499B0F (const RuntimeMethod* method) ;
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowCountArgumentOutOfRange_ArgumentOutOfRange_Count_m6C4A7F645BDD8EB62B50CB76E84416D94620DCC7 (const RuntimeMethod* method) ;
inline void Action_1_Invoke_m72F1143242F61E8C2FF0978434DF277335511C40_inline (Action_1_t72E548755F4BB43C31EDE2E7DAC9E4AEA03432B0* __this, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA ___obj0, const RuntimeMethod* method)
{
(( void (*) (Action_1_t72E548755F4BB43C31EDE2E7DAC9E4AEA03432B0*, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA, const RuntimeMethod*))Action_1_Invoke_m72F1143242F61E8C2FF0978434DF277335511C40_gshared_inline)(__this, ___obj0, method);
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowInvalidOperationException_InvalidOperation_EnumFailedVersion_m5331E2E0EC0E36843D53F439C2529530595ACE9F (const RuntimeMethod* method) ;
inline void Enumerator__ctor_m28AD71B8BB6284A2906232316B293DB7D0FFB27D (Enumerator_t8534CC1E09AC7402C395E1215F04227DA8E4349F* __this, List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* ___list0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t8534CC1E09AC7402C395E1215F04227DA8E4349F*, List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291*, const RuntimeMethod*))Enumerator__ctor_m28AD71B8BB6284A2906232316B293DB7D0FFB27D_gshared)(__this, ___list0, method);
}
inline void List_1__ctor_mF1C69BC5F8445BC7A751D66D0E1D983641C713F4 (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, int32_t ___capacity0, const RuntimeMethod* method)
{
(( void (*) (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291*, int32_t, const RuntimeMethod*))List_1__ctor_mF1C69BC5F8445BC7A751D66D0E1D983641C713F4_gshared)(__this, ___capacity0, method);
}
inline int32_t Array_IndexOf_TisSortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA_m18BD516D6FA4BF174C04E5DA27C7AAE4495A4753 (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* ___array0, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
return (( int32_t (*) (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA, int32_t, int32_t, const RuntimeMethod*))Array_IndexOf_TisSortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA_m18BD516D6FA4BF174C04E5DA27C7AAE4495A4753_gshared)(___array0, ___value1, ___startIndex2, ___count3, method);
}
inline void List_1_Insert_mA1A92AE011B10506AD6241DCADC21F693CCBCBA7 (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, int32_t ___index0, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA ___item1, const RuntimeMethod* method)
{
(( void (*) (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291*, int32_t, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA, const RuntimeMethod*))List_1_Insert_mA1A92AE011B10506AD6241DCADC21F693CCBCBA7_gshared)(__this, ___index0, ___item1, method);
}
inline void List_1_RemoveAt_mD4F5B121932BBAB625D3A851C906B42198E2CA78 (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, int32_t ___index0, const RuntimeMethod* method)
{
(( void (*) (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291*, int32_t, const RuntimeMethod*))List_1_RemoveAt_mD4F5B121932BBAB625D3A851C906B42198E2CA78_gshared)(__this, ___index0, method);
}
inline bool List_1_Remove_mA10D7AAB5E069915C600E5D4257E226453CFF47D (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA ___item0, const RuntimeMethod* method)
{
return (( bool (*) (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291*, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA, const RuntimeMethod*))List_1_Remove_mA10D7AAB5E069915C600E5D4257E226453CFF47D_gshared)(__this, ___item0, method);
}
inline void List_1_Reverse_m02C052EAF56988547DE9DFC7514AEF315608767B (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method)
{
(( void (*) (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291*, int32_t, int32_t, const RuntimeMethod*))List_1_Reverse_m02C052EAF56988547DE9DFC7514AEF315608767B_gshared)(__this, ___index0, ___count1, method);
}
inline void Array_Reverse_TisSortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA_m349C7F78DEB039498EBE6308CA8990F50C767514 (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method)
{
(( void (*) (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*, int32_t, int32_t, const RuntimeMethod*))Array_Reverse_TisSortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA_m349C7F78DEB039498EBE6308CA8990F50C767514_gshared)(___array0, ___index1, ___length2, method);
}
inline void List_1_Sort_mEF379A9F9502F7EB2FC978F1CFB002EF9139EDF3 (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, int32_t ___index0, int32_t ___count1, RuntimeObject* ___comparer2, const RuntimeMethod* method)
{
(( void (*) (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291*, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))List_1_Sort_mEF379A9F9502F7EB2FC978F1CFB002EF9139EDF3_gshared)(__this, ___index0, ___count1, ___comparer2, method);
}
inline void Array_Sort_TisSortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA_m7D9D485AEBA5700BA17FF2812E155D5A8997FA02 (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* ___array0, int32_t ___index1, int32_t ___length2, RuntimeObject* ___comparer3, const RuntimeMethod* method)
{
(( void (*) (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))Array_Sort_TisSortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA_m7D9D485AEBA5700BA17FF2812E155D5A8997FA02_gshared)(___array0, ___index1, ___length2, ___comparer3, method);
}
inline void ArraySortHelper_1_Sort_mE4B6553DD61913FAEC9A9AE59D6093A1CE2809A3 (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* ___keys0, int32_t ___index1, int32_t ___length2, Comparison_1_tBA8E62E1D99117B29F57BB6477E7B2CEDD1B5158* ___comparer3, const RuntimeMethod* method)
{
(( void (*) (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*, int32_t, int32_t, Comparison_1_tBA8E62E1D99117B29F57BB6477E7B2CEDD1B5158*, const RuntimeMethod*))ArraySortHelper_1_Sort_mE4B6553DD61913FAEC9A9AE59D6093A1CE2809A3_gshared)(___keys0, ___index1, ___length2, ___comparer3, method);
}
inline void List_1_AddEnumerable_m4D26D9CABE5C12FC4566282350265B1C7D07DF41 (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, RuntimeObject* ___enumerable0, const RuntimeMethod* method)
{
(( void (*) (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330*, RuntimeObject*, const RuntimeMethod*))List_1_AddEnumerable_m4D26D9CABE5C12FC4566282350265B1C7D07DF41_gshared)(__this, ___enumerable0, method);
}
inline ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 List_1_get_Item_m06C8179BEE795A8BB801481B512E96F6FE98988C (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 (*) (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330*, int32_t, const RuntimeMethod*))List_1_get_Item_m06C8179BEE795A8BB801481B512E96F6FE98988C_gshared)(__this, ___index0, method);
}
inline void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9_m8CAEDB26B2273DBF6BF9A71CFD779D1D25B1E254 (RuntimeObject* ___value0, int32_t ___argName1, const RuntimeMethod* method)
{
(( void (*) (RuntimeObject*, int32_t, const RuntimeMethod*))ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9_m8CAEDB26B2273DBF6BF9A71CFD779D1D25B1E254_gshared)(___value0, ___argName1, method);
}
inline void List_1_set_Item_m2C96392ABE330B10CD609E1CEDCF0ACE8EE4E1CC (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, int32_t ___index0, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 ___value1, const RuntimeMethod* method)
{
(( void (*) (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330*, int32_t, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9, const RuntimeMethod*))List_1_set_Item_m2C96392ABE330B10CD609E1CEDCF0ACE8EE4E1CC_gshared)(__this, ___index0, ___value1, method);
}
inline void List_1_AddWithResize_mA1A4564FC0DADFAEC0FFC004CCB8CC9D80FD2023 (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330*, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9, const RuntimeMethod*))List_1_AddWithResize_mA1A4564FC0DADFAEC0FFC004CCB8CC9D80FD2023_gshared)(__this, ___item0, method);
}
inline void List_1_EnsureCapacity_m846619F1154B81C4FC6194E873B43AB2A9BA4C3F (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, int32_t ___min0, const RuntimeMethod* method)
{
(( void (*) (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330*, int32_t, const RuntimeMethod*))List_1_EnsureCapacity_m846619F1154B81C4FC6194E873B43AB2A9BA4C3F_gshared)(__this, ___min0, method);
}
inline void List_1_Add_m2B80351888D9BCB1461C8808A0B2278006B46AC5_inline (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330*, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9, const RuntimeMethod*))List_1_Add_m2B80351888D9BCB1461C8808A0B2278006B46AC5_gshared_inline)(__this, ___item0, method);
}
inline int32_t List_1_get_Count_m09B76BBFD57FC2975CE5920E87397B946A6E88D7_inline (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330*, const RuntimeMethod*))List_1_get_Count_m09B76BBFD57FC2975CE5920E87397B946A6E88D7_gshared_inline)(__this, method);
}
inline void List_1_InsertRange_mCE762F4482E0F0BDAEDC06E12E9E123D20B05B26 (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, int32_t ___index0, RuntimeObject* ___collection1, const RuntimeMethod* method)
{
(( void (*) (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330*, int32_t, RuntimeObject*, const RuntimeMethod*))List_1_InsertRange_mCE762F4482E0F0BDAEDC06E12E9E123D20B05B26_gshared)(__this, ___index0, ___collection1, method);
}
inline void ReadOnlyCollection_1__ctor_mB5B22FC8521666C46A4213013B9CF2BDF96C6854 (ReadOnlyCollection_1_tCC30DCDEC2FF09BE2BADAEC7995F69C958763938* __this, RuntimeObject* ___list0, const RuntimeMethod* method)
{
(( void (*) (ReadOnlyCollection_1_tCC30DCDEC2FF09BE2BADAEC7995F69C958763938*, RuntimeObject*, const RuntimeMethod*))ReadOnlyCollection_1__ctor_mB5B22FC8521666C46A4213013B9CF2BDF96C6854_gshared)(__this, ___list0, method);
}
inline int32_t Array_BinarySearch_TisReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9_mC464533EF1296FB5E4B2E81CF274383B8E77052B (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* ___array0, int32_t ___index1, int32_t ___length2, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
return (( int32_t (*) (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*, int32_t, int32_t, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9, RuntimeObject*, const RuntimeMethod*))Array_BinarySearch_TisReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9_mC464533EF1296FB5E4B2E81CF274383B8E77052B_gshared)(___array0, ___index1, ___length2, ___value3, ___comparer4, method);
}
inline int32_t List_1_BinarySearch_m9000AE7EDB1E9387C2F6B38B0706ABC9986B7CBD (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, int32_t ___index0, int32_t ___count1, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 ___item2, RuntimeObject* ___comparer3, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330*, int32_t, int32_t, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9, RuntimeObject*, const RuntimeMethod*))List_1_BinarySearch_m9000AE7EDB1E9387C2F6B38B0706ABC9986B7CBD_gshared)(__this, ___index0, ___count1, ___item2, ___comparer3, method);
}
inline int32_t List_1_IndexOf_m90289A4558EBA3D1F5510843371FBC39B0FB7367 (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 ___item0, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330*, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9, const RuntimeMethod*))List_1_IndexOf_m90289A4558EBA3D1F5510843371FBC39B0FB7367_gshared)(__this, ___item0, method);
}
inline bool List_1_IsCompatibleObject_mD259170D800B6BA5F5647D16FA60F2F7782C96DE (RuntimeObject* ___value0, const RuntimeMethod* method)
{
return (( bool (*) (RuntimeObject*, const RuntimeMethod*))List_1_IsCompatibleObject_mD259170D800B6BA5F5647D16FA60F2F7782C96DE_gshared)(___value0, method);
}
inline bool List_1_Contains_m394F6BD939B7E515F8537E965E95D78F89A8FA07 (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 ___item0, const RuntimeMethod* method)
{
return (( bool (*) (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330*, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9, const RuntimeMethod*))List_1_Contains_m394F6BD939B7E515F8537E965E95D78F89A8FA07_gshared)(__this, ___item0, method);
}
inline void List_1_CopyTo_m1FA03B0495AB9DA2D64B5EF3839051B7DFD0B675 (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
(( void (*) (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330*, ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*, int32_t, const RuntimeMethod*))List_1_CopyTo_m1FA03B0495AB9DA2D64B5EF3839051B7DFD0B675_gshared)(__this, ___array0, ___arrayIndex1, method);
}
inline void List_1_set_Capacity_mEC645CC150E96311EF5AF7EC8488EFE8CE9FE6E9 (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, int32_t ___value0, const RuntimeMethod* method)
{
(( void (*) (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330*, int32_t, const RuntimeMethod*))List_1_set_Capacity_mEC645CC150E96311EF5AF7EC8488EFE8CE9FE6E9_gshared)(__this, ___value0, method);
}
inline int32_t List_1_FindIndex_m30EB30B6A4FA111C8F2B053683A9C621CDB5E4D3 (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, Predicate_1_t4000E2F6D93B445A9E4479DEA0D093186BF3B907* ___match0, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330*, Predicate_1_t4000E2F6D93B445A9E4479DEA0D093186BF3B907*, const RuntimeMethod*))List_1_FindIndex_m30EB30B6A4FA111C8F2B053683A9C621CDB5E4D3_gshared)(__this, ___match0, method);
}
inline bool Predicate_1_Invoke_m91E2DD4011E6B92F0BF4D54948CA5F53D1DE0E7B_inline (Predicate_1_t4000E2F6D93B445A9E4479DEA0D093186BF3B907* __this, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 ___obj0, const RuntimeMethod* method)
{
return (( bool (*) (Predicate_1_t4000E2F6D93B445A9E4479DEA0D093186BF3B907*, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9, const RuntimeMethod*))Predicate_1_Invoke_m91E2DD4011E6B92F0BF4D54948CA5F53D1DE0E7B_gshared_inline)(__this, ___obj0, method);
}
inline void List_1__ctor_m136F4770965B504261CA1110319AF965DE6CF736 (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330*, const RuntimeMethod*))List_1__ctor_m136F4770965B504261CA1110319AF965DE6CF736_gshared)(__this, method);
}
inline int32_t List_1_FindIndex_m168C3A0BF0167510F7D01B995FE853A2256DA3F0 (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, int32_t ___startIndex0, int32_t ___count1, Predicate_1_t4000E2F6D93B445A9E4479DEA0D093186BF3B907* ___match2, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330*, int32_t, int32_t, Predicate_1_t4000E2F6D93B445A9E4479DEA0D093186BF3B907*, const RuntimeMethod*))List_1_FindIndex_m168C3A0BF0167510F7D01B995FE853A2256DA3F0_gshared)(__this, ___startIndex0, ___count1, ___match2, method);
}
inline void Action_1_Invoke_m785F59026951A944FC1FBFFA5FC45A41B5A46A43_inline (Action_1_tCEBA10A27E04AF1981907713C1030E69EC9825E6* __this, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 ___obj0, const RuntimeMethod* method)
{
(( void (*) (Action_1_tCEBA10A27E04AF1981907713C1030E69EC9825E6*, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9, const RuntimeMethod*))Action_1_Invoke_m785F59026951A944FC1FBFFA5FC45A41B5A46A43_gshared_inline)(__this, ___obj0, method);
}
inline void Enumerator__ctor_mD69F6398F657E620141A54CF5F8F04EEA18D6301 (Enumerator_t3572DC9B920E9C79F6C74EBE64A234B48911DCDA* __this, List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* ___list0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t3572DC9B920E9C79F6C74EBE64A234B48911DCDA*, List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330*, const RuntimeMethod*))Enumerator__ctor_mD69F6398F657E620141A54CF5F8F04EEA18D6301_gshared)(__this, ___list0, method);
}
inline void List_1__ctor_mD88117600E70EEBD6C7893010B82AD4A0F9B73B4 (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, int32_t ___capacity0, const RuntimeMethod* method)
{
(( void (*) (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330*, int32_t, const RuntimeMethod*))List_1__ctor_mD88117600E70EEBD6C7893010B82AD4A0F9B73B4_gshared)(__this, ___capacity0, method);
}
inline int32_t Array_IndexOf_TisReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9_m141DE04C9DC8A5C3ACBC182888A3F685A3E2F8F0 (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* ___array0, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
return (( int32_t (*) (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9, int32_t, int32_t, const RuntimeMethod*))Array_IndexOf_TisReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9_m141DE04C9DC8A5C3ACBC182888A3F685A3E2F8F0_gshared)(___array0, ___value1, ___startIndex2, ___count3, method);
}
inline void List_1_Insert_mEBFAF4D02C7828002704E7BECE21B2238257DCFA (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, int32_t ___index0, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 ___item1, const RuntimeMethod* method)
{
(( void (*) (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330*, int32_t, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9, const RuntimeMethod*))List_1_Insert_mEBFAF4D02C7828002704E7BECE21B2238257DCFA_gshared)(__this, ___index0, ___item1, method);
}
inline void List_1_RemoveAt_m7D5A417923BDAE2ABF10528FE6CFD76F2A2E19F8 (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, int32_t ___index0, const RuntimeMethod* method)
{
(( void (*) (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330*, int32_t, const RuntimeMethod*))List_1_RemoveAt_m7D5A417923BDAE2ABF10528FE6CFD76F2A2E19F8_gshared)(__this, ___index0, method);
}
inline bool List_1_Remove_m521BBB51265FA4ED213DB11A0C91647A5B03D112 (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 ___item0, const RuntimeMethod* method)
{
return (( bool (*) (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330*, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9, const RuntimeMethod*))List_1_Remove_m521BBB51265FA4ED213DB11A0C91647A5B03D112_gshared)(__this, ___item0, method);
}
inline void List_1_Reverse_mD7105DA6EF608144AC780D3A15F8B86C8AFA9436 (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method)
{
(( void (*) (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330*, int32_t, int32_t, const RuntimeMethod*))List_1_Reverse_mD7105DA6EF608144AC780D3A15F8B86C8AFA9436_gshared)(__this, ___index0, ___count1, method);
}
inline void Array_Reverse_TisReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9_m9575864003B0044B365F9BD1BB2FBCACE5C01CD1 (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method)
{
(( void (*) (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*, int32_t, int32_t, const RuntimeMethod*))Array_Reverse_TisReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9_m9575864003B0044B365F9BD1BB2FBCACE5C01CD1_gshared)(___array0, ___index1, ___length2, method);
}
inline void List_1_Sort_m1B2F635B73BE96D949CD2B26567774F1A82E4A81 (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, int32_t ___index0, int32_t ___count1, RuntimeObject* ___comparer2, const RuntimeMethod* method)
{
(( void (*) (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330*, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))List_1_Sort_m1B2F635B73BE96D949CD2B26567774F1A82E4A81_gshared)(__this, ___index0, ___count1, ___comparer2, method);
}
inline void Array_Sort_TisReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9_m80C0BC14E59F371D713E1636696E3230AFD4A341 (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* ___array0, int32_t ___index1, int32_t ___length2, RuntimeObject* ___comparer3, const RuntimeMethod* method)
{
(( void (*) (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))Array_Sort_TisReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9_m80C0BC14E59F371D713E1636696E3230AFD4A341_gshared)(___array0, ___index1, ___length2, ___comparer3, method);
}
inline void ArraySortHelper_1_Sort_mF169981CF6414984AFB235EA430235E94726F756 (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* ___keys0, int32_t ___index1, int32_t ___length2, Comparison_1_t13E424814E5864FCA6984ADDC54691CD3EDF54D5* ___comparer3, const RuntimeMethod* method)
{
(( void (*) (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*, int32_t, int32_t, Comparison_1_t13E424814E5864FCA6984ADDC54691CD3EDF54D5*, const RuntimeMethod*))ArraySortHelper_1_Sort_mF169981CF6414984AFB235EA430235E94726F756_gshared)(___keys0, ___index1, ___length2, ___comparer3, method);
}
inline void List_1_AddEnumerable_m7D838F63101A0FAA329FACD80059C7A08166BFA2 (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, RuntimeObject* ___enumerable0, const RuntimeMethod* method)
{
(( void (*) (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA*, RuntimeObject*, const RuntimeMethod*))List_1_AddEnumerable_m7D838F63101A0FAA329FACD80059C7A08166BFA2_gshared)(__this, ___enumerable0, method);
}
inline BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B List_1_get_Item_m330C3E8039DF34D5342C6D638F93AD4D53BC8CBF (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B (*) (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA*, int32_t, const RuntimeMethod*))List_1_get_Item_m330C3E8039DF34D5342C6D638F93AD4D53BC8CBF_gshared)(__this, ___index0, method);
}
inline void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisBrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B_mB7684C5D60A7664FA6ECF70A68C12EA72C7307E6 (RuntimeObject* ___value0, int32_t ___argName1, const RuntimeMethod* method)
{
(( void (*) (RuntimeObject*, int32_t, const RuntimeMethod*))ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisBrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B_mB7684C5D60A7664FA6ECF70A68C12EA72C7307E6_gshared)(___value0, ___argName1, method);
}
inline void List_1_set_Item_m67626EC6AAC470B2D00B53284595D567D0895181 (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, int32_t ___index0, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B ___value1, const RuntimeMethod* method)
{
(( void (*) (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA*, int32_t, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B, const RuntimeMethod*))List_1_set_Item_m67626EC6AAC470B2D00B53284595D567D0895181_gshared)(__this, ___index0, ___value1, method);
}
inline void List_1_AddWithResize_m0F60A70AFEE910197AA0D83E7ADE883278413E49 (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA*, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B, const RuntimeMethod*))List_1_AddWithResize_m0F60A70AFEE910197AA0D83E7ADE883278413E49_gshared)(__this, ___item0, method);
}
inline void List_1_EnsureCapacity_m3BB9E15F845FA3E40B60AE512E823C408DDB115B (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, int32_t ___min0, const RuntimeMethod* method)
{
(( void (*) (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA*, int32_t, const RuntimeMethod*))List_1_EnsureCapacity_m3BB9E15F845FA3E40B60AE512E823C408DDB115B_gshared)(__this, ___min0, method);
}
inline void List_1_Add_mBD25BC6E762DE994E1326749F2C4A552BC2CC79F_inline (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA*, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B, const RuntimeMethod*))List_1_Add_mBD25BC6E762DE994E1326749F2C4A552BC2CC79F_gshared_inline)(__this, ___item0, method);
}
inline int32_t List_1_get_Count_m6C34C2E4F4CAE3C6FFE13DC11181ADD0D19C0253_inline (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA*, const RuntimeMethod*))List_1_get_Count_m6C34C2E4F4CAE3C6FFE13DC11181ADD0D19C0253_gshared_inline)(__this, method);
}
inline void List_1_InsertRange_mFC7B3BF6B76A6830295AE017A58FA96113D09AF4 (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, int32_t ___index0, RuntimeObject* ___collection1, const RuntimeMethod* method)
{
(( void (*) (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA*, int32_t, RuntimeObject*, const RuntimeMethod*))List_1_InsertRange_mFC7B3BF6B76A6830295AE017A58FA96113D09AF4_gshared)(__this, ___index0, ___collection1, method);
}
inline void ReadOnlyCollection_1__ctor_m9D50F3C6C18B66D8CB539452DE98EF74404F48DE (ReadOnlyCollection_1_t60075704E4AC0EE9C6A477EFA7FDB046ED3A199D* __this, RuntimeObject* ___list0, const RuntimeMethod* method)
{
(( void (*) (ReadOnlyCollection_1_t60075704E4AC0EE9C6A477EFA7FDB046ED3A199D*, RuntimeObject*, const RuntimeMethod*))ReadOnlyCollection_1__ctor_m9D50F3C6C18B66D8CB539452DE98EF74404F48DE_gshared)(__this, ___list0, method);
}
inline int32_t Array_BinarySearch_TisBrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B_mE00F338DF4166B0E4C898B957806B60A9F4ED333 (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* ___array0, int32_t ___index1, int32_t ___length2, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
return (( int32_t (*) (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*, int32_t, int32_t, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B, RuntimeObject*, const RuntimeMethod*))Array_BinarySearch_TisBrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B_mE00F338DF4166B0E4C898B957806B60A9F4ED333_gshared)(___array0, ___index1, ___length2, ___value3, ___comparer4, method);
}
inline int32_t List_1_BinarySearch_m8308C4A568BD75E355203707AC13632B796AF435 (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, int32_t ___index0, int32_t ___count1, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B ___item2, RuntimeObject* ___comparer3, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA*, int32_t, int32_t, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B, RuntimeObject*, const RuntimeMethod*))List_1_BinarySearch_m8308C4A568BD75E355203707AC13632B796AF435_gshared)(__this, ___index0, ___count1, ___item2, ___comparer3, method);
}
inline int32_t List_1_IndexOf_m7D1D48748EA8801BEB6C3D4BFEAC1A7DA9119717 (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B ___item0, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA*, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B, const RuntimeMethod*))List_1_IndexOf_m7D1D48748EA8801BEB6C3D4BFEAC1A7DA9119717_gshared)(__this, ___item0, method);
}
inline bool List_1_IsCompatibleObject_mE4C75F023067E208BBF2826CF811EC67B3A1D648 (RuntimeObject* ___value0, const RuntimeMethod* method)
{
return (( bool (*) (RuntimeObject*, const RuntimeMethod*))List_1_IsCompatibleObject_mE4C75F023067E208BBF2826CF811EC67B3A1D648_gshared)(___value0, method);
}
inline bool List_1_Contains_m6D2106CECD1C22A869D6CDB504DCA9157A3F83DC (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B ___item0, const RuntimeMethod* method)
{
return (( bool (*) (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA*, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B, const RuntimeMethod*))List_1_Contains_m6D2106CECD1C22A869D6CDB504DCA9157A3F83DC_gshared)(__this, ___item0, method);
}
inline void List_1_CopyTo_m7621EDF705E43D719083ABC12B6C0133A8F1B61A (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
(( void (*) (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA*, BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*, int32_t, const RuntimeMethod*))List_1_CopyTo_m7621EDF705E43D719083ABC12B6C0133A8F1B61A_gshared)(__this, ___array0, ___arrayIndex1, method);
}
inline void List_1_set_Capacity_mF4511A846BF63FD6759EDE3236ACE3156B6F7122 (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, int32_t ___value0, const RuntimeMethod* method)
{
(( void (*) (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA*, int32_t, const RuntimeMethod*))List_1_set_Capacity_mF4511A846BF63FD6759EDE3236ACE3156B6F7122_gshared)(__this, ___value0, method);
}
inline int32_t List_1_FindIndex_mB8B81289498583C92FE6FC2EF95120E2561C495D (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, Predicate_1_t9939AC86819E2498AF558953EFF6F269E25648A6* ___match0, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA*, Predicate_1_t9939AC86819E2498AF558953EFF6F269E25648A6*, const RuntimeMethod*))List_1_FindIndex_mB8B81289498583C92FE6FC2EF95120E2561C495D_gshared)(__this, ___match0, method);
}
inline bool Predicate_1_Invoke_m686502E8E7E7D0BA4C6D18B5F9FEBE3CFC179470_inline (Predicate_1_t9939AC86819E2498AF558953EFF6F269E25648A6* __this, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B ___obj0, const RuntimeMethod* method)
{
return (( bool (*) (Predicate_1_t9939AC86819E2498AF558953EFF6F269E25648A6*, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B, const RuntimeMethod*))Predicate_1_Invoke_m686502E8E7E7D0BA4C6D18B5F9FEBE3CFC179470_gshared_inline)(__this, ___obj0, method);
}
inline void List_1__ctor_m0D06C9FECB7283237183AF8A1EE82A6363365B46 (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA*, const RuntimeMethod*))List_1__ctor_m0D06C9FECB7283237183AF8A1EE82A6363365B46_gshared)(__this, method);
}
inline int32_t List_1_FindIndex_mB0B71913AF102BBE2D5718E3708E84AA2178DC59 (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, int32_t ___startIndex0, int32_t ___count1, Predicate_1_t9939AC86819E2498AF558953EFF6F269E25648A6* ___match2, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA*, int32_t, int32_t, Predicate_1_t9939AC86819E2498AF558953EFF6F269E25648A6*, const RuntimeMethod*))List_1_FindIndex_mB0B71913AF102BBE2D5718E3708E84AA2178DC59_gshared)(__this, ___startIndex0, ___count1, ___match2, method);
}
inline void Action_1_Invoke_m1CABBE687A5B8796B2623B610500C202E7582ADC_inline (Action_1_tD17A4D72165DC3DB30991AE957053E20BE4178C8* __this, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B ___obj0, const RuntimeMethod* method)
{
(( void (*) (Action_1_tD17A4D72165DC3DB30991AE957053E20BE4178C8*, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B, const RuntimeMethod*))Action_1_Invoke_m1CABBE687A5B8796B2623B610500C202E7582ADC_gshared_inline)(__this, ___obj0, method);
}
inline void Enumerator__ctor_m112951DDF78AFF37B87FA815DFE216738F93EBF7 (Enumerator_tB36F2E08EAEB0D3BA01C0FAFD87C7DCAF20D54CC* __this, List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* ___list0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tB36F2E08EAEB0D3BA01C0FAFD87C7DCAF20D54CC*, List_1_t179992B095C528117EEF4782A1F45568BD2D51EA*, const RuntimeMethod*))Enumerator__ctor_m112951DDF78AFF37B87FA815DFE216738F93EBF7_gshared)(__this, ___list0, method);
}
inline void List_1__ctor_m3F0FF6E493BF0BC4CDADBFFC8FD20E4DF7638CD3 (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, int32_t ___capacity0, const RuntimeMethod* method)
{
(( void (*) (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA*, int32_t, const RuntimeMethod*))List_1__ctor_m3F0FF6E493BF0BC4CDADBFFC8FD20E4DF7638CD3_gshared)(__this, ___capacity0, method);
}
inline int32_t Array_IndexOf_TisBrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B_mECF77C930EB6670332947CB6BE27E328607CFCA1 (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* ___array0, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
return (( int32_t (*) (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B, int32_t, int32_t, const RuntimeMethod*))Array_IndexOf_TisBrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B_mECF77C930EB6670332947CB6BE27E328607CFCA1_gshared)(___array0, ___value1, ___startIndex2, ___count3, method);
}
inline void List_1_Insert_mEA0390354E58C8EC74A0F293F8A3F5618CDBE98A (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, int32_t ___index0, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B ___item1, const RuntimeMethod* method)
{
(( void (*) (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA*, int32_t, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B, const RuntimeMethod*))List_1_Insert_mEA0390354E58C8EC74A0F293F8A3F5618CDBE98A_gshared)(__this, ___index0, ___item1, method);
}
inline void List_1_RemoveAt_mDA2E3E09B92E6489005D57AA458DBCED30D215CD (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, int32_t ___index0, const RuntimeMethod* method)
{
(( void (*) (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA*, int32_t, const RuntimeMethod*))List_1_RemoveAt_mDA2E3E09B92E6489005D57AA458DBCED30D215CD_gshared)(__this, ___index0, method);
}
inline bool List_1_Remove_m04631DA6616D397199A8C512E2247E252F859E55 (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B ___item0, const RuntimeMethod* method)
{
return (( bool (*) (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA*, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B, const RuntimeMethod*))List_1_Remove_m04631DA6616D397199A8C512E2247E252F859E55_gshared)(__this, ___item0, method);
}
inline void List_1_Reverse_m9D843F8745ED0314F73F1B36F6B82FEEBBCD8C48 (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method)
{
(( void (*) (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA*, int32_t, int32_t, const RuntimeMethod*))List_1_Reverse_m9D843F8745ED0314F73F1B36F6B82FEEBBCD8C48_gshared)(__this, ___index0, ___count1, method);
}
inline void Array_Reverse_TisBrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B_mB6CCE99DB05B2EA67B8B27DF092D59874017C834 (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method)
{
(( void (*) (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*, int32_t, int32_t, const RuntimeMethod*))Array_Reverse_TisBrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B_mB6CCE99DB05B2EA67B8B27DF092D59874017C834_gshared)(___array0, ___index1, ___length2, method);
}
inline void List_1_Sort_mF694E3B15873025CEC3D33F74F0C6BBD28574292 (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, int32_t ___index0, int32_t ___count1, RuntimeObject* ___comparer2, const RuntimeMethod* method)
{
(( void (*) (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA*, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))List_1_Sort_mF694E3B15873025CEC3D33F74F0C6BBD28574292_gshared)(__this, ___index0, ___count1, ___comparer2, method);
}
inline void Array_Sort_TisBrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B_m05CCD2AF54A2D4EA995020F1AEA55DED55D0749A (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* ___array0, int32_t ___index1, int32_t ___length2, RuntimeObject* ___comparer3, const RuntimeMethod* method)
{
(( void (*) (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))Array_Sort_TisBrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B_m05CCD2AF54A2D4EA995020F1AEA55DED55D0749A_gshared)(___array0, ___index1, ___length2, ___comparer3, method);
}
inline void ArraySortHelper_1_Sort_mD71AF68A6A40286226609C455F65D1062B3C95C6 (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* ___keys0, int32_t ___index1, int32_t ___length2, Comparison_1_tB37367478ABE2FE5FD2203EA6868D24C205BA55F* ___comparer3, const RuntimeMethod* method)
{
(( void (*) (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*, int32_t, int32_t, Comparison_1_tB37367478ABE2FE5FD2203EA6868D24C205BA55F*, const RuntimeMethod*))ArraySortHelper_1_Sort_mD71AF68A6A40286226609C455F65D1062B3C95C6_gshared)(___keys0, ___index1, ___length2, ___comparer3, method);
}
inline void List_1_AddEnumerable_mB305C2917891211C606013DCEA970966D0B1026C (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, RuntimeObject* ___enumerable0, const RuntimeMethod* method)
{
(( void (*) (List_1_tD47E289A20580491873111C2FC85A5456012FCAC*, RuntimeObject*, const RuntimeMethod*))List_1_AddEnumerable_mB305C2917891211C606013DCEA970966D0B1026C_gshared)(__this, ___enumerable0, method);
}
inline SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 List_1_get_Item_mBB503A92064BE6675F71901A29545531F6D81C9C (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 (*) (List_1_tD47E289A20580491873111C2FC85A5456012FCAC*, int32_t, const RuntimeMethod*))List_1_get_Item_mBB503A92064BE6675F71901A29545531F6D81C9C_gshared)(__this, ___index0, method);
}
inline void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisSerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92_m20C9E63C73062F14CE6D23FF2EF366CEFC522DDD (RuntimeObject* ___value0, int32_t ___argName1, const RuntimeMethod* method)
{
(( void (*) (RuntimeObject*, int32_t, const RuntimeMethod*))ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisSerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92_m20C9E63C73062F14CE6D23FF2EF366CEFC522DDD_gshared)(___value0, ___argName1, method);
}
inline void List_1_set_Item_m76B13A2CCCC4D89B3C84A6FF38F3AB73D640DE1C (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, int32_t ___index0, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 ___value1, const RuntimeMethod* method)
{
(( void (*) (List_1_tD47E289A20580491873111C2FC85A5456012FCAC*, int32_t, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92, const RuntimeMethod*))List_1_set_Item_m76B13A2CCCC4D89B3C84A6FF38F3AB73D640DE1C_gshared)(__this, ___index0, ___value1, method);
}
inline void List_1_AddWithResize_m199942A4F45DF9A26AE2BF3F5F83EB6872EF1296 (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_tD47E289A20580491873111C2FC85A5456012FCAC*, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92, const RuntimeMethod*))List_1_AddWithResize_m199942A4F45DF9A26AE2BF3F5F83EB6872EF1296_gshared)(__this, ___item0, method);
}
inline void List_1_EnsureCapacity_m3B9DA3D8520F069599E1B6F91322ADDE69A24DD8 (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, int32_t ___min0, const RuntimeMethod* method)
{
(( void (*) (List_1_tD47E289A20580491873111C2FC85A5456012FCAC*, int32_t, const RuntimeMethod*))List_1_EnsureCapacity_m3B9DA3D8520F069599E1B6F91322ADDE69A24DD8_gshared)(__this, ___min0, method);
}
inline void List_1_Add_m789F885930480A60CC99D85E28B6D92CEDA74EF1_inline (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_tD47E289A20580491873111C2FC85A5456012FCAC*, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92, const RuntimeMethod*))List_1_Add_m789F885930480A60CC99D85E28B6D92CEDA74EF1_gshared_inline)(__this, ___item0, method);
}
inline int32_t List_1_get_Count_m62E98B115ACDF79B5558CFC3F21D107DCC98D9BB_inline (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_tD47E289A20580491873111C2FC85A5456012FCAC*, const RuntimeMethod*))List_1_get_Count_m62E98B115ACDF79B5558CFC3F21D107DCC98D9BB_gshared_inline)(__this, method);
}
inline void List_1_InsertRange_m4E98A2CE935633F7D04BBBFC141EA7A4B95A3C6E (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, int32_t ___index0, RuntimeObject* ___collection1, const RuntimeMethod* method)
{
(( void (*) (List_1_tD47E289A20580491873111C2FC85A5456012FCAC*, int32_t, RuntimeObject*, const RuntimeMethod*))List_1_InsertRange_m4E98A2CE935633F7D04BBBFC141EA7A4B95A3C6E_gshared)(__this, ___index0, ___collection1, method);
}
inline void ReadOnlyCollection_1__ctor_mC0CA4A8705EB2EF1681EC022B6DBA788CBE22343 (ReadOnlyCollection_1_tCBA432B40218EE796DDE3EF3B0E4428EC223C324* __this, RuntimeObject* ___list0, const RuntimeMethod* method)
{
(( void (*) (ReadOnlyCollection_1_tCBA432B40218EE796DDE3EF3B0E4428EC223C324*, RuntimeObject*, const RuntimeMethod*))ReadOnlyCollection_1__ctor_mC0CA4A8705EB2EF1681EC022B6DBA788CBE22343_gshared)(__this, ___list0, method);
}
inline int32_t Array_BinarySearch_TisSerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92_m263ECCDC182F2E301047F12A645FCBD4A0D1976E (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* ___array0, int32_t ___index1, int32_t ___length2, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
return (( int32_t (*) (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*, int32_t, int32_t, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92, RuntimeObject*, const RuntimeMethod*))Array_BinarySearch_TisSerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92_m263ECCDC182F2E301047F12A645FCBD4A0D1976E_gshared)(___array0, ___index1, ___length2, ___value3, ___comparer4, method);
}
inline int32_t List_1_BinarySearch_m32EB1E6B18AC45C4BF593EC977A204CD1CE44330 (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, int32_t ___index0, int32_t ___count1, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 ___item2, RuntimeObject* ___comparer3, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_tD47E289A20580491873111C2FC85A5456012FCAC*, int32_t, int32_t, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92, RuntimeObject*, const RuntimeMethod*))List_1_BinarySearch_m32EB1E6B18AC45C4BF593EC977A204CD1CE44330_gshared)(__this, ___index0, ___count1, ___item2, ___comparer3, method);
}
inline int32_t List_1_IndexOf_mA5D723B92DEA3515BA2BFD33D736304CE9D040A9 (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 ___item0, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_tD47E289A20580491873111C2FC85A5456012FCAC*, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92, const RuntimeMethod*))List_1_IndexOf_mA5D723B92DEA3515BA2BFD33D736304CE9D040A9_gshared)(__this, ___item0, method);
}
inline bool List_1_IsCompatibleObject_mF53B290317C6EBC6EC62D420F81D2CCA24B43733 (RuntimeObject* ___value0, const RuntimeMethod* method)
{
return (( bool (*) (RuntimeObject*, const RuntimeMethod*))List_1_IsCompatibleObject_mF53B290317C6EBC6EC62D420F81D2CCA24B43733_gshared)(___value0, method);
}
inline bool List_1_Contains_m7F1D9F4388035B5F6BB0650561A0E76E5EB00609 (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 ___item0, const RuntimeMethod* method)
{
return (( bool (*) (List_1_tD47E289A20580491873111C2FC85A5456012FCAC*, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92, const RuntimeMethod*))List_1_Contains_m7F1D9F4388035B5F6BB0650561A0E76E5EB00609_gshared)(__this, ___item0, method);
}
inline void List_1_CopyTo_m86813324FC57F48338DA034F92DA7F1EA483BAC7 (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
(( void (*) (List_1_tD47E289A20580491873111C2FC85A5456012FCAC*, SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*, int32_t, const RuntimeMethod*))List_1_CopyTo_m86813324FC57F48338DA034F92DA7F1EA483BAC7_gshared)(__this, ___array0, ___arrayIndex1, method);
}
inline void List_1_set_Capacity_mD0217C58B2E251FA259AFE4383C5FE3EBA6F929D (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, int32_t ___value0, const RuntimeMethod* method)
{
(( void (*) (List_1_tD47E289A20580491873111C2FC85A5456012FCAC*, int32_t, const RuntimeMethod*))List_1_set_Capacity_mD0217C58B2E251FA259AFE4383C5FE3EBA6F929D_gshared)(__this, ___value0, method);
}
inline int32_t List_1_FindIndex_m25584DCC2D2EC5344B16FD55FD15AF9430C14D9F (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, Predicate_1_tB611AC0628C45AA8C22D98641EB0E2777E379967* ___match0, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_tD47E289A20580491873111C2FC85A5456012FCAC*, Predicate_1_tB611AC0628C45AA8C22D98641EB0E2777E379967*, const RuntimeMethod*))List_1_FindIndex_m25584DCC2D2EC5344B16FD55FD15AF9430C14D9F_gshared)(__this, ___match0, method);
}
inline bool Predicate_1_Invoke_m7F899F9611DAC1AC03EEDF59AA231010CA8F99F0_inline (Predicate_1_tB611AC0628C45AA8C22D98641EB0E2777E379967* __this, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 ___obj0, const RuntimeMethod* method)
{
return (( bool (*) (Predicate_1_tB611AC0628C45AA8C22D98641EB0E2777E379967*, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92, const RuntimeMethod*))Predicate_1_Invoke_m7F899F9611DAC1AC03EEDF59AA231010CA8F99F0_gshared_inline)(__this, ___obj0, method);
}
inline void List_1__ctor_mE93A42B8E7E2C13C1A1F7658D34ABB7B25EEC5D5 (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_tD47E289A20580491873111C2FC85A5456012FCAC*, const RuntimeMethod*))List_1__ctor_mE93A42B8E7E2C13C1A1F7658D34ABB7B25EEC5D5_gshared)(__this, method);
}
inline int32_t List_1_FindIndex_m2BC80847EC4A8C20F0C314B8DE71C351F3E89988 (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, int32_t ___startIndex0, int32_t ___count1, Predicate_1_tB611AC0628C45AA8C22D98641EB0E2777E379967* ___match2, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_tD47E289A20580491873111C2FC85A5456012FCAC*, int32_t, int32_t, Predicate_1_tB611AC0628C45AA8C22D98641EB0E2777E379967*, const RuntimeMethod*))List_1_FindIndex_m2BC80847EC4A8C20F0C314B8DE71C351F3E89988_gshared)(__this, ___startIndex0, ___count1, ___match2, method);
}
inline void Action_1_Invoke_mE8864E52B8F99441E9CE69FE4157842E40E94DD5_inline (Action_1_t187C688D32A8DB83E990AEA9706F59866839B943* __this, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 ___obj0, const RuntimeMethod* method)
{
(( void (*) (Action_1_t187C688D32A8DB83E990AEA9706F59866839B943*, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92, const RuntimeMethod*))Action_1_Invoke_mE8864E52B8F99441E9CE69FE4157842E40E94DD5_gshared_inline)(__this, ___obj0, method);
}
inline void Enumerator__ctor_mBDCE4434468C2809613EF641B87E27527CAB552A (Enumerator_t3401DD96101FB490B9D817CFF7957BFB900624B3* __this, List_1_tD47E289A20580491873111C2FC85A5456012FCAC* ___list0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t3401DD96101FB490B9D817CFF7957BFB900624B3*, List_1_tD47E289A20580491873111C2FC85A5456012FCAC*, const RuntimeMethod*))Enumerator__ctor_mBDCE4434468C2809613EF641B87E27527CAB552A_gshared)(__this, ___list0, method);
}
inline void List_1__ctor_mAEFD61889C036CF46420354D03CDB378A02C6629 (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, int32_t ___capacity0, const RuntimeMethod* method)
{
(( void (*) (List_1_tD47E289A20580491873111C2FC85A5456012FCAC*, int32_t, const RuntimeMethod*))List_1__ctor_mAEFD61889C036CF46420354D03CDB378A02C6629_gshared)(__this, ___capacity0, method);
}
inline int32_t Array_IndexOf_TisSerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92_mBD8DC01514895B25728AD175138D8C4EA74558FC (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* ___array0, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
return (( int32_t (*) (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92, int32_t, int32_t, const RuntimeMethod*))Array_IndexOf_TisSerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92_mBD8DC01514895B25728AD175138D8C4EA74558FC_gshared)(___array0, ___value1, ___startIndex2, ___count3, method);
}
inline void List_1_Insert_m027C014EE37B55B729D05969787E0052B4433249 (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, int32_t ___index0, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 ___item1, const RuntimeMethod* method)
{
(( void (*) (List_1_tD47E289A20580491873111C2FC85A5456012FCAC*, int32_t, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92, const RuntimeMethod*))List_1_Insert_m027C014EE37B55B729D05969787E0052B4433249_gshared)(__this, ___index0, ___item1, method);
}
inline void List_1_RemoveAt_mD03977F2AD546CF2E7014AC88125D6B5814D1BB3 (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, int32_t ___index0, const RuntimeMethod* method)
{
(( void (*) (List_1_tD47E289A20580491873111C2FC85A5456012FCAC*, int32_t, const RuntimeMethod*))List_1_RemoveAt_mD03977F2AD546CF2E7014AC88125D6B5814D1BB3_gshared)(__this, ___index0, method);
}
inline bool List_1_Remove_mCA93EB575579C2E8A7BACEC1E0B1825547B451AC (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 ___item0, const RuntimeMethod* method)
{
return (( bool (*) (List_1_tD47E289A20580491873111C2FC85A5456012FCAC*, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92, const RuntimeMethod*))List_1_Remove_mCA93EB575579C2E8A7BACEC1E0B1825547B451AC_gshared)(__this, ___item0, method);
}
inline void List_1_Reverse_mA4700E1B3040D345415206D6EB2283061FA65266 (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method)
{
(( void (*) (List_1_tD47E289A20580491873111C2FC85A5456012FCAC*, int32_t, int32_t, const RuntimeMethod*))List_1_Reverse_mA4700E1B3040D345415206D6EB2283061FA65266_gshared)(__this, ___index0, ___count1, method);
}
inline void Array_Reverse_TisSerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92_mB1072C66EC4B549BBC03D581A18D153D024BAD5F (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method)
{
(( void (*) (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*, int32_t, int32_t, const RuntimeMethod*))Array_Reverse_TisSerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92_mB1072C66EC4B549BBC03D581A18D153D024BAD5F_gshared)(___array0, ___index1, ___length2, method);
}
inline void List_1_Sort_m0E61F53BB5469566CF4419EEDC59C44AEC3106A0 (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, int32_t ___index0, int32_t ___count1, RuntimeObject* ___comparer2, const RuntimeMethod* method)
{
(( void (*) (List_1_tD47E289A20580491873111C2FC85A5456012FCAC*, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))List_1_Sort_m0E61F53BB5469566CF4419EEDC59C44AEC3106A0_gshared)(__this, ___index0, ___count1, ___comparer2, method);
}
inline void Array_Sort_TisSerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92_m9354585E3294CAE99197AE2FF30CFA85D25D0928 (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* ___array0, int32_t ___index1, int32_t ___length2, RuntimeObject* ___comparer3, const RuntimeMethod* method)
{
(( void (*) (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))Array_Sort_TisSerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92_m9354585E3294CAE99197AE2FF30CFA85D25D0928_gshared)(___array0, ___index1, ___length2, ___comparer3, method);
}
inline void ArraySortHelper_1_Sort_mD85472105E04C2089F81AE565C919E72B51FEF5F (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* ___keys0, int32_t ___index1, int32_t ___length2, Comparison_1_t61E4EED0058DDEFD4B37CEAFB8E86A231BDF9EA2* ___comparer3, const RuntimeMethod* method)
{
(( void (*) (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*, int32_t, int32_t, Comparison_1_t61E4EED0058DDEFD4B37CEAFB8E86A231BDF9EA2*, const RuntimeMethod*))ArraySortHelper_1_Sort_mD85472105E04C2089F81AE565C919E72B51FEF5F_gshared)(___keys0, ___index1, ___length2, ___comparer3, method);
}
inline void List_1_AddEnumerable_m1FFBCDD1F53FB9E08420B59502ECD26862BD847F (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, RuntimeObject* ___enumerable0, const RuntimeMethod* method)
{
(( void (*) (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44*, RuntimeObject*, const RuntimeMethod*))List_1_AddEnumerable_m1FFBCDD1F53FB9E08420B59502ECD26862BD847F_gshared)(__this, ___enumerable0, method);
}
inline SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 List_1_get_Item_mB6E9A7F89235A4021767ACD0A477D23FF7CC71AE (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 (*) (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44*, int32_t, const RuntimeMethod*))List_1_get_Item_mB6E9A7F89235A4021767ACD0A477D23FF7CC71AE_gshared)(__this, ___index0, method);
}
inline void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisSerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640_m2D7601E9306F0547F18D75C01F5D9E40C03F929C (RuntimeObject* ___value0, int32_t ___argName1, const RuntimeMethod* method)
{
(( void (*) (RuntimeObject*, int32_t, const RuntimeMethod*))ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisSerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640_m2D7601E9306F0547F18D75C01F5D9E40C03F929C_gshared)(___value0, ___argName1, method);
}
inline void List_1_set_Item_m86B327CDF56EC996EACF6628DFAD6ED9748B9F99 (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, int32_t ___index0, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 ___value1, const RuntimeMethod* method)
{
(( void (*) (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44*, int32_t, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640, const RuntimeMethod*))List_1_set_Item_m86B327CDF56EC996EACF6628DFAD6ED9748B9F99_gshared)(__this, ___index0, ___value1, method);
}
inline void List_1_AddWithResize_mFD764274879592E1088C9DAB36E8B76DB1114FEB (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44*, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640, const RuntimeMethod*))List_1_AddWithResize_mFD764274879592E1088C9DAB36E8B76DB1114FEB_gshared)(__this, ___item0, method);
}
inline void List_1_EnsureCapacity_mF6A15B6F8CC4F683A4B6D69BB6FBF86118F6D4C2 (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, int32_t ___min0, const RuntimeMethod* method)
{
(( void (*) (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44*, int32_t, const RuntimeMethod*))List_1_EnsureCapacity_mF6A15B6F8CC4F683A4B6D69BB6FBF86118F6D4C2_gshared)(__this, ___min0, method);
}
inline void List_1_Add_m1C31C862D450C02A5085E473D157F7AC7B76D046_inline (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44*, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640, const RuntimeMethod*))List_1_Add_m1C31C862D450C02A5085E473D157F7AC7B76D046_gshared_inline)(__this, ___item0, method);
}
inline int32_t List_1_get_Count_m9EDF914E652D5A671B9E6B3C1AF001CBADC12B01_inline (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44*, const RuntimeMethod*))List_1_get_Count_m9EDF914E652D5A671B9E6B3C1AF001CBADC12B01_gshared_inline)(__this, method);
}
inline void List_1_InsertRange_m648A0FC682BC48EAF72A3B9DC1544BD10268399E (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, int32_t ___index0, RuntimeObject* ___collection1, const RuntimeMethod* method)
{
(( void (*) (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44*, int32_t, RuntimeObject*, const RuntimeMethod*))List_1_InsertRange_m648A0FC682BC48EAF72A3B9DC1544BD10268399E_gshared)(__this, ___index0, ___collection1, method);
}
inline void ReadOnlyCollection_1__ctor_m1EC8604AB99B1EDF54963DD7A11C3CBA160406D5 (ReadOnlyCollection_1_tF667A9C987D50E93A717AFD8B65AECDAA9D71923* __this, RuntimeObject* ___list0, const RuntimeMethod* method)
{
(( void (*) (ReadOnlyCollection_1_tF667A9C987D50E93A717AFD8B65AECDAA9D71923*, RuntimeObject*, const RuntimeMethod*))ReadOnlyCollection_1__ctor_m1EC8604AB99B1EDF54963DD7A11C3CBA160406D5_gshared)(__this, ___list0, method);
}
inline int32_t Array_BinarySearch_TisSerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640_m04D9D84B4CE234B2217FF354205ABF4B21157B02 (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* ___array0, int32_t ___index1, int32_t ___length2, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
return (( int32_t (*) (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*, int32_t, int32_t, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640, RuntimeObject*, const RuntimeMethod*))Array_BinarySearch_TisSerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640_m04D9D84B4CE234B2217FF354205ABF4B21157B02_gshared)(___array0, ___index1, ___length2, ___value3, ___comparer4, method);
}
inline int32_t List_1_BinarySearch_mB6CDD1B47C6BC03174D5E527A722E3FFA1DC4B6D (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, int32_t ___index0, int32_t ___count1, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 ___item2, RuntimeObject* ___comparer3, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44*, int32_t, int32_t, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640, RuntimeObject*, const RuntimeMethod*))List_1_BinarySearch_mB6CDD1B47C6BC03174D5E527A722E3FFA1DC4B6D_gshared)(__this, ___index0, ___count1, ___item2, ___comparer3, method);
}
inline int32_t List_1_IndexOf_m2A46931F8A959DE3DE830D36806FF4DBE11FE354 (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 ___item0, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44*, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640, const RuntimeMethod*))List_1_IndexOf_m2A46931F8A959DE3DE830D36806FF4DBE11FE354_gshared)(__this, ___item0, method);
}
inline bool List_1_IsCompatibleObject_mBBC38F26C6CD0121E7AC55FA7A14328DED51E6A2 (RuntimeObject* ___value0, const RuntimeMethod* method)
{
return (( bool (*) (RuntimeObject*, const RuntimeMethod*))List_1_IsCompatibleObject_mBBC38F26C6CD0121E7AC55FA7A14328DED51E6A2_gshared)(___value0, method);
}
inline bool List_1_Contains_mF47686AE4ACB8FD938B2B860F7D4F8D46F25CEDB (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 ___item0, const RuntimeMethod* method)
{
return (( bool (*) (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44*, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640, const RuntimeMethod*))List_1_Contains_mF47686AE4ACB8FD938B2B860F7D4F8D46F25CEDB_gshared)(__this, ___item0, method);
}
inline void List_1_CopyTo_m2566CA20E4A1F6ADB5AF33D7A89EA03B38E218AB (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
(( void (*) (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44*, SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*, int32_t, const RuntimeMethod*))List_1_CopyTo_m2566CA20E4A1F6ADB5AF33D7A89EA03B38E218AB_gshared)(__this, ___array0, ___arrayIndex1, method);
}
inline void List_1_set_Capacity_m956C519DBD89C600007B02E58D157CEC93164122 (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, int32_t ___value0, const RuntimeMethod* method)
{
(( void (*) (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44*, int32_t, const RuntimeMethod*))List_1_set_Capacity_m956C519DBD89C600007B02E58D157CEC93164122_gshared)(__this, ___value0, method);
}
inline int32_t List_1_FindIndex_mDF39EA18BFFD2DDF2D09080C2F09E80E47709CBF (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, Predicate_1_t91F6DA80C04BF546E5879B9232C076E32128590F* ___match0, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44*, Predicate_1_t91F6DA80C04BF546E5879B9232C076E32128590F*, const RuntimeMethod*))List_1_FindIndex_mDF39EA18BFFD2DDF2D09080C2F09E80E47709CBF_gshared)(__this, ___match0, method);
}
inline bool Predicate_1_Invoke_m9EA6BB06561BD8025D11A4F544802CD868048653_inline (Predicate_1_t91F6DA80C04BF546E5879B9232C076E32128590F* __this, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 ___obj0, const RuntimeMethod* method)
{
return (( bool (*) (Predicate_1_t91F6DA80C04BF546E5879B9232C076E32128590F*, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640, const RuntimeMethod*))Predicate_1_Invoke_m9EA6BB06561BD8025D11A4F544802CD868048653_gshared_inline)(__this, ___obj0, method);
}
inline void List_1__ctor_m33B64BB7982C5EC16903EEA39B4BCAF51775FD55 (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44*, const RuntimeMethod*))List_1__ctor_m33B64BB7982C5EC16903EEA39B4BCAF51775FD55_gshared)(__this, method);
}
inline int32_t List_1_FindIndex_m15EE8D35202F0C0C58F35EA757D4EDF970B5A5AD (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, int32_t ___startIndex0, int32_t ___count1, Predicate_1_t91F6DA80C04BF546E5879B9232C076E32128590F* ___match2, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44*, int32_t, int32_t, Predicate_1_t91F6DA80C04BF546E5879B9232C076E32128590F*, const RuntimeMethod*))List_1_FindIndex_m15EE8D35202F0C0C58F35EA757D4EDF970B5A5AD_gshared)(__this, ___startIndex0, ___count1, ___match2, method);
}
inline void Action_1_Invoke_m96CD6B978BAA81562C4223643F24E228A2347BCD_inline (Action_1_tB0C884D3D3374CFCE94E90AC8FECDC5E3E791203* __this, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 ___obj0, const RuntimeMethod* method)
{
(( void (*) (Action_1_tB0C884D3D3374CFCE94E90AC8FECDC5E3E791203*, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640, const RuntimeMethod*))Action_1_Invoke_m96CD6B978BAA81562C4223643F24E228A2347BCD_gshared_inline)(__this, ___obj0, method);
}
inline void Enumerator__ctor_mAC9A9412B410D3E3F9728ACD4C218FFC3A0FBEFE (Enumerator_t0F91BC558767DA1005DDDD4EC1D68339C54621A5* __this, List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* ___list0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t0F91BC558767DA1005DDDD4EC1D68339C54621A5*, List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44*, const RuntimeMethod*))Enumerator__ctor_mAC9A9412B410D3E3F9728ACD4C218FFC3A0FBEFE_gshared)(__this, ___list0, method);
}
inline void List_1__ctor_mB722EE7250EC243F0C9BEC91E1C406174C2F5E2E (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, int32_t ___capacity0, const RuntimeMethod* method)
{
(( void (*) (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44*, int32_t, const RuntimeMethod*))List_1__ctor_mB722EE7250EC243F0C9BEC91E1C406174C2F5E2E_gshared)(__this, ___capacity0, method);
}
inline int32_t Array_IndexOf_TisSerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640_m56D608A24247B8638FA6BC48D19E740CDE53E4B4 (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* ___array0, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
return (( int32_t (*) (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640, int32_t, int32_t, const RuntimeMethod*))Array_IndexOf_TisSerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640_m56D608A24247B8638FA6BC48D19E740CDE53E4B4_gshared)(___array0, ___value1, ___startIndex2, ___count3, method);
}
inline void List_1_Insert_m3F613D65C0836903F3B22EAF35FE46FB4375B4A5 (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, int32_t ___index0, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 ___item1, const RuntimeMethod* method)
{
(( void (*) (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44*, int32_t, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640, const RuntimeMethod*))List_1_Insert_m3F613D65C0836903F3B22EAF35FE46FB4375B4A5_gshared)(__this, ___index0, ___item1, method);
}
inline void List_1_RemoveAt_m3D4A00CF25A102794DB9043B532A6DCB7D7C86BF (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, int32_t ___index0, const RuntimeMethod* method)
{
(( void (*) (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44*, int32_t, const RuntimeMethod*))List_1_RemoveAt_m3D4A00CF25A102794DB9043B532A6DCB7D7C86BF_gshared)(__this, ___index0, method);
}
inline bool List_1_Remove_mAFFE727EFE187CC0CA3F8E830F371DCC2828BCD1 (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 ___item0, const RuntimeMethod* method)
{
return (( bool (*) (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44*, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640, const RuntimeMethod*))List_1_Remove_mAFFE727EFE187CC0CA3F8E830F371DCC2828BCD1_gshared)(__this, ___item0, method);
}
inline void List_1_Reverse_mD97E2DAF651F931A3BF2DB55C51DD97949779595 (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method)
{
(( void (*) (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44*, int32_t, int32_t, const RuntimeMethod*))List_1_Reverse_mD97E2DAF651F931A3BF2DB55C51DD97949779595_gshared)(__this, ___index0, ___count1, method);
}
inline void Array_Reverse_TisSerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640_mDE26757691DDE81D4472FC616765F9A0085CE8F4 (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method)
{
(( void (*) (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*, int32_t, int32_t, const RuntimeMethod*))Array_Reverse_TisSerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640_mDE26757691DDE81D4472FC616765F9A0085CE8F4_gshared)(___array0, ___index1, ___length2, method);
}
inline void List_1_Sort_mD0DBA3A3C39F27C739CE6DF10A382AA4DCC44E7C (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, int32_t ___index0, int32_t ___count1, RuntimeObject* ___comparer2, const RuntimeMethod* method)
{
(( void (*) (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44*, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))List_1_Sort_mD0DBA3A3C39F27C739CE6DF10A382AA4DCC44E7C_gshared)(__this, ___index0, ___count1, ___comparer2, method);
}
inline void Array_Sort_TisSerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640_m8EE0162994D135F46B7220992820F435B0E8057F (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* ___array0, int32_t ___index1, int32_t ___length2, RuntimeObject* ___comparer3, const RuntimeMethod* method)
{
(( void (*) (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))Array_Sort_TisSerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640_m8EE0162994D135F46B7220992820F435B0E8057F_gshared)(___array0, ___index1, ___length2, ___comparer3, method);
}
inline void ArraySortHelper_1_Sort_mE33B9576D4C0DB1B28FF7083D7201DC312247DB8 (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* ___keys0, int32_t ___index1, int32_t ___length2, Comparison_1_tD8DB7399F0BC95EA6BBDA5262FC00866CE3A9696* ___comparer3, const RuntimeMethod* method)
{
(( void (*) (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*, int32_t, int32_t, Comparison_1_tD8DB7399F0BC95EA6BBDA5262FC00866CE3A9696*, const RuntimeMethod*))ArraySortHelper_1_Sort_mE33B9576D4C0DB1B28FF7083D7201DC312247DB8_gshared)(___keys0, ___index1, ___length2, ___comparer3, method);
}
inline void List_1_AddEnumerable_m87C48FCA36E0912F8A7AD1E8E4E46DF3E1DFDB76 (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, RuntimeObject* ___enumerable0, const RuntimeMethod* method)
{
(( void (*) (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815*, RuntimeObject*, const RuntimeMethod*))List_1_AddEnumerable_m87C48FCA36E0912F8A7AD1E8E4E46DF3E1DFDB76_gshared)(__this, ___enumerable0, method);
}
inline SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C List_1_get_Item_m2BBE1D9BBDF114B65FBEA541538C9FD703BF822D (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C (*) (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815*, int32_t, const RuntimeMethod*))List_1_get_Item_m2BBE1D9BBDF114B65FBEA541538C9FD703BF822D_gshared)(__this, ___index0, method);
}
inline void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisSerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C_m8DADC2BA85D5549B154DFD9F1650AEF7C74F61C2 (RuntimeObject* ___value0, int32_t ___argName1, const RuntimeMethod* method)
{
(( void (*) (RuntimeObject*, int32_t, const RuntimeMethod*))ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisSerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C_m8DADC2BA85D5549B154DFD9F1650AEF7C74F61C2_gshared)(___value0, ___argName1, method);
}
inline void List_1_set_Item_m7C72A3A94E1CD66AB3E09FD44EAF980AC2883646 (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, int32_t ___index0, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C ___value1, const RuntimeMethod* method)
{
(( void (*) (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815*, int32_t, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C, const RuntimeMethod*))List_1_set_Item_m7C72A3A94E1CD66AB3E09FD44EAF980AC2883646_gshared)(__this, ___index0, ___value1, method);
}
inline void List_1_AddWithResize_m8B89217448277604B1CE90E00676070757A181B7 (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815*, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C, const RuntimeMethod*))List_1_AddWithResize_m8B89217448277604B1CE90E00676070757A181B7_gshared)(__this, ___item0, method);
}
inline void List_1_EnsureCapacity_mDBC90FF9CA64C67537E8ED8033A579EF34C309C5 (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, int32_t ___min0, const RuntimeMethod* method)
{
(( void (*) (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815*, int32_t, const RuntimeMethod*))List_1_EnsureCapacity_mDBC90FF9CA64C67537E8ED8033A579EF34C309C5_gshared)(__this, ___min0, method);
}
inline void List_1_Add_m57A1BE88ECE375428E12EB373147D1FA8751D4FB_inline (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815*, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C, const RuntimeMethod*))List_1_Add_m57A1BE88ECE375428E12EB373147D1FA8751D4FB_gshared_inline)(__this, ___item0, method);
}
inline int32_t List_1_get_Count_mD5B39B9B0F072CA06C68377531E0886E3538F716_inline (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815*, const RuntimeMethod*))List_1_get_Count_mD5B39B9B0F072CA06C68377531E0886E3538F716_gshared_inline)(__this, method);
}
inline void List_1_InsertRange_m7BC160CBD52B9F43D973382D90E4AF062D0AA032 (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, int32_t ___index0, RuntimeObject* ___collection1, const RuntimeMethod* method)
{
(( void (*) (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815*, int32_t, RuntimeObject*, const RuntimeMethod*))List_1_InsertRange_m7BC160CBD52B9F43D973382D90E4AF062D0AA032_gshared)(__this, ___index0, ___collection1, method);
}
inline void ReadOnlyCollection_1__ctor_m9091FD27D6A3BDF27EE576AF2145C906E80830B1 (ReadOnlyCollection_1_t6A9C7D2D97BC027BE87AFB1B8DCD4C3ECD2107D4* __this, RuntimeObject* ___list0, const RuntimeMethod* method)
{
(( void (*) (ReadOnlyCollection_1_t6A9C7D2D97BC027BE87AFB1B8DCD4C3ECD2107D4*, RuntimeObject*, const RuntimeMethod*))ReadOnlyCollection_1__ctor_m9091FD27D6A3BDF27EE576AF2145C906E80830B1_gshared)(__this, ___list0, method);
}
inline int32_t Array_BinarySearch_TisSerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C_m32A94D794F0046AA96DB4F5B299F2D47F7EC5F2D (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* ___array0, int32_t ___index1, int32_t ___length2, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
return (( int32_t (*) (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*, int32_t, int32_t, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C, RuntimeObject*, const RuntimeMethod*))Array_BinarySearch_TisSerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C_m32A94D794F0046AA96DB4F5B299F2D47F7EC5F2D_gshared)(___array0, ___index1, ___length2, ___value3, ___comparer4, method);
}
inline int32_t List_1_BinarySearch_m1B6CC9CC5006DBB00A6862470B58C7C32D03B1E2 (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, int32_t ___index0, int32_t ___count1, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C ___item2, RuntimeObject* ___comparer3, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815*, int32_t, int32_t, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C, RuntimeObject*, const RuntimeMethod*))List_1_BinarySearch_m1B6CC9CC5006DBB00A6862470B58C7C32D03B1E2_gshared)(__this, ___index0, ___count1, ___item2, ___comparer3, method);
}
inline int32_t List_1_IndexOf_mC99AB8A9463EC032657BE69C8525BD1D6B7D0805 (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C ___item0, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815*, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C, const RuntimeMethod*))List_1_IndexOf_mC99AB8A9463EC032657BE69C8525BD1D6B7D0805_gshared)(__this, ___item0, method);
}
inline bool List_1_IsCompatibleObject_m7C1E6F06277E578E9DC09F7BFEF9AA3A63E96132 (RuntimeObject* ___value0, const RuntimeMethod* method)
{
return (( bool (*) (RuntimeObject*, const RuntimeMethod*))List_1_IsCompatibleObject_m7C1E6F06277E578E9DC09F7BFEF9AA3A63E96132_gshared)(___value0, method);
}
inline bool List_1_Contains_m2AED8A99D7A91E1A56D9AF7E927E9AF7F6BD598A (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C ___item0, const RuntimeMethod* method)
{
return (( bool (*) (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815*, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C, const RuntimeMethod*))List_1_Contains_m2AED8A99D7A91E1A56D9AF7E927E9AF7F6BD598A_gshared)(__this, ___item0, method);
}
inline void List_1_CopyTo_mBFDCD07EF497384244674DF2C3404E862A4BEFE8 (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
(( void (*) (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815*, SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*, int32_t, const RuntimeMethod*))List_1_CopyTo_mBFDCD07EF497384244674DF2C3404E862A4BEFE8_gshared)(__this, ___array0, ___arrayIndex1, method);
}
inline void List_1_set_Capacity_m03D9F7B4486E0C89B6CE34672960A93C0CFE56FC (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, int32_t ___value0, const RuntimeMethod* method)
{
(( void (*) (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815*, int32_t, const RuntimeMethod*))List_1_set_Capacity_m03D9F7B4486E0C89B6CE34672960A93C0CFE56FC_gshared)(__this, ___value0, method);
}
inline int32_t List_1_FindIndex_m3BAB8AD448E3D95B7D04511DC8344EF400A34B69 (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, Predicate_1_t9B2D6474D0B9770CC8D95DD34EA4AD9556D351A6* ___match0, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815*, Predicate_1_t9B2D6474D0B9770CC8D95DD34EA4AD9556D351A6*, const RuntimeMethod*))List_1_FindIndex_m3BAB8AD448E3D95B7D04511DC8344EF400A34B69_gshared)(__this, ___match0, method);
}
inline bool Predicate_1_Invoke_mCF9BF523FD024AF55E93F13ED6D2E00AEB0A484F_inline (Predicate_1_t9B2D6474D0B9770CC8D95DD34EA4AD9556D351A6* __this, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C ___obj0, const RuntimeMethod* method)
{
return (( bool (*) (Predicate_1_t9B2D6474D0B9770CC8D95DD34EA4AD9556D351A6*, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C, const RuntimeMethod*))Predicate_1_Invoke_mCF9BF523FD024AF55E93F13ED6D2E00AEB0A484F_gshared_inline)(__this, ___obj0, method);
}
inline void List_1__ctor_m38BCEBB3B7287799DFAEC7FC2A7046A88E178C99 (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815*, const RuntimeMethod*))List_1__ctor_m38BCEBB3B7287799DFAEC7FC2A7046A88E178C99_gshared)(__this, method);
}
inline int32_t List_1_FindIndex_m15B238C9CBD0C974E244CFAC7E27A4B50C9A3AC3 (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, int32_t ___startIndex0, int32_t ___count1, Predicate_1_t9B2D6474D0B9770CC8D95DD34EA4AD9556D351A6* ___match2, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815*, int32_t, int32_t, Predicate_1_t9B2D6474D0B9770CC8D95DD34EA4AD9556D351A6*, const RuntimeMethod*))List_1_FindIndex_m15B238C9CBD0C974E244CFAC7E27A4B50C9A3AC3_gshared)(__this, ___startIndex0, ___count1, ___match2, method);
}
inline void Action_1_Invoke_mA8F1A4AF0D247CFBFFA0A11F02BE172A36AB1197_inline (Action_1_t92F25D2BF6C8C5C1D69E8CF2473ABBCC3136018F* __this, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C ___obj0, const RuntimeMethod* method)
{
(( void (*) (Action_1_t92F25D2BF6C8C5C1D69E8CF2473ABBCC3136018F*, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C, const RuntimeMethod*))Action_1_Invoke_mA8F1A4AF0D247CFBFFA0A11F02BE172A36AB1197_gshared_inline)(__this, ___obj0, method);
}
inline void Enumerator__ctor_mA14143588C2ED97B53B74AFF2E0A75CC2A7FFB7A (Enumerator_t8F9474ED732BF151860990861186CAEA4E833694* __this, List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* ___list0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t8F9474ED732BF151860990861186CAEA4E833694*, List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815*, const RuntimeMethod*))Enumerator__ctor_mA14143588C2ED97B53B74AFF2E0A75CC2A7FFB7A_gshared)(__this, ___list0, method);
}
inline void List_1__ctor_m45076B52D78C658B91912503692A546791D64CD0 (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, int32_t ___capacity0, const RuntimeMethod* method)
{
(( void (*) (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815*, int32_t, const RuntimeMethod*))List_1__ctor_m45076B52D78C658B91912503692A546791D64CD0_gshared)(__this, ___capacity0, method);
}
inline int32_t Array_IndexOf_TisSerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C_mA66676495A12753F739106C34E5FB7F4FAB1518D (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* ___array0, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
return (( int32_t (*) (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C, int32_t, int32_t, const RuntimeMethod*))Array_IndexOf_TisSerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C_mA66676495A12753F739106C34E5FB7F4FAB1518D_gshared)(___array0, ___value1, ___startIndex2, ___count3, method);
}
inline void List_1_Insert_mE53C039B315575F93E887B6FB5F124625E25C2AE (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, int32_t ___index0, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C ___item1, const RuntimeMethod* method)
{
(( void (*) (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815*, int32_t, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C, const RuntimeMethod*))List_1_Insert_mE53C039B315575F93E887B6FB5F124625E25C2AE_gshared)(__this, ___index0, ___item1, method);
}
inline void List_1_RemoveAt_mC883F2A82A5DB486D7EBC252F328438DE588AA08 (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, int32_t ___index0, const RuntimeMethod* method)
{
(( void (*) (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815*, int32_t, const RuntimeMethod*))List_1_RemoveAt_mC883F2A82A5DB486D7EBC252F328438DE588AA08_gshared)(__this, ___index0, method);
}
inline bool List_1_Remove_m8721CE2ECC3CBA4E94BC59B4584BB6A845A7BEED (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C ___item0, const RuntimeMethod* method)
{
return (( bool (*) (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815*, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C, const RuntimeMethod*))List_1_Remove_m8721CE2ECC3CBA4E94BC59B4584BB6A845A7BEED_gshared)(__this, ___item0, method);
}
inline void List_1_Reverse_mD288BC8B03A107C7344B418432831BE6E34DFD16 (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method)
{
(( void (*) (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815*, int32_t, int32_t, const RuntimeMethod*))List_1_Reverse_mD288BC8B03A107C7344B418432831BE6E34DFD16_gshared)(__this, ___index0, ___count1, method);
}
inline void Array_Reverse_TisSerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C_m11A2E0BDD4159C67CCBEBF3F8E2B4499A71957CE (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method)
{
(( void (*) (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*, int32_t, int32_t, const RuntimeMethod*))Array_Reverse_TisSerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C_m11A2E0BDD4159C67CCBEBF3F8E2B4499A71957CE_gshared)(___array0, ___index1, ___length2, method);
}
inline void List_1_Sort_m077B2424F2A34A75B62F594DFE2EA5C12ADBD95E (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, int32_t ___index0, int32_t ___count1, RuntimeObject* ___comparer2, const RuntimeMethod* method)
{
(( void (*) (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815*, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))List_1_Sort_m077B2424F2A34A75B62F594DFE2EA5C12ADBD95E_gshared)(__this, ___index0, ___count1, ___comparer2, method);
}
inline void Array_Sort_TisSerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C_mD92AE5D59E91DD6595F0458EB373B13E6E624907 (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* ___array0, int32_t ___index1, int32_t ___length2, RuntimeObject* ___comparer3, const RuntimeMethod* method)
{
(( void (*) (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))Array_Sort_TisSerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C_mD92AE5D59E91DD6595F0458EB373B13E6E624907_gshared)(___array0, ___index1, ___length2, ___comparer3, method);
}
inline void ArraySortHelper_1_Sort_m07E110A10F5F07D58048D3CCEA65A951471620C5 (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* ___keys0, int32_t ___index1, int32_t ___length2, Comparison_1_tA1A99E801BF7A63F87C1EB2876D1DD485B72158E* ___comparer3, const RuntimeMethod* method)
{
(( void (*) (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*, int32_t, int32_t, Comparison_1_tA1A99E801BF7A63F87C1EB2876D1DD485B72158E*, const RuntimeMethod*))ArraySortHelper_1_Sort_m07E110A10F5F07D58048D3CCEA65A951471620C5_gshared)(___keys0, ___index1, ___length2, ___comparer3, method);
}
inline void List_1_AddEnumerable_m9606977025BDE1ECF8FC27BAB22B2BEA3325E06C (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, RuntimeObject* ___enumerable0, const RuntimeMethod* method)
{
(( void (*) (List_1_tE15A36783D21F016929125A00F602D220C32C84A*, RuntimeObject*, const RuntimeMethod*))List_1_AddEnumerable_m9606977025BDE1ECF8FC27BAB22B2BEA3325E06C_gshared)(__this, ___enumerable0, method);
}
inline SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 List_1_get_Item_mA652DB20CF39CC245CE6699B6C655FB2DCAA4946 (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 (*) (List_1_tE15A36783D21F016929125A00F602D220C32C84A*, int32_t, const RuntimeMethod*))List_1_get_Item_mA652DB20CF39CC245CE6699B6C655FB2DCAA4946_gshared)(__this, ___index0, method);
}
inline void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisSerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452_m5940DE1E01EF1CD879C88A40FC90B65D56008AC8 (RuntimeObject* ___value0, int32_t ___argName1, const RuntimeMethod* method)
{
(( void (*) (RuntimeObject*, int32_t, const RuntimeMethod*))ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisSerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452_m5940DE1E01EF1CD879C88A40FC90B65D56008AC8_gshared)(___value0, ___argName1, method);
}
inline void List_1_set_Item_m10E26EC0C062E48963C4C2AC92DF0F3BEBE5688C (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, int32_t ___index0, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 ___value1, const RuntimeMethod* method)
{
(( void (*) (List_1_tE15A36783D21F016929125A00F602D220C32C84A*, int32_t, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452, const RuntimeMethod*))List_1_set_Item_m10E26EC0C062E48963C4C2AC92DF0F3BEBE5688C_gshared)(__this, ___index0, ___value1, method);
}
inline void List_1_AddWithResize_m917A6AD1D7ADF266FC1E66DCCC79AE49E725066C (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_tE15A36783D21F016929125A00F602D220C32C84A*, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452, const RuntimeMethod*))List_1_AddWithResize_m917A6AD1D7ADF266FC1E66DCCC79AE49E725066C_gshared)(__this, ___item0, method);
}
inline void List_1_EnsureCapacity_mFC7CE2DAD1486472AD9C32D20031FBF334B93A76 (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, int32_t ___min0, const RuntimeMethod* method)
{
(( void (*) (List_1_tE15A36783D21F016929125A00F602D220C32C84A*, int32_t, const RuntimeMethod*))List_1_EnsureCapacity_mFC7CE2DAD1486472AD9C32D20031FBF334B93A76_gshared)(__this, ___min0, method);
}
inline void List_1_Add_m2A67FD5726B4822A0635AE943CF6D96A403D71CD_inline (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_tE15A36783D21F016929125A00F602D220C32C84A*, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452, const RuntimeMethod*))List_1_Add_m2A67FD5726B4822A0635AE943CF6D96A403D71CD_gshared_inline)(__this, ___item0, method);
}
inline int32_t List_1_get_Count_m69AE2AA581A9F7CC56C2A779BA4524E1900ADF55_inline (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_tE15A36783D21F016929125A00F602D220C32C84A*, const RuntimeMethod*))List_1_get_Count_m69AE2AA581A9F7CC56C2A779BA4524E1900ADF55_gshared_inline)(__this, method);
}
inline void List_1_InsertRange_mE92D40D4770019281B6BA2C330D63A165F9BF993 (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, int32_t ___index0, RuntimeObject* ___collection1, const RuntimeMethod* method)
{
(( void (*) (List_1_tE15A36783D21F016929125A00F602D220C32C84A*, int32_t, RuntimeObject*, const RuntimeMethod*))List_1_InsertRange_mE92D40D4770019281B6BA2C330D63A165F9BF993_gshared)(__this, ___index0, ___collection1, method);
}
inline void ReadOnlyCollection_1__ctor_m3D7A0EA9BAD84E7C7FA03675BDC3CD3EFF39F32F (ReadOnlyCollection_1_tA871F447D7F479911BD7EAFADF88CC271A932111* __this, RuntimeObject* ___list0, const RuntimeMethod* method)
{
(( void (*) (ReadOnlyCollection_1_tA871F447D7F479911BD7EAFADF88CC271A932111*, RuntimeObject*, const RuntimeMethod*))ReadOnlyCollection_1__ctor_m3D7A0EA9BAD84E7C7FA03675BDC3CD3EFF39F32F_gshared)(__this, ___list0, method);
}
inline int32_t Array_BinarySearch_TisSerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452_m0F80796B946772F68B9E7EBA56C447ECE1FDCDE9 (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* ___array0, int32_t ___index1, int32_t ___length2, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
return (( int32_t (*) (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*, int32_t, int32_t, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452, RuntimeObject*, const RuntimeMethod*))Array_BinarySearch_TisSerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452_m0F80796B946772F68B9E7EBA56C447ECE1FDCDE9_gshared)(___array0, ___index1, ___length2, ___value3, ___comparer4, method);
}
inline int32_t List_1_BinarySearch_m1984A999BA27A2FFD51B3C1CD503BD664DEFB62C (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, int32_t ___index0, int32_t ___count1, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 ___item2, RuntimeObject* ___comparer3, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_tE15A36783D21F016929125A00F602D220C32C84A*, int32_t, int32_t, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452, RuntimeObject*, const RuntimeMethod*))List_1_BinarySearch_m1984A999BA27A2FFD51B3C1CD503BD664DEFB62C_gshared)(__this, ___index0, ___count1, ___item2, ___comparer3, method);
}
inline int32_t List_1_IndexOf_mE4A1E26F51C7E76116D2B46425DB16CA1747633A (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 ___item0, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_tE15A36783D21F016929125A00F602D220C32C84A*, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452, const RuntimeMethod*))List_1_IndexOf_mE4A1E26F51C7E76116D2B46425DB16CA1747633A_gshared)(__this, ___item0, method);
}
inline bool List_1_IsCompatibleObject_m03CEF85CD52AE36C26074DB0A55BFD107909060B (RuntimeObject* ___value0, const RuntimeMethod* method)
{
return (( bool (*) (RuntimeObject*, const RuntimeMethod*))List_1_IsCompatibleObject_m03CEF85CD52AE36C26074DB0A55BFD107909060B_gshared)(___value0, method);
}
inline bool List_1_Contains_mF9800FA1BDF6A933AF36362076483B1BE82EBC20 (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 ___item0, const RuntimeMethod* method)
{
return (( bool (*) (List_1_tE15A36783D21F016929125A00F602D220C32C84A*, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452, const RuntimeMethod*))List_1_Contains_mF9800FA1BDF6A933AF36362076483B1BE82EBC20_gshared)(__this, ___item0, method);
}
inline void List_1_CopyTo_m1B3BDDEB542B9E9E75DF1442B5B69058E0391CBB (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
(( void (*) (List_1_tE15A36783D21F016929125A00F602D220C32C84A*, SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*, int32_t, const RuntimeMethod*))List_1_CopyTo_m1B3BDDEB542B9E9E75DF1442B5B69058E0391CBB_gshared)(__this, ___array0, ___arrayIndex1, method);
}
inline void List_1_set_Capacity_m25F4ABEEA51BFABF34BD833A3234A863F012B1EE (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, int32_t ___value0, const RuntimeMethod* method)
{
(( void (*) (List_1_tE15A36783D21F016929125A00F602D220C32C84A*, int32_t, const RuntimeMethod*))List_1_set_Capacity_m25F4ABEEA51BFABF34BD833A3234A863F012B1EE_gshared)(__this, ___value0, method);
}
inline int32_t List_1_FindIndex_m82093DAEFEB13F65D340D87279CBE1B0E37630FE (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, Predicate_1_t19AD45D1959BE743073EC8A444DE8A4CD156EBDC* ___match0, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_tE15A36783D21F016929125A00F602D220C32C84A*, Predicate_1_t19AD45D1959BE743073EC8A444DE8A4CD156EBDC*, const RuntimeMethod*))List_1_FindIndex_m82093DAEFEB13F65D340D87279CBE1B0E37630FE_gshared)(__this, ___match0, method);
}
inline bool Predicate_1_Invoke_mCAAFFB8B975CC9C9EB0020ABC8FC6826A53CBC68_inline (Predicate_1_t19AD45D1959BE743073EC8A444DE8A4CD156EBDC* __this, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 ___obj0, const RuntimeMethod* method)
{
return (( bool (*) (Predicate_1_t19AD45D1959BE743073EC8A444DE8A4CD156EBDC*, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452, const RuntimeMethod*))Predicate_1_Invoke_mCAAFFB8B975CC9C9EB0020ABC8FC6826A53CBC68_gshared_inline)(__this, ___obj0, method);
}
inline void List_1__ctor_m9F7DDF65A5DEE6C99AF06E0CD8522D259BAA070C (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_tE15A36783D21F016929125A00F602D220C32C84A*, const RuntimeMethod*))List_1__ctor_m9F7DDF65A5DEE6C99AF06E0CD8522D259BAA070C_gshared)(__this, method);
}
inline int32_t List_1_FindIndex_m4627A14E4CCA05915176D272C6B2711C8DEE8303 (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, int32_t ___startIndex0, int32_t ___count1, Predicate_1_t19AD45D1959BE743073EC8A444DE8A4CD156EBDC* ___match2, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_tE15A36783D21F016929125A00F602D220C32C84A*, int32_t, int32_t, Predicate_1_t19AD45D1959BE743073EC8A444DE8A4CD156EBDC*, const RuntimeMethod*))List_1_FindIndex_m4627A14E4CCA05915176D272C6B2711C8DEE8303_gshared)(__this, ___startIndex0, ___count1, ___match2, method);
}
inline void Action_1_Invoke_m1AE5DA812CC78579382FC604F31F5C324DFA5DAC_inline (Action_1_tDEE138ADA6A5B56B11D9CFC823CBBD375BA9115A* __this, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 ___obj0, const RuntimeMethod* method)
{
(( void (*) (Action_1_tDEE138ADA6A5B56B11D9CFC823CBBD375BA9115A*, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452, const RuntimeMethod*))Action_1_Invoke_m1AE5DA812CC78579382FC604F31F5C324DFA5DAC_gshared_inline)(__this, ___obj0, method);
}
inline void Enumerator__ctor_m076C4519BED94CBC69AF27F7F77E90B2627BF052 (Enumerator_t79A467E7C13197680FE62582108B3BE3348A0F1F* __this, List_1_tE15A36783D21F016929125A00F602D220C32C84A* ___list0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t79A467E7C13197680FE62582108B3BE3348A0F1F*, List_1_tE15A36783D21F016929125A00F602D220C32C84A*, const RuntimeMethod*))Enumerator__ctor_m076C4519BED94CBC69AF27F7F77E90B2627BF052_gshared)(__this, ___list0, method);
}
inline void List_1__ctor_mD955D5B642510166CAF5FB380761AB96C7EABED9 (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, int32_t ___capacity0, const RuntimeMethod* method)
{
(( void (*) (List_1_tE15A36783D21F016929125A00F602D220C32C84A*, int32_t, const RuntimeMethod*))List_1__ctor_mD955D5B642510166CAF5FB380761AB96C7EABED9_gshared)(__this, ___capacity0, method);
}
inline int32_t Array_IndexOf_TisSerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452_m902D1500A5E9C164C4BEA4454F170BE71E50886E (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* ___array0, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
return (( int32_t (*) (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452, int32_t, int32_t, const RuntimeMethod*))Array_IndexOf_TisSerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452_m902D1500A5E9C164C4BEA4454F170BE71E50886E_gshared)(___array0, ___value1, ___startIndex2, ___count3, method);
}
inline void List_1_Insert_m5BF63154DFD5997ED5CA0B1E502BD5C7B1695262 (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, int32_t ___index0, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 ___item1, const RuntimeMethod* method)
{
(( void (*) (List_1_tE15A36783D21F016929125A00F602D220C32C84A*, int32_t, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452, const RuntimeMethod*))List_1_Insert_m5BF63154DFD5997ED5CA0B1E502BD5C7B1695262_gshared)(__this, ___index0, ___item1, method);
}
inline void List_1_RemoveAt_mB59317CB5118CD2B5049B80787D942A2ED5BAEC7 (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, int32_t ___index0, const RuntimeMethod* method)
{
(( void (*) (List_1_tE15A36783D21F016929125A00F602D220C32C84A*, int32_t, const RuntimeMethod*))List_1_RemoveAt_mB59317CB5118CD2B5049B80787D942A2ED5BAEC7_gshared)(__this, ___index0, method);
}
inline bool List_1_Remove_m80247B271593D484141E189A27FE385AF3809231 (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 ___item0, const RuntimeMethod* method)
{
return (( bool (*) (List_1_tE15A36783D21F016929125A00F602D220C32C84A*, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452, const RuntimeMethod*))List_1_Remove_m80247B271593D484141E189A27FE385AF3809231_gshared)(__this, ___item0, method);
}
inline void List_1_Reverse_m169C7F26335AC27556DA2D5E9CAC53879600837A (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method)
{
(( void (*) (List_1_tE15A36783D21F016929125A00F602D220C32C84A*, int32_t, int32_t, const RuntimeMethod*))List_1_Reverse_m169C7F26335AC27556DA2D5E9CAC53879600837A_gshared)(__this, ___index0, ___count1, method);
}
inline void Array_Reverse_TisSerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452_m862D6739F2B4F4D2D442A15E0804E6DDDD77F30B (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method)
{
(( void (*) (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*, int32_t, int32_t, const RuntimeMethod*))Array_Reverse_TisSerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452_m862D6739F2B4F4D2D442A15E0804E6DDDD77F30B_gshared)(___array0, ___index1, ___length2, method);
}
inline void List_1_Sort_m1B48F59950323FDA69E911DCBE9C87A9C0CFB8D3 (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, int32_t ___index0, int32_t ___count1, RuntimeObject* ___comparer2, const RuntimeMethod* method)
{
(( void (*) (List_1_tE15A36783D21F016929125A00F602D220C32C84A*, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))List_1_Sort_m1B48F59950323FDA69E911DCBE9C87A9C0CFB8D3_gshared)(__this, ___index0, ___count1, ___comparer2, method);
}
inline void Array_Sort_TisSerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452_m4D85E4FE7CE167DEA83D2CEEC2F18355E9C65754 (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* ___array0, int32_t ___index1, int32_t ___length2, RuntimeObject* ___comparer3, const RuntimeMethod* method)
{
(( void (*) (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))Array_Sort_TisSerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452_m4D85E4FE7CE167DEA83D2CEEC2F18355E9C65754_gshared)(___array0, ___index1, ___length2, ___comparer3, method);
}
inline void ArraySortHelper_1_Sort_m39997300262F456AB52A60AA096AFE04D9A2A1AF (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* ___keys0, int32_t ___index1, int32_t ___length2, Comparison_1_t58FFF56353C5F80C81DD19A7906EBB581EB35E79* ___comparer3, const RuntimeMethod* method)
{
(( void (*) (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*, int32_t, int32_t, Comparison_1_t58FFF56353C5F80C81DD19A7906EBB581EB35E79*, const RuntimeMethod*))ArraySortHelper_1_Sort_m39997300262F456AB52A60AA096AFE04D9A2A1AF_gshared)(___keys0, ___index1, ___length2, ___comparer3, method);
}
inline void List_1_AddEnumerable_m1F86EBB0D8E529AD1BA9B31671194AAEC1FA64C7 (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, RuntimeObject* ___enumerable0, const RuntimeMethod* method)
{
(( void (*) (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521*, RuntimeObject*, const RuntimeMethod*))List_1_AddEnumerable_m1F86EBB0D8E529AD1BA9B31671194AAEC1FA64C7_gshared)(__this, ___enumerable0, method);
}
inline SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C List_1_get_Item_m19D55B15E3A425B61A510C4D4FBE7F6363161D82 (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C (*) (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521*, int32_t, const RuntimeMethod*))List_1_get_Item_m19D55B15E3A425B61A510C4D4FBE7F6363161D82_gshared)(__this, ___index0, method);
}
inline void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisSerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C_m5D352935B6834839DA3DFCCBAA0A844FC09EB8EE (RuntimeObject* ___value0, int32_t ___argName1, const RuntimeMethod* method)
{
(( void (*) (RuntimeObject*, int32_t, const RuntimeMethod*))ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisSerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C_m5D352935B6834839DA3DFCCBAA0A844FC09EB8EE_gshared)(___value0, ___argName1, method);
}
inline void List_1_set_Item_mA031C25469EFCA152935F57B6E857621B046FB7A (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, int32_t ___index0, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C ___value1, const RuntimeMethod* method)
{
(( void (*) (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521*, int32_t, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C, const RuntimeMethod*))List_1_set_Item_mA031C25469EFCA152935F57B6E857621B046FB7A_gshared)(__this, ___index0, ___value1, method);
}
inline void List_1_AddWithResize_mAE7B1D480FC532D533FA051FA8E394D1ADDF3757 (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521*, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C, const RuntimeMethod*))List_1_AddWithResize_mAE7B1D480FC532D533FA051FA8E394D1ADDF3757_gshared)(__this, ___item0, method);
}
inline void List_1_EnsureCapacity_m3A7C5ABA9FB19F100803F8147B514C6FE6C5A133 (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, int32_t ___min0, const RuntimeMethod* method)
{
(( void (*) (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521*, int32_t, const RuntimeMethod*))List_1_EnsureCapacity_m3A7C5ABA9FB19F100803F8147B514C6FE6C5A133_gshared)(__this, ___min0, method);
}
inline void List_1_Add_m90D4191082A9625E71B5BC4A7BC252C5BD7E8299_inline (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521*, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C, const RuntimeMethod*))List_1_Add_m90D4191082A9625E71B5BC4A7BC252C5BD7E8299_gshared_inline)(__this, ___item0, method);
}
inline int32_t List_1_get_Count_mE81A223E9D4AA4DCA2561161DEB7272C270767F7_inline (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521*, const RuntimeMethod*))List_1_get_Count_mE81A223E9D4AA4DCA2561161DEB7272C270767F7_gshared_inline)(__this, method);
}
inline void List_1_InsertRange_m46A473BEFE2D9C907045B0035F9312D0D978BC13 (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, int32_t ___index0, RuntimeObject* ___collection1, const RuntimeMethod* method)
{
(( void (*) (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521*, int32_t, RuntimeObject*, const RuntimeMethod*))List_1_InsertRange_m46A473BEFE2D9C907045B0035F9312D0D978BC13_gshared)(__this, ___index0, ___collection1, method);
}
inline void ReadOnlyCollection_1__ctor_m947C2CC67594BB34D0D6EE6B94D8C19A2AF3445B (ReadOnlyCollection_1_t3A3413BCAB006EAF1F0AD4A130CF22CE3B13A037* __this, RuntimeObject* ___list0, const RuntimeMethod* method)
{
(( void (*) (ReadOnlyCollection_1_t3A3413BCAB006EAF1F0AD4A130CF22CE3B13A037*, RuntimeObject*, const RuntimeMethod*))ReadOnlyCollection_1__ctor_m947C2CC67594BB34D0D6EE6B94D8C19A2AF3445B_gshared)(__this, ___list0, method);
}
inline int32_t Array_BinarySearch_TisSerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C_m21E5604C94719811E7C2BBE5D7CA5EDA0EA4D3B4 (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* ___array0, int32_t ___index1, int32_t ___length2, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
return (( int32_t (*) (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*, int32_t, int32_t, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C, RuntimeObject*, const RuntimeMethod*))Array_BinarySearch_TisSerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C_m21E5604C94719811E7C2BBE5D7CA5EDA0EA4D3B4_gshared)(___array0, ___index1, ___length2, ___value3, ___comparer4, method);
}
inline int32_t List_1_BinarySearch_m61E7AF69A5BCFF7F971653572B0A46DD2C0E5ECF (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, int32_t ___index0, int32_t ___count1, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C ___item2, RuntimeObject* ___comparer3, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521*, int32_t, int32_t, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C, RuntimeObject*, const RuntimeMethod*))List_1_BinarySearch_m61E7AF69A5BCFF7F971653572B0A46DD2C0E5ECF_gshared)(__this, ___index0, ___count1, ___item2, ___comparer3, method);
}
inline int32_t List_1_IndexOf_m524C2D0526AD60FEB7BD841C9A1DBFBB82CA6486 (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C ___item0, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521*, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C, const RuntimeMethod*))List_1_IndexOf_m524C2D0526AD60FEB7BD841C9A1DBFBB82CA6486_gshared)(__this, ___item0, method);
}
inline bool List_1_IsCompatibleObject_mB94663A5C1A0011DE9A7F868D03E39280C9CAC80 (RuntimeObject* ___value0, const RuntimeMethod* method)
{
return (( bool (*) (RuntimeObject*, const RuntimeMethod*))List_1_IsCompatibleObject_mB94663A5C1A0011DE9A7F868D03E39280C9CAC80_gshared)(___value0, method);
}
inline bool List_1_Contains_mC04FFCB9EBA1CD48953C861DAD7BFC6D20680B03 (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C ___item0, const RuntimeMethod* method)
{
return (( bool (*) (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521*, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C, const RuntimeMethod*))List_1_Contains_mC04FFCB9EBA1CD48953C861DAD7BFC6D20680B03_gshared)(__this, ___item0, method);
}
inline void List_1_CopyTo_m0E6361A596C027F8333A552518F4FBFB1E79758A (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
(( void (*) (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521*, SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*, int32_t, const RuntimeMethod*))List_1_CopyTo_m0E6361A596C027F8333A552518F4FBFB1E79758A_gshared)(__this, ___array0, ___arrayIndex1, method);
}
inline void List_1_set_Capacity_m975C9D90192F7A73264947E27D693CC232ABF90C (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, int32_t ___value0, const RuntimeMethod* method)
{
(( void (*) (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521*, int32_t, const RuntimeMethod*))List_1_set_Capacity_m975C9D90192F7A73264947E27D693CC232ABF90C_gshared)(__this, ___value0, method);
}
inline int32_t List_1_FindIndex_mA8C399896D8BC725B18D20518A34B18283F5484F (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, Predicate_1_tC88052F39393D0E4E248EB8800665E2921E13909* ___match0, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521*, Predicate_1_tC88052F39393D0E4E248EB8800665E2921E13909*, const RuntimeMethod*))List_1_FindIndex_mA8C399896D8BC725B18D20518A34B18283F5484F_gshared)(__this, ___match0, method);
}
inline bool Predicate_1_Invoke_m8AE9297F7EBFDF86DC2736E37B03A98E7CEE6208_inline (Predicate_1_tC88052F39393D0E4E248EB8800665E2921E13909* __this, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C ___obj0, const RuntimeMethod* method)
{
return (( bool (*) (Predicate_1_tC88052F39393D0E4E248EB8800665E2921E13909*, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C, const RuntimeMethod*))Predicate_1_Invoke_m8AE9297F7EBFDF86DC2736E37B03A98E7CEE6208_gshared_inline)(__this, ___obj0, method);
}
inline void List_1__ctor_mDF511B6612E1E5D593A0191B2109B9D43EE273A9 (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521*, const RuntimeMethod*))List_1__ctor_mDF511B6612E1E5D593A0191B2109B9D43EE273A9_gshared)(__this, method);
}
inline int32_t List_1_FindIndex_mDADADD15306435E68B7C2B9DEAA02573ECC0B51A (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, int32_t ___startIndex0, int32_t ___count1, Predicate_1_tC88052F39393D0E4E248EB8800665E2921E13909* ___match2, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521*, int32_t, int32_t, Predicate_1_tC88052F39393D0E4E248EB8800665E2921E13909*, const RuntimeMethod*))List_1_FindIndex_mDADADD15306435E68B7C2B9DEAA02573ECC0B51A_gshared)(__this, ___startIndex0, ___count1, ___match2, method);
}
inline void Action_1_Invoke_m8186B7CA741A9C5ACC10D5B1572DB2B8A5800C00_inline (Action_1_tD86C2FCC7B89EA018509622FD8BA07E5851ED1D9* __this, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C ___obj0, const RuntimeMethod* method)
{
(( void (*) (Action_1_tD86C2FCC7B89EA018509622FD8BA07E5851ED1D9*, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C, const RuntimeMethod*))Action_1_Invoke_m8186B7CA741A9C5ACC10D5B1572DB2B8A5800C00_gshared_inline)(__this, ___obj0, method);
}
inline void Enumerator__ctor_m1EC4A0FEE0303C1C2DE4379C588489BF390331CE (Enumerator_tD348BAA5B9575AFEB2F626A5366EBD048E31D7CD* __this, List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* ___list0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tD348BAA5B9575AFEB2F626A5366EBD048E31D7CD*, List_1_t2FCEA7635AA5C3B22E982462685B40276413F521*, const RuntimeMethod*))Enumerator__ctor_m1EC4A0FEE0303C1C2DE4379C588489BF390331CE_gshared)(__this, ___list0, method);
}
inline void List_1__ctor_m5FFC90993678E1D6423051286E157146062A0593 (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, int32_t ___capacity0, const RuntimeMethod* method)
{
(( void (*) (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521*, int32_t, const RuntimeMethod*))List_1__ctor_m5FFC90993678E1D6423051286E157146062A0593_gshared)(__this, ___capacity0, method);
}
inline int32_t Array_IndexOf_TisSerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C_m4A83F5748E8869794593BC1EB839E7038BB571FD (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* ___array0, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
return (( int32_t (*) (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C, int32_t, int32_t, const RuntimeMethod*))Array_IndexOf_TisSerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C_m4A83F5748E8869794593BC1EB839E7038BB571FD_gshared)(___array0, ___value1, ___startIndex2, ___count3, method);
}
inline void List_1_Insert_m75F6C8341EC07139DE8440C481068B3D64CA69D5 (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, int32_t ___index0, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C ___item1, const RuntimeMethod* method)
{
(( void (*) (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521*, int32_t, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C, const RuntimeMethod*))List_1_Insert_m75F6C8341EC07139DE8440C481068B3D64CA69D5_gshared)(__this, ___index0, ___item1, method);
}
inline void List_1_RemoveAt_mB4E1987A0D4D6F6D53A06D4C18DCD7863499137E (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, int32_t ___index0, const RuntimeMethod* method)
{
(( void (*) (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521*, int32_t, const RuntimeMethod*))List_1_RemoveAt_mB4E1987A0D4D6F6D53A06D4C18DCD7863499137E_gshared)(__this, ___index0, method);
}
inline bool List_1_Remove_mF8D55CF31B558EBA0DFACC22240B272EDAADEE4D (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C ___item0, const RuntimeMethod* method)
{
return (( bool (*) (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521*, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C, const RuntimeMethod*))List_1_Remove_mF8D55CF31B558EBA0DFACC22240B272EDAADEE4D_gshared)(__this, ___item0, method);
}
inline void List_1_Reverse_m70E68459859E2C8BC615437D92B5B9B1A5D72BFF (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method)
{
(( void (*) (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521*, int32_t, int32_t, const RuntimeMethod*))List_1_Reverse_m70E68459859E2C8BC615437D92B5B9B1A5D72BFF_gshared)(__this, ___index0, ___count1, method);
}
inline void Array_Reverse_TisSerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C_mD3A257991DAB7EAD1DD8487EC2F9DE58215C7592 (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method)
{
(( void (*) (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*, int32_t, int32_t, const RuntimeMethod*))Array_Reverse_TisSerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C_mD3A257991DAB7EAD1DD8487EC2F9DE58215C7592_gshared)(___array0, ___index1, ___length2, method);
}
inline void List_1_Sort_m5254C176BB64840E14C149B31066CF9044F2D2CF (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, int32_t ___index0, int32_t ___count1, RuntimeObject* ___comparer2, const RuntimeMethod* method)
{
(( void (*) (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521*, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))List_1_Sort_m5254C176BB64840E14C149B31066CF9044F2D2CF_gshared)(__this, ___index0, ___count1, ___comparer2, method);
}
inline void Array_Sort_TisSerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C_mA58CCDCCF75E20773ED8435ABB3D91AE775C757E (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* ___array0, int32_t ___index1, int32_t ___length2, RuntimeObject* ___comparer3, const RuntimeMethod* method)
{
(( void (*) (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))Array_Sort_TisSerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C_mA58CCDCCF75E20773ED8435ABB3D91AE775C757E_gshared)(___array0, ___index1, ___length2, ___comparer3, method);
}
inline void ArraySortHelper_1_Sort_mA360D8B1440745F35A3F6FC4CB3A22BB56FB3FEF (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* ___keys0, int32_t ___index1, int32_t ___length2, Comparison_1_t99F688A497AAEF1CCF78A6A519D6262CD5BD4B9D* ___comparer3, const RuntimeMethod* method)
{
(( void (*) (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*, int32_t, int32_t, Comparison_1_t99F688A497AAEF1CCF78A6A519D6262CD5BD4B9D*, const RuntimeMethod*))ArraySortHelper_1_Sort_mA360D8B1440745F35A3F6FC4CB3A22BB56FB3FEF_gshared)(___keys0, ___index1, ___length2, ___comparer3, method);
}
inline void List_1_AddEnumerable_mDF2147E522AD80A7B6A79CF8E7F00EC7DBF8A032 (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, RuntimeObject* ___enumerable0, const RuntimeMethod* method)
{
(( void (*) (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF*, RuntimeObject*, const RuntimeMethod*))List_1_AddEnumerable_mDF2147E522AD80A7B6A79CF8E7F00EC7DBF8A032_gshared)(__this, ___enumerable0, method);
}
inline SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC List_1_get_Item_mAAE7FBDBD94CC48BA01C01ACFC3C66EE219110D0 (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC (*) (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF*, int32_t, const RuntimeMethod*))List_1_get_Item_mAAE7FBDBD94CC48BA01C01ACFC3C66EE219110D0_gshared)(__this, ___index0, method);
}
inline void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisSingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC_m85CB6FEF509A4859399929F09F545FA1133C3051 (RuntimeObject* ___value0, int32_t ___argName1, const RuntimeMethod* method)
{
(( void (*) (RuntimeObject*, int32_t, const RuntimeMethod*))ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisSingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC_m85CB6FEF509A4859399929F09F545FA1133C3051_gshared)(___value0, ___argName1, method);
}
inline void List_1_set_Item_m58893707EC3B663186D1550A23DE96C818416CBD (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___index0, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ___value1, const RuntimeMethod* method)
{
(( void (*) (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF*, int32_t, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC, const RuntimeMethod*))List_1_set_Item_m58893707EC3B663186D1550A23DE96C818416CBD_gshared)(__this, ___index0, ___value1, method);
}
inline void List_1_AddWithResize_m594A4155F206677F45ECD9AAE7E9EFD0AE6137ED (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF*, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC, const RuntimeMethod*))List_1_AddWithResize_m594A4155F206677F45ECD9AAE7E9EFD0AE6137ED_gshared)(__this, ___item0, method);
}
inline void List_1_EnsureCapacity_m1A140613D2D236E9CF413F81D549E39415DF0058 (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___min0, const RuntimeMethod* method)
{
(( void (*) (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF*, int32_t, const RuntimeMethod*))List_1_EnsureCapacity_m1A140613D2D236E9CF413F81D549E39415DF0058_gshared)(__this, ___min0, method);
}
inline void List_1_Add_m624C469B79ADC28E429B7A3CA96DA72345621643_inline (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF*, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC, const RuntimeMethod*))List_1_Add_m624C469B79ADC28E429B7A3CA96DA72345621643_gshared_inline)(__this, ___item0, method);
}
inline int32_t List_1_get_Count_mF3540C84790DAB9D381F00753BA20A85694C3446_inline (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF*, const RuntimeMethod*))List_1_get_Count_mF3540C84790DAB9D381F00753BA20A85694C3446_gshared_inline)(__this, method);
}
inline void List_1_InsertRange_m8C743BAB2CDB84037FE830DF12A8B561EFEEEA60 (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___index0, RuntimeObject* ___collection1, const RuntimeMethod* method)
{
(( void (*) (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF*, int32_t, RuntimeObject*, const RuntimeMethod*))List_1_InsertRange_m8C743BAB2CDB84037FE830DF12A8B561EFEEEA60_gshared)(__this, ___index0, ___collection1, method);
}
inline void ReadOnlyCollection_1__ctor_m236FFEDF5196507C82BBA262351A75F0337621F3 (ReadOnlyCollection_1_tB4D9A0CDCFB95FF39CF5E7E6C0BA76B3178ECBDF* __this, RuntimeObject* ___list0, const RuntimeMethod* method)
{
(( void (*) (ReadOnlyCollection_1_tB4D9A0CDCFB95FF39CF5E7E6C0BA76B3178ECBDF*, RuntimeObject*, const RuntimeMethod*))ReadOnlyCollection_1__ctor_m236FFEDF5196507C82BBA262351A75F0337621F3_gshared)(__this, ___list0, method);
}
inline int32_t Array_BinarySearch_TisSingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC_mADCDA1C9B37E3A0E4E43BC98F1CC6A028AB4A020 (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* ___array0, int32_t ___index1, int32_t ___length2, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
return (( int32_t (*) (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*, int32_t, int32_t, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC, RuntimeObject*, const RuntimeMethod*))Array_BinarySearch_TisSingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC_mADCDA1C9B37E3A0E4E43BC98F1CC6A028AB4A020_gshared)(___array0, ___index1, ___length2, ___value3, ___comparer4, method);
}
inline int32_t List_1_BinarySearch_mC33A081AC70A6F890BD1F7EB86A505EFB85B2A34 (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___index0, int32_t ___count1, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ___item2, RuntimeObject* ___comparer3, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF*, int32_t, int32_t, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC, RuntimeObject*, const RuntimeMethod*))List_1_BinarySearch_mC33A081AC70A6F890BD1F7EB86A505EFB85B2A34_gshared)(__this, ___index0, ___count1, ___item2, ___comparer3, method);
}
inline int32_t List_1_IndexOf_mF5A7DA78EA07100BDE8044CA37C505F36AD7ACB1 (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ___item0, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF*, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC, const RuntimeMethod*))List_1_IndexOf_mF5A7DA78EA07100BDE8044CA37C505F36AD7ACB1_gshared)(__this, ___item0, method);
}
inline bool List_1_IsCompatibleObject_mC9CB5EB21839923C050E6922FE7050867F374865 (RuntimeObject* ___value0, const RuntimeMethod* method)
{
return (( bool (*) (RuntimeObject*, const RuntimeMethod*))List_1_IsCompatibleObject_mC9CB5EB21839923C050E6922FE7050867F374865_gshared)(___value0, method);
}
inline bool List_1_Contains_mA5832B215E464CAC8345E7ECC45562E884AE146D (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ___item0, const RuntimeMethod* method)
{
return (( bool (*) (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF*, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC, const RuntimeMethod*))List_1_Contains_mA5832B215E464CAC8345E7ECC45562E884AE146D_gshared)(__this, ___item0, method);
}
inline void List_1_CopyTo_m15B9FC56E0418F730FC3A37C8E482F7108D73B62 (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
(( void (*) (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF*, SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*, int32_t, const RuntimeMethod*))List_1_CopyTo_m15B9FC56E0418F730FC3A37C8E482F7108D73B62_gshared)(__this, ___array0, ___arrayIndex1, method);
}
inline void List_1_set_Capacity_m40FE27C2AB4F6F5F863957210FA90C1BF581D293 (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___value0, const RuntimeMethod* method)
{
(( void (*) (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF*, int32_t, const RuntimeMethod*))List_1_set_Capacity_m40FE27C2AB4F6F5F863957210FA90C1BF581D293_gshared)(__this, ___value0, method);
}
inline int32_t List_1_FindIndex_mF2AFA5B913B4B2AA7DD0D1016973A79A93BBFD38 (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, Predicate_1_t107748E0E0D2277266234EAF67AC068394C4351C* ___match0, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF*, Predicate_1_t107748E0E0D2277266234EAF67AC068394C4351C*, const RuntimeMethod*))List_1_FindIndex_mF2AFA5B913B4B2AA7DD0D1016973A79A93BBFD38_gshared)(__this, ___match0, method);
}
inline bool Predicate_1_Invoke_mADD6CFDE192E3E822D5296926054ED8A41DB09C4_inline (Predicate_1_t107748E0E0D2277266234EAF67AC068394C4351C* __this, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ___obj0, const RuntimeMethod* method)
{
return (( bool (*) (Predicate_1_t107748E0E0D2277266234EAF67AC068394C4351C*, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC, const RuntimeMethod*))Predicate_1_Invoke_mADD6CFDE192E3E822D5296926054ED8A41DB09C4_gshared_inline)(__this, ___obj0, method);
}
inline void List_1__ctor_mFEF8BE0609A5B0185A946E4BE78E3AE078DCDFDF (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF*, const RuntimeMethod*))List_1__ctor_mFEF8BE0609A5B0185A946E4BE78E3AE078DCDFDF_gshared)(__this, method);
}
inline int32_t List_1_FindIndex_mA8A19319FB31E9FB37C309AB8938A9FE57AA5C9F (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___startIndex0, int32_t ___count1, Predicate_1_t107748E0E0D2277266234EAF67AC068394C4351C* ___match2, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF*, int32_t, int32_t, Predicate_1_t107748E0E0D2277266234EAF67AC068394C4351C*, const RuntimeMethod*))List_1_FindIndex_mA8A19319FB31E9FB37C309AB8938A9FE57AA5C9F_gshared)(__this, ___startIndex0, ___count1, ___match2, method);
}
inline void Action_1_Invoke_m6A44347B678A89104F91C3A85581DCC41A21AD5B_inline (Action_1_t4501483487EE874F237B6B25ACC1026A64FBF612* __this, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ___obj0, const RuntimeMethod* method)
{
(( void (*) (Action_1_t4501483487EE874F237B6B25ACC1026A64FBF612*, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC, const RuntimeMethod*))Action_1_Invoke_m6A44347B678A89104F91C3A85581DCC41A21AD5B_gshared_inline)(__this, ___obj0, method);
}
inline void Enumerator__ctor_m159144864209387AA18DEABE7B7985388F8F3452 (Enumerator_t59E02176F2EE4E264A4750514AA127E2E21FF5D9* __this, List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* ___list0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t59E02176F2EE4E264A4750514AA127E2E21FF5D9*, List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF*, const RuntimeMethod*))Enumerator__ctor_m159144864209387AA18DEABE7B7985388F8F3452_gshared)(__this, ___list0, method);
}
inline void List_1__ctor_m9D4C783EADEFE471AE4694A264FC274077D002B4 (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___capacity0, const RuntimeMethod* method)
{
(( void (*) (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF*, int32_t, const RuntimeMethod*))List_1__ctor_m9D4C783EADEFE471AE4694A264FC274077D002B4_gshared)(__this, ___capacity0, method);
}
inline int32_t Array_IndexOf_TisSingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC_m5A2EB67A073F2BFF5B3DCDDBD15D75BC3CFB909C (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* ___array0, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
return (( int32_t (*) (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC, int32_t, int32_t, const RuntimeMethod*))Array_IndexOf_TisSingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC_m5A2EB67A073F2BFF5B3DCDDBD15D75BC3CFB909C_gshared)(___array0, ___value1, ___startIndex2, ___count3, method);
}
inline void List_1_Insert_mC8E7189F3D9D95975CFE821AC3B560B2EA7AB7A8 (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___index0, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ___item1, const RuntimeMethod* method)
{
(( void (*) (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF*, int32_t, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC, const RuntimeMethod*))List_1_Insert_mC8E7189F3D9D95975CFE821AC3B560B2EA7AB7A8_gshared)(__this, ___index0, ___item1, method);
}
inline void List_1_RemoveAt_m911F1AFFA59FD181BA9363E0B6C8B5B95067EC3B (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___index0, const RuntimeMethod* method)
{
(( void (*) (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF*, int32_t, const RuntimeMethod*))List_1_RemoveAt_m911F1AFFA59FD181BA9363E0B6C8B5B95067EC3B_gshared)(__this, ___index0, method);
}
inline bool List_1_Remove_mA8E72E7CFB72101AA88E01A84F746ECBD8E91B3F (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ___item0, const RuntimeMethod* method)
{
return (( bool (*) (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF*, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC, const RuntimeMethod*))List_1_Remove_mA8E72E7CFB72101AA88E01A84F746ECBD8E91B3F_gshared)(__this, ___item0, method);
}
inline void List_1_Reverse_m6558ECB96638BF339DAB6BDB70413BA7570A84F9 (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method)
{
(( void (*) (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF*, int32_t, int32_t, const RuntimeMethod*))List_1_Reverse_m6558ECB96638BF339DAB6BDB70413BA7570A84F9_gshared)(__this, ___index0, ___count1, method);
}
inline void Array_Reverse_TisSingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC_mD8F006C0A007C05BB69E417FA65A5A66965F997C (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method)
{
(( void (*) (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*, int32_t, int32_t, const RuntimeMethod*))Array_Reverse_TisSingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC_mD8F006C0A007C05BB69E417FA65A5A66965F997C_gshared)(___array0, ___index1, ___length2, method);
}
inline void List_1_Sort_m4F48B52D720DB8E76904DB4647F7BDA63FDEC552 (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___index0, int32_t ___count1, RuntimeObject* ___comparer2, const RuntimeMethod* method)
{
(( void (*) (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF*, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))List_1_Sort_m4F48B52D720DB8E76904DB4647F7BDA63FDEC552_gshared)(__this, ___index0, ___count1, ___comparer2, method);
}
inline void Array_Sort_TisSingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC_mE6A4B57DE0CB3DEC8371BDC3DAAAD29D6C9E3B2B (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* ___array0, int32_t ___index1, int32_t ___length2, RuntimeObject* ___comparer3, const RuntimeMethod* method)
{
(( void (*) (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))Array_Sort_TisSingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC_mE6A4B57DE0CB3DEC8371BDC3DAAAD29D6C9E3B2B_gshared)(___array0, ___index1, ___length2, ___comparer3, method);
}
inline void ArraySortHelper_1_Sort_m3182DABDA1EFACFF8268887837CA976A3577C3E6 (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* ___keys0, int32_t ___index1, int32_t ___length2, Comparison_1_tA6E38F9B8A5E125EC6515F9679C2079C747A0149* ___comparer3, const RuntimeMethod* method)
{
(( void (*) (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*, int32_t, int32_t, Comparison_1_tA6E38F9B8A5E125EC6515F9679C2079C747A0149*, const RuntimeMethod*))ArraySortHelper_1_Sort_m3182DABDA1EFACFF8268887837CA976A3577C3E6_gshared)(___keys0, ___index1, ___length2, ___comparer3, method);
}
inline void List_1_AddEnumerable_m7088ED3394FFF962AB1A50214F6D8008985A47A1 (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, RuntimeObject* ___enumerable0, const RuntimeMethod* method)
{
(( void (*) (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB*, RuntimeObject*, const RuntimeMethod*))List_1_AddEnumerable_m7088ED3394FFF962AB1A50214F6D8008985A47A1_gshared)(__this, ___enumerable0, method);
}
inline RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE List_1_get_Item_m6F50163981F18AD78856766254735B84087CEB3A (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE (*) (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB*, int32_t, const RuntimeMethod*))List_1_get_Item_m6F50163981F18AD78856766254735B84087CEB3A_gshared)(__this, ___index0, method);
}
inline void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisRenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE_m76CAF61428C4E009D1A428123021D438127BE97A (RuntimeObject* ___value0, int32_t ___argName1, const RuntimeMethod* method)
{
(( void (*) (RuntimeObject*, int32_t, const RuntimeMethod*))ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisRenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE_m76CAF61428C4E009D1A428123021D438127BE97A_gshared)(___value0, ___argName1, method);
}
inline void List_1_set_Item_m1E6C8D90BA9A30407DAEF89982AD3CDF11CF6B32 (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, int32_t ___index0, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE ___value1, const RuntimeMethod* method)
{
(( void (*) (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB*, int32_t, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE, const RuntimeMethod*))List_1_set_Item_m1E6C8D90BA9A30407DAEF89982AD3CDF11CF6B32_gshared)(__this, ___index0, ___value1, method);
}
inline void List_1_AddWithResize_mC8CCF79EEFA3DFA94ED1D51F5BE288209FBBDA6F (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB*, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE, const RuntimeMethod*))List_1_AddWithResize_mC8CCF79EEFA3DFA94ED1D51F5BE288209FBBDA6F_gshared)(__this, ___item0, method);
}
inline void List_1_EnsureCapacity_mA0D0641DCB08BA2E8610EDD5AD2C37E3F638BD69 (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, int32_t ___min0, const RuntimeMethod* method)
{
(( void (*) (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB*, int32_t, const RuntimeMethod*))List_1_EnsureCapacity_mA0D0641DCB08BA2E8610EDD5AD2C37E3F638BD69_gshared)(__this, ___min0, method);
}
inline void List_1_Add_mD3E9E49A0FA7E3FB0E9EAAEB94864A1E9161612D_inline (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB*, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE, const RuntimeMethod*))List_1_Add_mD3E9E49A0FA7E3FB0E9EAAEB94864A1E9161612D_gshared_inline)(__this, ___item0, method);
}
inline int32_t List_1_get_Count_mAAEDC1FC4B64FF31F3BCA12217394EF6F745A0CB_inline (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB*, const RuntimeMethod*))List_1_get_Count_mAAEDC1FC4B64FF31F3BCA12217394EF6F745A0CB_gshared_inline)(__this, method);
}
inline void List_1_InsertRange_m160564DB4C2AF522F842222EC1BE470BD4D2BFBC (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, int32_t ___index0, RuntimeObject* ___collection1, const RuntimeMethod* method)
{
(( void (*) (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB*, int32_t, RuntimeObject*, const RuntimeMethod*))List_1_InsertRange_m160564DB4C2AF522F842222EC1BE470BD4D2BFBC_gshared)(__this, ___index0, ___collection1, method);
}
inline void ReadOnlyCollection_1__ctor_m1F8DFD7DA2A310E5F329E7FED4F657741C0864F3 (ReadOnlyCollection_1_tE3E9C8F094CD8107FF7B47147C9E7377DF44D188* __this, RuntimeObject* ___list0, const RuntimeMethod* method)
{
(( void (*) (ReadOnlyCollection_1_tE3E9C8F094CD8107FF7B47147C9E7377DF44D188*, RuntimeObject*, const RuntimeMethod*))ReadOnlyCollection_1__ctor_m1F8DFD7DA2A310E5F329E7FED4F657741C0864F3_gshared)(__this, ___list0, method);
}
inline int32_t Array_BinarySearch_TisRenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE_mE95F7B0B9C6C11DDCBA587DDB499F531EFDAE0A6 (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* ___array0, int32_t ___index1, int32_t ___length2, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
return (( int32_t (*) (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*, int32_t, int32_t, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE, RuntimeObject*, const RuntimeMethod*))Array_BinarySearch_TisRenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE_mE95F7B0B9C6C11DDCBA587DDB499F531EFDAE0A6_gshared)(___array0, ___index1, ___length2, ___value3, ___comparer4, method);
}
inline int32_t List_1_BinarySearch_m09B361D3D35A2062535FFCE496DA4925E98CB326 (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, int32_t ___index0, int32_t ___count1, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE ___item2, RuntimeObject* ___comparer3, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB*, int32_t, int32_t, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE, RuntimeObject*, const RuntimeMethod*))List_1_BinarySearch_m09B361D3D35A2062535FFCE496DA4925E98CB326_gshared)(__this, ___index0, ___count1, ___item2, ___comparer3, method);
}
inline int32_t List_1_IndexOf_m312D2557BE560A3C9B669F02117579E3AE2A177F (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE ___item0, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB*, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE, const RuntimeMethod*))List_1_IndexOf_m312D2557BE560A3C9B669F02117579E3AE2A177F_gshared)(__this, ___item0, method);
}
inline bool List_1_IsCompatibleObject_m3AD55A212B79AE5A71A921515B5B560ED09AA679 (RuntimeObject* ___value0, const RuntimeMethod* method)
{
return (( bool (*) (RuntimeObject*, const RuntimeMethod*))List_1_IsCompatibleObject_m3AD55A212B79AE5A71A921515B5B560ED09AA679_gshared)(___value0, method);
}
inline bool List_1_Contains_m8B083500B9C34ABB12D552B8C24E2ED1B8576986 (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE ___item0, const RuntimeMethod* method)
{
return (( bool (*) (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB*, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE, const RuntimeMethod*))List_1_Contains_m8B083500B9C34ABB12D552B8C24E2ED1B8576986_gshared)(__this, ___item0, method);
}
inline void List_1_CopyTo_m4D10EE8519FA0749CB92DDB500BC753CBB15266E (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
(( void (*) (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB*, RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*, int32_t, const RuntimeMethod*))List_1_CopyTo_m4D10EE8519FA0749CB92DDB500BC753CBB15266E_gshared)(__this, ___array0, ___arrayIndex1, method);
}
inline void List_1_set_Capacity_m50BEC845EFC6BDB5291D5D4560E39559571A249E (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, int32_t ___value0, const RuntimeMethod* method)
{
(( void (*) (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB*, int32_t, const RuntimeMethod*))List_1_set_Capacity_m50BEC845EFC6BDB5291D5D4560E39559571A249E_gshared)(__this, ___value0, method);
}
inline int32_t List_1_FindIndex_m689D20041B03ABFAF7409FFC4C933E4C44478C44 (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, Predicate_1_t11FD0E9C3E3027EDC3E795B12D6DEAB00BE6209E* ___match0, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB*, Predicate_1_t11FD0E9C3E3027EDC3E795B12D6DEAB00BE6209E*, const RuntimeMethod*))List_1_FindIndex_m689D20041B03ABFAF7409FFC4C933E4C44478C44_gshared)(__this, ___match0, method);
}
inline bool Predicate_1_Invoke_m135269208DD6D8EA90E641BC8AE589799BE775CE_inline (Predicate_1_t11FD0E9C3E3027EDC3E795B12D6DEAB00BE6209E* __this, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE ___obj0, const RuntimeMethod* method)
{
return (( bool (*) (Predicate_1_t11FD0E9C3E3027EDC3E795B12D6DEAB00BE6209E*, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE, const RuntimeMethod*))Predicate_1_Invoke_m135269208DD6D8EA90E641BC8AE589799BE775CE_gshared_inline)(__this, ___obj0, method);
}
inline void List_1__ctor_m255703238033B967D14582C45A7BE4E83FF82D04 (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB*, const RuntimeMethod*))List_1__ctor_m255703238033B967D14582C45A7BE4E83FF82D04_gshared)(__this, method);
}
inline int32_t List_1_FindIndex_mABC7CD3C41F16438834ACA413E5108A28E2264E6 (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, int32_t ___startIndex0, int32_t ___count1, Predicate_1_t11FD0E9C3E3027EDC3E795B12D6DEAB00BE6209E* ___match2, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB*, int32_t, int32_t, Predicate_1_t11FD0E9C3E3027EDC3E795B12D6DEAB00BE6209E*, const RuntimeMethod*))List_1_FindIndex_mABC7CD3C41F16438834ACA413E5108A28E2264E6_gshared)(__this, ___startIndex0, ___count1, ___match2, method);
}
inline void Action_1_Invoke_m02B1A77D2272E9F41F217EA15AB3CB64FA07A90C_inline (Action_1_tD0160E105457D40D8673BAC7E6B940058EE57412* __this, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE ___obj0, const RuntimeMethod* method)
{
(( void (*) (Action_1_tD0160E105457D40D8673BAC7E6B940058EE57412*, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE, const RuntimeMethod*))Action_1_Invoke_m02B1A77D2272E9F41F217EA15AB3CB64FA07A90C_gshared_inline)(__this, ___obj0, method);
}
inline void Enumerator__ctor_mE479DEDD234610FC12442D75F584E580F0623542 (Enumerator_t1D1919C4A31BDA5C91BD99149B33227908BAECCD* __this, List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* ___list0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t1D1919C4A31BDA5C91BD99149B33227908BAECCD*, List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB*, const RuntimeMethod*))Enumerator__ctor_mE479DEDD234610FC12442D75F584E580F0623542_gshared)(__this, ___list0, method);
}
inline void List_1__ctor_mAA23C6DF65BC54A74F0E73AC8624AEEA85C18B19 (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, int32_t ___capacity0, const RuntimeMethod* method)
{
(( void (*) (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB*, int32_t, const RuntimeMethod*))List_1__ctor_mAA23C6DF65BC54A74F0E73AC8624AEEA85C18B19_gshared)(__this, ___capacity0, method);
}
inline int32_t Array_IndexOf_TisRenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE_m8404E87C4C2E6DEB5A8A922233858FD8C0D17365 (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* ___array0, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
return (( int32_t (*) (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE, int32_t, int32_t, const RuntimeMethod*))Array_IndexOf_TisRenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE_m8404E87C4C2E6DEB5A8A922233858FD8C0D17365_gshared)(___array0, ___value1, ___startIndex2, ___count3, method);
}
inline void List_1_Insert_m6EB4592E7BFBB59116CB9AD0E8072935A552FB58 (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, int32_t ___index0, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE ___item1, const RuntimeMethod* method)
{
(( void (*) (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB*, int32_t, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE, const RuntimeMethod*))List_1_Insert_m6EB4592E7BFBB59116CB9AD0E8072935A552FB58_gshared)(__this, ___index0, ___item1, method);
}
inline void List_1_RemoveAt_m52674F68DEF606EE087935A700047C6620AA6320 (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, int32_t ___index0, const RuntimeMethod* method)
{
(( void (*) (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB*, int32_t, const RuntimeMethod*))List_1_RemoveAt_m52674F68DEF606EE087935A700047C6620AA6320_gshared)(__this, ___index0, method);
}
inline bool List_1_Remove_m2CB15F6E16DCC6B604EA75C76BD3F871444CEC72 (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE ___item0, const RuntimeMethod* method)
{
return (( bool (*) (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB*, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE, const RuntimeMethod*))List_1_Remove_m2CB15F6E16DCC6B604EA75C76BD3F871444CEC72_gshared)(__this, ___item0, method);
}
inline void List_1_Reverse_m49E28EF8B84FB51101331978C42C5B880FC4B2AB (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method)
{
(( void (*) (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB*, int32_t, int32_t, const RuntimeMethod*))List_1_Reverse_m49E28EF8B84FB51101331978C42C5B880FC4B2AB_gshared)(__this, ___index0, ___count1, method);
}
inline void Array_Reverse_TisRenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE_m3709CEB1FB33EB083714D1508DABEDDF386C3A78 (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method)
{
(( void (*) (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*, int32_t, int32_t, const RuntimeMethod*))Array_Reverse_TisRenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE_m3709CEB1FB33EB083714D1508DABEDDF386C3A78_gshared)(___array0, ___index1, ___length2, method);
}
inline void List_1_Sort_m55FED7081F7709CED68D3FADA0AA87FB723B8F60 (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, int32_t ___index0, int32_t ___count1, RuntimeObject* ___comparer2, const RuntimeMethod* method)
{
(( void (*) (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB*, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))List_1_Sort_m55FED7081F7709CED68D3FADA0AA87FB723B8F60_gshared)(__this, ___index0, ___count1, ___comparer2, method);
}
inline void Array_Sort_TisRenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE_m19948B5288B62FAD71D8C6EDD3B19F6801FD1F28 (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* ___array0, int32_t ___index1, int32_t ___length2, RuntimeObject* ___comparer3, const RuntimeMethod* method)
{
(( void (*) (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))Array_Sort_TisRenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE_m19948B5288B62FAD71D8C6EDD3B19F6801FD1F28_gshared)(___array0, ___index1, ___length2, ___comparer3, method);
}
inline void ArraySortHelper_1_Sort_m032EFA2DFE420C882B8672A45726329F5E2CDCA9 (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* ___keys0, int32_t ___index1, int32_t ___length2, Comparison_1_tEF46E57E1EA1EAD3E013A3E7CBF83ADA63BD074A* ___comparer3, const RuntimeMethod* method)
{
(( void (*) (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*, int32_t, int32_t, Comparison_1_tEF46E57E1EA1EAD3E013A3E7CBF83ADA63BD074A*, const RuntimeMethod*))ArraySortHelper_1_Sort_m032EFA2DFE420C882B8672A45726329F5E2CDCA9_gshared)(___keys0, ___index1, ___length2, ___comparer3, method);
}
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mCABD1D2634A284F3C0C14AFE436D370D565FA719_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_0 = ((List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_0);
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mF1C69BC5F8445BC7A751D66D0E1D983641C713F4_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, int32_t ___capacity0, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
int32_t L_0 = ___capacity0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0012;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)12), (int32_t)4, NULL);
}
IL_0012:
{
int32_t L_1 = ___capacity0;
if (L_1)
{
goto IL_0021;
}
}
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_2 = ((List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_2);
return;
}
IL_0021:
{
int32_t L_3 = ___capacity0;
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_4 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)(SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 3), (uint32_t)L_3);
__this->____items_1 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_4);
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mA653F73188CE94E315386107E2DCA07937CFEAA1_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, RuntimeObject* ___collection0, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
int32_t V_1 = 0;
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
RuntimeObject* L_0 = ___collection0;
if (L_0)
{
goto IL_000f;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)6, NULL);
}
IL_000f:
{
RuntimeObject* L_1 = ___collection0;
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 5)));
RuntimeObject* L_2 = V_0;
if (!L_2)
{
goto IL_0050;
}
}
{
RuntimeObject* L_3 = V_0;
NullCheck(L_3);
int32_t L_4;
L_4 = InterfaceFuncInvoker0< int32_t >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
V_1 = L_4;
int32_t L_5 = V_1;
if (L_5)
{
goto IL_002f;
}
}
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_6 = ((List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_6);
return;
}
IL_002f:
{
int32_t L_7 = V_1;
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_8 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)(SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 3), (uint32_t)L_7);
__this->____items_1 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_8);
RuntimeObject* L_9 = V_0;
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_10 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
NullCheck(L_9);
InterfaceActionInvoker2< SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*, int32_t >::Invoke(5, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_9, L_10, 0);
int32_t L_11 = V_1;
__this->____size_2 = L_11;
return;
}
IL_0050:
{
__this->____size_2 = 0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_12 = ((List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_12;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_12);
RuntimeObject* L_13 = ___collection0;
List_1_AddEnumerable_mF944156800D1ABF28E1A6E0E68A529D33F8FF410(__this, L_13, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_get_Capacity_m44EAD19958999C294529C3C0AF9ED1EF9B607A5B_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, const RuntimeMethod* method)
{
{
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_0 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
NullCheck(L_0);
return ((int32_t)(((RuntimeArray*)L_0)->max_length));
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Capacity_mF2FB6E4E52AB12CFA86240205E18C4554195F51F_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, int32_t ___value0, const RuntimeMethod* method)
{
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* V_0 = NULL;
{
int32_t L_0 = ___value0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((((int32_t)L_0) >= ((int32_t)L_1)))
{
goto IL_0012;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)15), (int32_t)((int32_t)21), NULL);
}
IL_0012:
{
int32_t L_2 = ___value0;
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_3 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
NullCheck(L_3);
if ((((int32_t)L_2) == ((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))
{
goto IL_0058;
}
}
{
int32_t L_4 = ___value0;
if ((((int32_t)L_4) <= ((int32_t)0)))
{
goto IL_004d;
}
}
{
int32_t L_5 = ___value0;
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_6 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)(SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 3), (uint32_t)L_5);
V_0 = L_6;
int32_t L_7 = (int32_t)__this->____size_2;
if ((((int32_t)L_7) <= ((int32_t)0)))
{
goto IL_0045;
}
}
{
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_8 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_9 = V_0;
int32_t L_10 = (int32_t)__this->____size_2;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_8, 0, (RuntimeArray*)L_9, 0, L_10, NULL);
}
IL_0045:
{
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_11 = V_0;
__this->____items_1 = L_11;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_11);
return;
}
IL_004d:
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_12 = ((List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_12;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_12);
}
IL_0058:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m8C08AC7F86F1E8919954A207A2FD41980A55B1F9_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
return L_0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_System_Collections_IList_get_IsFixedSize_mD996AAA293DA88ADF17DA35EA972C680EB798235_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_mB12109E7E580D1B49B855B672225EDE0EB82BAB4_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_System_Collections_IList_get_IsReadOnly_m0768C11CCB9F4E40B50C37D556C1B30471557A09_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_ICollection_get_SyncRoot_mE97FA0AD9EFEBF84EED92AB794EDC58856B1E252_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = (RuntimeObject*)__this->____syncRoot_4;
if (L_0)
{
goto IL_001a;
}
}
{
RuntimeObject** L_1 = (RuntimeObject**)(&__this->____syncRoot_4);
RuntimeObject* L_2 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_2, NULL);
RuntimeObject* L_3;
L_3 = InterlockedCompareExchangeImpl<RuntimeObject*>(L_1, L_2, NULL);
}
IL_001a:
{
RuntimeObject* L_4 = (RuntimeObject*)__this->____syncRoot_4;
return L_4;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA List_1_get_Item_m546712C3F18A3D10E171C8485DE785E2FDE2A9DD_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowArgumentOutOfRange_IndexException_mC7661B8C6DD827679C95FC6B6C08F8724174936D(NULL);
}
IL_000e:
{
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_2 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
int32_t L_3 = ___index0;
NullCheck(L_2);
int32_t L_4 = L_3;
SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
return L_5;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Item_m696C57EAEC38B6416DD43897543A10EAD7742B4E_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, int32_t ___index0, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA ___value1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowArgumentOutOfRange_IndexException_mC7661B8C6DD827679C95FC6B6C08F8724174936D(NULL);
}
IL_000e:
{
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_2 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
int32_t L_3 = ___index0;
SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA L_4 = ___value1;
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA)L_4);
int32_t L_5 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_5, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_IsCompatibleObject_mEA6F32F1402D810F23DFA8684CA2003F36A19BBB_gshared (RuntimeObject* ___value0, const RuntimeMethod* method)
{
SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA V_0;
memset((&V_0), 0, sizeof(V_0));
{
RuntimeObject* L_0 = ___value0;
if (((RuntimeObject*)IsInst((RuntimeObject*)L_0, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 9))))
{
goto IL_001f;
}
}
{
RuntimeObject* L_1 = ___value0;
if (L_1)
{
goto IL_001d;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA));
SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA L_2 = V_0;
SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA L_3 = L_2;
RuntimeObject* L_4 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_3);
return (bool)((((RuntimeObject*)(RuntimeObject*)L_4) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
}
IL_001d:
{
return (bool)0;
}
IL_001f:
{
return (bool)1;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_IList_get_Item_m2B9A7997B0999D2D7A970838839D3BB7D5E51AF5_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA L_1;
L_1 = List_1_get_Item_m546712C3F18A3D10E171C8485DE785E2FDE2A9DD(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA L_2 = L_1;
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 9), &L_2);
return L_3;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_System_Collections_IList_set_Item_m9AD425676F7C1EB484DD4B0568903364A1ADA294_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, int32_t ___index0, RuntimeObject* ___value1, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeObject* L_0 = ___value1;
ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisSortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA_m8E2F39121BFB80C4847516EF67E5A0DF9CAF056E(L_0, (int32_t)((int32_t)15), il2cpp_rgctx_method(method->klass->rgctx_data, 11));
}
try
{
int32_t L_1 = ___index0;
RuntimeObject* L_2 = ___value1;
List_1_set_Item_m696C57EAEC38B6416DD43897543A10EAD7742B4E(__this, L_1, ((*(SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA*)((SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA*)(SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 12));
goto IL_002a;
}
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0017;
}
throw e;
}
CATCH_0017:
{
RuntimeObject* L_3 = ___value1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->klass->rgctx_data, 13)) };
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
Type_t* L_5;
L_5 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_4, NULL);
ThrowHelper_ThrowWrongValueTypeArgumentException_mC1A6BBE43C360583C1E2C463D5B0AADF1E3E1910(L_3, L_5, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_002a;
}
IL_002a:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_mAF5BD8A6F522C955DCE46B933758304D5018C7E6_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA ___item0, const RuntimeMethod* method)
{
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_1 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
V_0 = L_1;
int32_t L_2 = (int32_t)__this->____size_2;
V_1 = L_2;
int32_t L_3 = V_1;
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_4 = V_0;
NullCheck(L_4);
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
{
goto IL_0034;
}
}
{
int32_t L_5 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_6 = V_0;
int32_t L_7 = V_1;
SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA L_8 = ___item0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA)L_8);
return;
}
IL_0034:
{
SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA L_9 = ___item0;
List_1_AddWithResize_m11DE4AC99EEC52EC53735CB3AAAA2163F0B3C341(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void List_1_AddWithResize_m11DE4AC99EEC52EC53735CB3AAAA2163F0B3C341_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA ___item0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->____size_2;
V_0 = L_0;
int32_t L_1 = V_0;
List_1_EnsureCapacity_mCA1B6D886E31C8FDED39DDE12080B39C08E9B22B(__this, ((int32_t)il2cpp_codegen_add(L_1, 1)), il2cpp_rgctx_method(method->klass->rgctx_data, 15));
int32_t L_2 = V_0;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_2, 1));
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_3 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
int32_t L_4 = V_0;
SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA L_5 = ___item0;
NullCheck(L_3);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(L_4), (SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA)L_5);
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_System_Collections_IList_Add_mE1AD04F0CD3C2ED9F1CD82B2F76EDBEE8AC4E5E6_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeObject* L_0 = ___item0;
ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisSortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA_m8E2F39121BFB80C4847516EF67E5A0DF9CAF056E(L_0, (int32_t)((int32_t)20), il2cpp_rgctx_method(method->klass->rgctx_data, 11));
}
try
{
RuntimeObject* L_1 = ___item0;
List_1_Add_mAF5BD8A6F522C955DCE46B933758304D5018C7E6_inline(__this, ((*(SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA*)((SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA*)(SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA*)UnBox(L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 16));
goto IL_0029;
}
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0016;
}
throw e;
}
CATCH_0016:
{
RuntimeObject* L_2 = ___item0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_3 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->klass->rgctx_data, 13)) };
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
Type_t* L_4;
L_4 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_3, NULL);
ThrowHelper_ThrowWrongValueTypeArgumentException_mC1A6BBE43C360583C1E2C463D5B0AADF1E3E1910(L_2, L_4, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0029;
}
IL_0029:
{
int32_t L_5;
L_5 = List_1_get_Count_m8C08AC7F86F1E8919954A207A2FD41980A55B1F9_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
return ((int32_t)il2cpp_codegen_subtract(L_5, 1));
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_AddRange_m66D30E028506AF952DBC51F353C6EAF83BD31F48_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, RuntimeObject* ___collection0, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
RuntimeObject* L_1 = ___collection0;
List_1_InsertRange_m1CE44A23B4C1D05A14C43D8A5EBC20F06C7BAEA6(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 18));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyCollection_1_tBB6981F9C608851A411CC0A04259A1DDAB869CFE* List_1_AsReadOnly_mB8A5E4D58C69484031A86530615AB663AC2AFCD9_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, const RuntimeMethod* method)
{
{
ReadOnlyCollection_1_tBB6981F9C608851A411CC0A04259A1DDAB869CFE* L_0 = (ReadOnlyCollection_1_tBB6981F9C608851A411CC0A04259A1DDAB869CFE*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 19));
ReadOnlyCollection_1__ctor_m232124F0DE47676A643112CF25B36CE7BA820B52(L_0, (RuntimeObject*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
return L_0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_m5AF7900D68A7F7DDD4FE47F6876D2E24EE2D6539_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, int32_t ___index0, int32_t ___count1, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA ___item2, RuntimeObject* ___comparer3, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_5 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
int32_t L_6 = ___index0;
int32_t L_7 = ___count1;
SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA L_8 = ___item2;
RuntimeObject* L_9 = ___comparer3;
int32_t L_10;
L_10 = Array_BinarySearch_TisSortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA_mB7AB3C7651CB129ACB932CF5BD114A59E9BBCEF1(L_5, L_6, L_7, L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 23));
return L_10;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_mBAAD73A03C686AD850FB73FF18CB9F4C242BED2F_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA ___item0, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_m8C08AC7F86F1E8919954A207A2FD41980A55B1F9_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA L_1 = ___item0;
int32_t L_2;
L_2 = List_1_BinarySearch_m5AF7900D68A7F7DDD4FE47F6876D2E24EE2D6539(__this, 0, L_0, L_1, (RuntimeObject*)NULL, il2cpp_rgctx_method(method->klass->rgctx_data, 24));
return L_2;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_mDDAA2372FB83BA93C69B508FD62EF1AB94CD4361_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA ___item0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_m8C08AC7F86F1E8919954A207A2FD41980A55B1F9_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA L_1 = ___item0;
RuntimeObject* L_2 = ___comparer1;
int32_t L_3;
L_3 = List_1_BinarySearch_m5AF7900D68A7F7DDD4FE47F6876D2E24EE2D6539(__this, 0, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 24));
return L_3;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Clear_mB5AF57DDAB282E02FD5FC841F117092595304AC4_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
}
{
int32_t L_1 = (int32_t)__this->____size_2;
V_0 = L_1;
__this->____size_2 = 0;
int32_t L_2 = V_0;
if ((((int32_t)L_2) <= ((int32_t)0)))
{
goto IL_003c;
}
}
{
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_3 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
int32_t L_4 = V_0;
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_3, 0, L_4, NULL);
return;
}
IL_003c:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Contains_m3EF097D9235FCD72E2B00A9EADAFB452B9B7327E_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA ___item0, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
if (!L_0)
{
goto IL_0016;
}
}
{
SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA L_1 = ___item0;
int32_t L_2;
L_2 = List_1_IndexOf_mEF7AC07A501541D204CE1A2ACBB593D6291EEEFF(__this, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 26));
return (bool)((((int32_t)((((int32_t)L_2) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_0016:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_System_Collections_IList_Contains_m499F376A6E173E00BDDCA7C5B45EC1A739A65299_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___item0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
bool L_1;
L_1 = List_1_IsCompatibleObject_mEA6F32F1402D810F23DFA8684CA2003F36A19BBB(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
if (!L_1)
{
goto IL_0015;
}
}
{
RuntimeObject* L_2 = ___item0;
bool L_3;
L_3 = List_1_Contains_m3EF097D9235FCD72E2B00A9EADAFB452B9B7327E(__this, ((*(SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA*)((SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA*)(SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 28));
return L_3;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_CopyTo_mB58C6B2E07635F8876DA90B554C46CED8F34ECA5_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* ___array0, const RuntimeMethod* method)
{
{
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_0 = ___array0;
List_1_CopyTo_mEF9368708EC5FBEA8C8624AE6AAD8DBCB8088D2D(__this, L_0, 0, il2cpp_rgctx_method(method->klass->rgctx_data, 29));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_System_Collections_ICollection_CopyTo_m03079C6272C122E27BD07203F1D81EB1026A8AA1_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, RuntimeArray* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeArray* L_0 = ___array0;
if (!L_0)
{
goto IL_0012;
}
}
{
RuntimeArray* L_1 = ___array0;
NullCheck(L_1);
int32_t L_2;
L_2 = Array_get_Rank_m9383A200A2ECC89ECA44FE5F812ECFB874449C5F(L_1, NULL);
if ((((int32_t)L_2) == ((int32_t)1)))
{
goto IL_0012;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)7, NULL);
}
IL_0012:
{
}
try
{
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_3 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
RuntimeArray* L_4 = ___array0;
int32_t L_5 = ___arrayIndex1;
int32_t L_6 = (int32_t)__this->____size_2;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_3, 0, L_4, L_5, L_6, NULL);
goto IL_0031;
}
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArrayTypeMismatchException_t95F1723A5A166E62D3FBEF9734DEFBF61594F8F1_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0029;
}
throw e;
}
CATCH_0029:
{
ThrowHelper_ThrowArgumentException_Argument_InvalidArrayType_m469A6A5731A0F1E94D8B609ED9D001C3A1652A58(NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0031;
}
IL_0031:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_CopyTo_mEF9368708EC5FBEA8C8624AE6AAD8DBCB8088D2D_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_0 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
int32_t L_3 = (int32_t)__this->____size_2;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_0, 0, (RuntimeArray*)L_1, L_2, L_3, NULL);
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_EnsureCapacity_mCA1B6D886E31C8FDED39DDE12080B39C08E9B22B_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, int32_t ___min0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t G_B4_0 = 0;
{
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_0 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
NullCheck(L_0);
int32_t L_1 = ___min0;
if ((((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))) >= ((int32_t)L_1)))
{
goto IL_003d;
}
}
{
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_2 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
NullCheck(L_2);
if (!(((RuntimeArray*)L_2)->max_length))
{
goto IL_0020;
}
}
{
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_3 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
NullCheck(L_3);
G_B4_0 = ((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_3)->max_length)), 2));
goto IL_0021;
}
IL_0020:
{
G_B4_0 = 4;
}
IL_0021:
{
V_0 = G_B4_0;
int32_t L_4 = V_0;
if ((!(((uint32_t)L_4) > ((uint32_t)((int32_t)2146435071)))))
{
goto IL_0030;
}
}
{
V_0 = ((int32_t)2146435071);
}
IL_0030:
{
int32_t L_5 = V_0;
int32_t L_6 = ___min0;
if ((((int32_t)L_5) >= ((int32_t)L_6)))
{
goto IL_0036;
}
}
{
int32_t L_7 = ___min0;
V_0 = L_7;
}
IL_0036:
{
int32_t L_8 = V_0;
List_1_set_Capacity_mF2FB6E4E52AB12CFA86240205E18C4554195F51F(__this, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 30));
}
IL_003d:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Exists_m3B8AB99E8B194F417462E4CFC914A1598C5CF6B9_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, Predicate_1_t51DBC74A7C1E0943D5EFA3FE74416B197013147C* ___match0, const RuntimeMethod* method)
{
{
Predicate_1_t51DBC74A7C1E0943D5EFA3FE74416B197013147C* L_0 = ___match0;
int32_t L_1;
L_1 = List_1_FindIndex_m1ABAFE47B37E6FD38FEB0B498FDB2E0E95FFC60D(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 32));
return (bool)((((int32_t)((((int32_t)L_1) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA List_1_Find_m530C69FDA5105222E838C25AAC85B077C414F2E1_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, Predicate_1_t51DBC74A7C1E0943D5EFA3FE74416B197013147C* ___match0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA V_1;
memset((&V_1), 0, sizeof(V_1));
{
Predicate_1_t51DBC74A7C1E0943D5EFA3FE74416B197013147C* L_0 = ___match0;
if (L_0)
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)8, NULL);
}
IL_0009:
{
V_0 = 0;
goto IL_0032;
}
IL_000d:
{
Predicate_1_t51DBC74A7C1E0943D5EFA3FE74416B197013147C* L_1 = ___match0;
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_2 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
int32_t L_3 = V_0;
NullCheck(L_2);
int32_t L_4 = L_3;
SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
NullCheck(L_1);
bool L_6;
L_6 = Predicate_1_Invoke_mDDF814C07EAAA75700F17BC0D5628DC091DC8843_inline(L_1, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (!L_6)
{
goto IL_002e;
}
}
{
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_7 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
int32_t L_8 = V_0;
NullCheck(L_7);
int32_t L_9 = L_8;
SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
return L_10;
}
IL_002e:
{
int32_t L_11 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_11, 1));
}
IL_0032:
{
int32_t L_12 = V_0;
int32_t L_13 = (int32_t)__this->____size_2;
if ((((int32_t)L_12) < ((int32_t)L_13)))
{
goto IL_000d;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA));
SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA L_14 = V_1;
return L_14;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* List_1_FindAll_mA41F0524A7A8DEA86D7C4AA245F7E583EA240B5A_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, Predicate_1_t51DBC74A7C1E0943D5EFA3FE74416B197013147C* ___match0, const RuntimeMethod* method)
{
List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* V_0 = NULL;
int32_t V_1 = 0;
{
Predicate_1_t51DBC74A7C1E0943D5EFA3FE74416B197013147C* L_0 = ___match0;
if (L_0)
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)8, NULL);
}
IL_0009:
{
List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* L_1 = (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 0));
List_1__ctor_mCABD1D2634A284F3C0C14AFE436D370D565FA719(L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
V_0 = L_1;
V_1 = 0;
goto IL_003d;
}
IL_0013:
{
Predicate_1_t51DBC74A7C1E0943D5EFA3FE74416B197013147C* L_2 = ___match0;
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_3 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
int32_t L_4 = V_1;
NullCheck(L_3);
int32_t L_5 = L_4;
SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
NullCheck(L_2);
bool L_7;
L_7 = Predicate_1_Invoke_mDDF814C07EAAA75700F17BC0D5628DC091DC8843_inline(L_2, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (!L_7)
{
goto IL_0039;
}
}
{
List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* L_8 = V_0;
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_9 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
int32_t L_10 = V_1;
NullCheck(L_9);
int32_t L_11 = L_10;
SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
NullCheck(L_8);
List_1_Add_mAF5BD8A6F522C955DCE46B933758304D5018C7E6_inline(L_8, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
}
IL_0039:
{
int32_t L_13 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_13, 1));
}
IL_003d:
{
int32_t L_14 = V_1;
int32_t L_15 = (int32_t)__this->____size_2;
if ((((int32_t)L_14) < ((int32_t)L_15)))
{
goto IL_0013;
}
}
{
List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* L_16 = V_0;
return L_16;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_m1ABAFE47B37E6FD38FEB0B498FDB2E0E95FFC60D_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, Predicate_1_t51DBC74A7C1E0943D5EFA3FE74416B197013147C* ___match0, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
Predicate_1_t51DBC74A7C1E0943D5EFA3FE74416B197013147C* L_1 = ___match0;
int32_t L_2;
L_2 = List_1_FindIndex_m3DB790ECBCC017F61C5A7FE9D6B204486D6E99F2(__this, 0, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 35));
return L_2;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_m3DB790ECBCC017F61C5A7FE9D6B204486D6E99F2_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, int32_t ___startIndex0, int32_t ___count1, Predicate_1_t51DBC74A7C1E0943D5EFA3FE74416B197013147C* ___match2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
int32_t L_0 = ___startIndex0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) > ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowStartIndexArgumentOutOfRange_ArgumentOutOfRange_Index_m94BADCC6D7EBBD12BE8323775FFB43AF01499B0F(NULL);
}
IL_000e:
{
int32_t L_2 = ___count1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_001d;
}
}
{
int32_t L_3 = ___startIndex0;
int32_t L_4 = (int32_t)__this->____size_2;
int32_t L_5 = ___count1;
if ((((int32_t)L_3) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_4, L_5)))))
{
goto IL_0022;
}
}
IL_001d:
{
ThrowHelper_ThrowCountArgumentOutOfRange_ArgumentOutOfRange_Count_m6C4A7F645BDD8EB62B50CB76E84416D94620DCC7(NULL);
}
IL_0022:
{
Predicate_1_t51DBC74A7C1E0943D5EFA3FE74416B197013147C* L_6 = ___match2;
if (L_6)
{
goto IL_002b;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)8, NULL);
}
IL_002b:
{
int32_t L_7 = ___startIndex0;
int32_t L_8 = ___count1;
V_0 = ((int32_t)il2cpp_codegen_add(L_7, L_8));
int32_t L_9 = ___startIndex0;
V_1 = L_9;
goto IL_004d;
}
IL_0033:
{
Predicate_1_t51DBC74A7C1E0943D5EFA3FE74416B197013147C* L_10 = ___match2;
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_11 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
int32_t L_12 = V_1;
NullCheck(L_11);
int32_t L_13 = L_12;
SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA L_14 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_13));
NullCheck(L_10);
bool L_15;
L_15 = Predicate_1_Invoke_mDDF814C07EAAA75700F17BC0D5628DC091DC8843_inline(L_10, L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (!L_15)
{
goto IL_0049;
}
}
{
int32_t L_16 = V_1;
return L_16;
}
IL_0049:
{
int32_t L_17 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_17, 1));
}
IL_004d:
{
int32_t L_18 = V_1;
int32_t L_19 = V_0;
if ((((int32_t)L_18) < ((int32_t)L_19)))
{
goto IL_0033;
}
}
{
return (-1);
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_ForEach_m6C75573125F6F5FD6A7D31AB278FF492CF6E3AB3_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, Action_1_t72E548755F4BB43C31EDE2E7DAC9E4AEA03432B0* ___action0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
Action_1_t72E548755F4BB43C31EDE2E7DAC9E4AEA03432B0* L_0 = ___action0;
if (L_0)
{
goto IL_000a;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)((int32_t)33), NULL);
}
IL_000a:
{
int32_t L_1 = (int32_t)__this->____version_3;
V_0 = L_1;
V_1 = 0;
goto IL_0034;
}
IL_0015:
{
int32_t L_2 = V_0;
int32_t L_3 = (int32_t)__this->____version_3;
if ((!(((uint32_t)L_2) == ((uint32_t)L_3))))
{
goto IL_003d;
}
}
{
Action_1_t72E548755F4BB43C31EDE2E7DAC9E4AEA03432B0* L_4 = ___action0;
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_5 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
int32_t L_6 = V_1;
NullCheck(L_5);
int32_t L_7 = L_6;
SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck(L_4);
Action_1_Invoke_m72F1143242F61E8C2FF0978434DF277335511C40_inline(L_4, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 37));
int32_t L_9 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_9, 1));
}
IL_0034:
{
int32_t L_10 = V_1;
int32_t L_11 = (int32_t)__this->____size_2;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0015;
}
}
IL_003d:
{
int32_t L_12 = V_0;
int32_t L_13 = (int32_t)__this->____version_3;
if ((((int32_t)L_12) == ((int32_t)L_13)))
{
goto IL_004b;
}
}
{
ThrowHelper_ThrowInvalidOperationException_InvalidOperation_EnumFailedVersion_m5331E2E0EC0E36843D53F439C2529530595ACE9F(NULL);
}
IL_004b:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t8534CC1E09AC7402C395E1215F04227DA8E4349F List_1_GetEnumerator_mEE33869716E9E8B17D4AA92FF47AB9FFF1A0C549_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, const RuntimeMethod* method)
{
{
Enumerator_t8534CC1E09AC7402C395E1215F04227DA8E4349F L_0;
memset((&L_0), 0, sizeof(L_0));
Enumerator__ctor_m28AD71B8BB6284A2906232316B293DB7D0FFB27D((&L_0), __this, il2cpp_rgctx_method(method->klass->rgctx_data, 39));
return L_0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_mE58E5B2DF8918D9257F8D1103DA3502EA72B250A_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, const RuntimeMethod* method)
{
{
Enumerator_t8534CC1E09AC7402C395E1215F04227DA8E4349F L_0;
memset((&L_0), 0, sizeof(L_0));
Enumerator__ctor_m28AD71B8BB6284A2906232316B293DB7D0FFB27D((&L_0), __this, il2cpp_rgctx_method(method->klass->rgctx_data, 39));
Enumerator_t8534CC1E09AC7402C395E1215F04227DA8E4349F L_1 = L_0;
RuntimeObject* L_2 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 38), &L_1);
return (RuntimeObject*)L_2;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_IEnumerable_GetEnumerator_m0D8975E6A8124BDB6BD83F36A59B2166735EF415_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, const RuntimeMethod* method)
{
{
Enumerator_t8534CC1E09AC7402C395E1215F04227DA8E4349F L_0;
memset((&L_0), 0, sizeof(L_0));
Enumerator__ctor_m28AD71B8BB6284A2906232316B293DB7D0FFB27D((&L_0), __this, il2cpp_rgctx_method(method->klass->rgctx_data, 39));
Enumerator_t8534CC1E09AC7402C395E1215F04227DA8E4349F L_1 = L_0;
RuntimeObject* L_2 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 38), &L_1);
return (RuntimeObject*)L_2;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* List_1_GetRange_mD4E446E3A2CDDC6D928F47FE2367F7079CB29BD2_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method)
{
List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* V_0 = NULL;
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
int32_t L_5 = ___count1;
List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* L_6 = (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 0));
List_1__ctor_mF1C69BC5F8445BC7A751D66D0E1D983641C713F4(L_6, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 41));
V_0 = L_6;
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_7 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
int32_t L_8 = ___index0;
List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* L_9 = V_0;
NullCheck(L_9);
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_10 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)L_9->____items_1;
int32_t L_11 = ___count1;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_7, L_8, (RuntimeArray*)L_10, 0, L_11, NULL);
List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* L_12 = V_0;
int32_t L_13 = ___count1;
NullCheck(L_12);
L_12->____size_2 = L_13;
List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* L_14 = V_0;
return L_14;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_IndexOf_mEF7AC07A501541D204CE1A2ACBB593D6291EEEFF_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA ___item0, const RuntimeMethod* method)
{
{
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_0 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA L_1 = ___item0;
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3;
L_3 = Array_IndexOf_TisSortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA_m18BD516D6FA4BF174C04E5DA27C7AAE4495A4753(L_0, L_1, 0, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 42));
return L_3;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_System_Collections_IList_IndexOf_m8AAD0F1D59085179B3971FE8B059C2334495D4DB_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___item0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
bool L_1;
L_1 = List_1_IsCompatibleObject_mEA6F32F1402D810F23DFA8684CA2003F36A19BBB(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
if (!L_1)
{
goto IL_0015;
}
}
{
RuntimeObject* L_2 = ___item0;
int32_t L_3;
L_3 = List_1_IndexOf_mEF7AC07A501541D204CE1A2ACBB593D6291EEEFF(__this, ((*(SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA*)((SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA*)(SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 26));
return L_3;
}
IL_0015:
{
return (-1);
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Insert_mA1A92AE011B10506AD6241DCADC21F693CCBCBA7_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, int32_t ___index0, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA ___item1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) > ((uint32_t)L_1))))
{
goto IL_0012;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)13), (int32_t)((int32_t)27), NULL);
}
IL_0012:
{
int32_t L_2 = (int32_t)__this->____size_2;
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_3 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
NullCheck(L_3);
if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)(((RuntimeArray*)L_3)->max_length))))))
{
goto IL_0030;
}
}
{
int32_t L_4 = (int32_t)__this->____size_2;
List_1_EnsureCapacity_mCA1B6D886E31C8FDED39DDE12080B39C08E9B22B(__this, ((int32_t)il2cpp_codegen_add(L_4, 1)), il2cpp_rgctx_method(method->klass->rgctx_data, 15));
}
IL_0030:
{
int32_t L_5 = ___index0;
int32_t L_6 = (int32_t)__this->____size_2;
if ((((int32_t)L_5) >= ((int32_t)L_6)))
{
goto IL_0056;
}
}
{
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_7 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
int32_t L_8 = ___index0;
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_9 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
int32_t L_10 = ___index0;
int32_t L_11 = (int32_t)__this->____size_2;
int32_t L_12 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_7, L_8, (RuntimeArray*)L_9, ((int32_t)il2cpp_codegen_add(L_10, 1)), ((int32_t)il2cpp_codegen_subtract(L_11, L_12)), NULL);
}
IL_0056:
{
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_13 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
int32_t L_14 = ___index0;
SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA L_15 = ___item1;
NullCheck(L_13);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA)L_15);
int32_t L_16 = (int32_t)__this->____size_2;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_16, 1));
int32_t L_17 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_17, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_System_Collections_IList_Insert_mE6022544401AC227EAA57D755D27463421DE23A6_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, int32_t ___index0, RuntimeObject* ___item1, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeObject* L_0 = ___item1;
ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisSortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA_m8E2F39121BFB80C4847516EF67E5A0DF9CAF056E(L_0, (int32_t)((int32_t)20), il2cpp_rgctx_method(method->klass->rgctx_data, 11));
}
try
{
int32_t L_1 = ___index0;
RuntimeObject* L_2 = ___item1;
List_1_Insert_mA1A92AE011B10506AD6241DCADC21F693CCBCBA7(__this, L_1, ((*(SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA*)((SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA*)(SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 43));
goto IL_002a;
}
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0017;
}
throw e;
}
CATCH_0017:
{
RuntimeObject* L_3 = ___item1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->klass->rgctx_data, 13)) };
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
Type_t* L_5;
L_5 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_4, NULL);
ThrowHelper_ThrowWrongValueTypeArgumentException_mC1A6BBE43C360583C1E2C463D5B0AADF1E3E1910(L_3, L_5, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_002a;
}
IL_002a:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_InsertRange_m1CE44A23B4C1D05A14C43D8A5EBC20F06C7BAEA6_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, int32_t ___index0, RuntimeObject* ___collection1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
int32_t V_1 = 0;
RuntimeObject* V_2 = NULL;
{
RuntimeObject* L_0 = ___collection1;
if (L_0)
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)6, NULL);
}
IL_0009:
{
int32_t L_1 = ___index0;
int32_t L_2 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_1) > ((uint32_t)L_2))))
{
goto IL_0017;
}
}
{
ThrowHelper_ThrowArgumentOutOfRange_IndexException_mC7661B8C6DD827679C95FC6B6C08F8724174936D(NULL);
}
IL_0017:
{
RuntimeObject* L_3 = ___collection1;
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 5)));
RuntimeObject* L_4 = V_0;
if (!L_4)
{
goto IL_00bc;
}
}
{
RuntimeObject* L_5 = V_0;
NullCheck(L_5);
int32_t L_6;
L_6 = InterfaceFuncInvoker0< int32_t >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_5);
V_1 = L_6;
int32_t L_7 = V_1;
if ((((int32_t)L_7) <= ((int32_t)0)))
{
goto IL_00fb;
}
}
{
int32_t L_8 = (int32_t)__this->____size_2;
int32_t L_9 = V_1;
List_1_EnsureCapacity_mCA1B6D886E31C8FDED39DDE12080B39C08E9B22B(__this, ((int32_t)il2cpp_codegen_add(L_8, L_9)), il2cpp_rgctx_method(method->klass->rgctx_data, 15));
int32_t L_10 = ___index0;
int32_t L_11 = (int32_t)__this->____size_2;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0066;
}
}
{
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_12 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
int32_t L_13 = ___index0;
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_14 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
int32_t L_15 = ___index0;
int32_t L_16 = V_1;
int32_t L_17 = (int32_t)__this->____size_2;
int32_t L_18 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_12, L_13, (RuntimeArray*)L_14, ((int32_t)il2cpp_codegen_add(L_15, L_16)), ((int32_t)il2cpp_codegen_subtract(L_17, L_18)), NULL);
}
IL_0066:
{
RuntimeObject* L_19 = V_0;
if ((!(((RuntimeObject*)(List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291*)__this) == ((RuntimeObject*)(RuntimeObject*)L_19))))
{
goto IL_009f;
}
}
{
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_20 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_21 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
int32_t L_22 = ___index0;
int32_t L_23 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_20, 0, (RuntimeArray*)L_21, L_22, L_23, NULL);
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_24 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
int32_t L_25 = ___index0;
int32_t L_26 = V_1;
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_27 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
int32_t L_28 = ___index0;
int32_t L_29 = (int32_t)__this->____size_2;
int32_t L_30 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_24, ((int32_t)il2cpp_codegen_add(L_25, L_26)), (RuntimeArray*)L_27, ((int32_t)il2cpp_codegen_multiply(L_28, 2)), ((int32_t)il2cpp_codegen_subtract(L_29, L_30)), NULL);
goto IL_00ac;
}
IL_009f:
{
RuntimeObject* L_31 = V_0;
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_32 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
int32_t L_33 = ___index0;
NullCheck(L_31);
InterfaceActionInvoker2< SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*, int32_t >::Invoke(5, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_31, L_32, L_33);
}
IL_00ac:
{
int32_t L_34 = (int32_t)__this->____size_2;
int32_t L_35 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_34, L_35));
goto IL_00fb;
}
IL_00bc:
{
int32_t L_36 = ___index0;
int32_t L_37 = (int32_t)__this->____size_2;
if ((((int32_t)L_36) >= ((int32_t)L_37)))
{
goto IL_00f4;
}
}
{
RuntimeObject* L_38 = ___collection1;
NullCheck(L_38);
RuntimeObject* L_39;
L_39 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_38);
V_2 = L_39;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00ea:
{
{
RuntimeObject* L_40 = V_2;
if (!L_40)
{
goto IL_00f3;
}
}
{
RuntimeObject* L_41 = V_2;
NullCheck((RuntimeObject*)L_41);
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_41);
}
IL_00f3:
{
return;
}
}
});
try
{
{
goto IL_00e0_1;
}
IL_00ce_1:
{
int32_t L_42 = ___index0;
int32_t L_43 = L_42;
___index0 = ((int32_t)il2cpp_codegen_add(L_43, 1));
RuntimeObject* L_44 = V_2;
NullCheck(L_44);
SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA L_45;
L_45 = InterfaceFuncInvoker0< SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 40), L_44);
List_1_Insert_mA1A92AE011B10506AD6241DCADC21F693CCBCBA7(__this, L_43, L_45, il2cpp_rgctx_method(method->klass->rgctx_data, 43));
}
IL_00e0_1:
{
RuntimeObject* L_46 = V_2;
NullCheck((RuntimeObject*)L_46);
bool L_47;
L_47 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_46);
if (L_47)
{
goto IL_00ce_1;
}
}
{
goto IL_00fb;
}
}
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00f4:
{
RuntimeObject* L_48 = ___collection1;
List_1_AddEnumerable_mF944156800D1ABF28E1A6E0E68A529D33F8FF410(__this, L_48, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
}
IL_00fb:
{
int32_t L_49 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_49, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Remove_mA10D7AAB5E069915C600E5D4257E226453CFF47D_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA ___item0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA L_0 = ___item0;
int32_t L_1;
L_1 = List_1_IndexOf_mEF7AC07A501541D204CE1A2ACBB593D6291EEEFF(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 26));
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0015;
}
}
{
int32_t L_3 = V_0;
List_1_RemoveAt_mD4F5B121932BBAB625D3A851C906B42198E2CA78(__this, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 46));
return (bool)1;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_System_Collections_IList_Remove_mFE1977A83B57DE16F8CBD5A824E6F7045DFAAAE5_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___item0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
bool L_1;
L_1 = List_1_IsCompatibleObject_mEA6F32F1402D810F23DFA8684CA2003F36A19BBB(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
if (!L_1)
{
goto IL_0015;
}
}
{
RuntimeObject* L_2 = ___item0;
bool L_3;
L_3 = List_1_Remove_mA10D7AAB5E069915C600E5D4257E226453CFF47D(__this, ((*(SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA*)((SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA*)(SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 47));
}
IL_0015:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_RemoveAll_mB61F7D5DE4081668418D736304E4B4D5F4F73599_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, Predicate_1_t51DBC74A7C1E0943D5EFA3FE74416B197013147C* ___match0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
Predicate_1_t51DBC74A7C1E0943D5EFA3FE74416B197013147C* L_0 = ___match0;
if (L_0)
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)8, NULL);
}
IL_0009:
{
V_0 = 0;
goto IL_0011;
}
IL_000d:
{
int32_t L_1 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_1, 1));
}
IL_0011:
{
int32_t L_2 = V_0;
int32_t L_3 = (int32_t)__this->____size_2;
if ((((int32_t)L_2) >= ((int32_t)L_3)))
{
goto IL_002e;
}
}
{
Predicate_1_t51DBC74A7C1E0943D5EFA3FE74416B197013147C* L_4 = ___match0;
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_5 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
int32_t L_6 = V_0;
NullCheck(L_5);
int32_t L_7 = L_6;
SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck(L_4);
bool L_9;
L_9 = Predicate_1_Invoke_mDDF814C07EAAA75700F17BC0D5628DC091DC8843_inline(L_4, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (!L_9)
{
goto IL_000d;
}
}
IL_002e:
{
int32_t L_10 = V_0;
int32_t L_11 = (int32_t)__this->____size_2;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0039;
}
}
{
return 0;
}
IL_0039:
{
int32_t L_12 = V_0;
V_1 = ((int32_t)il2cpp_codegen_add(L_12, 1));
goto IL_0089;
}
IL_003f:
{
int32_t L_13 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_13, 1));
}
IL_0043:
{
int32_t L_14 = V_1;
int32_t L_15 = (int32_t)__this->____size_2;
if ((((int32_t)L_14) >= ((int32_t)L_15)))
{
goto IL_0060;
}
}
{
Predicate_1_t51DBC74A7C1E0943D5EFA3FE74416B197013147C* L_16 = ___match0;
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_17 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
int32_t L_18 = V_1;
NullCheck(L_17);
int32_t L_19 = L_18;
SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
NullCheck(L_16);
bool L_21;
L_21 = Predicate_1_Invoke_mDDF814C07EAAA75700F17BC0D5628DC091DC8843_inline(L_16, L_20, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (L_21)
{
goto IL_003f;
}
}
IL_0060:
{
int32_t L_22 = V_1;
int32_t L_23 = (int32_t)__this->____size_2;
if ((((int32_t)L_22) >= ((int32_t)L_23)))
{
goto IL_0089;
}
}
{
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_24 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
int32_t L_25 = V_0;
int32_t L_26 = L_25;
V_0 = ((int32_t)il2cpp_codegen_add(L_26, 1));
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_27 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
int32_t L_28 = V_1;
int32_t L_29 = L_28;
V_1 = ((int32_t)il2cpp_codegen_add(L_29, 1));
NullCheck(L_27);
int32_t L_30 = L_29;
SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA L_31 = (L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_30));
NullCheck(L_24);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(L_26), (SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA)L_31);
}
IL_0089:
{
int32_t L_32 = V_1;
int32_t L_33 = (int32_t)__this->____size_2;
if ((((int32_t)L_32) < ((int32_t)L_33)))
{
goto IL_0043;
}
}
{
}
{
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_34 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
int32_t L_35 = V_0;
int32_t L_36 = (int32_t)__this->____size_2;
int32_t L_37 = V_0;
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_34, L_35, ((int32_t)il2cpp_codegen_subtract(L_36, L_37)), NULL);
}
IL_00ad:
{
int32_t L_38 = (int32_t)__this->____size_2;
int32_t L_39 = V_0;
int32_t L_40 = V_0;
__this->____size_2 = L_40;
int32_t L_41 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_41, 1));
return ((int32_t)il2cpp_codegen_subtract(L_38, L_39));
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveAt_mD4F5B121932BBAB625D3A851C906B42198E2CA78_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, int32_t ___index0, const RuntimeMethod* method)
{
SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowArgumentOutOfRange_IndexException_mC7661B8C6DD827679C95FC6B6C08F8724174936D(NULL);
}
IL_000e:
{
int32_t L_2 = (int32_t)__this->____size_2;
__this->____size_2 = ((int32_t)il2cpp_codegen_subtract(L_2, 1));
int32_t L_3 = ___index0;
int32_t L_4 = (int32_t)__this->____size_2;
if ((((int32_t)L_3) >= ((int32_t)L_4)))
{
goto IL_0042;
}
}
{
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_5 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
int32_t L_6 = ___index0;
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_7 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
int32_t L_8 = ___index0;
int32_t L_9 = (int32_t)__this->____size_2;
int32_t L_10 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_5, ((int32_t)il2cpp_codegen_add(L_6, 1)), (RuntimeArray*)L_7, L_8, ((int32_t)il2cpp_codegen_subtract(L_9, L_10)), NULL);
}
IL_0042:
{
}
{
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_11 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
int32_t L_12 = (int32_t)__this->____size_2;
il2cpp_codegen_initobj((&V_0), sizeof(SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA));
SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA L_13 = V_0;
NullCheck(L_11);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(L_12), (SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA)L_13);
}
IL_0063:
{
int32_t L_14 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_14, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveRange_m3DDB4B05320FD88EA8E31D24AAD94F908BBF796E_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
int32_t L_5 = ___count1;
if ((((int32_t)L_5) <= ((int32_t)0)))
{
goto IL_008d;
}
}
{
int32_t L_6 = (int32_t)__this->____size_2;
int32_t L_7 = (int32_t)__this->____size_2;
int32_t L_8 = ___count1;
__this->____size_2 = ((int32_t)il2cpp_codegen_subtract(L_7, L_8));
int32_t L_9 = ___index0;
int32_t L_10 = (int32_t)__this->____size_2;
if ((((int32_t)L_9) >= ((int32_t)L_10)))
{
goto IL_0066;
}
}
{
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_11 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
int32_t L_12 = ___index0;
int32_t L_13 = ___count1;
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_14 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
int32_t L_15 = ___index0;
int32_t L_16 = (int32_t)__this->____size_2;
int32_t L_17 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_11, ((int32_t)il2cpp_codegen_add(L_12, L_13)), (RuntimeArray*)L_14, L_15, ((int32_t)il2cpp_codegen_subtract(L_16, L_17)), NULL);
}
IL_0066:
{
int32_t L_18 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_18, 1));
}
{
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_19 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
int32_t L_20 = (int32_t)__this->____size_2;
int32_t L_21 = ___count1;
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_19, L_20, L_21, NULL);
}
IL_008d:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Reverse_m7936FB0279706D9090D13C728E419B559ABEB47E_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_m8C08AC7F86F1E8919954A207A2FD41980A55B1F9_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
List_1_Reverse_m02C052EAF56988547DE9DFC7514AEF315608767B(__this, 0, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 48));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Reverse_m02C052EAF56988547DE9DFC7514AEF315608767B_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
int32_t L_5 = ___count1;
if ((((int32_t)L_5) <= ((int32_t)1)))
{
goto IL_0038;
}
}
{
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_6 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
int32_t L_7 = ___index0;
int32_t L_8 = ___count1;
Array_Reverse_TisSortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA_m349C7F78DEB039498EBE6308CA8990F50C767514(L_6, L_7, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 49));
}
IL_0038:
{
int32_t L_9 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_9, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m47937DDF379FC01F65E7B688B2C0C8C249B0B2FE_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_m8C08AC7F86F1E8919954A207A2FD41980A55B1F9_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
List_1_Sort_mEF379A9F9502F7EB2FC978F1CFB002EF9139EDF3(__this, 0, L_0, (RuntimeObject*)NULL, il2cpp_rgctx_method(method->klass->rgctx_data, 50));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m84376738DFDEE729B9BCCA6987CA365DEB103C43_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_m8C08AC7F86F1E8919954A207A2FD41980A55B1F9_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
RuntimeObject* L_1 = ___comparer0;
List_1_Sort_mEF379A9F9502F7EB2FC978F1CFB002EF9139EDF3(__this, 0, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 50));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_mEF379A9F9502F7EB2FC978F1CFB002EF9139EDF3_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, int32_t ___index0, int32_t ___count1, RuntimeObject* ___comparer2, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
int32_t L_5 = ___count1;
if ((((int32_t)L_5) <= ((int32_t)1)))
{
goto IL_0039;
}
}
{
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_6 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
int32_t L_7 = ___index0;
int32_t L_8 = ___count1;
RuntimeObject* L_9 = ___comparer2;
Array_Sort_TisSortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA_m7D9D485AEBA5700BA17FF2812E155D5A8997FA02(L_6, L_7, L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 51));
}
IL_0039:
{
int32_t L_10 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_10, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m994B0AB2B1094790A2E4ED211474AD673F7DECB8_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, Comparison_1_tBA8E62E1D99117B29F57BB6477E7B2CEDD1B5158* ___comparison0, const RuntimeMethod* method)
{
{
Comparison_1_tBA8E62E1D99117B29F57BB6477E7B2CEDD1B5158* L_0 = ___comparison0;
if (L_0)
{
goto IL_000a;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)((int32_t)34), NULL);
}
IL_000a:
{
int32_t L_1 = (int32_t)__this->____size_2;
if ((((int32_t)L_1) <= ((int32_t)1)))
{
goto IL_0026;
}
}
{
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_2 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
int32_t L_3 = (int32_t)__this->____size_2;
Comparison_1_tBA8E62E1D99117B29F57BB6477E7B2CEDD1B5158* L_4 = ___comparison0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 54));
ArraySortHelper_1_Sort_mE4B6553DD61913FAEC9A9AE59D6093A1CE2809A3(L_2, 0, L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 53));
}
IL_0026:
{
int32_t L_5 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_5, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* List_1_ToArray_m7E4D4B3420C46E13974FA1E2473499D13994D433_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, const RuntimeMethod* method)
{
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* V_0 = NULL;
{
int32_t L_0 = (int32_t)__this->____size_2;
if (L_0)
{
goto IL_000e;
}
}
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_1 = ((List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
return L_1;
}
IL_000e:
{
int32_t L_2 = (int32_t)__this->____size_2;
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_3 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)(SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 3), (uint32_t)L_2);
V_0 = L_3;
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_4 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_5 = V_0;
int32_t L_6 = (int32_t)__this->____size_2;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_4, 0, (RuntimeArray*)L_5, 0, L_6, NULL);
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_7 = V_0;
return L_7;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_AddEnumerable_mF944156800D1ABF28E1A6E0E68A529D33F8FF410_gshared (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, RuntimeObject* ___enumerable0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA V_1;
memset((&V_1), 0, sizeof(V_1));
int32_t V_2 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
RuntimeObject* L_1 = ___enumerable0;
NullCheck(L_1);
RuntimeObject* L_2;
L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_1);
V_0 = L_2;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0063:
{
{
RuntimeObject* L_3 = V_0;
if (!L_3)
{
goto IL_006c;
}
}
{
RuntimeObject* L_4 = V_0;
NullCheck((RuntimeObject*)L_4);
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_4);
}
IL_006c:
{
return;
}
}
});
try
{
{
goto IL_0059_1;
}
IL_0017_1:
{
RuntimeObject* L_5 = V_0;
NullCheck(L_5);
SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA L_6;
L_6 = InterfaceFuncInvoker0< SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 40), L_5);
V_1 = L_6;
int32_t L_7 = (int32_t)__this->____size_2;
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_8 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
NullCheck(L_8);
if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)(((RuntimeArray*)L_8)->max_length))))))
{
goto IL_003c_1;
}
}
{
int32_t L_9 = (int32_t)__this->____size_2;
List_1_EnsureCapacity_mCA1B6D886E31C8FDED39DDE12080B39C08E9B22B(__this, ((int32_t)il2cpp_codegen_add(L_9, 1)), il2cpp_rgctx_method(method->klass->rgctx_data, 15));
}
IL_003c_1:
{
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_10 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
int32_t L_11 = (int32_t)__this->____size_2;
V_2 = L_11;
int32_t L_12 = V_2;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_12, 1));
int32_t L_13 = V_2;
SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA L_14 = V_1;
NullCheck(L_10);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA)L_14);
}
IL_0059_1:
{
RuntimeObject* L_15 = V_0;
NullCheck((RuntimeObject*)L_15);
bool L_16;
L_16 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_15);
if (L_16)
{
goto IL_0017_1;
}
}
{
goto IL_006d;
}
}
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_006d:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__cctor_m46AE7298DEFCA721F807DF6327F47690B79DD83E_gshared (const RuntimeMethod* method)
{
{
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_0 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)(SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)SZArrayNew(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 3), (uint32_t)0);
((List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___s_emptyArray_5 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___s_emptyArray_5), (void*)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
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m136F4770965B504261CA1110319AF965DE6CF736_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_0 = ((List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_0);
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mD88117600E70EEBD6C7893010B82AD4A0F9B73B4_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, int32_t ___capacity0, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
int32_t L_0 = ___capacity0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0012;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)12), (int32_t)4, NULL);
}
IL_0012:
{
int32_t L_1 = ___capacity0;
if (L_1)
{
goto IL_0021;
}
}
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_2 = ((List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_2);
return;
}
IL_0021:
{
int32_t L_3 = ___capacity0;
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_4 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)(ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 3), (uint32_t)L_3);
__this->____items_1 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_4);
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mD2E0F896729CAE334B83BF9DBCFCF1994CE45671_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, RuntimeObject* ___collection0, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
int32_t V_1 = 0;
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
RuntimeObject* L_0 = ___collection0;
if (L_0)
{
goto IL_000f;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)6, NULL);
}
IL_000f:
{
RuntimeObject* L_1 = ___collection0;
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 5)));
RuntimeObject* L_2 = V_0;
if (!L_2)
{
goto IL_0050;
}
}
{
RuntimeObject* L_3 = V_0;
NullCheck(L_3);
int32_t L_4;
L_4 = InterfaceFuncInvoker0< int32_t >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
V_1 = L_4;
int32_t L_5 = V_1;
if (L_5)
{
goto IL_002f;
}
}
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_6 = ((List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_6);
return;
}
IL_002f:
{
int32_t L_7 = V_1;
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_8 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)(ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 3), (uint32_t)L_7);
__this->____items_1 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_8);
RuntimeObject* L_9 = V_0;
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_10 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
NullCheck(L_9);
InterfaceActionInvoker2< ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*, int32_t >::Invoke(5, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_9, L_10, 0);
int32_t L_11 = V_1;
__this->____size_2 = L_11;
return;
}
IL_0050:
{
__this->____size_2 = 0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_12 = ((List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_12;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_12);
RuntimeObject* L_13 = ___collection0;
List_1_AddEnumerable_m4D26D9CABE5C12FC4566282350265B1C7D07DF41(__this, L_13, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_get_Capacity_mC3ECBCFA55F57438DE3973647282D71BF987F567_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, const RuntimeMethod* method)
{
{
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_0 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
NullCheck(L_0);
return ((int32_t)(((RuntimeArray*)L_0)->max_length));
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Capacity_mEC645CC150E96311EF5AF7EC8488EFE8CE9FE6E9_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, int32_t ___value0, const RuntimeMethod* method)
{
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* V_0 = NULL;
{
int32_t L_0 = ___value0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((((int32_t)L_0) >= ((int32_t)L_1)))
{
goto IL_0012;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)15), (int32_t)((int32_t)21), NULL);
}
IL_0012:
{
int32_t L_2 = ___value0;
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_3 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
NullCheck(L_3);
if ((((int32_t)L_2) == ((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))
{
goto IL_0058;
}
}
{
int32_t L_4 = ___value0;
if ((((int32_t)L_4) <= ((int32_t)0)))
{
goto IL_004d;
}
}
{
int32_t L_5 = ___value0;
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_6 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)(ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 3), (uint32_t)L_5);
V_0 = L_6;
int32_t L_7 = (int32_t)__this->____size_2;
if ((((int32_t)L_7) <= ((int32_t)0)))
{
goto IL_0045;
}
}
{
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_8 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_9 = V_0;
int32_t L_10 = (int32_t)__this->____size_2;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_8, 0, (RuntimeArray*)L_9, 0, L_10, NULL);
}
IL_0045:
{
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_11 = V_0;
__this->____items_1 = L_11;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_11);
return;
}
IL_004d:
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_12 = ((List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_12;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_12);
}
IL_0058:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m09B76BBFD57FC2975CE5920E87397B946A6E88D7_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
return L_0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_System_Collections_IList_get_IsFixedSize_mE09EF360EE58906C7AC17A99823A09A59AE6AECB_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_mDC627AF815C4839CB0E38CCF597CCBC92D1F468F_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_System_Collections_IList_get_IsReadOnly_mBC89FCCF1367BD7D9657816115B146D84F491E33_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_ICollection_get_SyncRoot_mC1E6EC77A368145B954FB1D3A3F4082F8108CBC9_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = (RuntimeObject*)__this->____syncRoot_4;
if (L_0)
{
goto IL_001a;
}
}
{
RuntimeObject** L_1 = (RuntimeObject**)(&__this->____syncRoot_4);
RuntimeObject* L_2 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_2, NULL);
RuntimeObject* L_3;
L_3 = InterlockedCompareExchangeImpl<RuntimeObject*>(L_1, L_2, NULL);
}
IL_001a:
{
RuntimeObject* L_4 = (RuntimeObject*)__this->____syncRoot_4;
return L_4;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 List_1_get_Item_m06C8179BEE795A8BB801481B512E96F6FE98988C_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowArgumentOutOfRange_IndexException_mC7661B8C6DD827679C95FC6B6C08F8724174936D(NULL);
}
IL_000e:
{
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_2 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
int32_t L_3 = ___index0;
NullCheck(L_2);
int32_t L_4 = L_3;
ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
return L_5;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Item_m2C96392ABE330B10CD609E1CEDCF0ACE8EE4E1CC_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, int32_t ___index0, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 ___value1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowArgumentOutOfRange_IndexException_mC7661B8C6DD827679C95FC6B6C08F8724174936D(NULL);
}
IL_000e:
{
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_2 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
int32_t L_3 = ___index0;
ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 L_4 = ___value1;
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9)L_4);
int32_t L_5 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_5, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_IsCompatibleObject_mD259170D800B6BA5F5647D16FA60F2F7782C96DE_gshared (RuntimeObject* ___value0, const RuntimeMethod* method)
{
ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 V_0;
memset((&V_0), 0, sizeof(V_0));
{
RuntimeObject* L_0 = ___value0;
if (((RuntimeObject*)IsInst((RuntimeObject*)L_0, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 9))))
{
goto IL_001f;
}
}
{
RuntimeObject* L_1 = ___value0;
if (L_1)
{
goto IL_001d;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9));
ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 L_2 = V_0;
ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 L_3 = L_2;
RuntimeObject* L_4 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_3);
return (bool)((((RuntimeObject*)(RuntimeObject*)L_4) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
}
IL_001d:
{
return (bool)0;
}
IL_001f:
{
return (bool)1;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_IList_get_Item_m798EE46201667BC71FEB40FCB82464FFD47055C3_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 L_1;
L_1 = List_1_get_Item_m06C8179BEE795A8BB801481B512E96F6FE98988C(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 L_2 = L_1;
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 9), &L_2);
return L_3;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_System_Collections_IList_set_Item_m5DF898D888DD1216400233316AC1873FC615B454_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, int32_t ___index0, RuntimeObject* ___value1, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeObject* L_0 = ___value1;
ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9_m8CAEDB26B2273DBF6BF9A71CFD779D1D25B1E254(L_0, (int32_t)((int32_t)15), il2cpp_rgctx_method(method->klass->rgctx_data, 11));
}
try
{
int32_t L_1 = ___index0;
RuntimeObject* L_2 = ___value1;
List_1_set_Item_m2C96392ABE330B10CD609E1CEDCF0ACE8EE4E1CC(__this, L_1, ((*(ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9*)((ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9*)(ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 12));
goto IL_002a;
}
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0017;
}
throw e;
}
CATCH_0017:
{
RuntimeObject* L_3 = ___value1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->klass->rgctx_data, 13)) };
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
Type_t* L_5;
L_5 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_4, NULL);
ThrowHelper_ThrowWrongValueTypeArgumentException_mC1A6BBE43C360583C1E2C463D5B0AADF1E3E1910(L_3, L_5, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_002a;
}
IL_002a:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_m2B80351888D9BCB1461C8808A0B2278006B46AC5_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 ___item0, const RuntimeMethod* method)
{
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_1 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
V_0 = L_1;
int32_t L_2 = (int32_t)__this->____size_2;
V_1 = L_2;
int32_t L_3 = V_1;
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_4 = V_0;
NullCheck(L_4);
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
{
goto IL_0034;
}
}
{
int32_t L_5 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_6 = V_0;
int32_t L_7 = V_1;
ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 L_8 = ___item0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9)L_8);
return;
}
IL_0034:
{
ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 L_9 = ___item0;
List_1_AddWithResize_mA1A4564FC0DADFAEC0FFC004CCB8CC9D80FD2023(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void List_1_AddWithResize_mA1A4564FC0DADFAEC0FFC004CCB8CC9D80FD2023_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 ___item0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->____size_2;
V_0 = L_0;
int32_t L_1 = V_0;
List_1_EnsureCapacity_m846619F1154B81C4FC6194E873B43AB2A9BA4C3F(__this, ((int32_t)il2cpp_codegen_add(L_1, 1)), il2cpp_rgctx_method(method->klass->rgctx_data, 15));
int32_t L_2 = V_0;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_2, 1));
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_3 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
int32_t L_4 = V_0;
ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 L_5 = ___item0;
NullCheck(L_3);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(L_4), (ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9)L_5);
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_System_Collections_IList_Add_m26CA217D5990A9B3311E479BF8AF745526323419_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeObject* L_0 = ___item0;
ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9_m8CAEDB26B2273DBF6BF9A71CFD779D1D25B1E254(L_0, (int32_t)((int32_t)20), il2cpp_rgctx_method(method->klass->rgctx_data, 11));
}
try
{
RuntimeObject* L_1 = ___item0;
List_1_Add_m2B80351888D9BCB1461C8808A0B2278006B46AC5_inline(__this, ((*(ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9*)((ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9*)(ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9*)UnBox(L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 16));
goto IL_0029;
}
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0016;
}
throw e;
}
CATCH_0016:
{
RuntimeObject* L_2 = ___item0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_3 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->klass->rgctx_data, 13)) };
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
Type_t* L_4;
L_4 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_3, NULL);
ThrowHelper_ThrowWrongValueTypeArgumentException_mC1A6BBE43C360583C1E2C463D5B0AADF1E3E1910(L_2, L_4, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0029;
}
IL_0029:
{
int32_t L_5;
L_5 = List_1_get_Count_m09B76BBFD57FC2975CE5920E87397B946A6E88D7_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
return ((int32_t)il2cpp_codegen_subtract(L_5, 1));
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_AddRange_m075C90F6BE0BEEC8EA51135F120739353E662B34_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, RuntimeObject* ___collection0, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
RuntimeObject* L_1 = ___collection0;
List_1_InsertRange_mCE762F4482E0F0BDAEDC06E12E9E123D20B05B26(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 18));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyCollection_1_tCC30DCDEC2FF09BE2BADAEC7995F69C958763938* List_1_AsReadOnly_m973EA808254685DE62CAD536949D8AE254EFDC0C_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, const RuntimeMethod* method)
{
{
ReadOnlyCollection_1_tCC30DCDEC2FF09BE2BADAEC7995F69C958763938* L_0 = (ReadOnlyCollection_1_tCC30DCDEC2FF09BE2BADAEC7995F69C958763938*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 19));
ReadOnlyCollection_1__ctor_mB5B22FC8521666C46A4213013B9CF2BDF96C6854(L_0, (RuntimeObject*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
return L_0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_m9000AE7EDB1E9387C2F6B38B0706ABC9986B7CBD_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, int32_t ___index0, int32_t ___count1, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 ___item2, RuntimeObject* ___comparer3, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_5 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
int32_t L_6 = ___index0;
int32_t L_7 = ___count1;
ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 L_8 = ___item2;
RuntimeObject* L_9 = ___comparer3;
int32_t L_10;
L_10 = Array_BinarySearch_TisReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9_mC464533EF1296FB5E4B2E81CF274383B8E77052B(L_5, L_6, L_7, L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 23));
return L_10;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_mBBDA98274345D4B9DE3A408F2BBA55DAFCADE896_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 ___item0, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_m09B76BBFD57FC2975CE5920E87397B946A6E88D7_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 L_1 = ___item0;
int32_t L_2;
L_2 = List_1_BinarySearch_m9000AE7EDB1E9387C2F6B38B0706ABC9986B7CBD(__this, 0, L_0, L_1, (RuntimeObject*)NULL, il2cpp_rgctx_method(method->klass->rgctx_data, 24));
return L_2;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_m2D077B230CEFD02F44805F2F0F7590E332799311_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 ___item0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_m09B76BBFD57FC2975CE5920E87397B946A6E88D7_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 L_1 = ___item0;
RuntimeObject* L_2 = ___comparer1;
int32_t L_3;
L_3 = List_1_BinarySearch_m9000AE7EDB1E9387C2F6B38B0706ABC9986B7CBD(__this, 0, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 24));
return L_3;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Clear_m68BBAA4A087F7937620555034715BE45B49F63F0_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
goto IL_0035;
}
IL_0035:
{
__this->____size_2 = 0;
}
IL_003c:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Contains_m394F6BD939B7E515F8537E965E95D78F89A8FA07_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 ___item0, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
if (!L_0)
{
goto IL_0016;
}
}
{
ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 L_1 = ___item0;
int32_t L_2;
L_2 = List_1_IndexOf_m90289A4558EBA3D1F5510843371FBC39B0FB7367(__this, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 26));
return (bool)((((int32_t)((((int32_t)L_2) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_0016:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_System_Collections_IList_Contains_m560D150559FF0EEC6EF5E5A2C5EFD9CB7E628169_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___item0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
bool L_1;
L_1 = List_1_IsCompatibleObject_mD259170D800B6BA5F5647D16FA60F2F7782C96DE(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
if (!L_1)
{
goto IL_0015;
}
}
{
RuntimeObject* L_2 = ___item0;
bool L_3;
L_3 = List_1_Contains_m394F6BD939B7E515F8537E965E95D78F89A8FA07(__this, ((*(ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9*)((ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9*)(ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 28));
return L_3;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_CopyTo_m902FDD3A7D875EBE63A32187015278CD800CA134_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* ___array0, const RuntimeMethod* method)
{
{
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_0 = ___array0;
List_1_CopyTo_m1FA03B0495AB9DA2D64B5EF3839051B7DFD0B675(__this, L_0, 0, il2cpp_rgctx_method(method->klass->rgctx_data, 29));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_System_Collections_ICollection_CopyTo_mEDB2C3C99FA1EFDAB9E290F1602AA1F32870725D_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, RuntimeArray* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeArray* L_0 = ___array0;
if (!L_0)
{
goto IL_0012;
}
}
{
RuntimeArray* L_1 = ___array0;
NullCheck(L_1);
int32_t L_2;
L_2 = Array_get_Rank_m9383A200A2ECC89ECA44FE5F812ECFB874449C5F(L_1, NULL);
if ((((int32_t)L_2) == ((int32_t)1)))
{
goto IL_0012;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)7, NULL);
}
IL_0012:
{
}
try
{
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_3 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
RuntimeArray* L_4 = ___array0;
int32_t L_5 = ___arrayIndex1;
int32_t L_6 = (int32_t)__this->____size_2;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_3, 0, L_4, L_5, L_6, NULL);
goto IL_0031;
}
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArrayTypeMismatchException_t95F1723A5A166E62D3FBEF9734DEFBF61594F8F1_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0029;
}
throw e;
}
CATCH_0029:
{
ThrowHelper_ThrowArgumentException_Argument_InvalidArrayType_m469A6A5731A0F1E94D8B609ED9D001C3A1652A58(NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0031;
}
IL_0031:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_CopyTo_m1FA03B0495AB9DA2D64B5EF3839051B7DFD0B675_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_0 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
int32_t L_3 = (int32_t)__this->____size_2;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_0, 0, (RuntimeArray*)L_1, L_2, L_3, NULL);
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_EnsureCapacity_m846619F1154B81C4FC6194E873B43AB2A9BA4C3F_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, int32_t ___min0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t G_B4_0 = 0;
{
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_0 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
NullCheck(L_0);
int32_t L_1 = ___min0;
if ((((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))) >= ((int32_t)L_1)))
{
goto IL_003d;
}
}
{
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_2 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
NullCheck(L_2);
if (!(((RuntimeArray*)L_2)->max_length))
{
goto IL_0020;
}
}
{
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_3 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
NullCheck(L_3);
G_B4_0 = ((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_3)->max_length)), 2));
goto IL_0021;
}
IL_0020:
{
G_B4_0 = 4;
}
IL_0021:
{
V_0 = G_B4_0;
int32_t L_4 = V_0;
if ((!(((uint32_t)L_4) > ((uint32_t)((int32_t)2146435071)))))
{
goto IL_0030;
}
}
{
V_0 = ((int32_t)2146435071);
}
IL_0030:
{
int32_t L_5 = V_0;
int32_t L_6 = ___min0;
if ((((int32_t)L_5) >= ((int32_t)L_6)))
{
goto IL_0036;
}
}
{
int32_t L_7 = ___min0;
V_0 = L_7;
}
IL_0036:
{
int32_t L_8 = V_0;
List_1_set_Capacity_mEC645CC150E96311EF5AF7EC8488EFE8CE9FE6E9(__this, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 30));
}
IL_003d:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Exists_mB723FB323656A6C2FFE90D4DA7AA58D6536CFAC2_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, Predicate_1_t4000E2F6D93B445A9E4479DEA0D093186BF3B907* ___match0, const RuntimeMethod* method)
{
{
Predicate_1_t4000E2F6D93B445A9E4479DEA0D093186BF3B907* L_0 = ___match0;
int32_t L_1;
L_1 = List_1_FindIndex_m30EB30B6A4FA111C8F2B053683A9C621CDB5E4D3(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 32));
return (bool)((((int32_t)((((int32_t)L_1) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 List_1_Find_m5B910A6676D8928142F4293F2E7483C9BE239F66_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, Predicate_1_t4000E2F6D93B445A9E4479DEA0D093186BF3B907* ___match0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 V_1;
memset((&V_1), 0, sizeof(V_1));
{
Predicate_1_t4000E2F6D93B445A9E4479DEA0D093186BF3B907* L_0 = ___match0;
if (L_0)
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)8, NULL);
}
IL_0009:
{
V_0 = 0;
goto IL_0032;
}
IL_000d:
{
Predicate_1_t4000E2F6D93B445A9E4479DEA0D093186BF3B907* L_1 = ___match0;
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_2 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
int32_t L_3 = V_0;
NullCheck(L_2);
int32_t L_4 = L_3;
ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
NullCheck(L_1);
bool L_6;
L_6 = Predicate_1_Invoke_m91E2DD4011E6B92F0BF4D54948CA5F53D1DE0E7B_inline(L_1, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (!L_6)
{
goto IL_002e;
}
}
{
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_7 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
int32_t L_8 = V_0;
NullCheck(L_7);
int32_t L_9 = L_8;
ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
return L_10;
}
IL_002e:
{
int32_t L_11 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_11, 1));
}
IL_0032:
{
int32_t L_12 = V_0;
int32_t L_13 = (int32_t)__this->____size_2;
if ((((int32_t)L_12) < ((int32_t)L_13)))
{
goto IL_000d;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9));
ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 L_14 = V_1;
return L_14;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* List_1_FindAll_mC57F41641602A607B8066928A378874E4DD88366_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, Predicate_1_t4000E2F6D93B445A9E4479DEA0D093186BF3B907* ___match0, const RuntimeMethod* method)
{
List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* V_0 = NULL;
int32_t V_1 = 0;
{
Predicate_1_t4000E2F6D93B445A9E4479DEA0D093186BF3B907* L_0 = ___match0;
if (L_0)
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)8, NULL);
}
IL_0009:
{
List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* L_1 = (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 0));
List_1__ctor_m136F4770965B504261CA1110319AF965DE6CF736(L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
V_0 = L_1;
V_1 = 0;
goto IL_003d;
}
IL_0013:
{
Predicate_1_t4000E2F6D93B445A9E4479DEA0D093186BF3B907* L_2 = ___match0;
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_3 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
int32_t L_4 = V_1;
NullCheck(L_3);
int32_t L_5 = L_4;
ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
NullCheck(L_2);
bool L_7;
L_7 = Predicate_1_Invoke_m91E2DD4011E6B92F0BF4D54948CA5F53D1DE0E7B_inline(L_2, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (!L_7)
{
goto IL_0039;
}
}
{
List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* L_8 = V_0;
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_9 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
int32_t L_10 = V_1;
NullCheck(L_9);
int32_t L_11 = L_10;
ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
NullCheck(L_8);
List_1_Add_m2B80351888D9BCB1461C8808A0B2278006B46AC5_inline(L_8, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
}
IL_0039:
{
int32_t L_13 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_13, 1));
}
IL_003d:
{
int32_t L_14 = V_1;
int32_t L_15 = (int32_t)__this->____size_2;
if ((((int32_t)L_14) < ((int32_t)L_15)))
{
goto IL_0013;
}
}
{
List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* L_16 = V_0;
return L_16;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_m30EB30B6A4FA111C8F2B053683A9C621CDB5E4D3_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, Predicate_1_t4000E2F6D93B445A9E4479DEA0D093186BF3B907* ___match0, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
Predicate_1_t4000E2F6D93B445A9E4479DEA0D093186BF3B907* L_1 = ___match0;
int32_t L_2;
L_2 = List_1_FindIndex_m168C3A0BF0167510F7D01B995FE853A2256DA3F0(__this, 0, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 35));
return L_2;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_m168C3A0BF0167510F7D01B995FE853A2256DA3F0_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, int32_t ___startIndex0, int32_t ___count1, Predicate_1_t4000E2F6D93B445A9E4479DEA0D093186BF3B907* ___match2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
int32_t L_0 = ___startIndex0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) > ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowStartIndexArgumentOutOfRange_ArgumentOutOfRange_Index_m94BADCC6D7EBBD12BE8323775FFB43AF01499B0F(NULL);
}
IL_000e:
{
int32_t L_2 = ___count1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_001d;
}
}
{
int32_t L_3 = ___startIndex0;
int32_t L_4 = (int32_t)__this->____size_2;
int32_t L_5 = ___count1;
if ((((int32_t)L_3) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_4, L_5)))))
{
goto IL_0022;
}
}
IL_001d:
{
ThrowHelper_ThrowCountArgumentOutOfRange_ArgumentOutOfRange_Count_m6C4A7F645BDD8EB62B50CB76E84416D94620DCC7(NULL);
}
IL_0022:
{
Predicate_1_t4000E2F6D93B445A9E4479DEA0D093186BF3B907* L_6 = ___match2;
if (L_6)
{
goto IL_002b;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)8, NULL);
}
IL_002b:
{
int32_t L_7 = ___startIndex0;
int32_t L_8 = ___count1;
V_0 = ((int32_t)il2cpp_codegen_add(L_7, L_8));
int32_t L_9 = ___startIndex0;
V_1 = L_9;
goto IL_004d;
}
IL_0033:
{
Predicate_1_t4000E2F6D93B445A9E4479DEA0D093186BF3B907* L_10 = ___match2;
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_11 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
int32_t L_12 = V_1;
NullCheck(L_11);
int32_t L_13 = L_12;
ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 L_14 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_13));
NullCheck(L_10);
bool L_15;
L_15 = Predicate_1_Invoke_m91E2DD4011E6B92F0BF4D54948CA5F53D1DE0E7B_inline(L_10, L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (!L_15)
{
goto IL_0049;
}
}
{
int32_t L_16 = V_1;
return L_16;
}
IL_0049:
{
int32_t L_17 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_17, 1));
}
IL_004d:
{
int32_t L_18 = V_1;
int32_t L_19 = V_0;
if ((((int32_t)L_18) < ((int32_t)L_19)))
{
goto IL_0033;
}
}
{
return (-1);
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_ForEach_m08DED450E3847A0B937C551CFAD03917E2FC0357_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, Action_1_tCEBA10A27E04AF1981907713C1030E69EC9825E6* ___action0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
Action_1_tCEBA10A27E04AF1981907713C1030E69EC9825E6* L_0 = ___action0;
if (L_0)
{
goto IL_000a;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)((int32_t)33), NULL);
}
IL_000a:
{
int32_t L_1 = (int32_t)__this->____version_3;
V_0 = L_1;
V_1 = 0;
goto IL_0034;
}
IL_0015:
{
int32_t L_2 = V_0;
int32_t L_3 = (int32_t)__this->____version_3;
if ((!(((uint32_t)L_2) == ((uint32_t)L_3))))
{
goto IL_003d;
}
}
{
Action_1_tCEBA10A27E04AF1981907713C1030E69EC9825E6* L_4 = ___action0;
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_5 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
int32_t L_6 = V_1;
NullCheck(L_5);
int32_t L_7 = L_6;
ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck(L_4);
Action_1_Invoke_m785F59026951A944FC1FBFFA5FC45A41B5A46A43_inline(L_4, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 37));
int32_t L_9 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_9, 1));
}
IL_0034:
{
int32_t L_10 = V_1;
int32_t L_11 = (int32_t)__this->____size_2;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0015;
}
}
IL_003d:
{
int32_t L_12 = V_0;
int32_t L_13 = (int32_t)__this->____version_3;
if ((((int32_t)L_12) == ((int32_t)L_13)))
{
goto IL_004b;
}
}
{
ThrowHelper_ThrowInvalidOperationException_InvalidOperation_EnumFailedVersion_m5331E2E0EC0E36843D53F439C2529530595ACE9F(NULL);
}
IL_004b:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t3572DC9B920E9C79F6C74EBE64A234B48911DCDA List_1_GetEnumerator_m19152538F33ED507401C49A569406BBABB36AA7C_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, const RuntimeMethod* method)
{
{
Enumerator_t3572DC9B920E9C79F6C74EBE64A234B48911DCDA L_0;
memset((&L_0), 0, sizeof(L_0));
Enumerator__ctor_mD69F6398F657E620141A54CF5F8F04EEA18D6301((&L_0), __this, il2cpp_rgctx_method(method->klass->rgctx_data, 39));
return L_0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_mA01691D14FE505830673631051844CB9D2590412_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, const RuntimeMethod* method)
{
{
Enumerator_t3572DC9B920E9C79F6C74EBE64A234B48911DCDA L_0;
memset((&L_0), 0, sizeof(L_0));
Enumerator__ctor_mD69F6398F657E620141A54CF5F8F04EEA18D6301((&L_0), __this, il2cpp_rgctx_method(method->klass->rgctx_data, 39));
Enumerator_t3572DC9B920E9C79F6C74EBE64A234B48911DCDA L_1 = L_0;
RuntimeObject* L_2 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 38), &L_1);
return (RuntimeObject*)L_2;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_IEnumerable_GetEnumerator_m9D30610C27B6A983B4A54D19FAAF21A390F9D362_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, const RuntimeMethod* method)
{
{
Enumerator_t3572DC9B920E9C79F6C74EBE64A234B48911DCDA L_0;
memset((&L_0), 0, sizeof(L_0));
Enumerator__ctor_mD69F6398F657E620141A54CF5F8F04EEA18D6301((&L_0), __this, il2cpp_rgctx_method(method->klass->rgctx_data, 39));
Enumerator_t3572DC9B920E9C79F6C74EBE64A234B48911DCDA L_1 = L_0;
RuntimeObject* L_2 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 38), &L_1);
return (RuntimeObject*)L_2;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* List_1_GetRange_m12AC5E3E65A39844BBB9C8A53603958834A7E142_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method)
{
List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* V_0 = NULL;
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
int32_t L_5 = ___count1;
List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* L_6 = (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 0));
List_1__ctor_mD88117600E70EEBD6C7893010B82AD4A0F9B73B4(L_6, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 41));
V_0 = L_6;
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_7 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
int32_t L_8 = ___index0;
List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* L_9 = V_0;
NullCheck(L_9);
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_10 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)L_9->____items_1;
int32_t L_11 = ___count1;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_7, L_8, (RuntimeArray*)L_10, 0, L_11, NULL);
List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* L_12 = V_0;
int32_t L_13 = ___count1;
NullCheck(L_12);
L_12->____size_2 = L_13;
List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* L_14 = V_0;
return L_14;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_IndexOf_m90289A4558EBA3D1F5510843371FBC39B0FB7367_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 ___item0, const RuntimeMethod* method)
{
{
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_0 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 L_1 = ___item0;
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3;
L_3 = Array_IndexOf_TisReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9_m141DE04C9DC8A5C3ACBC182888A3F685A3E2F8F0(L_0, L_1, 0, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 42));
return L_3;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_System_Collections_IList_IndexOf_mCF89AD7348CBDAA298747D3491633370D6CE48B1_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___item0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
bool L_1;
L_1 = List_1_IsCompatibleObject_mD259170D800B6BA5F5647D16FA60F2F7782C96DE(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
if (!L_1)
{
goto IL_0015;
}
}
{
RuntimeObject* L_2 = ___item0;
int32_t L_3;
L_3 = List_1_IndexOf_m90289A4558EBA3D1F5510843371FBC39B0FB7367(__this, ((*(ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9*)((ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9*)(ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 26));
return L_3;
}
IL_0015:
{
return (-1);
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Insert_mEBFAF4D02C7828002704E7BECE21B2238257DCFA_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, int32_t ___index0, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 ___item1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) > ((uint32_t)L_1))))
{
goto IL_0012;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)13), (int32_t)((int32_t)27), NULL);
}
IL_0012:
{
int32_t L_2 = (int32_t)__this->____size_2;
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_3 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
NullCheck(L_3);
if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)(((RuntimeArray*)L_3)->max_length))))))
{
goto IL_0030;
}
}
{
int32_t L_4 = (int32_t)__this->____size_2;
List_1_EnsureCapacity_m846619F1154B81C4FC6194E873B43AB2A9BA4C3F(__this, ((int32_t)il2cpp_codegen_add(L_4, 1)), il2cpp_rgctx_method(method->klass->rgctx_data, 15));
}
IL_0030:
{
int32_t L_5 = ___index0;
int32_t L_6 = (int32_t)__this->____size_2;
if ((((int32_t)L_5) >= ((int32_t)L_6)))
{
goto IL_0056;
}
}
{
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_7 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
int32_t L_8 = ___index0;
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_9 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
int32_t L_10 = ___index0;
int32_t L_11 = (int32_t)__this->____size_2;
int32_t L_12 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_7, L_8, (RuntimeArray*)L_9, ((int32_t)il2cpp_codegen_add(L_10, 1)), ((int32_t)il2cpp_codegen_subtract(L_11, L_12)), NULL);
}
IL_0056:
{
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_13 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
int32_t L_14 = ___index0;
ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 L_15 = ___item1;
NullCheck(L_13);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9)L_15);
int32_t L_16 = (int32_t)__this->____size_2;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_16, 1));
int32_t L_17 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_17, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_System_Collections_IList_Insert_mA8D055D908AFAAA09A6F1C97165C705386B0C279_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, int32_t ___index0, RuntimeObject* ___item1, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeObject* L_0 = ___item1;
ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9_m8CAEDB26B2273DBF6BF9A71CFD779D1D25B1E254(L_0, (int32_t)((int32_t)20), il2cpp_rgctx_method(method->klass->rgctx_data, 11));
}
try
{
int32_t L_1 = ___index0;
RuntimeObject* L_2 = ___item1;
List_1_Insert_mEBFAF4D02C7828002704E7BECE21B2238257DCFA(__this, L_1, ((*(ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9*)((ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9*)(ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 43));
goto IL_002a;
}
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0017;
}
throw e;
}
CATCH_0017:
{
RuntimeObject* L_3 = ___item1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->klass->rgctx_data, 13)) };
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
Type_t* L_5;
L_5 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_4, NULL);
ThrowHelper_ThrowWrongValueTypeArgumentException_mC1A6BBE43C360583C1E2C463D5B0AADF1E3E1910(L_3, L_5, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_002a;
}
IL_002a:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_InsertRange_mCE762F4482E0F0BDAEDC06E12E9E123D20B05B26_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, int32_t ___index0, RuntimeObject* ___collection1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
int32_t V_1 = 0;
RuntimeObject* V_2 = NULL;
{
RuntimeObject* L_0 = ___collection1;
if (L_0)
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)6, NULL);
}
IL_0009:
{
int32_t L_1 = ___index0;
int32_t L_2 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_1) > ((uint32_t)L_2))))
{
goto IL_0017;
}
}
{
ThrowHelper_ThrowArgumentOutOfRange_IndexException_mC7661B8C6DD827679C95FC6B6C08F8724174936D(NULL);
}
IL_0017:
{
RuntimeObject* L_3 = ___collection1;
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 5)));
RuntimeObject* L_4 = V_0;
if (!L_4)
{
goto IL_00bc;
}
}
{
RuntimeObject* L_5 = V_0;
NullCheck(L_5);
int32_t L_6;
L_6 = InterfaceFuncInvoker0< int32_t >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_5);
V_1 = L_6;
int32_t L_7 = V_1;
if ((((int32_t)L_7) <= ((int32_t)0)))
{
goto IL_00fb;
}
}
{
int32_t L_8 = (int32_t)__this->____size_2;
int32_t L_9 = V_1;
List_1_EnsureCapacity_m846619F1154B81C4FC6194E873B43AB2A9BA4C3F(__this, ((int32_t)il2cpp_codegen_add(L_8, L_9)), il2cpp_rgctx_method(method->klass->rgctx_data, 15));
int32_t L_10 = ___index0;
int32_t L_11 = (int32_t)__this->____size_2;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0066;
}
}
{
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_12 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
int32_t L_13 = ___index0;
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_14 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
int32_t L_15 = ___index0;
int32_t L_16 = V_1;
int32_t L_17 = (int32_t)__this->____size_2;
int32_t L_18 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_12, L_13, (RuntimeArray*)L_14, ((int32_t)il2cpp_codegen_add(L_15, L_16)), ((int32_t)il2cpp_codegen_subtract(L_17, L_18)), NULL);
}
IL_0066:
{
RuntimeObject* L_19 = V_0;
if ((!(((RuntimeObject*)(List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330*)__this) == ((RuntimeObject*)(RuntimeObject*)L_19))))
{
goto IL_009f;
}
}
{
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_20 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_21 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
int32_t L_22 = ___index0;
int32_t L_23 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_20, 0, (RuntimeArray*)L_21, L_22, L_23, NULL);
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_24 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
int32_t L_25 = ___index0;
int32_t L_26 = V_1;
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_27 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
int32_t L_28 = ___index0;
int32_t L_29 = (int32_t)__this->____size_2;
int32_t L_30 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_24, ((int32_t)il2cpp_codegen_add(L_25, L_26)), (RuntimeArray*)L_27, ((int32_t)il2cpp_codegen_multiply(L_28, 2)), ((int32_t)il2cpp_codegen_subtract(L_29, L_30)), NULL);
goto IL_00ac;
}
IL_009f:
{
RuntimeObject* L_31 = V_0;
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_32 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
int32_t L_33 = ___index0;
NullCheck(L_31);
InterfaceActionInvoker2< ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*, int32_t >::Invoke(5, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_31, L_32, L_33);
}
IL_00ac:
{
int32_t L_34 = (int32_t)__this->____size_2;
int32_t L_35 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_34, L_35));
goto IL_00fb;
}
IL_00bc:
{
int32_t L_36 = ___index0;
int32_t L_37 = (int32_t)__this->____size_2;
if ((((int32_t)L_36) >= ((int32_t)L_37)))
{
goto IL_00f4;
}
}
{
RuntimeObject* L_38 = ___collection1;
NullCheck(L_38);
RuntimeObject* L_39;
L_39 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_38);
V_2 = L_39;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00ea:
{
{
RuntimeObject* L_40 = V_2;
if (!L_40)
{
goto IL_00f3;
}
}
{
RuntimeObject* L_41 = V_2;
NullCheck((RuntimeObject*)L_41);
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_41);
}
IL_00f3:
{
return;
}
}
});
try
{
{
goto IL_00e0_1;
}
IL_00ce_1:
{
int32_t L_42 = ___index0;
int32_t L_43 = L_42;
___index0 = ((int32_t)il2cpp_codegen_add(L_43, 1));
RuntimeObject* L_44 = V_2;
NullCheck(L_44);
ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 L_45;
L_45 = InterfaceFuncInvoker0< ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 40), L_44);
List_1_Insert_mEBFAF4D02C7828002704E7BECE21B2238257DCFA(__this, L_43, L_45, il2cpp_rgctx_method(method->klass->rgctx_data, 43));
}
IL_00e0_1:
{
RuntimeObject* L_46 = V_2;
NullCheck((RuntimeObject*)L_46);
bool L_47;
L_47 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_46);
if (L_47)
{
goto IL_00ce_1;
}
}
{
goto IL_00fb;
}
}
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00f4:
{
RuntimeObject* L_48 = ___collection1;
List_1_AddEnumerable_m4D26D9CABE5C12FC4566282350265B1C7D07DF41(__this, L_48, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
}
IL_00fb:
{
int32_t L_49 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_49, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Remove_m521BBB51265FA4ED213DB11A0C91647A5B03D112_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 ___item0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 L_0 = ___item0;
int32_t L_1;
L_1 = List_1_IndexOf_m90289A4558EBA3D1F5510843371FBC39B0FB7367(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 26));
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0015;
}
}
{
int32_t L_3 = V_0;
List_1_RemoveAt_m7D5A417923BDAE2ABF10528FE6CFD76F2A2E19F8(__this, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 46));
return (bool)1;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_System_Collections_IList_Remove_m15F7A2183E189882839CF6ADEDFD7EE0AA7F3F65_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___item0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
bool L_1;
L_1 = List_1_IsCompatibleObject_mD259170D800B6BA5F5647D16FA60F2F7782C96DE(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
if (!L_1)
{
goto IL_0015;
}
}
{
RuntimeObject* L_2 = ___item0;
bool L_3;
L_3 = List_1_Remove_m521BBB51265FA4ED213DB11A0C91647A5B03D112(__this, ((*(ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9*)((ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9*)(ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 47));
}
IL_0015:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_RemoveAll_m6FA868169208A33B1A4DC8AC70EDE4EF868A6FBA_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, Predicate_1_t4000E2F6D93B445A9E4479DEA0D093186BF3B907* ___match0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
Predicate_1_t4000E2F6D93B445A9E4479DEA0D093186BF3B907* L_0 = ___match0;
if (L_0)
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)8, NULL);
}
IL_0009:
{
V_0 = 0;
goto IL_0011;
}
IL_000d:
{
int32_t L_1 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_1, 1));
}
IL_0011:
{
int32_t L_2 = V_0;
int32_t L_3 = (int32_t)__this->____size_2;
if ((((int32_t)L_2) >= ((int32_t)L_3)))
{
goto IL_002e;
}
}
{
Predicate_1_t4000E2F6D93B445A9E4479DEA0D093186BF3B907* L_4 = ___match0;
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_5 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
int32_t L_6 = V_0;
NullCheck(L_5);
int32_t L_7 = L_6;
ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck(L_4);
bool L_9;
L_9 = Predicate_1_Invoke_m91E2DD4011E6B92F0BF4D54948CA5F53D1DE0E7B_inline(L_4, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (!L_9)
{
goto IL_000d;
}
}
IL_002e:
{
int32_t L_10 = V_0;
int32_t L_11 = (int32_t)__this->____size_2;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0039;
}
}
{
return 0;
}
IL_0039:
{
int32_t L_12 = V_0;
V_1 = ((int32_t)il2cpp_codegen_add(L_12, 1));
goto IL_0089;
}
IL_003f:
{
int32_t L_13 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_13, 1));
}
IL_0043:
{
int32_t L_14 = V_1;
int32_t L_15 = (int32_t)__this->____size_2;
if ((((int32_t)L_14) >= ((int32_t)L_15)))
{
goto IL_0060;
}
}
{
Predicate_1_t4000E2F6D93B445A9E4479DEA0D093186BF3B907* L_16 = ___match0;
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_17 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
int32_t L_18 = V_1;
NullCheck(L_17);
int32_t L_19 = L_18;
ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
NullCheck(L_16);
bool L_21;
L_21 = Predicate_1_Invoke_m91E2DD4011E6B92F0BF4D54948CA5F53D1DE0E7B_inline(L_16, L_20, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (L_21)
{
goto IL_003f;
}
}
IL_0060:
{
int32_t L_22 = V_1;
int32_t L_23 = (int32_t)__this->____size_2;
if ((((int32_t)L_22) >= ((int32_t)L_23)))
{
goto IL_0089;
}
}
{
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_24 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
int32_t L_25 = V_0;
int32_t L_26 = L_25;
V_0 = ((int32_t)il2cpp_codegen_add(L_26, 1));
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_27 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
int32_t L_28 = V_1;
int32_t L_29 = L_28;
V_1 = ((int32_t)il2cpp_codegen_add(L_29, 1));
NullCheck(L_27);
int32_t L_30 = L_29;
ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 L_31 = (L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_30));
NullCheck(L_24);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(L_26), (ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9)L_31);
}
IL_0089:
{
int32_t L_32 = V_1;
int32_t L_33 = (int32_t)__this->____size_2;
if ((((int32_t)L_32) < ((int32_t)L_33)))
{
goto IL_0043;
}
}
{
goto IL_00ad;
}
IL_00ad:
{
int32_t L_34 = (int32_t)__this->____size_2;
int32_t L_35 = V_0;
int32_t L_36 = V_0;
__this->____size_2 = L_36;
int32_t L_37 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_37, 1));
return ((int32_t)il2cpp_codegen_subtract(L_34, L_35));
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveAt_m7D5A417923BDAE2ABF10528FE6CFD76F2A2E19F8_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, int32_t ___index0, const RuntimeMethod* method)
{
ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowArgumentOutOfRange_IndexException_mC7661B8C6DD827679C95FC6B6C08F8724174936D(NULL);
}
IL_000e:
{
int32_t L_2 = (int32_t)__this->____size_2;
__this->____size_2 = ((int32_t)il2cpp_codegen_subtract(L_2, 1));
int32_t L_3 = ___index0;
int32_t L_4 = (int32_t)__this->____size_2;
if ((((int32_t)L_3) >= ((int32_t)L_4)))
{
goto IL_0042;
}
}
{
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_5 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
int32_t L_6 = ___index0;
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_7 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
int32_t L_8 = ___index0;
int32_t L_9 = (int32_t)__this->____size_2;
int32_t L_10 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_5, ((int32_t)il2cpp_codegen_add(L_6, 1)), (RuntimeArray*)L_7, L_8, ((int32_t)il2cpp_codegen_subtract(L_9, L_10)), NULL);
}
IL_0042:
{
goto IL_0063;
}
IL_0063:
{
int32_t L_11 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_11, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveRange_m8414104417EEFF1638E3527E360760DCB269C647_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
int32_t L_5 = ___count1;
if ((((int32_t)L_5) <= ((int32_t)0)))
{
goto IL_008d;
}
}
{
int32_t L_6 = (int32_t)__this->____size_2;
int32_t L_7 = (int32_t)__this->____size_2;
int32_t L_8 = ___count1;
__this->____size_2 = ((int32_t)il2cpp_codegen_subtract(L_7, L_8));
int32_t L_9 = ___index0;
int32_t L_10 = (int32_t)__this->____size_2;
if ((((int32_t)L_9) >= ((int32_t)L_10)))
{
goto IL_0066;
}
}
{
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_11 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
int32_t L_12 = ___index0;
int32_t L_13 = ___count1;
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_14 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
int32_t L_15 = ___index0;
int32_t L_16 = (int32_t)__this->____size_2;
int32_t L_17 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_11, ((int32_t)il2cpp_codegen_add(L_12, L_13)), (RuntimeArray*)L_14, L_15, ((int32_t)il2cpp_codegen_subtract(L_16, L_17)), NULL);
}
IL_0066:
{
int32_t L_18 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_18, 1));
goto IL_008d;
}
IL_008d:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Reverse_m9C74EBB7FF37CF938D6879562BBB7DAACA4C5F7B_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_m09B76BBFD57FC2975CE5920E87397B946A6E88D7_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
List_1_Reverse_mD7105DA6EF608144AC780D3A15F8B86C8AFA9436(__this, 0, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 48));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Reverse_mD7105DA6EF608144AC780D3A15F8B86C8AFA9436_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
int32_t L_5 = ___count1;
if ((((int32_t)L_5) <= ((int32_t)1)))
{
goto IL_0038;
}
}
{
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_6 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
int32_t L_7 = ___index0;
int32_t L_8 = ___count1;
Array_Reverse_TisReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9_m9575864003B0044B365F9BD1BB2FBCACE5C01CD1(L_6, L_7, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 49));
}
IL_0038:
{
int32_t L_9 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_9, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m19042A64784B83C68615EA37FE2A25FB4C2BE8CE_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_m09B76BBFD57FC2975CE5920E87397B946A6E88D7_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
List_1_Sort_m1B2F635B73BE96D949CD2B26567774F1A82E4A81(__this, 0, L_0, (RuntimeObject*)NULL, il2cpp_rgctx_method(method->klass->rgctx_data, 50));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_mF7B413B1CD7F95848584D63E22248D78AE4F70BA_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_m09B76BBFD57FC2975CE5920E87397B946A6E88D7_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
RuntimeObject* L_1 = ___comparer0;
List_1_Sort_m1B2F635B73BE96D949CD2B26567774F1A82E4A81(__this, 0, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 50));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m1B2F635B73BE96D949CD2B26567774F1A82E4A81_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, int32_t ___index0, int32_t ___count1, RuntimeObject* ___comparer2, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
int32_t L_5 = ___count1;
if ((((int32_t)L_5) <= ((int32_t)1)))
{
goto IL_0039;
}
}
{
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_6 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
int32_t L_7 = ___index0;
int32_t L_8 = ___count1;
RuntimeObject* L_9 = ___comparer2;
Array_Sort_TisReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9_m80C0BC14E59F371D713E1636696E3230AFD4A341(L_6, L_7, L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 51));
}
IL_0039:
{
int32_t L_10 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_10, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m5C88AFFD0814CE1D0C04A1F831876AEC08162115_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, Comparison_1_t13E424814E5864FCA6984ADDC54691CD3EDF54D5* ___comparison0, const RuntimeMethod* method)
{
{
Comparison_1_t13E424814E5864FCA6984ADDC54691CD3EDF54D5* L_0 = ___comparison0;
if (L_0)
{
goto IL_000a;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)((int32_t)34), NULL);
}
IL_000a:
{
int32_t L_1 = (int32_t)__this->____size_2;
if ((((int32_t)L_1) <= ((int32_t)1)))
{
goto IL_0026;
}
}
{
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_2 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
int32_t L_3 = (int32_t)__this->____size_2;
Comparison_1_t13E424814E5864FCA6984ADDC54691CD3EDF54D5* L_4 = ___comparison0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 54));
ArraySortHelper_1_Sort_mF169981CF6414984AFB235EA430235E94726F756(L_2, 0, L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 53));
}
IL_0026:
{
int32_t L_5 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_5, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* List_1_ToArray_m3374AC02FA6C468F38DDB280BE99AA3EB3063396_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, const RuntimeMethod* method)
{
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* V_0 = NULL;
{
int32_t L_0 = (int32_t)__this->____size_2;
if (L_0)
{
goto IL_000e;
}
}
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_1 = ((List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
return L_1;
}
IL_000e:
{
int32_t L_2 = (int32_t)__this->____size_2;
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_3 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)(ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 3), (uint32_t)L_2);
V_0 = L_3;
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_4 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_5 = V_0;
int32_t L_6 = (int32_t)__this->____size_2;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_4, 0, (RuntimeArray*)L_5, 0, L_6, NULL);
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_7 = V_0;
return L_7;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_AddEnumerable_m4D26D9CABE5C12FC4566282350265B1C7D07DF41_gshared (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, RuntimeObject* ___enumerable0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 V_1;
memset((&V_1), 0, sizeof(V_1));
int32_t V_2 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
RuntimeObject* L_1 = ___enumerable0;
NullCheck(L_1);
RuntimeObject* L_2;
L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_1);
V_0 = L_2;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0063:
{
{
RuntimeObject* L_3 = V_0;
if (!L_3)
{
goto IL_006c;
}
}
{
RuntimeObject* L_4 = V_0;
NullCheck((RuntimeObject*)L_4);
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_4);
}
IL_006c:
{
return;
}
}
});
try
{
{
goto IL_0059_1;
}
IL_0017_1:
{
RuntimeObject* L_5 = V_0;
NullCheck(L_5);
ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 L_6;
L_6 = InterfaceFuncInvoker0< ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 40), L_5);
V_1 = L_6;
int32_t L_7 = (int32_t)__this->____size_2;
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_8 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
NullCheck(L_8);
if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)(((RuntimeArray*)L_8)->max_length))))))
{
goto IL_003c_1;
}
}
{
int32_t L_9 = (int32_t)__this->____size_2;
List_1_EnsureCapacity_m846619F1154B81C4FC6194E873B43AB2A9BA4C3F(__this, ((int32_t)il2cpp_codegen_add(L_9, 1)), il2cpp_rgctx_method(method->klass->rgctx_data, 15));
}
IL_003c_1:
{
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_10 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
int32_t L_11 = (int32_t)__this->____size_2;
V_2 = L_11;
int32_t L_12 = V_2;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_12, 1));
int32_t L_13 = V_2;
ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 L_14 = V_1;
NullCheck(L_10);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9)L_14);
}
IL_0059_1:
{
RuntimeObject* L_15 = V_0;
NullCheck((RuntimeObject*)L_15);
bool L_16;
L_16 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_15);
if (L_16)
{
goto IL_0017_1;
}
}
{
goto IL_006d;
}
}
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_006d:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__cctor_m7BF0A45F9C1A033B71A8706E56E31C773B68133B_gshared (const RuntimeMethod* method)
{
{
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_0 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)(ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)SZArrayNew(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 3), (uint32_t)0);
((List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___s_emptyArray_5 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___s_emptyArray_5), (void*)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
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m0D06C9FECB7283237183AF8A1EE82A6363365B46_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_0 = ((List_1_t179992B095C528117EEF4782A1F45568BD2D51EA_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_0);
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m3F0FF6E493BF0BC4CDADBFFC8FD20E4DF7638CD3_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, int32_t ___capacity0, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
int32_t L_0 = ___capacity0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0012;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)12), (int32_t)4, NULL);
}
IL_0012:
{
int32_t L_1 = ___capacity0;
if (L_1)
{
goto IL_0021;
}
}
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_2 = ((List_1_t179992B095C528117EEF4782A1F45568BD2D51EA_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_2);
return;
}
IL_0021:
{
int32_t L_3 = ___capacity0;
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_4 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)(BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 3), (uint32_t)L_3);
__this->____items_1 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_4);
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m27F342338BED7786BC6270D6DA77C9A08A31A3E4_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, RuntimeObject* ___collection0, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
int32_t V_1 = 0;
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
RuntimeObject* L_0 = ___collection0;
if (L_0)
{
goto IL_000f;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)6, NULL);
}
IL_000f:
{
RuntimeObject* L_1 = ___collection0;
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 5)));
RuntimeObject* L_2 = V_0;
if (!L_2)
{
goto IL_0050;
}
}
{
RuntimeObject* L_3 = V_0;
NullCheck(L_3);
int32_t L_4;
L_4 = InterfaceFuncInvoker0< int32_t >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
V_1 = L_4;
int32_t L_5 = V_1;
if (L_5)
{
goto IL_002f;
}
}
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_6 = ((List_1_t179992B095C528117EEF4782A1F45568BD2D51EA_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_6);
return;
}
IL_002f:
{
int32_t L_7 = V_1;
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_8 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)(BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 3), (uint32_t)L_7);
__this->____items_1 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_8);
RuntimeObject* L_9 = V_0;
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_10 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
NullCheck(L_9);
InterfaceActionInvoker2< BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*, int32_t >::Invoke(5, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_9, L_10, 0);
int32_t L_11 = V_1;
__this->____size_2 = L_11;
return;
}
IL_0050:
{
__this->____size_2 = 0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_12 = ((List_1_t179992B095C528117EEF4782A1F45568BD2D51EA_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_12;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_12);
RuntimeObject* L_13 = ___collection0;
List_1_AddEnumerable_m7D838F63101A0FAA329FACD80059C7A08166BFA2(__this, L_13, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_get_Capacity_mF5C57C36C6FB0735A445A48D1F71E2D4934DC8D1_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, const RuntimeMethod* method)
{
{
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_0 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
NullCheck(L_0);
return ((int32_t)(((RuntimeArray*)L_0)->max_length));
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Capacity_mF4511A846BF63FD6759EDE3236ACE3156B6F7122_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, int32_t ___value0, const RuntimeMethod* method)
{
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* V_0 = NULL;
{
int32_t L_0 = ___value0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((((int32_t)L_0) >= ((int32_t)L_1)))
{
goto IL_0012;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)15), (int32_t)((int32_t)21), NULL);
}
IL_0012:
{
int32_t L_2 = ___value0;
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_3 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
NullCheck(L_3);
if ((((int32_t)L_2) == ((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))
{
goto IL_0058;
}
}
{
int32_t L_4 = ___value0;
if ((((int32_t)L_4) <= ((int32_t)0)))
{
goto IL_004d;
}
}
{
int32_t L_5 = ___value0;
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_6 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)(BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 3), (uint32_t)L_5);
V_0 = L_6;
int32_t L_7 = (int32_t)__this->____size_2;
if ((((int32_t)L_7) <= ((int32_t)0)))
{
goto IL_0045;
}
}
{
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_8 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_9 = V_0;
int32_t L_10 = (int32_t)__this->____size_2;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_8, 0, (RuntimeArray*)L_9, 0, L_10, NULL);
}
IL_0045:
{
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_11 = V_0;
__this->____items_1 = L_11;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_11);
return;
}
IL_004d:
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_12 = ((List_1_t179992B095C528117EEF4782A1F45568BD2D51EA_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_12;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_12);
}
IL_0058:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m6C34C2E4F4CAE3C6FFE13DC11181ADD0D19C0253_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
return L_0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_System_Collections_IList_get_IsFixedSize_m70526FD44CA19C5120615EB1548DBECD4817A318_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_mB796DC19A3B2DC19454EE21ABA7007E9A6B267F8_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_System_Collections_IList_get_IsReadOnly_mF53BB8B5EE9581FD7EBAFE21419BD6110A3DF0ED_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_ICollection_get_SyncRoot_mA7C8B25A272164AE8373B648CD1B950C7690288B_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = (RuntimeObject*)__this->____syncRoot_4;
if (L_0)
{
goto IL_001a;
}
}
{
RuntimeObject** L_1 = (RuntimeObject**)(&__this->____syncRoot_4);
RuntimeObject* L_2 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_2, NULL);
RuntimeObject* L_3;
L_3 = InterlockedCompareExchangeImpl<RuntimeObject*>(L_1, L_2, NULL);
}
IL_001a:
{
RuntimeObject* L_4 = (RuntimeObject*)__this->____syncRoot_4;
return L_4;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B List_1_get_Item_m330C3E8039DF34D5342C6D638F93AD4D53BC8CBF_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowArgumentOutOfRange_IndexException_mC7661B8C6DD827679C95FC6B6C08F8724174936D(NULL);
}
IL_000e:
{
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_2 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
int32_t L_3 = ___index0;
NullCheck(L_2);
int32_t L_4 = L_3;
BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
return L_5;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Item_m67626EC6AAC470B2D00B53284595D567D0895181_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, int32_t ___index0, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B ___value1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowArgumentOutOfRange_IndexException_mC7661B8C6DD827679C95FC6B6C08F8724174936D(NULL);
}
IL_000e:
{
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_2 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
int32_t L_3 = ___index0;
BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B L_4 = ___value1;
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B)L_4);
int32_t L_5 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_5, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_IsCompatibleObject_mE4C75F023067E208BBF2826CF811EC67B3A1D648_gshared (RuntimeObject* ___value0, const RuntimeMethod* method)
{
BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B V_0;
memset((&V_0), 0, sizeof(V_0));
{
RuntimeObject* L_0 = ___value0;
if (((RuntimeObject*)IsInst((RuntimeObject*)L_0, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 9))))
{
goto IL_001f;
}
}
{
RuntimeObject* L_1 = ___value0;
if (L_1)
{
goto IL_001d;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B));
BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B L_2 = V_0;
BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B L_3 = L_2;
RuntimeObject* L_4 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_3);
return (bool)((((RuntimeObject*)(RuntimeObject*)L_4) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
}
IL_001d:
{
return (bool)0;
}
IL_001f:
{
return (bool)1;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_IList_get_Item_m4487DF1BD6B5E1A452AD02753DAF57377FD810E3_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B L_1;
L_1 = List_1_get_Item_m330C3E8039DF34D5342C6D638F93AD4D53BC8CBF(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B L_2 = L_1;
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 9), &L_2);
return L_3;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_System_Collections_IList_set_Item_m63F3FE4BF0C9DC93124D046A1C3CB0FD4BBEFB6D_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, int32_t ___index0, RuntimeObject* ___value1, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeObject* L_0 = ___value1;
ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisBrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B_mB7684C5D60A7664FA6ECF70A68C12EA72C7307E6(L_0, (int32_t)((int32_t)15), il2cpp_rgctx_method(method->klass->rgctx_data, 11));
}
try
{
int32_t L_1 = ___index0;
RuntimeObject* L_2 = ___value1;
List_1_set_Item_m67626EC6AAC470B2D00B53284595D567D0895181(__this, L_1, ((*(BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B*)((BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B*)(BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 12));
goto IL_002a;
}
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0017;
}
throw e;
}
CATCH_0017:
{
RuntimeObject* L_3 = ___value1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->klass->rgctx_data, 13)) };
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
Type_t* L_5;
L_5 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_4, NULL);
ThrowHelper_ThrowWrongValueTypeArgumentException_mC1A6BBE43C360583C1E2C463D5B0AADF1E3E1910(L_3, L_5, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_002a;
}
IL_002a:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_mBD25BC6E762DE994E1326749F2C4A552BC2CC79F_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B ___item0, const RuntimeMethod* method)
{
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_1 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
V_0 = L_1;
int32_t L_2 = (int32_t)__this->____size_2;
V_1 = L_2;
int32_t L_3 = V_1;
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_4 = V_0;
NullCheck(L_4);
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
{
goto IL_0034;
}
}
{
int32_t L_5 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_6 = V_0;
int32_t L_7 = V_1;
BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B L_8 = ___item0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B)L_8);
return;
}
IL_0034:
{
BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B L_9 = ___item0;
List_1_AddWithResize_m0F60A70AFEE910197AA0D83E7ADE883278413E49(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void List_1_AddWithResize_m0F60A70AFEE910197AA0D83E7ADE883278413E49_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B ___item0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->____size_2;
V_0 = L_0;
int32_t L_1 = V_0;
List_1_EnsureCapacity_m3BB9E15F845FA3E40B60AE512E823C408DDB115B(__this, ((int32_t)il2cpp_codegen_add(L_1, 1)), il2cpp_rgctx_method(method->klass->rgctx_data, 15));
int32_t L_2 = V_0;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_2, 1));
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_3 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
int32_t L_4 = V_0;
BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B L_5 = ___item0;
NullCheck(L_3);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(L_4), (BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B)L_5);
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_System_Collections_IList_Add_mD0275EBE455439D70C6574BF6E78F29A9D117AC6_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeObject* L_0 = ___item0;
ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisBrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B_mB7684C5D60A7664FA6ECF70A68C12EA72C7307E6(L_0, (int32_t)((int32_t)20), il2cpp_rgctx_method(method->klass->rgctx_data, 11));
}
try
{
RuntimeObject* L_1 = ___item0;
List_1_Add_mBD25BC6E762DE994E1326749F2C4A552BC2CC79F_inline(__this, ((*(BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B*)((BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B*)(BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B*)UnBox(L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 16));
goto IL_0029;
}
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0016;
}
throw e;
}
CATCH_0016:
{
RuntimeObject* L_2 = ___item0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_3 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->klass->rgctx_data, 13)) };
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
Type_t* L_4;
L_4 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_3, NULL);
ThrowHelper_ThrowWrongValueTypeArgumentException_mC1A6BBE43C360583C1E2C463D5B0AADF1E3E1910(L_2, L_4, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0029;
}
IL_0029:
{
int32_t L_5;
L_5 = List_1_get_Count_m6C34C2E4F4CAE3C6FFE13DC11181ADD0D19C0253_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
return ((int32_t)il2cpp_codegen_subtract(L_5, 1));
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_AddRange_m01619CD65F93AC5C5FEE6A5C8E0F4B12B0908F1F_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, RuntimeObject* ___collection0, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
RuntimeObject* L_1 = ___collection0;
List_1_InsertRange_mFC7B3BF6B76A6830295AE017A58FA96113D09AF4(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 18));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyCollection_1_t60075704E4AC0EE9C6A477EFA7FDB046ED3A199D* List_1_AsReadOnly_m599CBD408CB6AB691407707C24A627F50CC53DE4_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, const RuntimeMethod* method)
{
{
ReadOnlyCollection_1_t60075704E4AC0EE9C6A477EFA7FDB046ED3A199D* L_0 = (ReadOnlyCollection_1_t60075704E4AC0EE9C6A477EFA7FDB046ED3A199D*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 19));
ReadOnlyCollection_1__ctor_m9D50F3C6C18B66D8CB539452DE98EF74404F48DE(L_0, (RuntimeObject*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
return L_0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_m8308C4A568BD75E355203707AC13632B796AF435_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, int32_t ___index0, int32_t ___count1, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B ___item2, RuntimeObject* ___comparer3, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_5 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
int32_t L_6 = ___index0;
int32_t L_7 = ___count1;
BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B L_8 = ___item2;
RuntimeObject* L_9 = ___comparer3;
int32_t L_10;
L_10 = Array_BinarySearch_TisBrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B_mE00F338DF4166B0E4C898B957806B60A9F4ED333(L_5, L_6, L_7, L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 23));
return L_10;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_mCDA3C8C2AEDC1E4D15878ACFBA9421F1C7103AE0_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B ___item0, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_m6C34C2E4F4CAE3C6FFE13DC11181ADD0D19C0253_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B L_1 = ___item0;
int32_t L_2;
L_2 = List_1_BinarySearch_m8308C4A568BD75E355203707AC13632B796AF435(__this, 0, L_0, L_1, (RuntimeObject*)NULL, il2cpp_rgctx_method(method->klass->rgctx_data, 24));
return L_2;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_mD1761171B0C0F8B941890EC17305EF8DCB5C5A1C_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B ___item0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_m6C34C2E4F4CAE3C6FFE13DC11181ADD0D19C0253_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B L_1 = ___item0;
RuntimeObject* L_2 = ___comparer1;
int32_t L_3;
L_3 = List_1_BinarySearch_m8308C4A568BD75E355203707AC13632B796AF435(__this, 0, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 24));
return L_3;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Clear_mC8318C65C43D3BE62687EC2170B17747D8F78F67_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
goto IL_0035;
}
IL_0035:
{
__this->____size_2 = 0;
}
IL_003c:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Contains_m6D2106CECD1C22A869D6CDB504DCA9157A3F83DC_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B ___item0, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
if (!L_0)
{
goto IL_0016;
}
}
{
BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B L_1 = ___item0;
int32_t L_2;
L_2 = List_1_IndexOf_m7D1D48748EA8801BEB6C3D4BFEAC1A7DA9119717(__this, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 26));
return (bool)((((int32_t)((((int32_t)L_2) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_0016:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_System_Collections_IList_Contains_mC625C847B4793B0A7B0DCA09B1E96AB7862FEC20_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___item0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
bool L_1;
L_1 = List_1_IsCompatibleObject_mE4C75F023067E208BBF2826CF811EC67B3A1D648(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
if (!L_1)
{
goto IL_0015;
}
}
{
RuntimeObject* L_2 = ___item0;
bool L_3;
L_3 = List_1_Contains_m6D2106CECD1C22A869D6CDB504DCA9157A3F83DC(__this, ((*(BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B*)((BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B*)(BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 28));
return L_3;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_CopyTo_mDF31F60E364E0FBE01BF482E85F808E1102F0F19_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* ___array0, const RuntimeMethod* method)
{
{
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_0 = ___array0;
List_1_CopyTo_m7621EDF705E43D719083ABC12B6C0133A8F1B61A(__this, L_0, 0, il2cpp_rgctx_method(method->klass->rgctx_data, 29));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_System_Collections_ICollection_CopyTo_mC8DEE0A4011794D88D79480D1B429DF5707013A4_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, RuntimeArray* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeArray* L_0 = ___array0;
if (!L_0)
{
goto IL_0012;
}
}
{
RuntimeArray* L_1 = ___array0;
NullCheck(L_1);
int32_t L_2;
L_2 = Array_get_Rank_m9383A200A2ECC89ECA44FE5F812ECFB874449C5F(L_1, NULL);
if ((((int32_t)L_2) == ((int32_t)1)))
{
goto IL_0012;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)7, NULL);
}
IL_0012:
{
}
try
{
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_3 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
RuntimeArray* L_4 = ___array0;
int32_t L_5 = ___arrayIndex1;
int32_t L_6 = (int32_t)__this->____size_2;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_3, 0, L_4, L_5, L_6, NULL);
goto IL_0031;
}
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArrayTypeMismatchException_t95F1723A5A166E62D3FBEF9734DEFBF61594F8F1_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0029;
}
throw e;
}
CATCH_0029:
{
ThrowHelper_ThrowArgumentException_Argument_InvalidArrayType_m469A6A5731A0F1E94D8B609ED9D001C3A1652A58(NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0031;
}
IL_0031:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_CopyTo_m7621EDF705E43D719083ABC12B6C0133A8F1B61A_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_0 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
int32_t L_3 = (int32_t)__this->____size_2;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_0, 0, (RuntimeArray*)L_1, L_2, L_3, NULL);
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_EnsureCapacity_m3BB9E15F845FA3E40B60AE512E823C408DDB115B_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, int32_t ___min0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t G_B4_0 = 0;
{
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_0 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
NullCheck(L_0);
int32_t L_1 = ___min0;
if ((((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))) >= ((int32_t)L_1)))
{
goto IL_003d;
}
}
{
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_2 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
NullCheck(L_2);
if (!(((RuntimeArray*)L_2)->max_length))
{
goto IL_0020;
}
}
{
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_3 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
NullCheck(L_3);
G_B4_0 = ((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_3)->max_length)), 2));
goto IL_0021;
}
IL_0020:
{
G_B4_0 = 4;
}
IL_0021:
{
V_0 = G_B4_0;
int32_t L_4 = V_0;
if ((!(((uint32_t)L_4) > ((uint32_t)((int32_t)2146435071)))))
{
goto IL_0030;
}
}
{
V_0 = ((int32_t)2146435071);
}
IL_0030:
{
int32_t L_5 = V_0;
int32_t L_6 = ___min0;
if ((((int32_t)L_5) >= ((int32_t)L_6)))
{
goto IL_0036;
}
}
{
int32_t L_7 = ___min0;
V_0 = L_7;
}
IL_0036:
{
int32_t L_8 = V_0;
List_1_set_Capacity_mF4511A846BF63FD6759EDE3236ACE3156B6F7122(__this, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 30));
}
IL_003d:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Exists_mA96C9A36008F72F1DDB5F86431338D53384D9625_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, Predicate_1_t9939AC86819E2498AF558953EFF6F269E25648A6* ___match0, const RuntimeMethod* method)
{
{
Predicate_1_t9939AC86819E2498AF558953EFF6F269E25648A6* L_0 = ___match0;
int32_t L_1;
L_1 = List_1_FindIndex_mB8B81289498583C92FE6FC2EF95120E2561C495D(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 32));
return (bool)((((int32_t)((((int32_t)L_1) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B List_1_Find_m95C4D70DD87BDA650251F9CEDE733435A3B871E4_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, Predicate_1_t9939AC86819E2498AF558953EFF6F269E25648A6* ___match0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B V_1;
memset((&V_1), 0, sizeof(V_1));
{
Predicate_1_t9939AC86819E2498AF558953EFF6F269E25648A6* L_0 = ___match0;
if (L_0)
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)8, NULL);
}
IL_0009:
{
V_0 = 0;
goto IL_0032;
}
IL_000d:
{
Predicate_1_t9939AC86819E2498AF558953EFF6F269E25648A6* L_1 = ___match0;
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_2 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
int32_t L_3 = V_0;
NullCheck(L_2);
int32_t L_4 = L_3;
BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
NullCheck(L_1);
bool L_6;
L_6 = Predicate_1_Invoke_m686502E8E7E7D0BA4C6D18B5F9FEBE3CFC179470_inline(L_1, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (!L_6)
{
goto IL_002e;
}
}
{
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_7 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
int32_t L_8 = V_0;
NullCheck(L_7);
int32_t L_9 = L_8;
BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
return L_10;
}
IL_002e:
{
int32_t L_11 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_11, 1));
}
IL_0032:
{
int32_t L_12 = V_0;
int32_t L_13 = (int32_t)__this->____size_2;
if ((((int32_t)L_12) < ((int32_t)L_13)))
{
goto IL_000d;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B));
BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B L_14 = V_1;
return L_14;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* List_1_FindAll_m056CED02CCF72D3A664F9194E54F16D7B3B37C3F_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, Predicate_1_t9939AC86819E2498AF558953EFF6F269E25648A6* ___match0, const RuntimeMethod* method)
{
List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* V_0 = NULL;
int32_t V_1 = 0;
{
Predicate_1_t9939AC86819E2498AF558953EFF6F269E25648A6* L_0 = ___match0;
if (L_0)
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)8, NULL);
}
IL_0009:
{
List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* L_1 = (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 0));
List_1__ctor_m0D06C9FECB7283237183AF8A1EE82A6363365B46(L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
V_0 = L_1;
V_1 = 0;
goto IL_003d;
}
IL_0013:
{
Predicate_1_t9939AC86819E2498AF558953EFF6F269E25648A6* L_2 = ___match0;
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_3 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
int32_t L_4 = V_1;
NullCheck(L_3);
int32_t L_5 = L_4;
BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
NullCheck(L_2);
bool L_7;
L_7 = Predicate_1_Invoke_m686502E8E7E7D0BA4C6D18B5F9FEBE3CFC179470_inline(L_2, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (!L_7)
{
goto IL_0039;
}
}
{
List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* L_8 = V_0;
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_9 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
int32_t L_10 = V_1;
NullCheck(L_9);
int32_t L_11 = L_10;
BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
NullCheck(L_8);
List_1_Add_mBD25BC6E762DE994E1326749F2C4A552BC2CC79F_inline(L_8, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
}
IL_0039:
{
int32_t L_13 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_13, 1));
}
IL_003d:
{
int32_t L_14 = V_1;
int32_t L_15 = (int32_t)__this->____size_2;
if ((((int32_t)L_14) < ((int32_t)L_15)))
{
goto IL_0013;
}
}
{
List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* L_16 = V_0;
return L_16;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_mB8B81289498583C92FE6FC2EF95120E2561C495D_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, Predicate_1_t9939AC86819E2498AF558953EFF6F269E25648A6* ___match0, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
Predicate_1_t9939AC86819E2498AF558953EFF6F269E25648A6* L_1 = ___match0;
int32_t L_2;
L_2 = List_1_FindIndex_mB0B71913AF102BBE2D5718E3708E84AA2178DC59(__this, 0, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 35));
return L_2;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_mB0B71913AF102BBE2D5718E3708E84AA2178DC59_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, int32_t ___startIndex0, int32_t ___count1, Predicate_1_t9939AC86819E2498AF558953EFF6F269E25648A6* ___match2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
int32_t L_0 = ___startIndex0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) > ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowStartIndexArgumentOutOfRange_ArgumentOutOfRange_Index_m94BADCC6D7EBBD12BE8323775FFB43AF01499B0F(NULL);
}
IL_000e:
{
int32_t L_2 = ___count1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_001d;
}
}
{
int32_t L_3 = ___startIndex0;
int32_t L_4 = (int32_t)__this->____size_2;
int32_t L_5 = ___count1;
if ((((int32_t)L_3) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_4, L_5)))))
{
goto IL_0022;
}
}
IL_001d:
{
ThrowHelper_ThrowCountArgumentOutOfRange_ArgumentOutOfRange_Count_m6C4A7F645BDD8EB62B50CB76E84416D94620DCC7(NULL);
}
IL_0022:
{
Predicate_1_t9939AC86819E2498AF558953EFF6F269E25648A6* L_6 = ___match2;
if (L_6)
{
goto IL_002b;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)8, NULL);
}
IL_002b:
{
int32_t L_7 = ___startIndex0;
int32_t L_8 = ___count1;
V_0 = ((int32_t)il2cpp_codegen_add(L_7, L_8));
int32_t L_9 = ___startIndex0;
V_1 = L_9;
goto IL_004d;
}
IL_0033:
{
Predicate_1_t9939AC86819E2498AF558953EFF6F269E25648A6* L_10 = ___match2;
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_11 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
int32_t L_12 = V_1;
NullCheck(L_11);
int32_t L_13 = L_12;
BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B L_14 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_13));
NullCheck(L_10);
bool L_15;
L_15 = Predicate_1_Invoke_m686502E8E7E7D0BA4C6D18B5F9FEBE3CFC179470_inline(L_10, L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (!L_15)
{
goto IL_0049;
}
}
{
int32_t L_16 = V_1;
return L_16;
}
IL_0049:
{
int32_t L_17 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_17, 1));
}
IL_004d:
{
int32_t L_18 = V_1;
int32_t L_19 = V_0;
if ((((int32_t)L_18) < ((int32_t)L_19)))
{
goto IL_0033;
}
}
{
return (-1);
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_ForEach_m90393F208FDB6B71CA0D45FEE11451B370D82615_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, Action_1_tD17A4D72165DC3DB30991AE957053E20BE4178C8* ___action0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
Action_1_tD17A4D72165DC3DB30991AE957053E20BE4178C8* L_0 = ___action0;
if (L_0)
{
goto IL_000a;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)((int32_t)33), NULL);
}
IL_000a:
{
int32_t L_1 = (int32_t)__this->____version_3;
V_0 = L_1;
V_1 = 0;
goto IL_0034;
}
IL_0015:
{
int32_t L_2 = V_0;
int32_t L_3 = (int32_t)__this->____version_3;
if ((!(((uint32_t)L_2) == ((uint32_t)L_3))))
{
goto IL_003d;
}
}
{
Action_1_tD17A4D72165DC3DB30991AE957053E20BE4178C8* L_4 = ___action0;
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_5 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
int32_t L_6 = V_1;
NullCheck(L_5);
int32_t L_7 = L_6;
BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck(L_4);
Action_1_Invoke_m1CABBE687A5B8796B2623B610500C202E7582ADC_inline(L_4, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 37));
int32_t L_9 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_9, 1));
}
IL_0034:
{
int32_t L_10 = V_1;
int32_t L_11 = (int32_t)__this->____size_2;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0015;
}
}
IL_003d:
{
int32_t L_12 = V_0;
int32_t L_13 = (int32_t)__this->____version_3;
if ((((int32_t)L_12) == ((int32_t)L_13)))
{
goto IL_004b;
}
}
{
ThrowHelper_ThrowInvalidOperationException_InvalidOperation_EnumFailedVersion_m5331E2E0EC0E36843D53F439C2529530595ACE9F(NULL);
}
IL_004b:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tB36F2E08EAEB0D3BA01C0FAFD87C7DCAF20D54CC List_1_GetEnumerator_mD113EE88CACF7B50B56EA25F19EFC114DBAACF98_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, const RuntimeMethod* method)
{
{
Enumerator_tB36F2E08EAEB0D3BA01C0FAFD87C7DCAF20D54CC L_0;
memset((&L_0), 0, sizeof(L_0));
Enumerator__ctor_m112951DDF78AFF37B87FA815DFE216738F93EBF7((&L_0), __this, il2cpp_rgctx_method(method->klass->rgctx_data, 39));
return L_0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m111E071047D85C6ABB3CE43512640731B863EFD5_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, const RuntimeMethod* method)
{
{
Enumerator_tB36F2E08EAEB0D3BA01C0FAFD87C7DCAF20D54CC L_0;
memset((&L_0), 0, sizeof(L_0));
Enumerator__ctor_m112951DDF78AFF37B87FA815DFE216738F93EBF7((&L_0), __this, il2cpp_rgctx_method(method->klass->rgctx_data, 39));
Enumerator_tB36F2E08EAEB0D3BA01C0FAFD87C7DCAF20D54CC L_1 = L_0;
RuntimeObject* L_2 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 38), &L_1);
return (RuntimeObject*)L_2;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_IEnumerable_GetEnumerator_mE7D273A71CE8312F46E3A6DBDA70D856504AD768_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, const RuntimeMethod* method)
{
{
Enumerator_tB36F2E08EAEB0D3BA01C0FAFD87C7DCAF20D54CC L_0;
memset((&L_0), 0, sizeof(L_0));
Enumerator__ctor_m112951DDF78AFF37B87FA815DFE216738F93EBF7((&L_0), __this, il2cpp_rgctx_method(method->klass->rgctx_data, 39));
Enumerator_tB36F2E08EAEB0D3BA01C0FAFD87C7DCAF20D54CC L_1 = L_0;
RuntimeObject* L_2 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 38), &L_1);
return (RuntimeObject*)L_2;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* List_1_GetRange_mAB4F5125E6F12B8EC765E855F3C66655CB347DA6_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method)
{
List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* V_0 = NULL;
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
int32_t L_5 = ___count1;
List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* L_6 = (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 0));
List_1__ctor_m3F0FF6E493BF0BC4CDADBFFC8FD20E4DF7638CD3(L_6, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 41));
V_0 = L_6;
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_7 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
int32_t L_8 = ___index0;
List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* L_9 = V_0;
NullCheck(L_9);
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_10 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)L_9->____items_1;
int32_t L_11 = ___count1;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_7, L_8, (RuntimeArray*)L_10, 0, L_11, NULL);
List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* L_12 = V_0;
int32_t L_13 = ___count1;
NullCheck(L_12);
L_12->____size_2 = L_13;
List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* L_14 = V_0;
return L_14;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_IndexOf_m7D1D48748EA8801BEB6C3D4BFEAC1A7DA9119717_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B ___item0, const RuntimeMethod* method)
{
{
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_0 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B L_1 = ___item0;
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3;
L_3 = Array_IndexOf_TisBrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B_mECF77C930EB6670332947CB6BE27E328607CFCA1(L_0, L_1, 0, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 42));
return L_3;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_System_Collections_IList_IndexOf_m3783E7CC6309A07BFB3AD1C645E3993159AEFE65_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___item0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
bool L_1;
L_1 = List_1_IsCompatibleObject_mE4C75F023067E208BBF2826CF811EC67B3A1D648(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
if (!L_1)
{
goto IL_0015;
}
}
{
RuntimeObject* L_2 = ___item0;
int32_t L_3;
L_3 = List_1_IndexOf_m7D1D48748EA8801BEB6C3D4BFEAC1A7DA9119717(__this, ((*(BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B*)((BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B*)(BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 26));
return L_3;
}
IL_0015:
{
return (-1);
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Insert_mEA0390354E58C8EC74A0F293F8A3F5618CDBE98A_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, int32_t ___index0, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B ___item1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) > ((uint32_t)L_1))))
{
goto IL_0012;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)13), (int32_t)((int32_t)27), NULL);
}
IL_0012:
{
int32_t L_2 = (int32_t)__this->____size_2;
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_3 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
NullCheck(L_3);
if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)(((RuntimeArray*)L_3)->max_length))))))
{
goto IL_0030;
}
}
{
int32_t L_4 = (int32_t)__this->____size_2;
List_1_EnsureCapacity_m3BB9E15F845FA3E40B60AE512E823C408DDB115B(__this, ((int32_t)il2cpp_codegen_add(L_4, 1)), il2cpp_rgctx_method(method->klass->rgctx_data, 15));
}
IL_0030:
{
int32_t L_5 = ___index0;
int32_t L_6 = (int32_t)__this->____size_2;
if ((((int32_t)L_5) >= ((int32_t)L_6)))
{
goto IL_0056;
}
}
{
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_7 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
int32_t L_8 = ___index0;
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_9 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
int32_t L_10 = ___index0;
int32_t L_11 = (int32_t)__this->____size_2;
int32_t L_12 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_7, L_8, (RuntimeArray*)L_9, ((int32_t)il2cpp_codegen_add(L_10, 1)), ((int32_t)il2cpp_codegen_subtract(L_11, L_12)), NULL);
}
IL_0056:
{
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_13 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
int32_t L_14 = ___index0;
BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B L_15 = ___item1;
NullCheck(L_13);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B)L_15);
int32_t L_16 = (int32_t)__this->____size_2;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_16, 1));
int32_t L_17 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_17, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_System_Collections_IList_Insert_mCCAE31D4D176BB1B36FBB7465DBDF2C81DC9ECFC_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, int32_t ___index0, RuntimeObject* ___item1, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeObject* L_0 = ___item1;
ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisBrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B_mB7684C5D60A7664FA6ECF70A68C12EA72C7307E6(L_0, (int32_t)((int32_t)20), il2cpp_rgctx_method(method->klass->rgctx_data, 11));
}
try
{
int32_t L_1 = ___index0;
RuntimeObject* L_2 = ___item1;
List_1_Insert_mEA0390354E58C8EC74A0F293F8A3F5618CDBE98A(__this, L_1, ((*(BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B*)((BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B*)(BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 43));
goto IL_002a;
}
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0017;
}
throw e;
}
CATCH_0017:
{
RuntimeObject* L_3 = ___item1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->klass->rgctx_data, 13)) };
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
Type_t* L_5;
L_5 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_4, NULL);
ThrowHelper_ThrowWrongValueTypeArgumentException_mC1A6BBE43C360583C1E2C463D5B0AADF1E3E1910(L_3, L_5, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_002a;
}
IL_002a:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_InsertRange_mFC7B3BF6B76A6830295AE017A58FA96113D09AF4_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, int32_t ___index0, RuntimeObject* ___collection1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
int32_t V_1 = 0;
RuntimeObject* V_2 = NULL;
{
RuntimeObject* L_0 = ___collection1;
if (L_0)
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)6, NULL);
}
IL_0009:
{
int32_t L_1 = ___index0;
int32_t L_2 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_1) > ((uint32_t)L_2))))
{
goto IL_0017;
}
}
{
ThrowHelper_ThrowArgumentOutOfRange_IndexException_mC7661B8C6DD827679C95FC6B6C08F8724174936D(NULL);
}
IL_0017:
{
RuntimeObject* L_3 = ___collection1;
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 5)));
RuntimeObject* L_4 = V_0;
if (!L_4)
{
goto IL_00bc;
}
}
{
RuntimeObject* L_5 = V_0;
NullCheck(L_5);
int32_t L_6;
L_6 = InterfaceFuncInvoker0< int32_t >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_5);
V_1 = L_6;
int32_t L_7 = V_1;
if ((((int32_t)L_7) <= ((int32_t)0)))
{
goto IL_00fb;
}
}
{
int32_t L_8 = (int32_t)__this->____size_2;
int32_t L_9 = V_1;
List_1_EnsureCapacity_m3BB9E15F845FA3E40B60AE512E823C408DDB115B(__this, ((int32_t)il2cpp_codegen_add(L_8, L_9)), il2cpp_rgctx_method(method->klass->rgctx_data, 15));
int32_t L_10 = ___index0;
int32_t L_11 = (int32_t)__this->____size_2;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0066;
}
}
{
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_12 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
int32_t L_13 = ___index0;
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_14 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
int32_t L_15 = ___index0;
int32_t L_16 = V_1;
int32_t L_17 = (int32_t)__this->____size_2;
int32_t L_18 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_12, L_13, (RuntimeArray*)L_14, ((int32_t)il2cpp_codegen_add(L_15, L_16)), ((int32_t)il2cpp_codegen_subtract(L_17, L_18)), NULL);
}
IL_0066:
{
RuntimeObject* L_19 = V_0;
if ((!(((RuntimeObject*)(List_1_t179992B095C528117EEF4782A1F45568BD2D51EA*)__this) == ((RuntimeObject*)(RuntimeObject*)L_19))))
{
goto IL_009f;
}
}
{
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_20 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_21 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
int32_t L_22 = ___index0;
int32_t L_23 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_20, 0, (RuntimeArray*)L_21, L_22, L_23, NULL);
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_24 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
int32_t L_25 = ___index0;
int32_t L_26 = V_1;
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_27 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
int32_t L_28 = ___index0;
int32_t L_29 = (int32_t)__this->____size_2;
int32_t L_30 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_24, ((int32_t)il2cpp_codegen_add(L_25, L_26)), (RuntimeArray*)L_27, ((int32_t)il2cpp_codegen_multiply(L_28, 2)), ((int32_t)il2cpp_codegen_subtract(L_29, L_30)), NULL);
goto IL_00ac;
}
IL_009f:
{
RuntimeObject* L_31 = V_0;
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_32 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
int32_t L_33 = ___index0;
NullCheck(L_31);
InterfaceActionInvoker2< BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*, int32_t >::Invoke(5, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_31, L_32, L_33);
}
IL_00ac:
{
int32_t L_34 = (int32_t)__this->____size_2;
int32_t L_35 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_34, L_35));
goto IL_00fb;
}
IL_00bc:
{
int32_t L_36 = ___index0;
int32_t L_37 = (int32_t)__this->____size_2;
if ((((int32_t)L_36) >= ((int32_t)L_37)))
{
goto IL_00f4;
}
}
{
RuntimeObject* L_38 = ___collection1;
NullCheck(L_38);
RuntimeObject* L_39;
L_39 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_38);
V_2 = L_39;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00ea:
{
{
RuntimeObject* L_40 = V_2;
if (!L_40)
{
goto IL_00f3;
}
}
{
RuntimeObject* L_41 = V_2;
NullCheck((RuntimeObject*)L_41);
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_41);
}
IL_00f3:
{
return;
}
}
});
try
{
{
goto IL_00e0_1;
}
IL_00ce_1:
{
int32_t L_42 = ___index0;
int32_t L_43 = L_42;
___index0 = ((int32_t)il2cpp_codegen_add(L_43, 1));
RuntimeObject* L_44 = V_2;
NullCheck(L_44);
BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B L_45;
L_45 = InterfaceFuncInvoker0< BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 40), L_44);
List_1_Insert_mEA0390354E58C8EC74A0F293F8A3F5618CDBE98A(__this, L_43, L_45, il2cpp_rgctx_method(method->klass->rgctx_data, 43));
}
IL_00e0_1:
{
RuntimeObject* L_46 = V_2;
NullCheck((RuntimeObject*)L_46);
bool L_47;
L_47 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_46);
if (L_47)
{
goto IL_00ce_1;
}
}
{
goto IL_00fb;
}
}
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00f4:
{
RuntimeObject* L_48 = ___collection1;
List_1_AddEnumerable_m7D838F63101A0FAA329FACD80059C7A08166BFA2(__this, L_48, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
}
IL_00fb:
{
int32_t L_49 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_49, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Remove_m04631DA6616D397199A8C512E2247E252F859E55_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B ___item0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B L_0 = ___item0;
int32_t L_1;
L_1 = List_1_IndexOf_m7D1D48748EA8801BEB6C3D4BFEAC1A7DA9119717(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 26));
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0015;
}
}
{
int32_t L_3 = V_0;
List_1_RemoveAt_mDA2E3E09B92E6489005D57AA458DBCED30D215CD(__this, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 46));
return (bool)1;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_System_Collections_IList_Remove_mC28C3A7FB2381D21AD28D58B4E6E378936B47637_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___item0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
bool L_1;
L_1 = List_1_IsCompatibleObject_mE4C75F023067E208BBF2826CF811EC67B3A1D648(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
if (!L_1)
{
goto IL_0015;
}
}
{
RuntimeObject* L_2 = ___item0;
bool L_3;
L_3 = List_1_Remove_m04631DA6616D397199A8C512E2247E252F859E55(__this, ((*(BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B*)((BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B*)(BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 47));
}
IL_0015:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_RemoveAll_m2AF050E4B9902B5A86EFFFB57054552044BF7CA0_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, Predicate_1_t9939AC86819E2498AF558953EFF6F269E25648A6* ___match0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
Predicate_1_t9939AC86819E2498AF558953EFF6F269E25648A6* L_0 = ___match0;
if (L_0)
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)8, NULL);
}
IL_0009:
{
V_0 = 0;
goto IL_0011;
}
IL_000d:
{
int32_t L_1 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_1, 1));
}
IL_0011:
{
int32_t L_2 = V_0;
int32_t L_3 = (int32_t)__this->____size_2;
if ((((int32_t)L_2) >= ((int32_t)L_3)))
{
goto IL_002e;
}
}
{
Predicate_1_t9939AC86819E2498AF558953EFF6F269E25648A6* L_4 = ___match0;
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_5 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
int32_t L_6 = V_0;
NullCheck(L_5);
int32_t L_7 = L_6;
BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck(L_4);
bool L_9;
L_9 = Predicate_1_Invoke_m686502E8E7E7D0BA4C6D18B5F9FEBE3CFC179470_inline(L_4, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (!L_9)
{
goto IL_000d;
}
}
IL_002e:
{
int32_t L_10 = V_0;
int32_t L_11 = (int32_t)__this->____size_2;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0039;
}
}
{
return 0;
}
IL_0039:
{
int32_t L_12 = V_0;
V_1 = ((int32_t)il2cpp_codegen_add(L_12, 1));
goto IL_0089;
}
IL_003f:
{
int32_t L_13 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_13, 1));
}
IL_0043:
{
int32_t L_14 = V_1;
int32_t L_15 = (int32_t)__this->____size_2;
if ((((int32_t)L_14) >= ((int32_t)L_15)))
{
goto IL_0060;
}
}
{
Predicate_1_t9939AC86819E2498AF558953EFF6F269E25648A6* L_16 = ___match0;
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_17 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
int32_t L_18 = V_1;
NullCheck(L_17);
int32_t L_19 = L_18;
BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
NullCheck(L_16);
bool L_21;
L_21 = Predicate_1_Invoke_m686502E8E7E7D0BA4C6D18B5F9FEBE3CFC179470_inline(L_16, L_20, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (L_21)
{
goto IL_003f;
}
}
IL_0060:
{
int32_t L_22 = V_1;
int32_t L_23 = (int32_t)__this->____size_2;
if ((((int32_t)L_22) >= ((int32_t)L_23)))
{
goto IL_0089;
}
}
{
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_24 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
int32_t L_25 = V_0;
int32_t L_26 = L_25;
V_0 = ((int32_t)il2cpp_codegen_add(L_26, 1));
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_27 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
int32_t L_28 = V_1;
int32_t L_29 = L_28;
V_1 = ((int32_t)il2cpp_codegen_add(L_29, 1));
NullCheck(L_27);
int32_t L_30 = L_29;
BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B L_31 = (L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_30));
NullCheck(L_24);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(L_26), (BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B)L_31);
}
IL_0089:
{
int32_t L_32 = V_1;
int32_t L_33 = (int32_t)__this->____size_2;
if ((((int32_t)L_32) < ((int32_t)L_33)))
{
goto IL_0043;
}
}
{
goto IL_00ad;
}
IL_00ad:
{
int32_t L_34 = (int32_t)__this->____size_2;
int32_t L_35 = V_0;
int32_t L_36 = V_0;
__this->____size_2 = L_36;
int32_t L_37 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_37, 1));
return ((int32_t)il2cpp_codegen_subtract(L_34, L_35));
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveAt_mDA2E3E09B92E6489005D57AA458DBCED30D215CD_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, int32_t ___index0, const RuntimeMethod* method)
{
BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowArgumentOutOfRange_IndexException_mC7661B8C6DD827679C95FC6B6C08F8724174936D(NULL);
}
IL_000e:
{
int32_t L_2 = (int32_t)__this->____size_2;
__this->____size_2 = ((int32_t)il2cpp_codegen_subtract(L_2, 1));
int32_t L_3 = ___index0;
int32_t L_4 = (int32_t)__this->____size_2;
if ((((int32_t)L_3) >= ((int32_t)L_4)))
{
goto IL_0042;
}
}
{
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_5 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
int32_t L_6 = ___index0;
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_7 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
int32_t L_8 = ___index0;
int32_t L_9 = (int32_t)__this->____size_2;
int32_t L_10 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_5, ((int32_t)il2cpp_codegen_add(L_6, 1)), (RuntimeArray*)L_7, L_8, ((int32_t)il2cpp_codegen_subtract(L_9, L_10)), NULL);
}
IL_0042:
{
goto IL_0063;
}
IL_0063:
{
int32_t L_11 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_11, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveRange_mF29E50B76BCFD6B33C8401B5638AA8EF3FE1A985_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
int32_t L_5 = ___count1;
if ((((int32_t)L_5) <= ((int32_t)0)))
{
goto IL_008d;
}
}
{
int32_t L_6 = (int32_t)__this->____size_2;
int32_t L_7 = (int32_t)__this->____size_2;
int32_t L_8 = ___count1;
__this->____size_2 = ((int32_t)il2cpp_codegen_subtract(L_7, L_8));
int32_t L_9 = ___index0;
int32_t L_10 = (int32_t)__this->____size_2;
if ((((int32_t)L_9) >= ((int32_t)L_10)))
{
goto IL_0066;
}
}
{
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_11 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
int32_t L_12 = ___index0;
int32_t L_13 = ___count1;
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_14 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
int32_t L_15 = ___index0;
int32_t L_16 = (int32_t)__this->____size_2;
int32_t L_17 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_11, ((int32_t)il2cpp_codegen_add(L_12, L_13)), (RuntimeArray*)L_14, L_15, ((int32_t)il2cpp_codegen_subtract(L_16, L_17)), NULL);
}
IL_0066:
{
int32_t L_18 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_18, 1));
goto IL_008d;
}
IL_008d:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Reverse_mEAD7E81603B990A9C7C7C44CEBC61BE66CAA2571_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_m6C34C2E4F4CAE3C6FFE13DC11181ADD0D19C0253_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
List_1_Reverse_m9D843F8745ED0314F73F1B36F6B82FEEBBCD8C48(__this, 0, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 48));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Reverse_m9D843F8745ED0314F73F1B36F6B82FEEBBCD8C48_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
int32_t L_5 = ___count1;
if ((((int32_t)L_5) <= ((int32_t)1)))
{
goto IL_0038;
}
}
{
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_6 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
int32_t L_7 = ___index0;
int32_t L_8 = ___count1;
Array_Reverse_TisBrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B_mB6CCE99DB05B2EA67B8B27DF092D59874017C834(L_6, L_7, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 49));
}
IL_0038:
{
int32_t L_9 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_9, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m2DFD31E1BA5996E56BC7FCD863FACBDE6C073957_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_m6C34C2E4F4CAE3C6FFE13DC11181ADD0D19C0253_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
List_1_Sort_mF694E3B15873025CEC3D33F74F0C6BBD28574292(__this, 0, L_0, (RuntimeObject*)NULL, il2cpp_rgctx_method(method->klass->rgctx_data, 50));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m0FD69CBE94B5B4A666CE9B75686370D776E63689_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_m6C34C2E4F4CAE3C6FFE13DC11181ADD0D19C0253_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
RuntimeObject* L_1 = ___comparer0;
List_1_Sort_mF694E3B15873025CEC3D33F74F0C6BBD28574292(__this, 0, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 50));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_mF694E3B15873025CEC3D33F74F0C6BBD28574292_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, int32_t ___index0, int32_t ___count1, RuntimeObject* ___comparer2, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
int32_t L_5 = ___count1;
if ((((int32_t)L_5) <= ((int32_t)1)))
{
goto IL_0039;
}
}
{
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_6 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
int32_t L_7 = ___index0;
int32_t L_8 = ___count1;
RuntimeObject* L_9 = ___comparer2;
Array_Sort_TisBrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B_m05CCD2AF54A2D4EA995020F1AEA55DED55D0749A(L_6, L_7, L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 51));
}
IL_0039:
{
int32_t L_10 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_10, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m9D4151ABD4F0767F8F77B1134FB99F4BE586F114_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, Comparison_1_tB37367478ABE2FE5FD2203EA6868D24C205BA55F* ___comparison0, const RuntimeMethod* method)
{
{
Comparison_1_tB37367478ABE2FE5FD2203EA6868D24C205BA55F* L_0 = ___comparison0;
if (L_0)
{
goto IL_000a;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)((int32_t)34), NULL);
}
IL_000a:
{
int32_t L_1 = (int32_t)__this->____size_2;
if ((((int32_t)L_1) <= ((int32_t)1)))
{
goto IL_0026;
}
}
{
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_2 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
int32_t L_3 = (int32_t)__this->____size_2;
Comparison_1_tB37367478ABE2FE5FD2203EA6868D24C205BA55F* L_4 = ___comparison0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 54));
ArraySortHelper_1_Sort_mD71AF68A6A40286226609C455F65D1062B3C95C6(L_2, 0, L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 53));
}
IL_0026:
{
int32_t L_5 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_5, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* List_1_ToArray_m593CC673DF1D158966CCC66D3F0A0124A83521A8_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, const RuntimeMethod* method)
{
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* V_0 = NULL;
{
int32_t L_0 = (int32_t)__this->____size_2;
if (L_0)
{
goto IL_000e;
}
}
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_1 = ((List_1_t179992B095C528117EEF4782A1F45568BD2D51EA_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
return L_1;
}
IL_000e:
{
int32_t L_2 = (int32_t)__this->____size_2;
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_3 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)(BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 3), (uint32_t)L_2);
V_0 = L_3;
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_4 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_5 = V_0;
int32_t L_6 = (int32_t)__this->____size_2;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_4, 0, (RuntimeArray*)L_5, 0, L_6, NULL);
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_7 = V_0;
return L_7;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_AddEnumerable_m7D838F63101A0FAA329FACD80059C7A08166BFA2_gshared (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, RuntimeObject* ___enumerable0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B V_1;
memset((&V_1), 0, sizeof(V_1));
int32_t V_2 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
RuntimeObject* L_1 = ___enumerable0;
NullCheck(L_1);
RuntimeObject* L_2;
L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_1);
V_0 = L_2;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0063:
{
{
RuntimeObject* L_3 = V_0;
if (!L_3)
{
goto IL_006c;
}
}
{
RuntimeObject* L_4 = V_0;
NullCheck((RuntimeObject*)L_4);
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_4);
}
IL_006c:
{
return;
}
}
});
try
{
{
goto IL_0059_1;
}
IL_0017_1:
{
RuntimeObject* L_5 = V_0;
NullCheck(L_5);
BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B L_6;
L_6 = InterfaceFuncInvoker0< BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 40), L_5);
V_1 = L_6;
int32_t L_7 = (int32_t)__this->____size_2;
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_8 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
NullCheck(L_8);
if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)(((RuntimeArray*)L_8)->max_length))))))
{
goto IL_003c_1;
}
}
{
int32_t L_9 = (int32_t)__this->____size_2;
List_1_EnsureCapacity_m3BB9E15F845FA3E40B60AE512E823C408DDB115B(__this, ((int32_t)il2cpp_codegen_add(L_9, 1)), il2cpp_rgctx_method(method->klass->rgctx_data, 15));
}
IL_003c_1:
{
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_10 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
int32_t L_11 = (int32_t)__this->____size_2;
V_2 = L_11;
int32_t L_12 = V_2;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_12, 1));
int32_t L_13 = V_2;
BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B L_14 = V_1;
NullCheck(L_10);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B)L_14);
}
IL_0059_1:
{
RuntimeObject* L_15 = V_0;
NullCheck((RuntimeObject*)L_15);
bool L_16;
L_16 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_15);
if (L_16)
{
goto IL_0017_1;
}
}
{
goto IL_006d;
}
}
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_006d:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__cctor_mF725D5B3B777846A94FC2181CDED7169D5662352_gshared (const RuntimeMethod* method)
{
{
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_0 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)(BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)SZArrayNew(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 3), (uint32_t)0);
((List_1_t179992B095C528117EEF4782A1F45568BD2D51EA_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___s_emptyArray_5 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((List_1_t179992B095C528117EEF4782A1F45568BD2D51EA_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___s_emptyArray_5), (void*)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
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mE93A42B8E7E2C13C1A1F7658D34ABB7B25EEC5D5_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_0 = ((List_1_tD47E289A20580491873111C2FC85A5456012FCAC_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_0);
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mAEFD61889C036CF46420354D03CDB378A02C6629_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, int32_t ___capacity0, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
int32_t L_0 = ___capacity0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0012;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)12), (int32_t)4, NULL);
}
IL_0012:
{
int32_t L_1 = ___capacity0;
if (L_1)
{
goto IL_0021;
}
}
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_2 = ((List_1_tD47E289A20580491873111C2FC85A5456012FCAC_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_2);
return;
}
IL_0021:
{
int32_t L_3 = ___capacity0;
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_4 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)(SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 3), (uint32_t)L_3);
__this->____items_1 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_4);
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m8641F11CCC430189F6471A8CEEC695079CB8ED48_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, RuntimeObject* ___collection0, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
int32_t V_1 = 0;
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
RuntimeObject* L_0 = ___collection0;
if (L_0)
{
goto IL_000f;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)6, NULL);
}
IL_000f:
{
RuntimeObject* L_1 = ___collection0;
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 5)));
RuntimeObject* L_2 = V_0;
if (!L_2)
{
goto IL_0050;
}
}
{
RuntimeObject* L_3 = V_0;
NullCheck(L_3);
int32_t L_4;
L_4 = InterfaceFuncInvoker0< int32_t >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
V_1 = L_4;
int32_t L_5 = V_1;
if (L_5)
{
goto IL_002f;
}
}
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_6 = ((List_1_tD47E289A20580491873111C2FC85A5456012FCAC_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_6);
return;
}
IL_002f:
{
int32_t L_7 = V_1;
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_8 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)(SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 3), (uint32_t)L_7);
__this->____items_1 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_8);
RuntimeObject* L_9 = V_0;
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_10 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
NullCheck(L_9);
InterfaceActionInvoker2< SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*, int32_t >::Invoke(5, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_9, L_10, 0);
int32_t L_11 = V_1;
__this->____size_2 = L_11;
return;
}
IL_0050:
{
__this->____size_2 = 0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_12 = ((List_1_tD47E289A20580491873111C2FC85A5456012FCAC_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_12;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_12);
RuntimeObject* L_13 = ___collection0;
List_1_AddEnumerable_mB305C2917891211C606013DCEA970966D0B1026C(__this, L_13, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_get_Capacity_m6FADD62A792959BCA40B6A460950CD07D98875A5_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, const RuntimeMethod* method)
{
{
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_0 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
NullCheck(L_0);
return ((int32_t)(((RuntimeArray*)L_0)->max_length));
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Capacity_mD0217C58B2E251FA259AFE4383C5FE3EBA6F929D_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, int32_t ___value0, const RuntimeMethod* method)
{
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* V_0 = NULL;
{
int32_t L_0 = ___value0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((((int32_t)L_0) >= ((int32_t)L_1)))
{
goto IL_0012;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)15), (int32_t)((int32_t)21), NULL);
}
IL_0012:
{
int32_t L_2 = ___value0;
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_3 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
NullCheck(L_3);
if ((((int32_t)L_2) == ((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))
{
goto IL_0058;
}
}
{
int32_t L_4 = ___value0;
if ((((int32_t)L_4) <= ((int32_t)0)))
{
goto IL_004d;
}
}
{
int32_t L_5 = ___value0;
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_6 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)(SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 3), (uint32_t)L_5);
V_0 = L_6;
int32_t L_7 = (int32_t)__this->____size_2;
if ((((int32_t)L_7) <= ((int32_t)0)))
{
goto IL_0045;
}
}
{
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_8 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_9 = V_0;
int32_t L_10 = (int32_t)__this->____size_2;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_8, 0, (RuntimeArray*)L_9, 0, L_10, NULL);
}
IL_0045:
{
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_11 = V_0;
__this->____items_1 = L_11;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_11);
return;
}
IL_004d:
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_12 = ((List_1_tD47E289A20580491873111C2FC85A5456012FCAC_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_12;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_12);
}
IL_0058:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m62E98B115ACDF79B5558CFC3F21D107DCC98D9BB_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
return L_0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_System_Collections_IList_get_IsFixedSize_m5FC6686D85A62C3E9BE108971E0B9BA5159F6379_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m93B34F7C4FA1370C716DBD048A7FD94B2441A4BE_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_System_Collections_IList_get_IsReadOnly_mC6EF545A6F0692819A011B21F4A65D785B45AF4B_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_ICollection_get_SyncRoot_m47B192D554C0E87308D2A5C411D34C35AA939AA9_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = (RuntimeObject*)__this->____syncRoot_4;
if (L_0)
{
goto IL_001a;
}
}
{
RuntimeObject** L_1 = (RuntimeObject**)(&__this->____syncRoot_4);
RuntimeObject* L_2 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_2, NULL);
RuntimeObject* L_3;
L_3 = InterlockedCompareExchangeImpl<RuntimeObject*>(L_1, L_2, NULL);
}
IL_001a:
{
RuntimeObject* L_4 = (RuntimeObject*)__this->____syncRoot_4;
return L_4;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 List_1_get_Item_mBB503A92064BE6675F71901A29545531F6D81C9C_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowArgumentOutOfRange_IndexException_mC7661B8C6DD827679C95FC6B6C08F8724174936D(NULL);
}
IL_000e:
{
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_2 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
int32_t L_3 = ___index0;
NullCheck(L_2);
int32_t L_4 = L_3;
SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
return L_5;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Item_m76B13A2CCCC4D89B3C84A6FF38F3AB73D640DE1C_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, int32_t ___index0, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 ___value1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowArgumentOutOfRange_IndexException_mC7661B8C6DD827679C95FC6B6C08F8724174936D(NULL);
}
IL_000e:
{
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_2 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
int32_t L_3 = ___index0;
SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 L_4 = ___value1;
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92)L_4);
int32_t L_5 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_5, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_IsCompatibleObject_mF53B290317C6EBC6EC62D420F81D2CCA24B43733_gshared (RuntimeObject* ___value0, const RuntimeMethod* method)
{
SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 V_0;
memset((&V_0), 0, sizeof(V_0));
{
RuntimeObject* L_0 = ___value0;
if (((RuntimeObject*)IsInst((RuntimeObject*)L_0, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 9))))
{
goto IL_001f;
}
}
{
RuntimeObject* L_1 = ___value0;
if (L_1)
{
goto IL_001d;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92));
SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 L_2 = V_0;
SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 L_3 = L_2;
RuntimeObject* L_4 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_3);
return (bool)((((RuntimeObject*)(RuntimeObject*)L_4) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
}
IL_001d:
{
return (bool)0;
}
IL_001f:
{
return (bool)1;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_IList_get_Item_mF01701E677970335DE80E625B862ADFE69A40587_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 L_1;
L_1 = List_1_get_Item_mBB503A92064BE6675F71901A29545531F6D81C9C(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 L_2 = L_1;
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 9), &L_2);
return L_3;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_System_Collections_IList_set_Item_m7194A24D36D7B1FBC0D72AF5FC6627642AFC59FC_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, int32_t ___index0, RuntimeObject* ___value1, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeObject* L_0 = ___value1;
ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisSerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92_m20C9E63C73062F14CE6D23FF2EF366CEFC522DDD(L_0, (int32_t)((int32_t)15), il2cpp_rgctx_method(method->klass->rgctx_data, 11));
}
try
{
int32_t L_1 = ___index0;
RuntimeObject* L_2 = ___value1;
List_1_set_Item_m76B13A2CCCC4D89B3C84A6FF38F3AB73D640DE1C(__this, L_1, ((*(SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92*)((SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92*)(SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 12));
goto IL_002a;
}
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0017;
}
throw e;
}
CATCH_0017:
{
RuntimeObject* L_3 = ___value1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->klass->rgctx_data, 13)) };
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
Type_t* L_5;
L_5 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_4, NULL);
ThrowHelper_ThrowWrongValueTypeArgumentException_mC1A6BBE43C360583C1E2C463D5B0AADF1E3E1910(L_3, L_5, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_002a;
}
IL_002a:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_m789F885930480A60CC99D85E28B6D92CEDA74EF1_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 ___item0, const RuntimeMethod* method)
{
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_1 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
V_0 = L_1;
int32_t L_2 = (int32_t)__this->____size_2;
V_1 = L_2;
int32_t L_3 = V_1;
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_4 = V_0;
NullCheck(L_4);
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
{
goto IL_0034;
}
}
{
int32_t L_5 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_6 = V_0;
int32_t L_7 = V_1;
SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 L_8 = ___item0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92)L_8);
return;
}
IL_0034:
{
SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 L_9 = ___item0;
List_1_AddWithResize_m199942A4F45DF9A26AE2BF3F5F83EB6872EF1296(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void List_1_AddWithResize_m199942A4F45DF9A26AE2BF3F5F83EB6872EF1296_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 ___item0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->____size_2;
V_0 = L_0;
int32_t L_1 = V_0;
List_1_EnsureCapacity_m3B9DA3D8520F069599E1B6F91322ADDE69A24DD8(__this, ((int32_t)il2cpp_codegen_add(L_1, 1)), il2cpp_rgctx_method(method->klass->rgctx_data, 15));
int32_t L_2 = V_0;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_2, 1));
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_3 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
int32_t L_4 = V_0;
SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 L_5 = ___item0;
NullCheck(L_3);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(L_4), (SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92)L_5);
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_System_Collections_IList_Add_mF8CC7BB0A37302BB0DE622CAB5BE4C0C345A76AB_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeObject* L_0 = ___item0;
ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisSerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92_m20C9E63C73062F14CE6D23FF2EF366CEFC522DDD(L_0, (int32_t)((int32_t)20), il2cpp_rgctx_method(method->klass->rgctx_data, 11));
}
try
{
RuntimeObject* L_1 = ___item0;
List_1_Add_m789F885930480A60CC99D85E28B6D92CEDA74EF1_inline(__this, ((*(SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92*)((SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92*)(SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92*)UnBox(L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 16));
goto IL_0029;
}
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0016;
}
throw e;
}
CATCH_0016:
{
RuntimeObject* L_2 = ___item0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_3 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->klass->rgctx_data, 13)) };
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
Type_t* L_4;
L_4 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_3, NULL);
ThrowHelper_ThrowWrongValueTypeArgumentException_mC1A6BBE43C360583C1E2C463D5B0AADF1E3E1910(L_2, L_4, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0029;
}
IL_0029:
{
int32_t L_5;
L_5 = List_1_get_Count_m62E98B115ACDF79B5558CFC3F21D107DCC98D9BB_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
return ((int32_t)il2cpp_codegen_subtract(L_5, 1));
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_AddRange_m75BD0B7244BB21B87615FE835C61FBB6DFDA5B87_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, RuntimeObject* ___collection0, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
RuntimeObject* L_1 = ___collection0;
List_1_InsertRange_m4E98A2CE935633F7D04BBBFC141EA7A4B95A3C6E(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 18));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyCollection_1_tCBA432B40218EE796DDE3EF3B0E4428EC223C324* List_1_AsReadOnly_m4A0B9DBED06495AFF9F121260E11C96805F94C63_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, const RuntimeMethod* method)
{
{
ReadOnlyCollection_1_tCBA432B40218EE796DDE3EF3B0E4428EC223C324* L_0 = (ReadOnlyCollection_1_tCBA432B40218EE796DDE3EF3B0E4428EC223C324*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 19));
ReadOnlyCollection_1__ctor_mC0CA4A8705EB2EF1681EC022B6DBA788CBE22343(L_0, (RuntimeObject*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
return L_0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_m32EB1E6B18AC45C4BF593EC977A204CD1CE44330_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, int32_t ___index0, int32_t ___count1, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 ___item2, RuntimeObject* ___comparer3, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_5 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
int32_t L_6 = ___index0;
int32_t L_7 = ___count1;
SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 L_8 = ___item2;
RuntimeObject* L_9 = ___comparer3;
int32_t L_10;
L_10 = Array_BinarySearch_TisSerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92_m263ECCDC182F2E301047F12A645FCBD4A0D1976E(L_5, L_6, L_7, L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 23));
return L_10;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_m990F3C812C12A9994D7FF3543ACA9DA2B52FA582_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 ___item0, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_m62E98B115ACDF79B5558CFC3F21D107DCC98D9BB_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 L_1 = ___item0;
int32_t L_2;
L_2 = List_1_BinarySearch_m32EB1E6B18AC45C4BF593EC977A204CD1CE44330(__this, 0, L_0, L_1, (RuntimeObject*)NULL, il2cpp_rgctx_method(method->klass->rgctx_data, 24));
return L_2;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_mDEF9869D4F6FA1EF916812AC4AFCE3983C6DC798_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 ___item0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_m62E98B115ACDF79B5558CFC3F21D107DCC98D9BB_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 L_1 = ___item0;
RuntimeObject* L_2 = ___comparer1;
int32_t L_3;
L_3 = List_1_BinarySearch_m32EB1E6B18AC45C4BF593EC977A204CD1CE44330(__this, 0, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 24));
return L_3;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Clear_m15FBBBC1A57AB5DD06F2182041F8331B8CF64D43_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
}
{
int32_t L_1 = (int32_t)__this->____size_2;
V_0 = L_1;
__this->____size_2 = 0;
int32_t L_2 = V_0;
if ((((int32_t)L_2) <= ((int32_t)0)))
{
goto IL_003c;
}
}
{
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_3 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
int32_t L_4 = V_0;
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_3, 0, L_4, NULL);
return;
}
IL_003c:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Contains_m7F1D9F4388035B5F6BB0650561A0E76E5EB00609_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 ___item0, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
if (!L_0)
{
goto IL_0016;
}
}
{
SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 L_1 = ___item0;
int32_t L_2;
L_2 = List_1_IndexOf_mA5D723B92DEA3515BA2BFD33D736304CE9D040A9(__this, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 26));
return (bool)((((int32_t)((((int32_t)L_2) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_0016:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_System_Collections_IList_Contains_m634ABFEEEA7EAA6403A59BA3C4B7672BE6331C29_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___item0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
bool L_1;
L_1 = List_1_IsCompatibleObject_mF53B290317C6EBC6EC62D420F81D2CCA24B43733(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
if (!L_1)
{
goto IL_0015;
}
}
{
RuntimeObject* L_2 = ___item0;
bool L_3;
L_3 = List_1_Contains_m7F1D9F4388035B5F6BB0650561A0E76E5EB00609(__this, ((*(SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92*)((SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92*)(SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 28));
return L_3;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_CopyTo_mE74F2935674D6B9203B4C7B7E58741801708F330_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* ___array0, const RuntimeMethod* method)
{
{
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_0 = ___array0;
List_1_CopyTo_m86813324FC57F48338DA034F92DA7F1EA483BAC7(__this, L_0, 0, il2cpp_rgctx_method(method->klass->rgctx_data, 29));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_System_Collections_ICollection_CopyTo_mB3E4218661503B33272762BDF28F82FA7C80AFB5_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, RuntimeArray* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeArray* L_0 = ___array0;
if (!L_0)
{
goto IL_0012;
}
}
{
RuntimeArray* L_1 = ___array0;
NullCheck(L_1);
int32_t L_2;
L_2 = Array_get_Rank_m9383A200A2ECC89ECA44FE5F812ECFB874449C5F(L_1, NULL);
if ((((int32_t)L_2) == ((int32_t)1)))
{
goto IL_0012;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)7, NULL);
}
IL_0012:
{
}
try
{
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_3 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
RuntimeArray* L_4 = ___array0;
int32_t L_5 = ___arrayIndex1;
int32_t L_6 = (int32_t)__this->____size_2;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_3, 0, L_4, L_5, L_6, NULL);
goto IL_0031;
}
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArrayTypeMismatchException_t95F1723A5A166E62D3FBEF9734DEFBF61594F8F1_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0029;
}
throw e;
}
CATCH_0029:
{
ThrowHelper_ThrowArgumentException_Argument_InvalidArrayType_m469A6A5731A0F1E94D8B609ED9D001C3A1652A58(NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0031;
}
IL_0031:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_CopyTo_m86813324FC57F48338DA034F92DA7F1EA483BAC7_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_0 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
int32_t L_3 = (int32_t)__this->____size_2;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_0, 0, (RuntimeArray*)L_1, L_2, L_3, NULL);
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_EnsureCapacity_m3B9DA3D8520F069599E1B6F91322ADDE69A24DD8_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, int32_t ___min0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t G_B4_0 = 0;
{
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_0 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
NullCheck(L_0);
int32_t L_1 = ___min0;
if ((((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))) >= ((int32_t)L_1)))
{
goto IL_003d;
}
}
{
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_2 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
NullCheck(L_2);
if (!(((RuntimeArray*)L_2)->max_length))
{
goto IL_0020;
}
}
{
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_3 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
NullCheck(L_3);
G_B4_0 = ((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_3)->max_length)), 2));
goto IL_0021;
}
IL_0020:
{
G_B4_0 = 4;
}
IL_0021:
{
V_0 = G_B4_0;
int32_t L_4 = V_0;
if ((!(((uint32_t)L_4) > ((uint32_t)((int32_t)2146435071)))))
{
goto IL_0030;
}
}
{
V_0 = ((int32_t)2146435071);
}
IL_0030:
{
int32_t L_5 = V_0;
int32_t L_6 = ___min0;
if ((((int32_t)L_5) >= ((int32_t)L_6)))
{
goto IL_0036;
}
}
{
int32_t L_7 = ___min0;
V_0 = L_7;
}
IL_0036:
{
int32_t L_8 = V_0;
List_1_set_Capacity_mD0217C58B2E251FA259AFE4383C5FE3EBA6F929D(__this, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 30));
}
IL_003d:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Exists_m42B2DE1428D4880CF7594B7858C8059957FFED87_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, Predicate_1_tB611AC0628C45AA8C22D98641EB0E2777E379967* ___match0, const RuntimeMethod* method)
{
{
Predicate_1_tB611AC0628C45AA8C22D98641EB0E2777E379967* L_0 = ___match0;
int32_t L_1;
L_1 = List_1_FindIndex_m25584DCC2D2EC5344B16FD55FD15AF9430C14D9F(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 32));
return (bool)((((int32_t)((((int32_t)L_1) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 List_1_Find_mB2EF4DE8B4C43C76611C350D504059035815999A_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, Predicate_1_tB611AC0628C45AA8C22D98641EB0E2777E379967* ___match0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 V_1;
memset((&V_1), 0, sizeof(V_1));
{
Predicate_1_tB611AC0628C45AA8C22D98641EB0E2777E379967* L_0 = ___match0;
if (L_0)
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)8, NULL);
}
IL_0009:
{
V_0 = 0;
goto IL_0032;
}
IL_000d:
{
Predicate_1_tB611AC0628C45AA8C22D98641EB0E2777E379967* L_1 = ___match0;
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_2 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
int32_t L_3 = V_0;
NullCheck(L_2);
int32_t L_4 = L_3;
SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
NullCheck(L_1);
bool L_6;
L_6 = Predicate_1_Invoke_m7F899F9611DAC1AC03EEDF59AA231010CA8F99F0_inline(L_1, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (!L_6)
{
goto IL_002e;
}
}
{
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_7 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
int32_t L_8 = V_0;
NullCheck(L_7);
int32_t L_9 = L_8;
SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
return L_10;
}
IL_002e:
{
int32_t L_11 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_11, 1));
}
IL_0032:
{
int32_t L_12 = V_0;
int32_t L_13 = (int32_t)__this->____size_2;
if ((((int32_t)L_12) < ((int32_t)L_13)))
{
goto IL_000d;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92));
SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 L_14 = V_1;
return L_14;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tD47E289A20580491873111C2FC85A5456012FCAC* List_1_FindAll_mFB7150B8C579F8AB71BA7551CCA868004DC2847B_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, Predicate_1_tB611AC0628C45AA8C22D98641EB0E2777E379967* ___match0, const RuntimeMethod* method)
{
List_1_tD47E289A20580491873111C2FC85A5456012FCAC* V_0 = NULL;
int32_t V_1 = 0;
{
Predicate_1_tB611AC0628C45AA8C22D98641EB0E2777E379967* L_0 = ___match0;
if (L_0)
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)8, NULL);
}
IL_0009:
{
List_1_tD47E289A20580491873111C2FC85A5456012FCAC* L_1 = (List_1_tD47E289A20580491873111C2FC85A5456012FCAC*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 0));
List_1__ctor_mE93A42B8E7E2C13C1A1F7658D34ABB7B25EEC5D5(L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
V_0 = L_1;
V_1 = 0;
goto IL_003d;
}
IL_0013:
{
Predicate_1_tB611AC0628C45AA8C22D98641EB0E2777E379967* L_2 = ___match0;
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_3 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
int32_t L_4 = V_1;
NullCheck(L_3);
int32_t L_5 = L_4;
SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
NullCheck(L_2);
bool L_7;
L_7 = Predicate_1_Invoke_m7F899F9611DAC1AC03EEDF59AA231010CA8F99F0_inline(L_2, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (!L_7)
{
goto IL_0039;
}
}
{
List_1_tD47E289A20580491873111C2FC85A5456012FCAC* L_8 = V_0;
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_9 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
int32_t L_10 = V_1;
NullCheck(L_9);
int32_t L_11 = L_10;
SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
NullCheck(L_8);
List_1_Add_m789F885930480A60CC99D85E28B6D92CEDA74EF1_inline(L_8, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
}
IL_0039:
{
int32_t L_13 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_13, 1));
}
IL_003d:
{
int32_t L_14 = V_1;
int32_t L_15 = (int32_t)__this->____size_2;
if ((((int32_t)L_14) < ((int32_t)L_15)))
{
goto IL_0013;
}
}
{
List_1_tD47E289A20580491873111C2FC85A5456012FCAC* L_16 = V_0;
return L_16;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_m25584DCC2D2EC5344B16FD55FD15AF9430C14D9F_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, Predicate_1_tB611AC0628C45AA8C22D98641EB0E2777E379967* ___match0, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
Predicate_1_tB611AC0628C45AA8C22D98641EB0E2777E379967* L_1 = ___match0;
int32_t L_2;
L_2 = List_1_FindIndex_m2BC80847EC4A8C20F0C314B8DE71C351F3E89988(__this, 0, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 35));
return L_2;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_m2BC80847EC4A8C20F0C314B8DE71C351F3E89988_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, int32_t ___startIndex0, int32_t ___count1, Predicate_1_tB611AC0628C45AA8C22D98641EB0E2777E379967* ___match2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
int32_t L_0 = ___startIndex0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) > ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowStartIndexArgumentOutOfRange_ArgumentOutOfRange_Index_m94BADCC6D7EBBD12BE8323775FFB43AF01499B0F(NULL);
}
IL_000e:
{
int32_t L_2 = ___count1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_001d;
}
}
{
int32_t L_3 = ___startIndex0;
int32_t L_4 = (int32_t)__this->____size_2;
int32_t L_5 = ___count1;
if ((((int32_t)L_3) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_4, L_5)))))
{
goto IL_0022;
}
}
IL_001d:
{
ThrowHelper_ThrowCountArgumentOutOfRange_ArgumentOutOfRange_Count_m6C4A7F645BDD8EB62B50CB76E84416D94620DCC7(NULL);
}
IL_0022:
{
Predicate_1_tB611AC0628C45AA8C22D98641EB0E2777E379967* L_6 = ___match2;
if (L_6)
{
goto IL_002b;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)8, NULL);
}
IL_002b:
{
int32_t L_7 = ___startIndex0;
int32_t L_8 = ___count1;
V_0 = ((int32_t)il2cpp_codegen_add(L_7, L_8));
int32_t L_9 = ___startIndex0;
V_1 = L_9;
goto IL_004d;
}
IL_0033:
{
Predicate_1_tB611AC0628C45AA8C22D98641EB0E2777E379967* L_10 = ___match2;
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_11 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
int32_t L_12 = V_1;
NullCheck(L_11);
int32_t L_13 = L_12;
SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 L_14 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_13));
NullCheck(L_10);
bool L_15;
L_15 = Predicate_1_Invoke_m7F899F9611DAC1AC03EEDF59AA231010CA8F99F0_inline(L_10, L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (!L_15)
{
goto IL_0049;
}
}
{
int32_t L_16 = V_1;
return L_16;
}
IL_0049:
{
int32_t L_17 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_17, 1));
}
IL_004d:
{
int32_t L_18 = V_1;
int32_t L_19 = V_0;
if ((((int32_t)L_18) < ((int32_t)L_19)))
{
goto IL_0033;
}
}
{
return (-1);
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_ForEach_m97E13740D2F925A41ECA450B97CC99685042D837_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, Action_1_t187C688D32A8DB83E990AEA9706F59866839B943* ___action0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
Action_1_t187C688D32A8DB83E990AEA9706F59866839B943* L_0 = ___action0;
if (L_0)
{
goto IL_000a;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)((int32_t)33), NULL);
}
IL_000a:
{
int32_t L_1 = (int32_t)__this->____version_3;
V_0 = L_1;
V_1 = 0;
goto IL_0034;
}
IL_0015:
{
int32_t L_2 = V_0;
int32_t L_3 = (int32_t)__this->____version_3;
if ((!(((uint32_t)L_2) == ((uint32_t)L_3))))
{
goto IL_003d;
}
}
{
Action_1_t187C688D32A8DB83E990AEA9706F59866839B943* L_4 = ___action0;
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_5 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
int32_t L_6 = V_1;
NullCheck(L_5);
int32_t L_7 = L_6;
SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck(L_4);
Action_1_Invoke_mE8864E52B8F99441E9CE69FE4157842E40E94DD5_inline(L_4, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 37));
int32_t L_9 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_9, 1));
}
IL_0034:
{
int32_t L_10 = V_1;
int32_t L_11 = (int32_t)__this->____size_2;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0015;
}
}
IL_003d:
{
int32_t L_12 = V_0;
int32_t L_13 = (int32_t)__this->____version_3;
if ((((int32_t)L_12) == ((int32_t)L_13)))
{
goto IL_004b;
}
}
{
ThrowHelper_ThrowInvalidOperationException_InvalidOperation_EnumFailedVersion_m5331E2E0EC0E36843D53F439C2529530595ACE9F(NULL);
}
IL_004b:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t3401DD96101FB490B9D817CFF7957BFB900624B3 List_1_GetEnumerator_mE381F0E100AB1B2B07FF36904ECD0DDA3902718E_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, const RuntimeMethod* method)
{
{
Enumerator_t3401DD96101FB490B9D817CFF7957BFB900624B3 L_0;
memset((&L_0), 0, sizeof(L_0));
Enumerator__ctor_mBDCE4434468C2809613EF641B87E27527CAB552A((&L_0), __this, il2cpp_rgctx_method(method->klass->rgctx_data, 39));
return L_0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m0638B8D5C9068293442C402CD5EFDC9435EFCF48_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, const RuntimeMethod* method)
{
{
Enumerator_t3401DD96101FB490B9D817CFF7957BFB900624B3 L_0;
memset((&L_0), 0, sizeof(L_0));
Enumerator__ctor_mBDCE4434468C2809613EF641B87E27527CAB552A((&L_0), __this, il2cpp_rgctx_method(method->klass->rgctx_data, 39));
Enumerator_t3401DD96101FB490B9D817CFF7957BFB900624B3 L_1 = L_0;
RuntimeObject* L_2 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 38), &L_1);
return (RuntimeObject*)L_2;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_IEnumerable_GetEnumerator_m658DB743C0BF5B70A715E85D99DB422D6ABEAB4B_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, const RuntimeMethod* method)
{
{
Enumerator_t3401DD96101FB490B9D817CFF7957BFB900624B3 L_0;
memset((&L_0), 0, sizeof(L_0));
Enumerator__ctor_mBDCE4434468C2809613EF641B87E27527CAB552A((&L_0), __this, il2cpp_rgctx_method(method->klass->rgctx_data, 39));
Enumerator_t3401DD96101FB490B9D817CFF7957BFB900624B3 L_1 = L_0;
RuntimeObject* L_2 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 38), &L_1);
return (RuntimeObject*)L_2;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tD47E289A20580491873111C2FC85A5456012FCAC* List_1_GetRange_m709FF181EC1D91893D35A977C914CB022031A0F3_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method)
{
List_1_tD47E289A20580491873111C2FC85A5456012FCAC* V_0 = NULL;
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
int32_t L_5 = ___count1;
List_1_tD47E289A20580491873111C2FC85A5456012FCAC* L_6 = (List_1_tD47E289A20580491873111C2FC85A5456012FCAC*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 0));
List_1__ctor_mAEFD61889C036CF46420354D03CDB378A02C6629(L_6, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 41));
V_0 = L_6;
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_7 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
int32_t L_8 = ___index0;
List_1_tD47E289A20580491873111C2FC85A5456012FCAC* L_9 = V_0;
NullCheck(L_9);
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_10 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)L_9->____items_1;
int32_t L_11 = ___count1;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_7, L_8, (RuntimeArray*)L_10, 0, L_11, NULL);
List_1_tD47E289A20580491873111C2FC85A5456012FCAC* L_12 = V_0;
int32_t L_13 = ___count1;
NullCheck(L_12);
L_12->____size_2 = L_13;
List_1_tD47E289A20580491873111C2FC85A5456012FCAC* L_14 = V_0;
return L_14;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_IndexOf_mA5D723B92DEA3515BA2BFD33D736304CE9D040A9_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 ___item0, const RuntimeMethod* method)
{
{
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_0 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 L_1 = ___item0;
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3;
L_3 = Array_IndexOf_TisSerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92_mBD8DC01514895B25728AD175138D8C4EA74558FC(L_0, L_1, 0, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 42));
return L_3;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_System_Collections_IList_IndexOf_mA20805E4930F0966C3BEE4F67C51BF0E28C9E252_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___item0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
bool L_1;
L_1 = List_1_IsCompatibleObject_mF53B290317C6EBC6EC62D420F81D2CCA24B43733(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
if (!L_1)
{
goto IL_0015;
}
}
{
RuntimeObject* L_2 = ___item0;
int32_t L_3;
L_3 = List_1_IndexOf_mA5D723B92DEA3515BA2BFD33D736304CE9D040A9(__this, ((*(SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92*)((SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92*)(SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 26));
return L_3;
}
IL_0015:
{
return (-1);
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Insert_m027C014EE37B55B729D05969787E0052B4433249_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, int32_t ___index0, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 ___item1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) > ((uint32_t)L_1))))
{
goto IL_0012;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)13), (int32_t)((int32_t)27), NULL);
}
IL_0012:
{
int32_t L_2 = (int32_t)__this->____size_2;
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_3 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
NullCheck(L_3);
if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)(((RuntimeArray*)L_3)->max_length))))))
{
goto IL_0030;
}
}
{
int32_t L_4 = (int32_t)__this->____size_2;
List_1_EnsureCapacity_m3B9DA3D8520F069599E1B6F91322ADDE69A24DD8(__this, ((int32_t)il2cpp_codegen_add(L_4, 1)), il2cpp_rgctx_method(method->klass->rgctx_data, 15));
}
IL_0030:
{
int32_t L_5 = ___index0;
int32_t L_6 = (int32_t)__this->____size_2;
if ((((int32_t)L_5) >= ((int32_t)L_6)))
{
goto IL_0056;
}
}
{
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_7 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
int32_t L_8 = ___index0;
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_9 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
int32_t L_10 = ___index0;
int32_t L_11 = (int32_t)__this->____size_2;
int32_t L_12 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_7, L_8, (RuntimeArray*)L_9, ((int32_t)il2cpp_codegen_add(L_10, 1)), ((int32_t)il2cpp_codegen_subtract(L_11, L_12)), NULL);
}
IL_0056:
{
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_13 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
int32_t L_14 = ___index0;
SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 L_15 = ___item1;
NullCheck(L_13);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92)L_15);
int32_t L_16 = (int32_t)__this->____size_2;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_16, 1));
int32_t L_17 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_17, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_System_Collections_IList_Insert_m20F09BCC56A3D6950243BBF847A493AE29365C16_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, int32_t ___index0, RuntimeObject* ___item1, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeObject* L_0 = ___item1;
ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisSerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92_m20C9E63C73062F14CE6D23FF2EF366CEFC522DDD(L_0, (int32_t)((int32_t)20), il2cpp_rgctx_method(method->klass->rgctx_data, 11));
}
try
{
int32_t L_1 = ___index0;
RuntimeObject* L_2 = ___item1;
List_1_Insert_m027C014EE37B55B729D05969787E0052B4433249(__this, L_1, ((*(SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92*)((SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92*)(SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 43));
goto IL_002a;
}
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0017;
}
throw e;
}
CATCH_0017:
{
RuntimeObject* L_3 = ___item1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->klass->rgctx_data, 13)) };
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
Type_t* L_5;
L_5 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_4, NULL);
ThrowHelper_ThrowWrongValueTypeArgumentException_mC1A6BBE43C360583C1E2C463D5B0AADF1E3E1910(L_3, L_5, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_002a;
}
IL_002a:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_InsertRange_m4E98A2CE935633F7D04BBBFC141EA7A4B95A3C6E_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, int32_t ___index0, RuntimeObject* ___collection1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
int32_t V_1 = 0;
RuntimeObject* V_2 = NULL;
{
RuntimeObject* L_0 = ___collection1;
if (L_0)
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)6, NULL);
}
IL_0009:
{
int32_t L_1 = ___index0;
int32_t L_2 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_1) > ((uint32_t)L_2))))
{
goto IL_0017;
}
}
{
ThrowHelper_ThrowArgumentOutOfRange_IndexException_mC7661B8C6DD827679C95FC6B6C08F8724174936D(NULL);
}
IL_0017:
{
RuntimeObject* L_3 = ___collection1;
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 5)));
RuntimeObject* L_4 = V_0;
if (!L_4)
{
goto IL_00bc;
}
}
{
RuntimeObject* L_5 = V_0;
NullCheck(L_5);
int32_t L_6;
L_6 = InterfaceFuncInvoker0< int32_t >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_5);
V_1 = L_6;
int32_t L_7 = V_1;
if ((((int32_t)L_7) <= ((int32_t)0)))
{
goto IL_00fb;
}
}
{
int32_t L_8 = (int32_t)__this->____size_2;
int32_t L_9 = V_1;
List_1_EnsureCapacity_m3B9DA3D8520F069599E1B6F91322ADDE69A24DD8(__this, ((int32_t)il2cpp_codegen_add(L_8, L_9)), il2cpp_rgctx_method(method->klass->rgctx_data, 15));
int32_t L_10 = ___index0;
int32_t L_11 = (int32_t)__this->____size_2;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0066;
}
}
{
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_12 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
int32_t L_13 = ___index0;
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_14 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
int32_t L_15 = ___index0;
int32_t L_16 = V_1;
int32_t L_17 = (int32_t)__this->____size_2;
int32_t L_18 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_12, L_13, (RuntimeArray*)L_14, ((int32_t)il2cpp_codegen_add(L_15, L_16)), ((int32_t)il2cpp_codegen_subtract(L_17, L_18)), NULL);
}
IL_0066:
{
RuntimeObject* L_19 = V_0;
if ((!(((RuntimeObject*)(List_1_tD47E289A20580491873111C2FC85A5456012FCAC*)__this) == ((RuntimeObject*)(RuntimeObject*)L_19))))
{
goto IL_009f;
}
}
{
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_20 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_21 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
int32_t L_22 = ___index0;
int32_t L_23 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_20, 0, (RuntimeArray*)L_21, L_22, L_23, NULL);
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_24 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
int32_t L_25 = ___index0;
int32_t L_26 = V_1;
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_27 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
int32_t L_28 = ___index0;
int32_t L_29 = (int32_t)__this->____size_2;
int32_t L_30 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_24, ((int32_t)il2cpp_codegen_add(L_25, L_26)), (RuntimeArray*)L_27, ((int32_t)il2cpp_codegen_multiply(L_28, 2)), ((int32_t)il2cpp_codegen_subtract(L_29, L_30)), NULL);
goto IL_00ac;
}
IL_009f:
{
RuntimeObject* L_31 = V_0;
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_32 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
int32_t L_33 = ___index0;
NullCheck(L_31);
InterfaceActionInvoker2< SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*, int32_t >::Invoke(5, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_31, L_32, L_33);
}
IL_00ac:
{
int32_t L_34 = (int32_t)__this->____size_2;
int32_t L_35 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_34, L_35));
goto IL_00fb;
}
IL_00bc:
{
int32_t L_36 = ___index0;
int32_t L_37 = (int32_t)__this->____size_2;
if ((((int32_t)L_36) >= ((int32_t)L_37)))
{
goto IL_00f4;
}
}
{
RuntimeObject* L_38 = ___collection1;
NullCheck(L_38);
RuntimeObject* L_39;
L_39 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_38);
V_2 = L_39;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00ea:
{
{
RuntimeObject* L_40 = V_2;
if (!L_40)
{
goto IL_00f3;
}
}
{
RuntimeObject* L_41 = V_2;
NullCheck((RuntimeObject*)L_41);
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_41);
}
IL_00f3:
{
return;
}
}
});
try
{
{
goto IL_00e0_1;
}
IL_00ce_1:
{
int32_t L_42 = ___index0;
int32_t L_43 = L_42;
___index0 = ((int32_t)il2cpp_codegen_add(L_43, 1));
RuntimeObject* L_44 = V_2;
NullCheck(L_44);
SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 L_45;
L_45 = InterfaceFuncInvoker0< SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 40), L_44);
List_1_Insert_m027C014EE37B55B729D05969787E0052B4433249(__this, L_43, L_45, il2cpp_rgctx_method(method->klass->rgctx_data, 43));
}
IL_00e0_1:
{
RuntimeObject* L_46 = V_2;
NullCheck((RuntimeObject*)L_46);
bool L_47;
L_47 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_46);
if (L_47)
{
goto IL_00ce_1;
}
}
{
goto IL_00fb;
}
}
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00f4:
{
RuntimeObject* L_48 = ___collection1;
List_1_AddEnumerable_mB305C2917891211C606013DCEA970966D0B1026C(__this, L_48, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
}
IL_00fb:
{
int32_t L_49 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_49, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Remove_mCA93EB575579C2E8A7BACEC1E0B1825547B451AC_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 ___item0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 L_0 = ___item0;
int32_t L_1;
L_1 = List_1_IndexOf_mA5D723B92DEA3515BA2BFD33D736304CE9D040A9(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 26));
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0015;
}
}
{
int32_t L_3 = V_0;
List_1_RemoveAt_mD03977F2AD546CF2E7014AC88125D6B5814D1BB3(__this, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 46));
return (bool)1;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_System_Collections_IList_Remove_mDE40B010DDA593F004E3CB07E606E6166AA635A7_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___item0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
bool L_1;
L_1 = List_1_IsCompatibleObject_mF53B290317C6EBC6EC62D420F81D2CCA24B43733(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
if (!L_1)
{
goto IL_0015;
}
}
{
RuntimeObject* L_2 = ___item0;
bool L_3;
L_3 = List_1_Remove_mCA93EB575579C2E8A7BACEC1E0B1825547B451AC(__this, ((*(SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92*)((SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92*)(SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 47));
}
IL_0015:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_RemoveAll_mBE7167EE6F402EF0D17D4D60F8B5B4C6DD9251EE_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, Predicate_1_tB611AC0628C45AA8C22D98641EB0E2777E379967* ___match0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
Predicate_1_tB611AC0628C45AA8C22D98641EB0E2777E379967* L_0 = ___match0;
if (L_0)
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)8, NULL);
}
IL_0009:
{
V_0 = 0;
goto IL_0011;
}
IL_000d:
{
int32_t L_1 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_1, 1));
}
IL_0011:
{
int32_t L_2 = V_0;
int32_t L_3 = (int32_t)__this->____size_2;
if ((((int32_t)L_2) >= ((int32_t)L_3)))
{
goto IL_002e;
}
}
{
Predicate_1_tB611AC0628C45AA8C22D98641EB0E2777E379967* L_4 = ___match0;
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_5 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
int32_t L_6 = V_0;
NullCheck(L_5);
int32_t L_7 = L_6;
SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck(L_4);
bool L_9;
L_9 = Predicate_1_Invoke_m7F899F9611DAC1AC03EEDF59AA231010CA8F99F0_inline(L_4, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (!L_9)
{
goto IL_000d;
}
}
IL_002e:
{
int32_t L_10 = V_0;
int32_t L_11 = (int32_t)__this->____size_2;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0039;
}
}
{
return 0;
}
IL_0039:
{
int32_t L_12 = V_0;
V_1 = ((int32_t)il2cpp_codegen_add(L_12, 1));
goto IL_0089;
}
IL_003f:
{
int32_t L_13 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_13, 1));
}
IL_0043:
{
int32_t L_14 = V_1;
int32_t L_15 = (int32_t)__this->____size_2;
if ((((int32_t)L_14) >= ((int32_t)L_15)))
{
goto IL_0060;
}
}
{
Predicate_1_tB611AC0628C45AA8C22D98641EB0E2777E379967* L_16 = ___match0;
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_17 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
int32_t L_18 = V_1;
NullCheck(L_17);
int32_t L_19 = L_18;
SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
NullCheck(L_16);
bool L_21;
L_21 = Predicate_1_Invoke_m7F899F9611DAC1AC03EEDF59AA231010CA8F99F0_inline(L_16, L_20, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (L_21)
{
goto IL_003f;
}
}
IL_0060:
{
int32_t L_22 = V_1;
int32_t L_23 = (int32_t)__this->____size_2;
if ((((int32_t)L_22) >= ((int32_t)L_23)))
{
goto IL_0089;
}
}
{
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_24 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
int32_t L_25 = V_0;
int32_t L_26 = L_25;
V_0 = ((int32_t)il2cpp_codegen_add(L_26, 1));
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_27 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
int32_t L_28 = V_1;
int32_t L_29 = L_28;
V_1 = ((int32_t)il2cpp_codegen_add(L_29, 1));
NullCheck(L_27);
int32_t L_30 = L_29;
SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 L_31 = (L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_30));
NullCheck(L_24);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(L_26), (SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92)L_31);
}
IL_0089:
{
int32_t L_32 = V_1;
int32_t L_33 = (int32_t)__this->____size_2;
if ((((int32_t)L_32) < ((int32_t)L_33)))
{
goto IL_0043;
}
}
{
}
{
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_34 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
int32_t L_35 = V_0;
int32_t L_36 = (int32_t)__this->____size_2;
int32_t L_37 = V_0;
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_34, L_35, ((int32_t)il2cpp_codegen_subtract(L_36, L_37)), NULL);
}
IL_00ad:
{
int32_t L_38 = (int32_t)__this->____size_2;
int32_t L_39 = V_0;
int32_t L_40 = V_0;
__this->____size_2 = L_40;
int32_t L_41 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_41, 1));
return ((int32_t)il2cpp_codegen_subtract(L_38, L_39));
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveAt_mD03977F2AD546CF2E7014AC88125D6B5814D1BB3_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, int32_t ___index0, const RuntimeMethod* method)
{
SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowArgumentOutOfRange_IndexException_mC7661B8C6DD827679C95FC6B6C08F8724174936D(NULL);
}
IL_000e:
{
int32_t L_2 = (int32_t)__this->____size_2;
__this->____size_2 = ((int32_t)il2cpp_codegen_subtract(L_2, 1));
int32_t L_3 = ___index0;
int32_t L_4 = (int32_t)__this->____size_2;
if ((((int32_t)L_3) >= ((int32_t)L_4)))
{
goto IL_0042;
}
}
{
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_5 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
int32_t L_6 = ___index0;
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_7 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
int32_t L_8 = ___index0;
int32_t L_9 = (int32_t)__this->____size_2;
int32_t L_10 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_5, ((int32_t)il2cpp_codegen_add(L_6, 1)), (RuntimeArray*)L_7, L_8, ((int32_t)il2cpp_codegen_subtract(L_9, L_10)), NULL);
}
IL_0042:
{
}
{
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_11 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
int32_t L_12 = (int32_t)__this->____size_2;
il2cpp_codegen_initobj((&V_0), sizeof(SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92));
SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 L_13 = V_0;
NullCheck(L_11);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(L_12), (SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92)L_13);
}
IL_0063:
{
int32_t L_14 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_14, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveRange_mDB86629D4C01019FF21CF02B6D7353E9D7BFC3C6_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
int32_t L_5 = ___count1;
if ((((int32_t)L_5) <= ((int32_t)0)))
{
goto IL_008d;
}
}
{
int32_t L_6 = (int32_t)__this->____size_2;
int32_t L_7 = (int32_t)__this->____size_2;
int32_t L_8 = ___count1;
__this->____size_2 = ((int32_t)il2cpp_codegen_subtract(L_7, L_8));
int32_t L_9 = ___index0;
int32_t L_10 = (int32_t)__this->____size_2;
if ((((int32_t)L_9) >= ((int32_t)L_10)))
{
goto IL_0066;
}
}
{
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_11 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
int32_t L_12 = ___index0;
int32_t L_13 = ___count1;
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_14 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
int32_t L_15 = ___index0;
int32_t L_16 = (int32_t)__this->____size_2;
int32_t L_17 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_11, ((int32_t)il2cpp_codegen_add(L_12, L_13)), (RuntimeArray*)L_14, L_15, ((int32_t)il2cpp_codegen_subtract(L_16, L_17)), NULL);
}
IL_0066:
{
int32_t L_18 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_18, 1));
}
{
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_19 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
int32_t L_20 = (int32_t)__this->____size_2;
int32_t L_21 = ___count1;
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_19, L_20, L_21, NULL);
}
IL_008d:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Reverse_mA315BD2052436C3BBA24815713E21787F706A297_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_m62E98B115ACDF79B5558CFC3F21D107DCC98D9BB_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
List_1_Reverse_mA4700E1B3040D345415206D6EB2283061FA65266(__this, 0, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 48));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Reverse_mA4700E1B3040D345415206D6EB2283061FA65266_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
int32_t L_5 = ___count1;
if ((((int32_t)L_5) <= ((int32_t)1)))
{
goto IL_0038;
}
}
{
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_6 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
int32_t L_7 = ___index0;
int32_t L_8 = ___count1;
Array_Reverse_TisSerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92_mB1072C66EC4B549BBC03D581A18D153D024BAD5F(L_6, L_7, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 49));
}
IL_0038:
{
int32_t L_9 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_9, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m166457FCC2643A69B292D325618D13E4480763E1_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_m62E98B115ACDF79B5558CFC3F21D107DCC98D9BB_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
List_1_Sort_m0E61F53BB5469566CF4419EEDC59C44AEC3106A0(__this, 0, L_0, (RuntimeObject*)NULL, il2cpp_rgctx_method(method->klass->rgctx_data, 50));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m66F889E299EB406043E3953518C569850113766B_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_m62E98B115ACDF79B5558CFC3F21D107DCC98D9BB_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
RuntimeObject* L_1 = ___comparer0;
List_1_Sort_m0E61F53BB5469566CF4419EEDC59C44AEC3106A0(__this, 0, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 50));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m0E61F53BB5469566CF4419EEDC59C44AEC3106A0_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, int32_t ___index0, int32_t ___count1, RuntimeObject* ___comparer2, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
int32_t L_5 = ___count1;
if ((((int32_t)L_5) <= ((int32_t)1)))
{
goto IL_0039;
}
}
{
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_6 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
int32_t L_7 = ___index0;
int32_t L_8 = ___count1;
RuntimeObject* L_9 = ___comparer2;
Array_Sort_TisSerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92_m9354585E3294CAE99197AE2FF30CFA85D25D0928(L_6, L_7, L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 51));
}
IL_0039:
{
int32_t L_10 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_10, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m03A418227A6C26A44C0D4632ACA8D24F73A3A595_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, Comparison_1_t61E4EED0058DDEFD4B37CEAFB8E86A231BDF9EA2* ___comparison0, const RuntimeMethod* method)
{
{
Comparison_1_t61E4EED0058DDEFD4B37CEAFB8E86A231BDF9EA2* L_0 = ___comparison0;
if (L_0)
{
goto IL_000a;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)((int32_t)34), NULL);
}
IL_000a:
{
int32_t L_1 = (int32_t)__this->____size_2;
if ((((int32_t)L_1) <= ((int32_t)1)))
{
goto IL_0026;
}
}
{
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_2 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
int32_t L_3 = (int32_t)__this->____size_2;
Comparison_1_t61E4EED0058DDEFD4B37CEAFB8E86A231BDF9EA2* L_4 = ___comparison0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 54));
ArraySortHelper_1_Sort_mD85472105E04C2089F81AE565C919E72B51FEF5F(L_2, 0, L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 53));
}
IL_0026:
{
int32_t L_5 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_5, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* List_1_ToArray_m2AEB9C1D25C946052425229C14A9B0E513C6693B_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, const RuntimeMethod* method)
{
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* V_0 = NULL;
{
int32_t L_0 = (int32_t)__this->____size_2;
if (L_0)
{
goto IL_000e;
}
}
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_1 = ((List_1_tD47E289A20580491873111C2FC85A5456012FCAC_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
return L_1;
}
IL_000e:
{
int32_t L_2 = (int32_t)__this->____size_2;
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_3 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)(SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 3), (uint32_t)L_2);
V_0 = L_3;
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_4 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_5 = V_0;
int32_t L_6 = (int32_t)__this->____size_2;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_4, 0, (RuntimeArray*)L_5, 0, L_6, NULL);
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_7 = V_0;
return L_7;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_AddEnumerable_mB305C2917891211C606013DCEA970966D0B1026C_gshared (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, RuntimeObject* ___enumerable0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 V_1;
memset((&V_1), 0, sizeof(V_1));
int32_t V_2 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
RuntimeObject* L_1 = ___enumerable0;
NullCheck(L_1);
RuntimeObject* L_2;
L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_1);
V_0 = L_2;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0063:
{
{
RuntimeObject* L_3 = V_0;
if (!L_3)
{
goto IL_006c;
}
}
{
RuntimeObject* L_4 = V_0;
NullCheck((RuntimeObject*)L_4);
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_4);
}
IL_006c:
{
return;
}
}
});
try
{
{
goto IL_0059_1;
}
IL_0017_1:
{
RuntimeObject* L_5 = V_0;
NullCheck(L_5);
SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 L_6;
L_6 = InterfaceFuncInvoker0< SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 40), L_5);
V_1 = L_6;
int32_t L_7 = (int32_t)__this->____size_2;
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_8 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
NullCheck(L_8);
if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)(((RuntimeArray*)L_8)->max_length))))))
{
goto IL_003c_1;
}
}
{
int32_t L_9 = (int32_t)__this->____size_2;
List_1_EnsureCapacity_m3B9DA3D8520F069599E1B6F91322ADDE69A24DD8(__this, ((int32_t)il2cpp_codegen_add(L_9, 1)), il2cpp_rgctx_method(method->klass->rgctx_data, 15));
}
IL_003c_1:
{
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_10 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
int32_t L_11 = (int32_t)__this->____size_2;
V_2 = L_11;
int32_t L_12 = V_2;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_12, 1));
int32_t L_13 = V_2;
SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 L_14 = V_1;
NullCheck(L_10);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92)L_14);
}
IL_0059_1:
{
RuntimeObject* L_15 = V_0;
NullCheck((RuntimeObject*)L_15);
bool L_16;
L_16 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_15);
if (L_16)
{
goto IL_0017_1;
}
}
{
goto IL_006d;
}
}
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_006d:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__cctor_mC17D0B55AF34A2DE9E9462A7649F9765DA0BE9E2_gshared (const RuntimeMethod* method)
{
{
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_0 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)(SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)SZArrayNew(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 3), (uint32_t)0);
((List_1_tD47E289A20580491873111C2FC85A5456012FCAC_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___s_emptyArray_5 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((List_1_tD47E289A20580491873111C2FC85A5456012FCAC_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___s_emptyArray_5), (void*)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
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m33B64BB7982C5EC16903EEA39B4BCAF51775FD55_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_0 = ((List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_0);
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mB722EE7250EC243F0C9BEC91E1C406174C2F5E2E_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, int32_t ___capacity0, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
int32_t L_0 = ___capacity0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0012;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)12), (int32_t)4, NULL);
}
IL_0012:
{
int32_t L_1 = ___capacity0;
if (L_1)
{
goto IL_0021;
}
}
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_2 = ((List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_2);
return;
}
IL_0021:
{
int32_t L_3 = ___capacity0;
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_4 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)(SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 3), (uint32_t)L_3);
__this->____items_1 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_4);
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m66A2A0072F5DECDBA0AF640D09BFA4EFA8DFF1E3_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, RuntimeObject* ___collection0, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
int32_t V_1 = 0;
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
RuntimeObject* L_0 = ___collection0;
if (L_0)
{
goto IL_000f;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)6, NULL);
}
IL_000f:
{
RuntimeObject* L_1 = ___collection0;
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 5)));
RuntimeObject* L_2 = V_0;
if (!L_2)
{
goto IL_0050;
}
}
{
RuntimeObject* L_3 = V_0;
NullCheck(L_3);
int32_t L_4;
L_4 = InterfaceFuncInvoker0< int32_t >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
V_1 = L_4;
int32_t L_5 = V_1;
if (L_5)
{
goto IL_002f;
}
}
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_6 = ((List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_6);
return;
}
IL_002f:
{
int32_t L_7 = V_1;
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_8 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)(SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 3), (uint32_t)L_7);
__this->____items_1 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_8);
RuntimeObject* L_9 = V_0;
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_10 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
NullCheck(L_9);
InterfaceActionInvoker2< SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*, int32_t >::Invoke(5, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_9, L_10, 0);
int32_t L_11 = V_1;
__this->____size_2 = L_11;
return;
}
IL_0050:
{
__this->____size_2 = 0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_12 = ((List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_12;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_12);
RuntimeObject* L_13 = ___collection0;
List_1_AddEnumerable_m1FFBCDD1F53FB9E08420B59502ECD26862BD847F(__this, L_13, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_get_Capacity_mBB88819572DE5E6B3C7FCE2CD348B7C2174CBB52_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, const RuntimeMethod* method)
{
{
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_0 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
NullCheck(L_0);
return ((int32_t)(((RuntimeArray*)L_0)->max_length));
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Capacity_m956C519DBD89C600007B02E58D157CEC93164122_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, int32_t ___value0, const RuntimeMethod* method)
{
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* V_0 = NULL;
{
int32_t L_0 = ___value0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((((int32_t)L_0) >= ((int32_t)L_1)))
{
goto IL_0012;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)15), (int32_t)((int32_t)21), NULL);
}
IL_0012:
{
int32_t L_2 = ___value0;
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_3 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
NullCheck(L_3);
if ((((int32_t)L_2) == ((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))
{
goto IL_0058;
}
}
{
int32_t L_4 = ___value0;
if ((((int32_t)L_4) <= ((int32_t)0)))
{
goto IL_004d;
}
}
{
int32_t L_5 = ___value0;
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_6 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)(SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 3), (uint32_t)L_5);
V_0 = L_6;
int32_t L_7 = (int32_t)__this->____size_2;
if ((((int32_t)L_7) <= ((int32_t)0)))
{
goto IL_0045;
}
}
{
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_8 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_9 = V_0;
int32_t L_10 = (int32_t)__this->____size_2;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_8, 0, (RuntimeArray*)L_9, 0, L_10, NULL);
}
IL_0045:
{
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_11 = V_0;
__this->____items_1 = L_11;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_11);
return;
}
IL_004d:
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_12 = ((List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_12;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_12);
}
IL_0058:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m9EDF914E652D5A671B9E6B3C1AF001CBADC12B01_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
return L_0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_System_Collections_IList_get_IsFixedSize_m50935518E8CB590CD61E5BD5368CE54BAF4B0850_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m432080FB3AC026E2997CBDCD061644FF7743D535_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_System_Collections_IList_get_IsReadOnly_mC4DDFC9F5F3BBFCB3F636225991092B84250802C_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_ICollection_get_SyncRoot_m4120781FB0AB5C0DE7B0ACCEBB9B4BF25DAF6AC2_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = (RuntimeObject*)__this->____syncRoot_4;
if (L_0)
{
goto IL_001a;
}
}
{
RuntimeObject** L_1 = (RuntimeObject**)(&__this->____syncRoot_4);
RuntimeObject* L_2 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_2, NULL);
RuntimeObject* L_3;
L_3 = InterlockedCompareExchangeImpl<RuntimeObject*>(L_1, L_2, NULL);
}
IL_001a:
{
RuntimeObject* L_4 = (RuntimeObject*)__this->____syncRoot_4;
return L_4;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 List_1_get_Item_mB6E9A7F89235A4021767ACD0A477D23FF7CC71AE_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowArgumentOutOfRange_IndexException_mC7661B8C6DD827679C95FC6B6C08F8724174936D(NULL);
}
IL_000e:
{
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_2 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
int32_t L_3 = ___index0;
NullCheck(L_2);
int32_t L_4 = L_3;
SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
return L_5;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Item_m86B327CDF56EC996EACF6628DFAD6ED9748B9F99_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, int32_t ___index0, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 ___value1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowArgumentOutOfRange_IndexException_mC7661B8C6DD827679C95FC6B6C08F8724174936D(NULL);
}
IL_000e:
{
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_2 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
int32_t L_3 = ___index0;
SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 L_4 = ___value1;
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640)L_4);
int32_t L_5 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_5, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_IsCompatibleObject_mBBC38F26C6CD0121E7AC55FA7A14328DED51E6A2_gshared (RuntimeObject* ___value0, const RuntimeMethod* method)
{
SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 V_0;
memset((&V_0), 0, sizeof(V_0));
{
RuntimeObject* L_0 = ___value0;
if (((RuntimeObject*)IsInst((RuntimeObject*)L_0, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 9))))
{
goto IL_001f;
}
}
{
RuntimeObject* L_1 = ___value0;
if (L_1)
{
goto IL_001d;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640));
SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 L_2 = V_0;
SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 L_3 = L_2;
RuntimeObject* L_4 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_3);
return (bool)((((RuntimeObject*)(RuntimeObject*)L_4) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
}
IL_001d:
{
return (bool)0;
}
IL_001f:
{
return (bool)1;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_IList_get_Item_m51EF76681FDA26338B9D275CFEBE20BA5938175F_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 L_1;
L_1 = List_1_get_Item_mB6E9A7F89235A4021767ACD0A477D23FF7CC71AE(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 L_2 = L_1;
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 9), &L_2);
return L_3;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_System_Collections_IList_set_Item_m3A6751D8B2E259BAC693CBD0BCAE1F8E3F712B61_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, int32_t ___index0, RuntimeObject* ___value1, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeObject* L_0 = ___value1;
ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisSerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640_m2D7601E9306F0547F18D75C01F5D9E40C03F929C(L_0, (int32_t)((int32_t)15), il2cpp_rgctx_method(method->klass->rgctx_data, 11));
}
try
{
int32_t L_1 = ___index0;
RuntimeObject* L_2 = ___value1;
List_1_set_Item_m86B327CDF56EC996EACF6628DFAD6ED9748B9F99(__this, L_1, ((*(SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640*)((SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640*)(SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 12));
goto IL_002a;
}
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0017;
}
throw e;
}
CATCH_0017:
{
RuntimeObject* L_3 = ___value1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->klass->rgctx_data, 13)) };
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
Type_t* L_5;
L_5 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_4, NULL);
ThrowHelper_ThrowWrongValueTypeArgumentException_mC1A6BBE43C360583C1E2C463D5B0AADF1E3E1910(L_3, L_5, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_002a;
}
IL_002a:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_m1C31C862D450C02A5085E473D157F7AC7B76D046_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 ___item0, const RuntimeMethod* method)
{
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_1 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
V_0 = L_1;
int32_t L_2 = (int32_t)__this->____size_2;
V_1 = L_2;
int32_t L_3 = V_1;
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_4 = V_0;
NullCheck(L_4);
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
{
goto IL_0034;
}
}
{
int32_t L_5 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_6 = V_0;
int32_t L_7 = V_1;
SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 L_8 = ___item0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640)L_8);
return;
}
IL_0034:
{
SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 L_9 = ___item0;
List_1_AddWithResize_mFD764274879592E1088C9DAB36E8B76DB1114FEB(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void List_1_AddWithResize_mFD764274879592E1088C9DAB36E8B76DB1114FEB_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 ___item0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->____size_2;
V_0 = L_0;
int32_t L_1 = V_0;
List_1_EnsureCapacity_mF6A15B6F8CC4F683A4B6D69BB6FBF86118F6D4C2(__this, ((int32_t)il2cpp_codegen_add(L_1, 1)), il2cpp_rgctx_method(method->klass->rgctx_data, 15));
int32_t L_2 = V_0;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_2, 1));
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_3 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
int32_t L_4 = V_0;
SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 L_5 = ___item0;
NullCheck(L_3);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(L_4), (SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640)L_5);
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_System_Collections_IList_Add_m02D45C8A8A0039F32DAD3842308C64A792C795C0_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeObject* L_0 = ___item0;
ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisSerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640_m2D7601E9306F0547F18D75C01F5D9E40C03F929C(L_0, (int32_t)((int32_t)20), il2cpp_rgctx_method(method->klass->rgctx_data, 11));
}
try
{
RuntimeObject* L_1 = ___item0;
List_1_Add_m1C31C862D450C02A5085E473D157F7AC7B76D046_inline(__this, ((*(SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640*)((SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640*)(SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640*)UnBox(L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 16));
goto IL_0029;
}
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0016;
}
throw e;
}
CATCH_0016:
{
RuntimeObject* L_2 = ___item0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_3 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->klass->rgctx_data, 13)) };
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
Type_t* L_4;
L_4 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_3, NULL);
ThrowHelper_ThrowWrongValueTypeArgumentException_mC1A6BBE43C360583C1E2C463D5B0AADF1E3E1910(L_2, L_4, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0029;
}
IL_0029:
{
int32_t L_5;
L_5 = List_1_get_Count_m9EDF914E652D5A671B9E6B3C1AF001CBADC12B01_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
return ((int32_t)il2cpp_codegen_subtract(L_5, 1));
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_AddRange_mF9715F72E277639FBB75A031C66D04E8E9FD6440_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, RuntimeObject* ___collection0, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
RuntimeObject* L_1 = ___collection0;
List_1_InsertRange_m648A0FC682BC48EAF72A3B9DC1544BD10268399E(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 18));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyCollection_1_tF667A9C987D50E93A717AFD8B65AECDAA9D71923* List_1_AsReadOnly_m54E6BE75CD3FFC04655EBB7B0CD67874E0962EF5_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, const RuntimeMethod* method)
{
{
ReadOnlyCollection_1_tF667A9C987D50E93A717AFD8B65AECDAA9D71923* L_0 = (ReadOnlyCollection_1_tF667A9C987D50E93A717AFD8B65AECDAA9D71923*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 19));
ReadOnlyCollection_1__ctor_m1EC8604AB99B1EDF54963DD7A11C3CBA160406D5(L_0, (RuntimeObject*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
return L_0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_mB6CDD1B47C6BC03174D5E527A722E3FFA1DC4B6D_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, int32_t ___index0, int32_t ___count1, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 ___item2, RuntimeObject* ___comparer3, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_5 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
int32_t L_6 = ___index0;
int32_t L_7 = ___count1;
SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 L_8 = ___item2;
RuntimeObject* L_9 = ___comparer3;
int32_t L_10;
L_10 = Array_BinarySearch_TisSerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640_m04D9D84B4CE234B2217FF354205ABF4B21157B02(L_5, L_6, L_7, L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 23));
return L_10;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_m069C8DEABC1B749204B94E5061496303E0F95C01_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 ___item0, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_m9EDF914E652D5A671B9E6B3C1AF001CBADC12B01_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 L_1 = ___item0;
int32_t L_2;
L_2 = List_1_BinarySearch_mB6CDD1B47C6BC03174D5E527A722E3FFA1DC4B6D(__this, 0, L_0, L_1, (RuntimeObject*)NULL, il2cpp_rgctx_method(method->klass->rgctx_data, 24));
return L_2;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_mB020065F379080F088F813BEF1D0197D223FA685_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 ___item0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_m9EDF914E652D5A671B9E6B3C1AF001CBADC12B01_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 L_1 = ___item0;
RuntimeObject* L_2 = ___comparer1;
int32_t L_3;
L_3 = List_1_BinarySearch_mB6CDD1B47C6BC03174D5E527A722E3FFA1DC4B6D(__this, 0, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 24));
return L_3;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Clear_m7175BAEFBD4BBD364C8C5E1DBE73899462C0C185_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
}
{
int32_t L_1 = (int32_t)__this->____size_2;
V_0 = L_1;
__this->____size_2 = 0;
int32_t L_2 = V_0;
if ((((int32_t)L_2) <= ((int32_t)0)))
{
goto IL_003c;
}
}
{
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_3 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
int32_t L_4 = V_0;
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_3, 0, L_4, NULL);
return;
}
IL_003c:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Contains_mF47686AE4ACB8FD938B2B860F7D4F8D46F25CEDB_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 ___item0, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
if (!L_0)
{
goto IL_0016;
}
}
{
SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 L_1 = ___item0;
int32_t L_2;
L_2 = List_1_IndexOf_m2A46931F8A959DE3DE830D36806FF4DBE11FE354(__this, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 26));
return (bool)((((int32_t)((((int32_t)L_2) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_0016:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_System_Collections_IList_Contains_m992E97FE7E98DD043132E0A961A5AFE87AD822D3_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___item0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
bool L_1;
L_1 = List_1_IsCompatibleObject_mBBC38F26C6CD0121E7AC55FA7A14328DED51E6A2(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
if (!L_1)
{
goto IL_0015;
}
}
{
RuntimeObject* L_2 = ___item0;
bool L_3;
L_3 = List_1_Contains_mF47686AE4ACB8FD938B2B860F7D4F8D46F25CEDB(__this, ((*(SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640*)((SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640*)(SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 28));
return L_3;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_CopyTo_mB917EBA1DC473B29881296A7445CF48A61065F78_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* ___array0, const RuntimeMethod* method)
{
{
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_0 = ___array0;
List_1_CopyTo_m2566CA20E4A1F6ADB5AF33D7A89EA03B38E218AB(__this, L_0, 0, il2cpp_rgctx_method(method->klass->rgctx_data, 29));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_System_Collections_ICollection_CopyTo_m01DA60D304512EC029F5E3186AC954366A6C9461_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, RuntimeArray* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeArray* L_0 = ___array0;
if (!L_0)
{
goto IL_0012;
}
}
{
RuntimeArray* L_1 = ___array0;
NullCheck(L_1);
int32_t L_2;
L_2 = Array_get_Rank_m9383A200A2ECC89ECA44FE5F812ECFB874449C5F(L_1, NULL);
if ((((int32_t)L_2) == ((int32_t)1)))
{
goto IL_0012;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)7, NULL);
}
IL_0012:
{
}
try
{
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_3 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
RuntimeArray* L_4 = ___array0;
int32_t L_5 = ___arrayIndex1;
int32_t L_6 = (int32_t)__this->____size_2;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_3, 0, L_4, L_5, L_6, NULL);
goto IL_0031;
}
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArrayTypeMismatchException_t95F1723A5A166E62D3FBEF9734DEFBF61594F8F1_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0029;
}
throw e;
}
CATCH_0029:
{
ThrowHelper_ThrowArgumentException_Argument_InvalidArrayType_m469A6A5731A0F1E94D8B609ED9D001C3A1652A58(NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0031;
}
IL_0031:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_CopyTo_m2566CA20E4A1F6ADB5AF33D7A89EA03B38E218AB_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_0 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
int32_t L_3 = (int32_t)__this->____size_2;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_0, 0, (RuntimeArray*)L_1, L_2, L_3, NULL);
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_EnsureCapacity_mF6A15B6F8CC4F683A4B6D69BB6FBF86118F6D4C2_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, int32_t ___min0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t G_B4_0 = 0;
{
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_0 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
NullCheck(L_0);
int32_t L_1 = ___min0;
if ((((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))) >= ((int32_t)L_1)))
{
goto IL_003d;
}
}
{
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_2 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
NullCheck(L_2);
if (!(((RuntimeArray*)L_2)->max_length))
{
goto IL_0020;
}
}
{
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_3 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
NullCheck(L_3);
G_B4_0 = ((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_3)->max_length)), 2));
goto IL_0021;
}
IL_0020:
{
G_B4_0 = 4;
}
IL_0021:
{
V_0 = G_B4_0;
int32_t L_4 = V_0;
if ((!(((uint32_t)L_4) > ((uint32_t)((int32_t)2146435071)))))
{
goto IL_0030;
}
}
{
V_0 = ((int32_t)2146435071);
}
IL_0030:
{
int32_t L_5 = V_0;
int32_t L_6 = ___min0;
if ((((int32_t)L_5) >= ((int32_t)L_6)))
{
goto IL_0036;
}
}
{
int32_t L_7 = ___min0;
V_0 = L_7;
}
IL_0036:
{
int32_t L_8 = V_0;
List_1_set_Capacity_m956C519DBD89C600007B02E58D157CEC93164122(__this, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 30));
}
IL_003d:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Exists_mB4F9A6594BD784314E095B7CDD242E772916F1FD_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, Predicate_1_t91F6DA80C04BF546E5879B9232C076E32128590F* ___match0, const RuntimeMethod* method)
{
{
Predicate_1_t91F6DA80C04BF546E5879B9232C076E32128590F* L_0 = ___match0;
int32_t L_1;
L_1 = List_1_FindIndex_mDF39EA18BFFD2DDF2D09080C2F09E80E47709CBF(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 32));
return (bool)((((int32_t)((((int32_t)L_1) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 List_1_Find_m285A3000E6E33EE065A123DE148F5D7B9B981DCF_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, Predicate_1_t91F6DA80C04BF546E5879B9232C076E32128590F* ___match0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 V_1;
memset((&V_1), 0, sizeof(V_1));
{
Predicate_1_t91F6DA80C04BF546E5879B9232C076E32128590F* L_0 = ___match0;
if (L_0)
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)8, NULL);
}
IL_0009:
{
V_0 = 0;
goto IL_0032;
}
IL_000d:
{
Predicate_1_t91F6DA80C04BF546E5879B9232C076E32128590F* L_1 = ___match0;
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_2 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
int32_t L_3 = V_0;
NullCheck(L_2);
int32_t L_4 = L_3;
SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
NullCheck(L_1);
bool L_6;
L_6 = Predicate_1_Invoke_m9EA6BB06561BD8025D11A4F544802CD868048653_inline(L_1, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (!L_6)
{
goto IL_002e;
}
}
{
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_7 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
int32_t L_8 = V_0;
NullCheck(L_7);
int32_t L_9 = L_8;
SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
return L_10;
}
IL_002e:
{
int32_t L_11 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_11, 1));
}
IL_0032:
{
int32_t L_12 = V_0;
int32_t L_13 = (int32_t)__this->____size_2;
if ((((int32_t)L_12) < ((int32_t)L_13)))
{
goto IL_000d;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640));
SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 L_14 = V_1;
return L_14;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* List_1_FindAll_m855D724962ADABD4FA23485A06D1EF8A01258800_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, Predicate_1_t91F6DA80C04BF546E5879B9232C076E32128590F* ___match0, const RuntimeMethod* method)
{
List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* V_0 = NULL;
int32_t V_1 = 0;
{
Predicate_1_t91F6DA80C04BF546E5879B9232C076E32128590F* L_0 = ___match0;
if (L_0)
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)8, NULL);
}
IL_0009:
{
List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* L_1 = (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 0));
List_1__ctor_m33B64BB7982C5EC16903EEA39B4BCAF51775FD55(L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
V_0 = L_1;
V_1 = 0;
goto IL_003d;
}
IL_0013:
{
Predicate_1_t91F6DA80C04BF546E5879B9232C076E32128590F* L_2 = ___match0;
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_3 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
int32_t L_4 = V_1;
NullCheck(L_3);
int32_t L_5 = L_4;
SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
NullCheck(L_2);
bool L_7;
L_7 = Predicate_1_Invoke_m9EA6BB06561BD8025D11A4F544802CD868048653_inline(L_2, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (!L_7)
{
goto IL_0039;
}
}
{
List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* L_8 = V_0;
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_9 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
int32_t L_10 = V_1;
NullCheck(L_9);
int32_t L_11 = L_10;
SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
NullCheck(L_8);
List_1_Add_m1C31C862D450C02A5085E473D157F7AC7B76D046_inline(L_8, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
}
IL_0039:
{
int32_t L_13 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_13, 1));
}
IL_003d:
{
int32_t L_14 = V_1;
int32_t L_15 = (int32_t)__this->____size_2;
if ((((int32_t)L_14) < ((int32_t)L_15)))
{
goto IL_0013;
}
}
{
List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* L_16 = V_0;
return L_16;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_mDF39EA18BFFD2DDF2D09080C2F09E80E47709CBF_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, Predicate_1_t91F6DA80C04BF546E5879B9232C076E32128590F* ___match0, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
Predicate_1_t91F6DA80C04BF546E5879B9232C076E32128590F* L_1 = ___match0;
int32_t L_2;
L_2 = List_1_FindIndex_m15EE8D35202F0C0C58F35EA757D4EDF970B5A5AD(__this, 0, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 35));
return L_2;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_m15EE8D35202F0C0C58F35EA757D4EDF970B5A5AD_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, int32_t ___startIndex0, int32_t ___count1, Predicate_1_t91F6DA80C04BF546E5879B9232C076E32128590F* ___match2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
int32_t L_0 = ___startIndex0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) > ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowStartIndexArgumentOutOfRange_ArgumentOutOfRange_Index_m94BADCC6D7EBBD12BE8323775FFB43AF01499B0F(NULL);
}
IL_000e:
{
int32_t L_2 = ___count1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_001d;
}
}
{
int32_t L_3 = ___startIndex0;
int32_t L_4 = (int32_t)__this->____size_2;
int32_t L_5 = ___count1;
if ((((int32_t)L_3) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_4, L_5)))))
{
goto IL_0022;
}
}
IL_001d:
{
ThrowHelper_ThrowCountArgumentOutOfRange_ArgumentOutOfRange_Count_m6C4A7F645BDD8EB62B50CB76E84416D94620DCC7(NULL);
}
IL_0022:
{
Predicate_1_t91F6DA80C04BF546E5879B9232C076E32128590F* L_6 = ___match2;
if (L_6)
{
goto IL_002b;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)8, NULL);
}
IL_002b:
{
int32_t L_7 = ___startIndex0;
int32_t L_8 = ___count1;
V_0 = ((int32_t)il2cpp_codegen_add(L_7, L_8));
int32_t L_9 = ___startIndex0;
V_1 = L_9;
goto IL_004d;
}
IL_0033:
{
Predicate_1_t91F6DA80C04BF546E5879B9232C076E32128590F* L_10 = ___match2;
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_11 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
int32_t L_12 = V_1;
NullCheck(L_11);
int32_t L_13 = L_12;
SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 L_14 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_13));
NullCheck(L_10);
bool L_15;
L_15 = Predicate_1_Invoke_m9EA6BB06561BD8025D11A4F544802CD868048653_inline(L_10, L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (!L_15)
{
goto IL_0049;
}
}
{
int32_t L_16 = V_1;
return L_16;
}
IL_0049:
{
int32_t L_17 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_17, 1));
}
IL_004d:
{
int32_t L_18 = V_1;
int32_t L_19 = V_0;
if ((((int32_t)L_18) < ((int32_t)L_19)))
{
goto IL_0033;
}
}
{
return (-1);
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_ForEach_mA85D856D0F098D64C3F75F08E1D8D738C81DEAB6_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, Action_1_tB0C884D3D3374CFCE94E90AC8FECDC5E3E791203* ___action0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
Action_1_tB0C884D3D3374CFCE94E90AC8FECDC5E3E791203* L_0 = ___action0;
if (L_0)
{
goto IL_000a;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)((int32_t)33), NULL);
}
IL_000a:
{
int32_t L_1 = (int32_t)__this->____version_3;
V_0 = L_1;
V_1 = 0;
goto IL_0034;
}
IL_0015:
{
int32_t L_2 = V_0;
int32_t L_3 = (int32_t)__this->____version_3;
if ((!(((uint32_t)L_2) == ((uint32_t)L_3))))
{
goto IL_003d;
}
}
{
Action_1_tB0C884D3D3374CFCE94E90AC8FECDC5E3E791203* L_4 = ___action0;
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_5 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
int32_t L_6 = V_1;
NullCheck(L_5);
int32_t L_7 = L_6;
SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck(L_4);
Action_1_Invoke_m96CD6B978BAA81562C4223643F24E228A2347BCD_inline(L_4, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 37));
int32_t L_9 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_9, 1));
}
IL_0034:
{
int32_t L_10 = V_1;
int32_t L_11 = (int32_t)__this->____size_2;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0015;
}
}
IL_003d:
{
int32_t L_12 = V_0;
int32_t L_13 = (int32_t)__this->____version_3;
if ((((int32_t)L_12) == ((int32_t)L_13)))
{
goto IL_004b;
}
}
{
ThrowHelper_ThrowInvalidOperationException_InvalidOperation_EnumFailedVersion_m5331E2E0EC0E36843D53F439C2529530595ACE9F(NULL);
}
IL_004b:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t0F91BC558767DA1005DDDD4EC1D68339C54621A5 List_1_GetEnumerator_m95097C203ADB59CB50BCCF622384D228EEF727CA_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, const RuntimeMethod* method)
{
{
Enumerator_t0F91BC558767DA1005DDDD4EC1D68339C54621A5 L_0;
memset((&L_0), 0, sizeof(L_0));
Enumerator__ctor_mAC9A9412B410D3E3F9728ACD4C218FFC3A0FBEFE((&L_0), __this, il2cpp_rgctx_method(method->klass->rgctx_data, 39));
return L_0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m814EE4B149689830CC2D8FF1F57833811BDC1444_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, const RuntimeMethod* method)
{
{
Enumerator_t0F91BC558767DA1005DDDD4EC1D68339C54621A5 L_0;
memset((&L_0), 0, sizeof(L_0));
Enumerator__ctor_mAC9A9412B410D3E3F9728ACD4C218FFC3A0FBEFE((&L_0), __this, il2cpp_rgctx_method(method->klass->rgctx_data, 39));
Enumerator_t0F91BC558767DA1005DDDD4EC1D68339C54621A5 L_1 = L_0;
RuntimeObject* L_2 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 38), &L_1);
return (RuntimeObject*)L_2;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_IEnumerable_GetEnumerator_m39D4988064394A55624D23D7842253F564D95BE2_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, const RuntimeMethod* method)
{
{
Enumerator_t0F91BC558767DA1005DDDD4EC1D68339C54621A5 L_0;
memset((&L_0), 0, sizeof(L_0));
Enumerator__ctor_mAC9A9412B410D3E3F9728ACD4C218FFC3A0FBEFE((&L_0), __this, il2cpp_rgctx_method(method->klass->rgctx_data, 39));
Enumerator_t0F91BC558767DA1005DDDD4EC1D68339C54621A5 L_1 = L_0;
RuntimeObject* L_2 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 38), &L_1);
return (RuntimeObject*)L_2;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* List_1_GetRange_m0240A0817A0CA4ED4D905FE7AB8AC409924AFECB_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method)
{
List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* V_0 = NULL;
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
int32_t L_5 = ___count1;
List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* L_6 = (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 0));
List_1__ctor_mB722EE7250EC243F0C9BEC91E1C406174C2F5E2E(L_6, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 41));
V_0 = L_6;
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_7 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
int32_t L_8 = ___index0;
List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* L_9 = V_0;
NullCheck(L_9);
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_10 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)L_9->____items_1;
int32_t L_11 = ___count1;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_7, L_8, (RuntimeArray*)L_10, 0, L_11, NULL);
List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* L_12 = V_0;
int32_t L_13 = ___count1;
NullCheck(L_12);
L_12->____size_2 = L_13;
List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* L_14 = V_0;
return L_14;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_IndexOf_m2A46931F8A959DE3DE830D36806FF4DBE11FE354_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 ___item0, const RuntimeMethod* method)
{
{
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_0 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 L_1 = ___item0;
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3;
L_3 = Array_IndexOf_TisSerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640_m56D608A24247B8638FA6BC48D19E740CDE53E4B4(L_0, L_1, 0, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 42));
return L_3;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_System_Collections_IList_IndexOf_mC45294AEA6465F3FB739A0CC3FE5ED963C3FEBE6_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___item0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
bool L_1;
L_1 = List_1_IsCompatibleObject_mBBC38F26C6CD0121E7AC55FA7A14328DED51E6A2(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
if (!L_1)
{
goto IL_0015;
}
}
{
RuntimeObject* L_2 = ___item0;
int32_t L_3;
L_3 = List_1_IndexOf_m2A46931F8A959DE3DE830D36806FF4DBE11FE354(__this, ((*(SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640*)((SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640*)(SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 26));
return L_3;
}
IL_0015:
{
return (-1);
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Insert_m3F613D65C0836903F3B22EAF35FE46FB4375B4A5_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, int32_t ___index0, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 ___item1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) > ((uint32_t)L_1))))
{
goto IL_0012;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)13), (int32_t)((int32_t)27), NULL);
}
IL_0012:
{
int32_t L_2 = (int32_t)__this->____size_2;
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_3 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
NullCheck(L_3);
if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)(((RuntimeArray*)L_3)->max_length))))))
{
goto IL_0030;
}
}
{
int32_t L_4 = (int32_t)__this->____size_2;
List_1_EnsureCapacity_mF6A15B6F8CC4F683A4B6D69BB6FBF86118F6D4C2(__this, ((int32_t)il2cpp_codegen_add(L_4, 1)), il2cpp_rgctx_method(method->klass->rgctx_data, 15));
}
IL_0030:
{
int32_t L_5 = ___index0;
int32_t L_6 = (int32_t)__this->____size_2;
if ((((int32_t)L_5) >= ((int32_t)L_6)))
{
goto IL_0056;
}
}
{
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_7 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
int32_t L_8 = ___index0;
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_9 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
int32_t L_10 = ___index0;
int32_t L_11 = (int32_t)__this->____size_2;
int32_t L_12 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_7, L_8, (RuntimeArray*)L_9, ((int32_t)il2cpp_codegen_add(L_10, 1)), ((int32_t)il2cpp_codegen_subtract(L_11, L_12)), NULL);
}
IL_0056:
{
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_13 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
int32_t L_14 = ___index0;
SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 L_15 = ___item1;
NullCheck(L_13);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640)L_15);
int32_t L_16 = (int32_t)__this->____size_2;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_16, 1));
int32_t L_17 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_17, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_System_Collections_IList_Insert_mE533DA4747DA410C4D9DDD43B66B1E2ABDF4FEE7_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, int32_t ___index0, RuntimeObject* ___item1, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeObject* L_0 = ___item1;
ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisSerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640_m2D7601E9306F0547F18D75C01F5D9E40C03F929C(L_0, (int32_t)((int32_t)20), il2cpp_rgctx_method(method->klass->rgctx_data, 11));
}
try
{
int32_t L_1 = ___index0;
RuntimeObject* L_2 = ___item1;
List_1_Insert_m3F613D65C0836903F3B22EAF35FE46FB4375B4A5(__this, L_1, ((*(SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640*)((SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640*)(SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 43));
goto IL_002a;
}
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0017;
}
throw e;
}
CATCH_0017:
{
RuntimeObject* L_3 = ___item1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->klass->rgctx_data, 13)) };
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
Type_t* L_5;
L_5 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_4, NULL);
ThrowHelper_ThrowWrongValueTypeArgumentException_mC1A6BBE43C360583C1E2C463D5B0AADF1E3E1910(L_3, L_5, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_002a;
}
IL_002a:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_InsertRange_m648A0FC682BC48EAF72A3B9DC1544BD10268399E_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, int32_t ___index0, RuntimeObject* ___collection1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
int32_t V_1 = 0;
RuntimeObject* V_2 = NULL;
{
RuntimeObject* L_0 = ___collection1;
if (L_0)
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)6, NULL);
}
IL_0009:
{
int32_t L_1 = ___index0;
int32_t L_2 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_1) > ((uint32_t)L_2))))
{
goto IL_0017;
}
}
{
ThrowHelper_ThrowArgumentOutOfRange_IndexException_mC7661B8C6DD827679C95FC6B6C08F8724174936D(NULL);
}
IL_0017:
{
RuntimeObject* L_3 = ___collection1;
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 5)));
RuntimeObject* L_4 = V_0;
if (!L_4)
{
goto IL_00bc;
}
}
{
RuntimeObject* L_5 = V_0;
NullCheck(L_5);
int32_t L_6;
L_6 = InterfaceFuncInvoker0< int32_t >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_5);
V_1 = L_6;
int32_t L_7 = V_1;
if ((((int32_t)L_7) <= ((int32_t)0)))
{
goto IL_00fb;
}
}
{
int32_t L_8 = (int32_t)__this->____size_2;
int32_t L_9 = V_1;
List_1_EnsureCapacity_mF6A15B6F8CC4F683A4B6D69BB6FBF86118F6D4C2(__this, ((int32_t)il2cpp_codegen_add(L_8, L_9)), il2cpp_rgctx_method(method->klass->rgctx_data, 15));
int32_t L_10 = ___index0;
int32_t L_11 = (int32_t)__this->____size_2;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0066;
}
}
{
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_12 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
int32_t L_13 = ___index0;
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_14 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
int32_t L_15 = ___index0;
int32_t L_16 = V_1;
int32_t L_17 = (int32_t)__this->____size_2;
int32_t L_18 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_12, L_13, (RuntimeArray*)L_14, ((int32_t)il2cpp_codegen_add(L_15, L_16)), ((int32_t)il2cpp_codegen_subtract(L_17, L_18)), NULL);
}
IL_0066:
{
RuntimeObject* L_19 = V_0;
if ((!(((RuntimeObject*)(List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44*)__this) == ((RuntimeObject*)(RuntimeObject*)L_19))))
{
goto IL_009f;
}
}
{
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_20 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_21 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
int32_t L_22 = ___index0;
int32_t L_23 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_20, 0, (RuntimeArray*)L_21, L_22, L_23, NULL);
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_24 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
int32_t L_25 = ___index0;
int32_t L_26 = V_1;
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_27 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
int32_t L_28 = ___index0;
int32_t L_29 = (int32_t)__this->____size_2;
int32_t L_30 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_24, ((int32_t)il2cpp_codegen_add(L_25, L_26)), (RuntimeArray*)L_27, ((int32_t)il2cpp_codegen_multiply(L_28, 2)), ((int32_t)il2cpp_codegen_subtract(L_29, L_30)), NULL);
goto IL_00ac;
}
IL_009f:
{
RuntimeObject* L_31 = V_0;
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_32 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
int32_t L_33 = ___index0;
NullCheck(L_31);
InterfaceActionInvoker2< SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*, int32_t >::Invoke(5, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_31, L_32, L_33);
}
IL_00ac:
{
int32_t L_34 = (int32_t)__this->____size_2;
int32_t L_35 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_34, L_35));
goto IL_00fb;
}
IL_00bc:
{
int32_t L_36 = ___index0;
int32_t L_37 = (int32_t)__this->____size_2;
if ((((int32_t)L_36) >= ((int32_t)L_37)))
{
goto IL_00f4;
}
}
{
RuntimeObject* L_38 = ___collection1;
NullCheck(L_38);
RuntimeObject* L_39;
L_39 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_38);
V_2 = L_39;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00ea:
{
{
RuntimeObject* L_40 = V_2;
if (!L_40)
{
goto IL_00f3;
}
}
{
RuntimeObject* L_41 = V_2;
NullCheck((RuntimeObject*)L_41);
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_41);
}
IL_00f3:
{
return;
}
}
});
try
{
{
goto IL_00e0_1;
}
IL_00ce_1:
{
int32_t L_42 = ___index0;
int32_t L_43 = L_42;
___index0 = ((int32_t)il2cpp_codegen_add(L_43, 1));
RuntimeObject* L_44 = V_2;
NullCheck(L_44);
SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 L_45;
L_45 = InterfaceFuncInvoker0< SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 40), L_44);
List_1_Insert_m3F613D65C0836903F3B22EAF35FE46FB4375B4A5(__this, L_43, L_45, il2cpp_rgctx_method(method->klass->rgctx_data, 43));
}
IL_00e0_1:
{
RuntimeObject* L_46 = V_2;
NullCheck((RuntimeObject*)L_46);
bool L_47;
L_47 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_46);
if (L_47)
{
goto IL_00ce_1;
}
}
{
goto IL_00fb;
}
}
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00f4:
{
RuntimeObject* L_48 = ___collection1;
List_1_AddEnumerable_m1FFBCDD1F53FB9E08420B59502ECD26862BD847F(__this, L_48, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
}
IL_00fb:
{
int32_t L_49 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_49, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Remove_mAFFE727EFE187CC0CA3F8E830F371DCC2828BCD1_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 ___item0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 L_0 = ___item0;
int32_t L_1;
L_1 = List_1_IndexOf_m2A46931F8A959DE3DE830D36806FF4DBE11FE354(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 26));
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0015;
}
}
{
int32_t L_3 = V_0;
List_1_RemoveAt_m3D4A00CF25A102794DB9043B532A6DCB7D7C86BF(__this, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 46));
return (bool)1;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_System_Collections_IList_Remove_m1FEEDCD207C1EC768EBF42A091C0D7A2A849E616_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___item0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
bool L_1;
L_1 = List_1_IsCompatibleObject_mBBC38F26C6CD0121E7AC55FA7A14328DED51E6A2(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
if (!L_1)
{
goto IL_0015;
}
}
{
RuntimeObject* L_2 = ___item0;
bool L_3;
L_3 = List_1_Remove_mAFFE727EFE187CC0CA3F8E830F371DCC2828BCD1(__this, ((*(SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640*)((SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640*)(SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 47));
}
IL_0015:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_RemoveAll_m40EBEC83E064B462950862AE42C2EC45DAB33E3B_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, Predicate_1_t91F6DA80C04BF546E5879B9232C076E32128590F* ___match0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
Predicate_1_t91F6DA80C04BF546E5879B9232C076E32128590F* L_0 = ___match0;
if (L_0)
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)8, NULL);
}
IL_0009:
{
V_0 = 0;
goto IL_0011;
}
IL_000d:
{
int32_t L_1 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_1, 1));
}
IL_0011:
{
int32_t L_2 = V_0;
int32_t L_3 = (int32_t)__this->____size_2;
if ((((int32_t)L_2) >= ((int32_t)L_3)))
{
goto IL_002e;
}
}
{
Predicate_1_t91F6DA80C04BF546E5879B9232C076E32128590F* L_4 = ___match0;
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_5 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
int32_t L_6 = V_0;
NullCheck(L_5);
int32_t L_7 = L_6;
SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck(L_4);
bool L_9;
L_9 = Predicate_1_Invoke_m9EA6BB06561BD8025D11A4F544802CD868048653_inline(L_4, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (!L_9)
{
goto IL_000d;
}
}
IL_002e:
{
int32_t L_10 = V_0;
int32_t L_11 = (int32_t)__this->____size_2;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0039;
}
}
{
return 0;
}
IL_0039:
{
int32_t L_12 = V_0;
V_1 = ((int32_t)il2cpp_codegen_add(L_12, 1));
goto IL_0089;
}
IL_003f:
{
int32_t L_13 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_13, 1));
}
IL_0043:
{
int32_t L_14 = V_1;
int32_t L_15 = (int32_t)__this->____size_2;
if ((((int32_t)L_14) >= ((int32_t)L_15)))
{
goto IL_0060;
}
}
{
Predicate_1_t91F6DA80C04BF546E5879B9232C076E32128590F* L_16 = ___match0;
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_17 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
int32_t L_18 = V_1;
NullCheck(L_17);
int32_t L_19 = L_18;
SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
NullCheck(L_16);
bool L_21;
L_21 = Predicate_1_Invoke_m9EA6BB06561BD8025D11A4F544802CD868048653_inline(L_16, L_20, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (L_21)
{
goto IL_003f;
}
}
IL_0060:
{
int32_t L_22 = V_1;
int32_t L_23 = (int32_t)__this->____size_2;
if ((((int32_t)L_22) >= ((int32_t)L_23)))
{
goto IL_0089;
}
}
{
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_24 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
int32_t L_25 = V_0;
int32_t L_26 = L_25;
V_0 = ((int32_t)il2cpp_codegen_add(L_26, 1));
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_27 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
int32_t L_28 = V_1;
int32_t L_29 = L_28;
V_1 = ((int32_t)il2cpp_codegen_add(L_29, 1));
NullCheck(L_27);
int32_t L_30 = L_29;
SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 L_31 = (L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_30));
NullCheck(L_24);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(L_26), (SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640)L_31);
}
IL_0089:
{
int32_t L_32 = V_1;
int32_t L_33 = (int32_t)__this->____size_2;
if ((((int32_t)L_32) < ((int32_t)L_33)))
{
goto IL_0043;
}
}
{
}
{
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_34 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
int32_t L_35 = V_0;
int32_t L_36 = (int32_t)__this->____size_2;
int32_t L_37 = V_0;
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_34, L_35, ((int32_t)il2cpp_codegen_subtract(L_36, L_37)), NULL);
}
IL_00ad:
{
int32_t L_38 = (int32_t)__this->____size_2;
int32_t L_39 = V_0;
int32_t L_40 = V_0;
__this->____size_2 = L_40;
int32_t L_41 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_41, 1));
return ((int32_t)il2cpp_codegen_subtract(L_38, L_39));
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveAt_m3D4A00CF25A102794DB9043B532A6DCB7D7C86BF_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, int32_t ___index0, const RuntimeMethod* method)
{
SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowArgumentOutOfRange_IndexException_mC7661B8C6DD827679C95FC6B6C08F8724174936D(NULL);
}
IL_000e:
{
int32_t L_2 = (int32_t)__this->____size_2;
__this->____size_2 = ((int32_t)il2cpp_codegen_subtract(L_2, 1));
int32_t L_3 = ___index0;
int32_t L_4 = (int32_t)__this->____size_2;
if ((((int32_t)L_3) >= ((int32_t)L_4)))
{
goto IL_0042;
}
}
{
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_5 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
int32_t L_6 = ___index0;
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_7 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
int32_t L_8 = ___index0;
int32_t L_9 = (int32_t)__this->____size_2;
int32_t L_10 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_5, ((int32_t)il2cpp_codegen_add(L_6, 1)), (RuntimeArray*)L_7, L_8, ((int32_t)il2cpp_codegen_subtract(L_9, L_10)), NULL);
}
IL_0042:
{
}
{
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_11 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
int32_t L_12 = (int32_t)__this->____size_2;
il2cpp_codegen_initobj((&V_0), sizeof(SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640));
SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 L_13 = V_0;
NullCheck(L_11);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(L_12), (SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640)L_13);
}
IL_0063:
{
int32_t L_14 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_14, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveRange_m10E62ED58FAD99C9D9A6FE13A7A72E8A1DA4B151_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
int32_t L_5 = ___count1;
if ((((int32_t)L_5) <= ((int32_t)0)))
{
goto IL_008d;
}
}
{
int32_t L_6 = (int32_t)__this->____size_2;
int32_t L_7 = (int32_t)__this->____size_2;
int32_t L_8 = ___count1;
__this->____size_2 = ((int32_t)il2cpp_codegen_subtract(L_7, L_8));
int32_t L_9 = ___index0;
int32_t L_10 = (int32_t)__this->____size_2;
if ((((int32_t)L_9) >= ((int32_t)L_10)))
{
goto IL_0066;
}
}
{
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_11 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
int32_t L_12 = ___index0;
int32_t L_13 = ___count1;
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_14 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
int32_t L_15 = ___index0;
int32_t L_16 = (int32_t)__this->____size_2;
int32_t L_17 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_11, ((int32_t)il2cpp_codegen_add(L_12, L_13)), (RuntimeArray*)L_14, L_15, ((int32_t)il2cpp_codegen_subtract(L_16, L_17)), NULL);
}
IL_0066:
{
int32_t L_18 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_18, 1));
}
{
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_19 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
int32_t L_20 = (int32_t)__this->____size_2;
int32_t L_21 = ___count1;
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_19, L_20, L_21, NULL);
}
IL_008d:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Reverse_mB1098BAB9D5A1EB48671C16CC482D89CE1EA5C33_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_m9EDF914E652D5A671B9E6B3C1AF001CBADC12B01_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
List_1_Reverse_mD97E2DAF651F931A3BF2DB55C51DD97949779595(__this, 0, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 48));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Reverse_mD97E2DAF651F931A3BF2DB55C51DD97949779595_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
int32_t L_5 = ___count1;
if ((((int32_t)L_5) <= ((int32_t)1)))
{
goto IL_0038;
}
}
{
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_6 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
int32_t L_7 = ___index0;
int32_t L_8 = ___count1;
Array_Reverse_TisSerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640_mDE26757691DDE81D4472FC616765F9A0085CE8F4(L_6, L_7, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 49));
}
IL_0038:
{
int32_t L_9 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_9, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m848E0AEC49061AAC5CC152475CAB968A7A9BEE2E_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_m9EDF914E652D5A671B9E6B3C1AF001CBADC12B01_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
List_1_Sort_mD0DBA3A3C39F27C739CE6DF10A382AA4DCC44E7C(__this, 0, L_0, (RuntimeObject*)NULL, il2cpp_rgctx_method(method->klass->rgctx_data, 50));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m6184E33613B93DEE999B69481767434EFDB9A96D_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_m9EDF914E652D5A671B9E6B3C1AF001CBADC12B01_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
RuntimeObject* L_1 = ___comparer0;
List_1_Sort_mD0DBA3A3C39F27C739CE6DF10A382AA4DCC44E7C(__this, 0, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 50));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_mD0DBA3A3C39F27C739CE6DF10A382AA4DCC44E7C_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, int32_t ___index0, int32_t ___count1, RuntimeObject* ___comparer2, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
int32_t L_5 = ___count1;
if ((((int32_t)L_5) <= ((int32_t)1)))
{
goto IL_0039;
}
}
{
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_6 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
int32_t L_7 = ___index0;
int32_t L_8 = ___count1;
RuntimeObject* L_9 = ___comparer2;
Array_Sort_TisSerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640_m8EE0162994D135F46B7220992820F435B0E8057F(L_6, L_7, L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 51));
}
IL_0039:
{
int32_t L_10 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_10, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_mE08641B2FC72C2880C2E556791205F147D1EEDD3_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, Comparison_1_tD8DB7399F0BC95EA6BBDA5262FC00866CE3A9696* ___comparison0, const RuntimeMethod* method)
{
{
Comparison_1_tD8DB7399F0BC95EA6BBDA5262FC00866CE3A9696* L_0 = ___comparison0;
if (L_0)
{
goto IL_000a;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)((int32_t)34), NULL);
}
IL_000a:
{
int32_t L_1 = (int32_t)__this->____size_2;
if ((((int32_t)L_1) <= ((int32_t)1)))
{
goto IL_0026;
}
}
{
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_2 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
int32_t L_3 = (int32_t)__this->____size_2;
Comparison_1_tD8DB7399F0BC95EA6BBDA5262FC00866CE3A9696* L_4 = ___comparison0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 54));
ArraySortHelper_1_Sort_mE33B9576D4C0DB1B28FF7083D7201DC312247DB8(L_2, 0, L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 53));
}
IL_0026:
{
int32_t L_5 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_5, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* List_1_ToArray_m732221A8B4067B6C6961F1CE88B6B7F8FA1FA9E2_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, const RuntimeMethod* method)
{
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* V_0 = NULL;
{
int32_t L_0 = (int32_t)__this->____size_2;
if (L_0)
{
goto IL_000e;
}
}
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_1 = ((List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
return L_1;
}
IL_000e:
{
int32_t L_2 = (int32_t)__this->____size_2;
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_3 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)(SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 3), (uint32_t)L_2);
V_0 = L_3;
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_4 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_5 = V_0;
int32_t L_6 = (int32_t)__this->____size_2;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_4, 0, (RuntimeArray*)L_5, 0, L_6, NULL);
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_7 = V_0;
return L_7;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_AddEnumerable_m1FFBCDD1F53FB9E08420B59502ECD26862BD847F_gshared (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, RuntimeObject* ___enumerable0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 V_1;
memset((&V_1), 0, sizeof(V_1));
int32_t V_2 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
RuntimeObject* L_1 = ___enumerable0;
NullCheck(L_1);
RuntimeObject* L_2;
L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_1);
V_0 = L_2;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0063:
{
{
RuntimeObject* L_3 = V_0;
if (!L_3)
{
goto IL_006c;
}
}
{
RuntimeObject* L_4 = V_0;
NullCheck((RuntimeObject*)L_4);
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_4);
}
IL_006c:
{
return;
}
}
});
try
{
{
goto IL_0059_1;
}
IL_0017_1:
{
RuntimeObject* L_5 = V_0;
NullCheck(L_5);
SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 L_6;
L_6 = InterfaceFuncInvoker0< SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 40), L_5);
V_1 = L_6;
int32_t L_7 = (int32_t)__this->____size_2;
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_8 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
NullCheck(L_8);
if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)(((RuntimeArray*)L_8)->max_length))))))
{
goto IL_003c_1;
}
}
{
int32_t L_9 = (int32_t)__this->____size_2;
List_1_EnsureCapacity_mF6A15B6F8CC4F683A4B6D69BB6FBF86118F6D4C2(__this, ((int32_t)il2cpp_codegen_add(L_9, 1)), il2cpp_rgctx_method(method->klass->rgctx_data, 15));
}
IL_003c_1:
{
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_10 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
int32_t L_11 = (int32_t)__this->____size_2;
V_2 = L_11;
int32_t L_12 = V_2;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_12, 1));
int32_t L_13 = V_2;
SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 L_14 = V_1;
NullCheck(L_10);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640)L_14);
}
IL_0059_1:
{
RuntimeObject* L_15 = V_0;
NullCheck((RuntimeObject*)L_15);
bool L_16;
L_16 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_15);
if (L_16)
{
goto IL_0017_1;
}
}
{
goto IL_006d;
}
}
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_006d:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__cctor_mDA3EE702A4B706A4C620ADBB587604BA9CF7BC6F_gshared (const RuntimeMethod* method)
{
{
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_0 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)(SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)SZArrayNew(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 3), (uint32_t)0);
((List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___s_emptyArray_5 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___s_emptyArray_5), (void*)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
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m38BCEBB3B7287799DFAEC7FC2A7046A88E178C99_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_0 = ((List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_0);
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m45076B52D78C658B91912503692A546791D64CD0_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, int32_t ___capacity0, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
int32_t L_0 = ___capacity0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0012;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)12), (int32_t)4, NULL);
}
IL_0012:
{
int32_t L_1 = ___capacity0;
if (L_1)
{
goto IL_0021;
}
}
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_2 = ((List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_2);
return;
}
IL_0021:
{
int32_t L_3 = ___capacity0;
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_4 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)(SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 3), (uint32_t)L_3);
__this->____items_1 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_4);
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m95DFD93B80399EF6AB27EA84B6EB19482BD6814F_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, RuntimeObject* ___collection0, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
int32_t V_1 = 0;
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
RuntimeObject* L_0 = ___collection0;
if (L_0)
{
goto IL_000f;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)6, NULL);
}
IL_000f:
{
RuntimeObject* L_1 = ___collection0;
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 5)));
RuntimeObject* L_2 = V_0;
if (!L_2)
{
goto IL_0050;
}
}
{
RuntimeObject* L_3 = V_0;
NullCheck(L_3);
int32_t L_4;
L_4 = InterfaceFuncInvoker0< int32_t >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
V_1 = L_4;
int32_t L_5 = V_1;
if (L_5)
{
goto IL_002f;
}
}
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_6 = ((List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_6);
return;
}
IL_002f:
{
int32_t L_7 = V_1;
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_8 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)(SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 3), (uint32_t)L_7);
__this->____items_1 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_8);
RuntimeObject* L_9 = V_0;
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_10 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
NullCheck(L_9);
InterfaceActionInvoker2< SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*, int32_t >::Invoke(5, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_9, L_10, 0);
int32_t L_11 = V_1;
__this->____size_2 = L_11;
return;
}
IL_0050:
{
__this->____size_2 = 0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_12 = ((List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_12;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_12);
RuntimeObject* L_13 = ___collection0;
List_1_AddEnumerable_m87C48FCA36E0912F8A7AD1E8E4E46DF3E1DFDB76(__this, L_13, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_get_Capacity_m09340BD46AE641518CB4B459A5C857988B71A29B_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, const RuntimeMethod* method)
{
{
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_0 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
NullCheck(L_0);
return ((int32_t)(((RuntimeArray*)L_0)->max_length));
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Capacity_m03D9F7B4486E0C89B6CE34672960A93C0CFE56FC_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, int32_t ___value0, const RuntimeMethod* method)
{
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* V_0 = NULL;
{
int32_t L_0 = ___value0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((((int32_t)L_0) >= ((int32_t)L_1)))
{
goto IL_0012;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)15), (int32_t)((int32_t)21), NULL);
}
IL_0012:
{
int32_t L_2 = ___value0;
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_3 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
NullCheck(L_3);
if ((((int32_t)L_2) == ((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))
{
goto IL_0058;
}
}
{
int32_t L_4 = ___value0;
if ((((int32_t)L_4) <= ((int32_t)0)))
{
goto IL_004d;
}
}
{
int32_t L_5 = ___value0;
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_6 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)(SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 3), (uint32_t)L_5);
V_0 = L_6;
int32_t L_7 = (int32_t)__this->____size_2;
if ((((int32_t)L_7) <= ((int32_t)0)))
{
goto IL_0045;
}
}
{
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_8 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_9 = V_0;
int32_t L_10 = (int32_t)__this->____size_2;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_8, 0, (RuntimeArray*)L_9, 0, L_10, NULL);
}
IL_0045:
{
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_11 = V_0;
__this->____items_1 = L_11;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_11);
return;
}
IL_004d:
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_12 = ((List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_12;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_12);
}
IL_0058:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mD5B39B9B0F072CA06C68377531E0886E3538F716_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
return L_0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_System_Collections_IList_get_IsFixedSize_m5889B1D40E3195D4D673CA68085CA1E696985A3C_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m4197C448E40A44704DAE73D8576AF815F91B00DA_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_System_Collections_IList_get_IsReadOnly_m663B902408FA4FF8A4368D6039B3D3AA1647D896_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_ICollection_get_SyncRoot_mBF2816AEA6C07651D5ED64C1B63AEA28DB1E428B_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = (RuntimeObject*)__this->____syncRoot_4;
if (L_0)
{
goto IL_001a;
}
}
{
RuntimeObject** L_1 = (RuntimeObject**)(&__this->____syncRoot_4);
RuntimeObject* L_2 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_2, NULL);
RuntimeObject* L_3;
L_3 = InterlockedCompareExchangeImpl<RuntimeObject*>(L_1, L_2, NULL);
}
IL_001a:
{
RuntimeObject* L_4 = (RuntimeObject*)__this->____syncRoot_4;
return L_4;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C List_1_get_Item_m2BBE1D9BBDF114B65FBEA541538C9FD703BF822D_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowArgumentOutOfRange_IndexException_mC7661B8C6DD827679C95FC6B6C08F8724174936D(NULL);
}
IL_000e:
{
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_2 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
int32_t L_3 = ___index0;
NullCheck(L_2);
int32_t L_4 = L_3;
SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
return L_5;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Item_m7C72A3A94E1CD66AB3E09FD44EAF980AC2883646_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, int32_t ___index0, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C ___value1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowArgumentOutOfRange_IndexException_mC7661B8C6DD827679C95FC6B6C08F8724174936D(NULL);
}
IL_000e:
{
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_2 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
int32_t L_3 = ___index0;
SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C L_4 = ___value1;
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C)L_4);
int32_t L_5 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_5, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_IsCompatibleObject_m7C1E6F06277E578E9DC09F7BFEF9AA3A63E96132_gshared (RuntimeObject* ___value0, const RuntimeMethod* method)
{
SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C V_0;
memset((&V_0), 0, sizeof(V_0));
{
RuntimeObject* L_0 = ___value0;
if (((RuntimeObject*)IsInst((RuntimeObject*)L_0, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 9))))
{
goto IL_001f;
}
}
{
RuntimeObject* L_1 = ___value0;
if (L_1)
{
goto IL_001d;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C));
SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C L_2 = V_0;
SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C L_3 = L_2;
RuntimeObject* L_4 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_3);
return (bool)((((RuntimeObject*)(RuntimeObject*)L_4) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
}
IL_001d:
{
return (bool)0;
}
IL_001f:
{
return (bool)1;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_IList_get_Item_mC449DDCFE7872464DB7ECD5D4EF0FFC6220392D9_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C L_1;
L_1 = List_1_get_Item_m2BBE1D9BBDF114B65FBEA541538C9FD703BF822D(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C L_2 = L_1;
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 9), &L_2);
return L_3;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_System_Collections_IList_set_Item_mA954ED84C187B38C665FC8AB2EF599D44A88B117_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, int32_t ___index0, RuntimeObject* ___value1, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeObject* L_0 = ___value1;
ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisSerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C_m8DADC2BA85D5549B154DFD9F1650AEF7C74F61C2(L_0, (int32_t)((int32_t)15), il2cpp_rgctx_method(method->klass->rgctx_data, 11));
}
try
{
int32_t L_1 = ___index0;
RuntimeObject* L_2 = ___value1;
List_1_set_Item_m7C72A3A94E1CD66AB3E09FD44EAF980AC2883646(__this, L_1, ((*(SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C*)((SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C*)(SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 12));
goto IL_002a;
}
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0017;
}
throw e;
}
CATCH_0017:
{
RuntimeObject* L_3 = ___value1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->klass->rgctx_data, 13)) };
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
Type_t* L_5;
L_5 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_4, NULL);
ThrowHelper_ThrowWrongValueTypeArgumentException_mC1A6BBE43C360583C1E2C463D5B0AADF1E3E1910(L_3, L_5, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_002a;
}
IL_002a:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_m57A1BE88ECE375428E12EB373147D1FA8751D4FB_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C ___item0, const RuntimeMethod* method)
{
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_1 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
V_0 = L_1;
int32_t L_2 = (int32_t)__this->____size_2;
V_1 = L_2;
int32_t L_3 = V_1;
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_4 = V_0;
NullCheck(L_4);
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
{
goto IL_0034;
}
}
{
int32_t L_5 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_6 = V_0;
int32_t L_7 = V_1;
SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C L_8 = ___item0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C)L_8);
return;
}
IL_0034:
{
SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C L_9 = ___item0;
List_1_AddWithResize_m8B89217448277604B1CE90E00676070757A181B7(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void List_1_AddWithResize_m8B89217448277604B1CE90E00676070757A181B7_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C ___item0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->____size_2;
V_0 = L_0;
int32_t L_1 = V_0;
List_1_EnsureCapacity_mDBC90FF9CA64C67537E8ED8033A579EF34C309C5(__this, ((int32_t)il2cpp_codegen_add(L_1, 1)), il2cpp_rgctx_method(method->klass->rgctx_data, 15));
int32_t L_2 = V_0;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_2, 1));
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_3 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
int32_t L_4 = V_0;
SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C L_5 = ___item0;
NullCheck(L_3);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(L_4), (SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C)L_5);
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_System_Collections_IList_Add_m36751EC45A79CB965A67F877619DC1EFDBF3129E_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeObject* L_0 = ___item0;
ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisSerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C_m8DADC2BA85D5549B154DFD9F1650AEF7C74F61C2(L_0, (int32_t)((int32_t)20), il2cpp_rgctx_method(method->klass->rgctx_data, 11));
}
try
{
RuntimeObject* L_1 = ___item0;
List_1_Add_m57A1BE88ECE375428E12EB373147D1FA8751D4FB_inline(__this, ((*(SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C*)((SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C*)(SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C*)UnBox(L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 16));
goto IL_0029;
}
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0016;
}
throw e;
}
CATCH_0016:
{
RuntimeObject* L_2 = ___item0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_3 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->klass->rgctx_data, 13)) };
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
Type_t* L_4;
L_4 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_3, NULL);
ThrowHelper_ThrowWrongValueTypeArgumentException_mC1A6BBE43C360583C1E2C463D5B0AADF1E3E1910(L_2, L_4, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0029;
}
IL_0029:
{
int32_t L_5;
L_5 = List_1_get_Count_mD5B39B9B0F072CA06C68377531E0886E3538F716_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
return ((int32_t)il2cpp_codegen_subtract(L_5, 1));
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_AddRange_m61CFB185005C73190C7BC970EBF669C598ED23FE_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, RuntimeObject* ___collection0, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
RuntimeObject* L_1 = ___collection0;
List_1_InsertRange_m7BC160CBD52B9F43D973382D90E4AF062D0AA032(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 18));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyCollection_1_t6A9C7D2D97BC027BE87AFB1B8DCD4C3ECD2107D4* List_1_AsReadOnly_m6AAC78D5E4686792E6E60136DEEC3E6ED4295F73_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, const RuntimeMethod* method)
{
{
ReadOnlyCollection_1_t6A9C7D2D97BC027BE87AFB1B8DCD4C3ECD2107D4* L_0 = (ReadOnlyCollection_1_t6A9C7D2D97BC027BE87AFB1B8DCD4C3ECD2107D4*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 19));
ReadOnlyCollection_1__ctor_m9091FD27D6A3BDF27EE576AF2145C906E80830B1(L_0, (RuntimeObject*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
return L_0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_m1B6CC9CC5006DBB00A6862470B58C7C32D03B1E2_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, int32_t ___index0, int32_t ___count1, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C ___item2, RuntimeObject* ___comparer3, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_5 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
int32_t L_6 = ___index0;
int32_t L_7 = ___count1;
SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C L_8 = ___item2;
RuntimeObject* L_9 = ___comparer3;
int32_t L_10;
L_10 = Array_BinarySearch_TisSerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C_m32A94D794F0046AA96DB4F5B299F2D47F7EC5F2D(L_5, L_6, L_7, L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 23));
return L_10;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_m326CD0121A6AFFC26F7215CFEEFB91ADF068ABE6_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C ___item0, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_mD5B39B9B0F072CA06C68377531E0886E3538F716_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C L_1 = ___item0;
int32_t L_2;
L_2 = List_1_BinarySearch_m1B6CC9CC5006DBB00A6862470B58C7C32D03B1E2(__this, 0, L_0, L_1, (RuntimeObject*)NULL, il2cpp_rgctx_method(method->klass->rgctx_data, 24));
return L_2;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_m9AB17AE1F1A7E3D0D7589FA18EF7F1746548F070_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C ___item0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_mD5B39B9B0F072CA06C68377531E0886E3538F716_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C L_1 = ___item0;
RuntimeObject* L_2 = ___comparer1;
int32_t L_3;
L_3 = List_1_BinarySearch_m1B6CC9CC5006DBB00A6862470B58C7C32D03B1E2(__this, 0, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 24));
return L_3;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Clear_mF2867E92AFC63D937A132C5B858973C889A917DF_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
}
{
int32_t L_1 = (int32_t)__this->____size_2;
V_0 = L_1;
__this->____size_2 = 0;
int32_t L_2 = V_0;
if ((((int32_t)L_2) <= ((int32_t)0)))
{
goto IL_003c;
}
}
{
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_3 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
int32_t L_4 = V_0;
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_3, 0, L_4, NULL);
return;
}
IL_003c:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Contains_m2AED8A99D7A91E1A56D9AF7E927E9AF7F6BD598A_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C ___item0, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
if (!L_0)
{
goto IL_0016;
}
}
{
SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C L_1 = ___item0;
int32_t L_2;
L_2 = List_1_IndexOf_mC99AB8A9463EC032657BE69C8525BD1D6B7D0805(__this, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 26));
return (bool)((((int32_t)((((int32_t)L_2) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_0016:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_System_Collections_IList_Contains_mE14AECA5710AC4F66CE39B3267FC4760B057152C_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___item0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
bool L_1;
L_1 = List_1_IsCompatibleObject_m7C1E6F06277E578E9DC09F7BFEF9AA3A63E96132(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
if (!L_1)
{
goto IL_0015;
}
}
{
RuntimeObject* L_2 = ___item0;
bool L_3;
L_3 = List_1_Contains_m2AED8A99D7A91E1A56D9AF7E927E9AF7F6BD598A(__this, ((*(SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C*)((SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C*)(SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 28));
return L_3;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_CopyTo_mBAAEC6BA9821C2573ED802F6613AB0F69F16A462_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* ___array0, const RuntimeMethod* method)
{
{
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_0 = ___array0;
List_1_CopyTo_mBFDCD07EF497384244674DF2C3404E862A4BEFE8(__this, L_0, 0, il2cpp_rgctx_method(method->klass->rgctx_data, 29));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_System_Collections_ICollection_CopyTo_m0323E80EC96EC2433C8D9E22C6F6D6DBB5CCAEA7_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, RuntimeArray* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeArray* L_0 = ___array0;
if (!L_0)
{
goto IL_0012;
}
}
{
RuntimeArray* L_1 = ___array0;
NullCheck(L_1);
int32_t L_2;
L_2 = Array_get_Rank_m9383A200A2ECC89ECA44FE5F812ECFB874449C5F(L_1, NULL);
if ((((int32_t)L_2) == ((int32_t)1)))
{
goto IL_0012;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)7, NULL);
}
IL_0012:
{
}
try
{
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_3 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
RuntimeArray* L_4 = ___array0;
int32_t L_5 = ___arrayIndex1;
int32_t L_6 = (int32_t)__this->____size_2;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_3, 0, L_4, L_5, L_6, NULL);
goto IL_0031;
}
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArrayTypeMismatchException_t95F1723A5A166E62D3FBEF9734DEFBF61594F8F1_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0029;
}
throw e;
}
CATCH_0029:
{
ThrowHelper_ThrowArgumentException_Argument_InvalidArrayType_m469A6A5731A0F1E94D8B609ED9D001C3A1652A58(NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0031;
}
IL_0031:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_CopyTo_mBFDCD07EF497384244674DF2C3404E862A4BEFE8_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_0 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
int32_t L_3 = (int32_t)__this->____size_2;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_0, 0, (RuntimeArray*)L_1, L_2, L_3, NULL);
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_EnsureCapacity_mDBC90FF9CA64C67537E8ED8033A579EF34C309C5_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, int32_t ___min0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t G_B4_0 = 0;
{
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_0 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
NullCheck(L_0);
int32_t L_1 = ___min0;
if ((((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))) >= ((int32_t)L_1)))
{
goto IL_003d;
}
}
{
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_2 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
NullCheck(L_2);
if (!(((RuntimeArray*)L_2)->max_length))
{
goto IL_0020;
}
}
{
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_3 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
NullCheck(L_3);
G_B4_0 = ((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_3)->max_length)), 2));
goto IL_0021;
}
IL_0020:
{
G_B4_0 = 4;
}
IL_0021:
{
V_0 = G_B4_0;
int32_t L_4 = V_0;
if ((!(((uint32_t)L_4) > ((uint32_t)((int32_t)2146435071)))))
{
goto IL_0030;
}
}
{
V_0 = ((int32_t)2146435071);
}
IL_0030:
{
int32_t L_5 = V_0;
int32_t L_6 = ___min0;
if ((((int32_t)L_5) >= ((int32_t)L_6)))
{
goto IL_0036;
}
}
{
int32_t L_7 = ___min0;
V_0 = L_7;
}
IL_0036:
{
int32_t L_8 = V_0;
List_1_set_Capacity_m03D9F7B4486E0C89B6CE34672960A93C0CFE56FC(__this, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 30));
}
IL_003d:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Exists_m1E66A3F4CB48D86A55A55114AD8EEA3E07763CE9_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, Predicate_1_t9B2D6474D0B9770CC8D95DD34EA4AD9556D351A6* ___match0, const RuntimeMethod* method)
{
{
Predicate_1_t9B2D6474D0B9770CC8D95DD34EA4AD9556D351A6* L_0 = ___match0;
int32_t L_1;
L_1 = List_1_FindIndex_m3BAB8AD448E3D95B7D04511DC8344EF400A34B69(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 32));
return (bool)((((int32_t)((((int32_t)L_1) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C List_1_Find_m05321376D3F31075883370C46D8213075D41ACC9_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, Predicate_1_t9B2D6474D0B9770CC8D95DD34EA4AD9556D351A6* ___match0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C V_1;
memset((&V_1), 0, sizeof(V_1));
{
Predicate_1_t9B2D6474D0B9770CC8D95DD34EA4AD9556D351A6* L_0 = ___match0;
if (L_0)
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)8, NULL);
}
IL_0009:
{
V_0 = 0;
goto IL_0032;
}
IL_000d:
{
Predicate_1_t9B2D6474D0B9770CC8D95DD34EA4AD9556D351A6* L_1 = ___match0;
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_2 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
int32_t L_3 = V_0;
NullCheck(L_2);
int32_t L_4 = L_3;
SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
NullCheck(L_1);
bool L_6;
L_6 = Predicate_1_Invoke_mCF9BF523FD024AF55E93F13ED6D2E00AEB0A484F_inline(L_1, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (!L_6)
{
goto IL_002e;
}
}
{
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_7 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
int32_t L_8 = V_0;
NullCheck(L_7);
int32_t L_9 = L_8;
SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
return L_10;
}
IL_002e:
{
int32_t L_11 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_11, 1));
}
IL_0032:
{
int32_t L_12 = V_0;
int32_t L_13 = (int32_t)__this->____size_2;
if ((((int32_t)L_12) < ((int32_t)L_13)))
{
goto IL_000d;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C));
SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C L_14 = V_1;
return L_14;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* List_1_FindAll_m2D42F2BF99791BEA14945791F6600FAC41E6A80F_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, Predicate_1_t9B2D6474D0B9770CC8D95DD34EA4AD9556D351A6* ___match0, const RuntimeMethod* method)
{
List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* V_0 = NULL;
int32_t V_1 = 0;
{
Predicate_1_t9B2D6474D0B9770CC8D95DD34EA4AD9556D351A6* L_0 = ___match0;
if (L_0)
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)8, NULL);
}
IL_0009:
{
List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* L_1 = (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 0));
List_1__ctor_m38BCEBB3B7287799DFAEC7FC2A7046A88E178C99(L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
V_0 = L_1;
V_1 = 0;
goto IL_003d;
}
IL_0013:
{
Predicate_1_t9B2D6474D0B9770CC8D95DD34EA4AD9556D351A6* L_2 = ___match0;
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_3 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
int32_t L_4 = V_1;
NullCheck(L_3);
int32_t L_5 = L_4;
SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
NullCheck(L_2);
bool L_7;
L_7 = Predicate_1_Invoke_mCF9BF523FD024AF55E93F13ED6D2E00AEB0A484F_inline(L_2, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (!L_7)
{
goto IL_0039;
}
}
{
List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* L_8 = V_0;
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_9 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
int32_t L_10 = V_1;
NullCheck(L_9);
int32_t L_11 = L_10;
SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
NullCheck(L_8);
List_1_Add_m57A1BE88ECE375428E12EB373147D1FA8751D4FB_inline(L_8, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
}
IL_0039:
{
int32_t L_13 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_13, 1));
}
IL_003d:
{
int32_t L_14 = V_1;
int32_t L_15 = (int32_t)__this->____size_2;
if ((((int32_t)L_14) < ((int32_t)L_15)))
{
goto IL_0013;
}
}
{
List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* L_16 = V_0;
return L_16;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_m3BAB8AD448E3D95B7D04511DC8344EF400A34B69_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, Predicate_1_t9B2D6474D0B9770CC8D95DD34EA4AD9556D351A6* ___match0, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
Predicate_1_t9B2D6474D0B9770CC8D95DD34EA4AD9556D351A6* L_1 = ___match0;
int32_t L_2;
L_2 = List_1_FindIndex_m15B238C9CBD0C974E244CFAC7E27A4B50C9A3AC3(__this, 0, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 35));
return L_2;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_m15B238C9CBD0C974E244CFAC7E27A4B50C9A3AC3_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, int32_t ___startIndex0, int32_t ___count1, Predicate_1_t9B2D6474D0B9770CC8D95DD34EA4AD9556D351A6* ___match2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
int32_t L_0 = ___startIndex0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) > ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowStartIndexArgumentOutOfRange_ArgumentOutOfRange_Index_m94BADCC6D7EBBD12BE8323775FFB43AF01499B0F(NULL);
}
IL_000e:
{
int32_t L_2 = ___count1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_001d;
}
}
{
int32_t L_3 = ___startIndex0;
int32_t L_4 = (int32_t)__this->____size_2;
int32_t L_5 = ___count1;
if ((((int32_t)L_3) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_4, L_5)))))
{
goto IL_0022;
}
}
IL_001d:
{
ThrowHelper_ThrowCountArgumentOutOfRange_ArgumentOutOfRange_Count_m6C4A7F645BDD8EB62B50CB76E84416D94620DCC7(NULL);
}
IL_0022:
{
Predicate_1_t9B2D6474D0B9770CC8D95DD34EA4AD9556D351A6* L_6 = ___match2;
if (L_6)
{
goto IL_002b;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)8, NULL);
}
IL_002b:
{
int32_t L_7 = ___startIndex0;
int32_t L_8 = ___count1;
V_0 = ((int32_t)il2cpp_codegen_add(L_7, L_8));
int32_t L_9 = ___startIndex0;
V_1 = L_9;
goto IL_004d;
}
IL_0033:
{
Predicate_1_t9B2D6474D0B9770CC8D95DD34EA4AD9556D351A6* L_10 = ___match2;
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_11 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
int32_t L_12 = V_1;
NullCheck(L_11);
int32_t L_13 = L_12;
SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C L_14 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_13));
NullCheck(L_10);
bool L_15;
L_15 = Predicate_1_Invoke_mCF9BF523FD024AF55E93F13ED6D2E00AEB0A484F_inline(L_10, L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (!L_15)
{
goto IL_0049;
}
}
{
int32_t L_16 = V_1;
return L_16;
}
IL_0049:
{
int32_t L_17 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_17, 1));
}
IL_004d:
{
int32_t L_18 = V_1;
int32_t L_19 = V_0;
if ((((int32_t)L_18) < ((int32_t)L_19)))
{
goto IL_0033;
}
}
{
return (-1);
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_ForEach_mF56C5F3CD2080CDACA64F48CE28BA503919FA3EB_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, Action_1_t92F25D2BF6C8C5C1D69E8CF2473ABBCC3136018F* ___action0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
Action_1_t92F25D2BF6C8C5C1D69E8CF2473ABBCC3136018F* L_0 = ___action0;
if (L_0)
{
goto IL_000a;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)((int32_t)33), NULL);
}
IL_000a:
{
int32_t L_1 = (int32_t)__this->____version_3;
V_0 = L_1;
V_1 = 0;
goto IL_0034;
}
IL_0015:
{
int32_t L_2 = V_0;
int32_t L_3 = (int32_t)__this->____version_3;
if ((!(((uint32_t)L_2) == ((uint32_t)L_3))))
{
goto IL_003d;
}
}
{
Action_1_t92F25D2BF6C8C5C1D69E8CF2473ABBCC3136018F* L_4 = ___action0;
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_5 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
int32_t L_6 = V_1;
NullCheck(L_5);
int32_t L_7 = L_6;
SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck(L_4);
Action_1_Invoke_mA8F1A4AF0D247CFBFFA0A11F02BE172A36AB1197_inline(L_4, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 37));
int32_t L_9 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_9, 1));
}
IL_0034:
{
int32_t L_10 = V_1;
int32_t L_11 = (int32_t)__this->____size_2;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0015;
}
}
IL_003d:
{
int32_t L_12 = V_0;
int32_t L_13 = (int32_t)__this->____version_3;
if ((((int32_t)L_12) == ((int32_t)L_13)))
{
goto IL_004b;
}
}
{
ThrowHelper_ThrowInvalidOperationException_InvalidOperation_EnumFailedVersion_m5331E2E0EC0E36843D53F439C2529530595ACE9F(NULL);
}
IL_004b:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t8F9474ED732BF151860990861186CAEA4E833694 List_1_GetEnumerator_m9FFEF524CB9E0644319AE9CA3D53518C5399C6C3_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, const RuntimeMethod* method)
{
{
Enumerator_t8F9474ED732BF151860990861186CAEA4E833694 L_0;
memset((&L_0), 0, sizeof(L_0));
Enumerator__ctor_mA14143588C2ED97B53B74AFF2E0A75CC2A7FFB7A((&L_0), __this, il2cpp_rgctx_method(method->klass->rgctx_data, 39));
return L_0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m9EF4585707620E8A3F28BD46DBC9CAFF04DC9C28_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, const RuntimeMethod* method)
{
{
Enumerator_t8F9474ED732BF151860990861186CAEA4E833694 L_0;
memset((&L_0), 0, sizeof(L_0));
Enumerator__ctor_mA14143588C2ED97B53B74AFF2E0A75CC2A7FFB7A((&L_0), __this, il2cpp_rgctx_method(method->klass->rgctx_data, 39));
Enumerator_t8F9474ED732BF151860990861186CAEA4E833694 L_1 = L_0;
RuntimeObject* L_2 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 38), &L_1);
return (RuntimeObject*)L_2;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_IEnumerable_GetEnumerator_mC04666C92555ECAC9AB46D6803A5CDC9F4FF964C_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, const RuntimeMethod* method)
{
{
Enumerator_t8F9474ED732BF151860990861186CAEA4E833694 L_0;
memset((&L_0), 0, sizeof(L_0));
Enumerator__ctor_mA14143588C2ED97B53B74AFF2E0A75CC2A7FFB7A((&L_0), __this, il2cpp_rgctx_method(method->klass->rgctx_data, 39));
Enumerator_t8F9474ED732BF151860990861186CAEA4E833694 L_1 = L_0;
RuntimeObject* L_2 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 38), &L_1);
return (RuntimeObject*)L_2;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* List_1_GetRange_mFE761C16DC827A4A609AC387A1ACC06F20D0A79B_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method)
{
List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* V_0 = NULL;
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
int32_t L_5 = ___count1;
List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* L_6 = (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 0));
List_1__ctor_m45076B52D78C658B91912503692A546791D64CD0(L_6, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 41));
V_0 = L_6;
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_7 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
int32_t L_8 = ___index0;
List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* L_9 = V_0;
NullCheck(L_9);
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_10 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)L_9->____items_1;
int32_t L_11 = ___count1;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_7, L_8, (RuntimeArray*)L_10, 0, L_11, NULL);
List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* L_12 = V_0;
int32_t L_13 = ___count1;
NullCheck(L_12);
L_12->____size_2 = L_13;
List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* L_14 = V_0;
return L_14;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_IndexOf_mC99AB8A9463EC032657BE69C8525BD1D6B7D0805_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C ___item0, const RuntimeMethod* method)
{
{
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_0 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C L_1 = ___item0;
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3;
L_3 = Array_IndexOf_TisSerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C_mA66676495A12753F739106C34E5FB7F4FAB1518D(L_0, L_1, 0, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 42));
return L_3;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_System_Collections_IList_IndexOf_mB489B3869DD60E71652C0BE9C3EBF69A2E539617_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___item0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
bool L_1;
L_1 = List_1_IsCompatibleObject_m7C1E6F06277E578E9DC09F7BFEF9AA3A63E96132(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
if (!L_1)
{
goto IL_0015;
}
}
{
RuntimeObject* L_2 = ___item0;
int32_t L_3;
L_3 = List_1_IndexOf_mC99AB8A9463EC032657BE69C8525BD1D6B7D0805(__this, ((*(SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C*)((SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C*)(SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 26));
return L_3;
}
IL_0015:
{
return (-1);
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Insert_mE53C039B315575F93E887B6FB5F124625E25C2AE_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, int32_t ___index0, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C ___item1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) > ((uint32_t)L_1))))
{
goto IL_0012;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)13), (int32_t)((int32_t)27), NULL);
}
IL_0012:
{
int32_t L_2 = (int32_t)__this->____size_2;
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_3 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
NullCheck(L_3);
if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)(((RuntimeArray*)L_3)->max_length))))))
{
goto IL_0030;
}
}
{
int32_t L_4 = (int32_t)__this->____size_2;
List_1_EnsureCapacity_mDBC90FF9CA64C67537E8ED8033A579EF34C309C5(__this, ((int32_t)il2cpp_codegen_add(L_4, 1)), il2cpp_rgctx_method(method->klass->rgctx_data, 15));
}
IL_0030:
{
int32_t L_5 = ___index0;
int32_t L_6 = (int32_t)__this->____size_2;
if ((((int32_t)L_5) >= ((int32_t)L_6)))
{
goto IL_0056;
}
}
{
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_7 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
int32_t L_8 = ___index0;
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_9 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
int32_t L_10 = ___index0;
int32_t L_11 = (int32_t)__this->____size_2;
int32_t L_12 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_7, L_8, (RuntimeArray*)L_9, ((int32_t)il2cpp_codegen_add(L_10, 1)), ((int32_t)il2cpp_codegen_subtract(L_11, L_12)), NULL);
}
IL_0056:
{
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_13 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
int32_t L_14 = ___index0;
SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C L_15 = ___item1;
NullCheck(L_13);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C)L_15);
int32_t L_16 = (int32_t)__this->____size_2;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_16, 1));
int32_t L_17 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_17, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_System_Collections_IList_Insert_mBA4C9242A235B41CDC6C2654E4A2B121BD797890_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, int32_t ___index0, RuntimeObject* ___item1, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeObject* L_0 = ___item1;
ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisSerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C_m8DADC2BA85D5549B154DFD9F1650AEF7C74F61C2(L_0, (int32_t)((int32_t)20), il2cpp_rgctx_method(method->klass->rgctx_data, 11));
}
try
{
int32_t L_1 = ___index0;
RuntimeObject* L_2 = ___item1;
List_1_Insert_mE53C039B315575F93E887B6FB5F124625E25C2AE(__this, L_1, ((*(SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C*)((SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C*)(SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 43));
goto IL_002a;
}
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0017;
}
throw e;
}
CATCH_0017:
{
RuntimeObject* L_3 = ___item1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->klass->rgctx_data, 13)) };
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
Type_t* L_5;
L_5 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_4, NULL);
ThrowHelper_ThrowWrongValueTypeArgumentException_mC1A6BBE43C360583C1E2C463D5B0AADF1E3E1910(L_3, L_5, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_002a;
}
IL_002a:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_InsertRange_m7BC160CBD52B9F43D973382D90E4AF062D0AA032_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, int32_t ___index0, RuntimeObject* ___collection1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
int32_t V_1 = 0;
RuntimeObject* V_2 = NULL;
{
RuntimeObject* L_0 = ___collection1;
if (L_0)
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)6, NULL);
}
IL_0009:
{
int32_t L_1 = ___index0;
int32_t L_2 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_1) > ((uint32_t)L_2))))
{
goto IL_0017;
}
}
{
ThrowHelper_ThrowArgumentOutOfRange_IndexException_mC7661B8C6DD827679C95FC6B6C08F8724174936D(NULL);
}
IL_0017:
{
RuntimeObject* L_3 = ___collection1;
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 5)));
RuntimeObject* L_4 = V_0;
if (!L_4)
{
goto IL_00bc;
}
}
{
RuntimeObject* L_5 = V_0;
NullCheck(L_5);
int32_t L_6;
L_6 = InterfaceFuncInvoker0< int32_t >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_5);
V_1 = L_6;
int32_t L_7 = V_1;
if ((((int32_t)L_7) <= ((int32_t)0)))
{
goto IL_00fb;
}
}
{
int32_t L_8 = (int32_t)__this->____size_2;
int32_t L_9 = V_1;
List_1_EnsureCapacity_mDBC90FF9CA64C67537E8ED8033A579EF34C309C5(__this, ((int32_t)il2cpp_codegen_add(L_8, L_9)), il2cpp_rgctx_method(method->klass->rgctx_data, 15));
int32_t L_10 = ___index0;
int32_t L_11 = (int32_t)__this->____size_2;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0066;
}
}
{
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_12 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
int32_t L_13 = ___index0;
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_14 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
int32_t L_15 = ___index0;
int32_t L_16 = V_1;
int32_t L_17 = (int32_t)__this->____size_2;
int32_t L_18 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_12, L_13, (RuntimeArray*)L_14, ((int32_t)il2cpp_codegen_add(L_15, L_16)), ((int32_t)il2cpp_codegen_subtract(L_17, L_18)), NULL);
}
IL_0066:
{
RuntimeObject* L_19 = V_0;
if ((!(((RuntimeObject*)(List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815*)__this) == ((RuntimeObject*)(RuntimeObject*)L_19))))
{
goto IL_009f;
}
}
{
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_20 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_21 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
int32_t L_22 = ___index0;
int32_t L_23 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_20, 0, (RuntimeArray*)L_21, L_22, L_23, NULL);
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_24 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
int32_t L_25 = ___index0;
int32_t L_26 = V_1;
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_27 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
int32_t L_28 = ___index0;
int32_t L_29 = (int32_t)__this->____size_2;
int32_t L_30 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_24, ((int32_t)il2cpp_codegen_add(L_25, L_26)), (RuntimeArray*)L_27, ((int32_t)il2cpp_codegen_multiply(L_28, 2)), ((int32_t)il2cpp_codegen_subtract(L_29, L_30)), NULL);
goto IL_00ac;
}
IL_009f:
{
RuntimeObject* L_31 = V_0;
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_32 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
int32_t L_33 = ___index0;
NullCheck(L_31);
InterfaceActionInvoker2< SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*, int32_t >::Invoke(5, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_31, L_32, L_33);
}
IL_00ac:
{
int32_t L_34 = (int32_t)__this->____size_2;
int32_t L_35 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_34, L_35));
goto IL_00fb;
}
IL_00bc:
{
int32_t L_36 = ___index0;
int32_t L_37 = (int32_t)__this->____size_2;
if ((((int32_t)L_36) >= ((int32_t)L_37)))
{
goto IL_00f4;
}
}
{
RuntimeObject* L_38 = ___collection1;
NullCheck(L_38);
RuntimeObject* L_39;
L_39 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_38);
V_2 = L_39;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00ea:
{
{
RuntimeObject* L_40 = V_2;
if (!L_40)
{
goto IL_00f3;
}
}
{
RuntimeObject* L_41 = V_2;
NullCheck((RuntimeObject*)L_41);
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_41);
}
IL_00f3:
{
return;
}
}
});
try
{
{
goto IL_00e0_1;
}
IL_00ce_1:
{
int32_t L_42 = ___index0;
int32_t L_43 = L_42;
___index0 = ((int32_t)il2cpp_codegen_add(L_43, 1));
RuntimeObject* L_44 = V_2;
NullCheck(L_44);
SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C L_45;
L_45 = InterfaceFuncInvoker0< SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 40), L_44);
List_1_Insert_mE53C039B315575F93E887B6FB5F124625E25C2AE(__this, L_43, L_45, il2cpp_rgctx_method(method->klass->rgctx_data, 43));
}
IL_00e0_1:
{
RuntimeObject* L_46 = V_2;
NullCheck((RuntimeObject*)L_46);
bool L_47;
L_47 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_46);
if (L_47)
{
goto IL_00ce_1;
}
}
{
goto IL_00fb;
}
}
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00f4:
{
RuntimeObject* L_48 = ___collection1;
List_1_AddEnumerable_m87C48FCA36E0912F8A7AD1E8E4E46DF3E1DFDB76(__this, L_48, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
}
IL_00fb:
{
int32_t L_49 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_49, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Remove_m8721CE2ECC3CBA4E94BC59B4584BB6A845A7BEED_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C ___item0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C L_0 = ___item0;
int32_t L_1;
L_1 = List_1_IndexOf_mC99AB8A9463EC032657BE69C8525BD1D6B7D0805(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 26));
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0015;
}
}
{
int32_t L_3 = V_0;
List_1_RemoveAt_mC883F2A82A5DB486D7EBC252F328438DE588AA08(__this, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 46));
return (bool)1;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_System_Collections_IList_Remove_mF550CBD9CD1A261CA9F358D662CB9AC51CC06919_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___item0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
bool L_1;
L_1 = List_1_IsCompatibleObject_m7C1E6F06277E578E9DC09F7BFEF9AA3A63E96132(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
if (!L_1)
{
goto IL_0015;
}
}
{
RuntimeObject* L_2 = ___item0;
bool L_3;
L_3 = List_1_Remove_m8721CE2ECC3CBA4E94BC59B4584BB6A845A7BEED(__this, ((*(SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C*)((SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C*)(SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 47));
}
IL_0015:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_RemoveAll_mA564A02EE1587E69155F891262656CF9D01AF154_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, Predicate_1_t9B2D6474D0B9770CC8D95DD34EA4AD9556D351A6* ___match0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
Predicate_1_t9B2D6474D0B9770CC8D95DD34EA4AD9556D351A6* L_0 = ___match0;
if (L_0)
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)8, NULL);
}
IL_0009:
{
V_0 = 0;
goto IL_0011;
}
IL_000d:
{
int32_t L_1 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_1, 1));
}
IL_0011:
{
int32_t L_2 = V_0;
int32_t L_3 = (int32_t)__this->____size_2;
if ((((int32_t)L_2) >= ((int32_t)L_3)))
{
goto IL_002e;
}
}
{
Predicate_1_t9B2D6474D0B9770CC8D95DD34EA4AD9556D351A6* L_4 = ___match0;
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_5 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
int32_t L_6 = V_0;
NullCheck(L_5);
int32_t L_7 = L_6;
SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck(L_4);
bool L_9;
L_9 = Predicate_1_Invoke_mCF9BF523FD024AF55E93F13ED6D2E00AEB0A484F_inline(L_4, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (!L_9)
{
goto IL_000d;
}
}
IL_002e:
{
int32_t L_10 = V_0;
int32_t L_11 = (int32_t)__this->____size_2;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0039;
}
}
{
return 0;
}
IL_0039:
{
int32_t L_12 = V_0;
V_1 = ((int32_t)il2cpp_codegen_add(L_12, 1));
goto IL_0089;
}
IL_003f:
{
int32_t L_13 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_13, 1));
}
IL_0043:
{
int32_t L_14 = V_1;
int32_t L_15 = (int32_t)__this->____size_2;
if ((((int32_t)L_14) >= ((int32_t)L_15)))
{
goto IL_0060;
}
}
{
Predicate_1_t9B2D6474D0B9770CC8D95DD34EA4AD9556D351A6* L_16 = ___match0;
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_17 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
int32_t L_18 = V_1;
NullCheck(L_17);
int32_t L_19 = L_18;
SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
NullCheck(L_16);
bool L_21;
L_21 = Predicate_1_Invoke_mCF9BF523FD024AF55E93F13ED6D2E00AEB0A484F_inline(L_16, L_20, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (L_21)
{
goto IL_003f;
}
}
IL_0060:
{
int32_t L_22 = V_1;
int32_t L_23 = (int32_t)__this->____size_2;
if ((((int32_t)L_22) >= ((int32_t)L_23)))
{
goto IL_0089;
}
}
{
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_24 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
int32_t L_25 = V_0;
int32_t L_26 = L_25;
V_0 = ((int32_t)il2cpp_codegen_add(L_26, 1));
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_27 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
int32_t L_28 = V_1;
int32_t L_29 = L_28;
V_1 = ((int32_t)il2cpp_codegen_add(L_29, 1));
NullCheck(L_27);
int32_t L_30 = L_29;
SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C L_31 = (L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_30));
NullCheck(L_24);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(L_26), (SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C)L_31);
}
IL_0089:
{
int32_t L_32 = V_1;
int32_t L_33 = (int32_t)__this->____size_2;
if ((((int32_t)L_32) < ((int32_t)L_33)))
{
goto IL_0043;
}
}
{
}
{
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_34 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
int32_t L_35 = V_0;
int32_t L_36 = (int32_t)__this->____size_2;
int32_t L_37 = V_0;
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_34, L_35, ((int32_t)il2cpp_codegen_subtract(L_36, L_37)), NULL);
}
IL_00ad:
{
int32_t L_38 = (int32_t)__this->____size_2;
int32_t L_39 = V_0;
int32_t L_40 = V_0;
__this->____size_2 = L_40;
int32_t L_41 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_41, 1));
return ((int32_t)il2cpp_codegen_subtract(L_38, L_39));
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveAt_mC883F2A82A5DB486D7EBC252F328438DE588AA08_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, int32_t ___index0, const RuntimeMethod* method)
{
SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowArgumentOutOfRange_IndexException_mC7661B8C6DD827679C95FC6B6C08F8724174936D(NULL);
}
IL_000e:
{
int32_t L_2 = (int32_t)__this->____size_2;
__this->____size_2 = ((int32_t)il2cpp_codegen_subtract(L_2, 1));
int32_t L_3 = ___index0;
int32_t L_4 = (int32_t)__this->____size_2;
if ((((int32_t)L_3) >= ((int32_t)L_4)))
{
goto IL_0042;
}
}
{
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_5 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
int32_t L_6 = ___index0;
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_7 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
int32_t L_8 = ___index0;
int32_t L_9 = (int32_t)__this->____size_2;
int32_t L_10 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_5, ((int32_t)il2cpp_codegen_add(L_6, 1)), (RuntimeArray*)L_7, L_8, ((int32_t)il2cpp_codegen_subtract(L_9, L_10)), NULL);
}
IL_0042:
{
}
{
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_11 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
int32_t L_12 = (int32_t)__this->____size_2;
il2cpp_codegen_initobj((&V_0), sizeof(SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C));
SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C L_13 = V_0;
NullCheck(L_11);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(L_12), (SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C)L_13);
}
IL_0063:
{
int32_t L_14 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_14, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveRange_m3432ADE0D67A6BA0FB14CE60496F2C6B7EBB8389_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
int32_t L_5 = ___count1;
if ((((int32_t)L_5) <= ((int32_t)0)))
{
goto IL_008d;
}
}
{
int32_t L_6 = (int32_t)__this->____size_2;
int32_t L_7 = (int32_t)__this->____size_2;
int32_t L_8 = ___count1;
__this->____size_2 = ((int32_t)il2cpp_codegen_subtract(L_7, L_8));
int32_t L_9 = ___index0;
int32_t L_10 = (int32_t)__this->____size_2;
if ((((int32_t)L_9) >= ((int32_t)L_10)))
{
goto IL_0066;
}
}
{
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_11 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
int32_t L_12 = ___index0;
int32_t L_13 = ___count1;
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_14 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
int32_t L_15 = ___index0;
int32_t L_16 = (int32_t)__this->____size_2;
int32_t L_17 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_11, ((int32_t)il2cpp_codegen_add(L_12, L_13)), (RuntimeArray*)L_14, L_15, ((int32_t)il2cpp_codegen_subtract(L_16, L_17)), NULL);
}
IL_0066:
{
int32_t L_18 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_18, 1));
}
{
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_19 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
int32_t L_20 = (int32_t)__this->____size_2;
int32_t L_21 = ___count1;
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_19, L_20, L_21, NULL);
}
IL_008d:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Reverse_m16551B4297C4366E5685739BA1B87C7E4AAC27A5_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_mD5B39B9B0F072CA06C68377531E0886E3538F716_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
List_1_Reverse_mD288BC8B03A107C7344B418432831BE6E34DFD16(__this, 0, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 48));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Reverse_mD288BC8B03A107C7344B418432831BE6E34DFD16_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
int32_t L_5 = ___count1;
if ((((int32_t)L_5) <= ((int32_t)1)))
{
goto IL_0038;
}
}
{
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_6 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
int32_t L_7 = ___index0;
int32_t L_8 = ___count1;
Array_Reverse_TisSerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C_m11A2E0BDD4159C67CCBEBF3F8E2B4499A71957CE(L_6, L_7, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 49));
}
IL_0038:
{
int32_t L_9 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_9, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_mED45EEF4CC00FECE563166CEA2215E5DE619EBD1_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_mD5B39B9B0F072CA06C68377531E0886E3538F716_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
List_1_Sort_m077B2424F2A34A75B62F594DFE2EA5C12ADBD95E(__this, 0, L_0, (RuntimeObject*)NULL, il2cpp_rgctx_method(method->klass->rgctx_data, 50));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m589F03236DE644A269D8D874A185AB4758CEDC14_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_mD5B39B9B0F072CA06C68377531E0886E3538F716_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
RuntimeObject* L_1 = ___comparer0;
List_1_Sort_m077B2424F2A34A75B62F594DFE2EA5C12ADBD95E(__this, 0, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 50));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m077B2424F2A34A75B62F594DFE2EA5C12ADBD95E_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, int32_t ___index0, int32_t ___count1, RuntimeObject* ___comparer2, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
int32_t L_5 = ___count1;
if ((((int32_t)L_5) <= ((int32_t)1)))
{
goto IL_0039;
}
}
{
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_6 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
int32_t L_7 = ___index0;
int32_t L_8 = ___count1;
RuntimeObject* L_9 = ___comparer2;
Array_Sort_TisSerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C_mD92AE5D59E91DD6595F0458EB373B13E6E624907(L_6, L_7, L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 51));
}
IL_0039:
{
int32_t L_10 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_10, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m47F3C094BE58C4E5021D291C50C309D408F3107C_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, Comparison_1_tA1A99E801BF7A63F87C1EB2876D1DD485B72158E* ___comparison0, const RuntimeMethod* method)
{
{
Comparison_1_tA1A99E801BF7A63F87C1EB2876D1DD485B72158E* L_0 = ___comparison0;
if (L_0)
{
goto IL_000a;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)((int32_t)34), NULL);
}
IL_000a:
{
int32_t L_1 = (int32_t)__this->____size_2;
if ((((int32_t)L_1) <= ((int32_t)1)))
{
goto IL_0026;
}
}
{
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_2 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
int32_t L_3 = (int32_t)__this->____size_2;
Comparison_1_tA1A99E801BF7A63F87C1EB2876D1DD485B72158E* L_4 = ___comparison0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 54));
ArraySortHelper_1_Sort_m07E110A10F5F07D58048D3CCEA65A951471620C5(L_2, 0, L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 53));
}
IL_0026:
{
int32_t L_5 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_5, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* List_1_ToArray_m3E1BBB73787C5090D2AA378DECDF8667D3C4936C_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, const RuntimeMethod* method)
{
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* V_0 = NULL;
{
int32_t L_0 = (int32_t)__this->____size_2;
if (L_0)
{
goto IL_000e;
}
}
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_1 = ((List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
return L_1;
}
IL_000e:
{
int32_t L_2 = (int32_t)__this->____size_2;
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_3 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)(SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 3), (uint32_t)L_2);
V_0 = L_3;
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_4 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_5 = V_0;
int32_t L_6 = (int32_t)__this->____size_2;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_4, 0, (RuntimeArray*)L_5, 0, L_6, NULL);
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_7 = V_0;
return L_7;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_AddEnumerable_m87C48FCA36E0912F8A7AD1E8E4E46DF3E1DFDB76_gshared (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, RuntimeObject* ___enumerable0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C V_1;
memset((&V_1), 0, sizeof(V_1));
int32_t V_2 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
RuntimeObject* L_1 = ___enumerable0;
NullCheck(L_1);
RuntimeObject* L_2;
L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_1);
V_0 = L_2;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0063:
{
{
RuntimeObject* L_3 = V_0;
if (!L_3)
{
goto IL_006c;
}
}
{
RuntimeObject* L_4 = V_0;
NullCheck((RuntimeObject*)L_4);
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_4);
}
IL_006c:
{
return;
}
}
});
try
{
{
goto IL_0059_1;
}
IL_0017_1:
{
RuntimeObject* L_5 = V_0;
NullCheck(L_5);
SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C L_6;
L_6 = InterfaceFuncInvoker0< SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 40), L_5);
V_1 = L_6;
int32_t L_7 = (int32_t)__this->____size_2;
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_8 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
NullCheck(L_8);
if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)(((RuntimeArray*)L_8)->max_length))))))
{
goto IL_003c_1;
}
}
{
int32_t L_9 = (int32_t)__this->____size_2;
List_1_EnsureCapacity_mDBC90FF9CA64C67537E8ED8033A579EF34C309C5(__this, ((int32_t)il2cpp_codegen_add(L_9, 1)), il2cpp_rgctx_method(method->klass->rgctx_data, 15));
}
IL_003c_1:
{
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_10 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
int32_t L_11 = (int32_t)__this->____size_2;
V_2 = L_11;
int32_t L_12 = V_2;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_12, 1));
int32_t L_13 = V_2;
SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C L_14 = V_1;
NullCheck(L_10);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C)L_14);
}
IL_0059_1:
{
RuntimeObject* L_15 = V_0;
NullCheck((RuntimeObject*)L_15);
bool L_16;
L_16 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_15);
if (L_16)
{
goto IL_0017_1;
}
}
{
goto IL_006d;
}
}
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_006d:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__cctor_mB68EE2089B9AA73B7E14D8301AFCBE202E81DDF6_gshared (const RuntimeMethod* method)
{
{
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_0 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)(SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)SZArrayNew(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 3), (uint32_t)0);
((List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___s_emptyArray_5 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___s_emptyArray_5), (void*)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
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m9F7DDF65A5DEE6C99AF06E0CD8522D259BAA070C_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_0 = ((List_1_tE15A36783D21F016929125A00F602D220C32C84A_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_0);
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mD955D5B642510166CAF5FB380761AB96C7EABED9_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, int32_t ___capacity0, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
int32_t L_0 = ___capacity0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0012;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)12), (int32_t)4, NULL);
}
IL_0012:
{
int32_t L_1 = ___capacity0;
if (L_1)
{
goto IL_0021;
}
}
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_2 = ((List_1_tE15A36783D21F016929125A00F602D220C32C84A_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_2);
return;
}
IL_0021:
{
int32_t L_3 = ___capacity0;
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_4 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)(SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 3), (uint32_t)L_3);
__this->____items_1 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_4);
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m8812D53034FBF0B30B2A1E429685E732A12314CA_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, RuntimeObject* ___collection0, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
int32_t V_1 = 0;
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
RuntimeObject* L_0 = ___collection0;
if (L_0)
{
goto IL_000f;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)6, NULL);
}
IL_000f:
{
RuntimeObject* L_1 = ___collection0;
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 5)));
RuntimeObject* L_2 = V_0;
if (!L_2)
{
goto IL_0050;
}
}
{
RuntimeObject* L_3 = V_0;
NullCheck(L_3);
int32_t L_4;
L_4 = InterfaceFuncInvoker0< int32_t >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
V_1 = L_4;
int32_t L_5 = V_1;
if (L_5)
{
goto IL_002f;
}
}
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_6 = ((List_1_tE15A36783D21F016929125A00F602D220C32C84A_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_6);
return;
}
IL_002f:
{
int32_t L_7 = V_1;
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_8 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)(SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 3), (uint32_t)L_7);
__this->____items_1 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_8);
RuntimeObject* L_9 = V_0;
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_10 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
NullCheck(L_9);
InterfaceActionInvoker2< SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*, int32_t >::Invoke(5, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_9, L_10, 0);
int32_t L_11 = V_1;
__this->____size_2 = L_11;
return;
}
IL_0050:
{
__this->____size_2 = 0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_12 = ((List_1_tE15A36783D21F016929125A00F602D220C32C84A_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_12;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_12);
RuntimeObject* L_13 = ___collection0;
List_1_AddEnumerable_m9606977025BDE1ECF8FC27BAB22B2BEA3325E06C(__this, L_13, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_get_Capacity_m8ACBFB09A2C94672A26AE8421C8EEBD79BB6DEE9_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, const RuntimeMethod* method)
{
{
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_0 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
NullCheck(L_0);
return ((int32_t)(((RuntimeArray*)L_0)->max_length));
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Capacity_m25F4ABEEA51BFABF34BD833A3234A863F012B1EE_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, int32_t ___value0, const RuntimeMethod* method)
{
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* V_0 = NULL;
{
int32_t L_0 = ___value0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((((int32_t)L_0) >= ((int32_t)L_1)))
{
goto IL_0012;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)15), (int32_t)((int32_t)21), NULL);
}
IL_0012:
{
int32_t L_2 = ___value0;
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_3 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
NullCheck(L_3);
if ((((int32_t)L_2) == ((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))
{
goto IL_0058;
}
}
{
int32_t L_4 = ___value0;
if ((((int32_t)L_4) <= ((int32_t)0)))
{
goto IL_004d;
}
}
{
int32_t L_5 = ___value0;
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_6 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)(SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 3), (uint32_t)L_5);
V_0 = L_6;
int32_t L_7 = (int32_t)__this->____size_2;
if ((((int32_t)L_7) <= ((int32_t)0)))
{
goto IL_0045;
}
}
{
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_8 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_9 = V_0;
int32_t L_10 = (int32_t)__this->____size_2;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_8, 0, (RuntimeArray*)L_9, 0, L_10, NULL);
}
IL_0045:
{
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_11 = V_0;
__this->____items_1 = L_11;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_11);
return;
}
IL_004d:
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_12 = ((List_1_tE15A36783D21F016929125A00F602D220C32C84A_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_12;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_12);
}
IL_0058:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m69AE2AA581A9F7CC56C2A779BA4524E1900ADF55_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
return L_0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_System_Collections_IList_get_IsFixedSize_mBA6AF4039BAE58D1706CE73872B17E4E80D1A521_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_mA66E5CEF146B8E1CC55BE905C0B0F6786AD77AFD_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_System_Collections_IList_get_IsReadOnly_mAF06A0D0197AC5081E819F4A47567D6973246B27_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_ICollection_get_SyncRoot_m6B944E58D6F472A0DA5A71162FFBF415572161FB_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = (RuntimeObject*)__this->____syncRoot_4;
if (L_0)
{
goto IL_001a;
}
}
{
RuntimeObject** L_1 = (RuntimeObject**)(&__this->____syncRoot_4);
RuntimeObject* L_2 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_2, NULL);
RuntimeObject* L_3;
L_3 = InterlockedCompareExchangeImpl<RuntimeObject*>(L_1, L_2, NULL);
}
IL_001a:
{
RuntimeObject* L_4 = (RuntimeObject*)__this->____syncRoot_4;
return L_4;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 List_1_get_Item_mA652DB20CF39CC245CE6699B6C655FB2DCAA4946_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowArgumentOutOfRange_IndexException_mC7661B8C6DD827679C95FC6B6C08F8724174936D(NULL);
}
IL_000e:
{
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_2 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
int32_t L_3 = ___index0;
NullCheck(L_2);
int32_t L_4 = L_3;
SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
return L_5;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Item_m10E26EC0C062E48963C4C2AC92DF0F3BEBE5688C_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, int32_t ___index0, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 ___value1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowArgumentOutOfRange_IndexException_mC7661B8C6DD827679C95FC6B6C08F8724174936D(NULL);
}
IL_000e:
{
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_2 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
int32_t L_3 = ___index0;
SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 L_4 = ___value1;
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452)L_4);
int32_t L_5 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_5, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_IsCompatibleObject_m03CEF85CD52AE36C26074DB0A55BFD107909060B_gshared (RuntimeObject* ___value0, const RuntimeMethod* method)
{
SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 V_0;
memset((&V_0), 0, sizeof(V_0));
{
RuntimeObject* L_0 = ___value0;
if (((RuntimeObject*)IsInst((RuntimeObject*)L_0, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 9))))
{
goto IL_001f;
}
}
{
RuntimeObject* L_1 = ___value0;
if (L_1)
{
goto IL_001d;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452));
SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 L_2 = V_0;
SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 L_3 = L_2;
RuntimeObject* L_4 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_3);
return (bool)((((RuntimeObject*)(RuntimeObject*)L_4) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
}
IL_001d:
{
return (bool)0;
}
IL_001f:
{
return (bool)1;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_IList_get_Item_m8B0FCE0746DFCF214D689208BAB21720C33D40B5_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 L_1;
L_1 = List_1_get_Item_mA652DB20CF39CC245CE6699B6C655FB2DCAA4946(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 L_2 = L_1;
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 9), &L_2);
return L_3;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_System_Collections_IList_set_Item_mB54B1B6DEF13BE9CC350E49DAF3CCF07A6C13A3E_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, int32_t ___index0, RuntimeObject* ___value1, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeObject* L_0 = ___value1;
ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisSerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452_m5940DE1E01EF1CD879C88A40FC90B65D56008AC8(L_0, (int32_t)((int32_t)15), il2cpp_rgctx_method(method->klass->rgctx_data, 11));
}
try
{
int32_t L_1 = ___index0;
RuntimeObject* L_2 = ___value1;
List_1_set_Item_m10E26EC0C062E48963C4C2AC92DF0F3BEBE5688C(__this, L_1, ((*(SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452*)((SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452*)(SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 12));
goto IL_002a;
}
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0017;
}
throw e;
}
CATCH_0017:
{
RuntimeObject* L_3 = ___value1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->klass->rgctx_data, 13)) };
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
Type_t* L_5;
L_5 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_4, NULL);
ThrowHelper_ThrowWrongValueTypeArgumentException_mC1A6BBE43C360583C1E2C463D5B0AADF1E3E1910(L_3, L_5, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_002a;
}
IL_002a:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_m2A67FD5726B4822A0635AE943CF6D96A403D71CD_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 ___item0, const RuntimeMethod* method)
{
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_1 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
V_0 = L_1;
int32_t L_2 = (int32_t)__this->____size_2;
V_1 = L_2;
int32_t L_3 = V_1;
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_4 = V_0;
NullCheck(L_4);
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
{
goto IL_0034;
}
}
{
int32_t L_5 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_6 = V_0;
int32_t L_7 = V_1;
SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 L_8 = ___item0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452)L_8);
return;
}
IL_0034:
{
SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 L_9 = ___item0;
List_1_AddWithResize_m917A6AD1D7ADF266FC1E66DCCC79AE49E725066C(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void List_1_AddWithResize_m917A6AD1D7ADF266FC1E66DCCC79AE49E725066C_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 ___item0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->____size_2;
V_0 = L_0;
int32_t L_1 = V_0;
List_1_EnsureCapacity_mFC7CE2DAD1486472AD9C32D20031FBF334B93A76(__this, ((int32_t)il2cpp_codegen_add(L_1, 1)), il2cpp_rgctx_method(method->klass->rgctx_data, 15));
int32_t L_2 = V_0;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_2, 1));
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_3 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
int32_t L_4 = V_0;
SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 L_5 = ___item0;
NullCheck(L_3);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(L_4), (SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452)L_5);
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_System_Collections_IList_Add_mA602BDC6073D1EA62E4B0F918F9D02C47B9FC33F_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeObject* L_0 = ___item0;
ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisSerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452_m5940DE1E01EF1CD879C88A40FC90B65D56008AC8(L_0, (int32_t)((int32_t)20), il2cpp_rgctx_method(method->klass->rgctx_data, 11));
}
try
{
RuntimeObject* L_1 = ___item0;
List_1_Add_m2A67FD5726B4822A0635AE943CF6D96A403D71CD_inline(__this, ((*(SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452*)((SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452*)(SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452*)UnBox(L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 16));
goto IL_0029;
}
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0016;
}
throw e;
}
CATCH_0016:
{
RuntimeObject* L_2 = ___item0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_3 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->klass->rgctx_data, 13)) };
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
Type_t* L_4;
L_4 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_3, NULL);
ThrowHelper_ThrowWrongValueTypeArgumentException_mC1A6BBE43C360583C1E2C463D5B0AADF1E3E1910(L_2, L_4, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0029;
}
IL_0029:
{
int32_t L_5;
L_5 = List_1_get_Count_m69AE2AA581A9F7CC56C2A779BA4524E1900ADF55_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
return ((int32_t)il2cpp_codegen_subtract(L_5, 1));
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_AddRange_m3AD5410B587BAF25FE708FA1DC3C1647BD98799E_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, RuntimeObject* ___collection0, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
RuntimeObject* L_1 = ___collection0;
List_1_InsertRange_mE92D40D4770019281B6BA2C330D63A165F9BF993(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 18));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyCollection_1_tA871F447D7F479911BD7EAFADF88CC271A932111* List_1_AsReadOnly_m59215E22BB55EA0965F1321310281E7ABA1CF0DF_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, const RuntimeMethod* method)
{
{
ReadOnlyCollection_1_tA871F447D7F479911BD7EAFADF88CC271A932111* L_0 = (ReadOnlyCollection_1_tA871F447D7F479911BD7EAFADF88CC271A932111*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 19));
ReadOnlyCollection_1__ctor_m3D7A0EA9BAD84E7C7FA03675BDC3CD3EFF39F32F(L_0, (RuntimeObject*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
return L_0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_m1984A999BA27A2FFD51B3C1CD503BD664DEFB62C_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, int32_t ___index0, int32_t ___count1, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 ___item2, RuntimeObject* ___comparer3, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_5 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
int32_t L_6 = ___index0;
int32_t L_7 = ___count1;
SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 L_8 = ___item2;
RuntimeObject* L_9 = ___comparer3;
int32_t L_10;
L_10 = Array_BinarySearch_TisSerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452_m0F80796B946772F68B9E7EBA56C447ECE1FDCDE9(L_5, L_6, L_7, L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 23));
return L_10;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_mD65C5EC63BE6B57DDD0FA0DB29C716342E22CAA7_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 ___item0, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_m69AE2AA581A9F7CC56C2A779BA4524E1900ADF55_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 L_1 = ___item0;
int32_t L_2;
L_2 = List_1_BinarySearch_m1984A999BA27A2FFD51B3C1CD503BD664DEFB62C(__this, 0, L_0, L_1, (RuntimeObject*)NULL, il2cpp_rgctx_method(method->klass->rgctx_data, 24));
return L_2;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_mB453DB06050081D7DD6A64CBC8C7247C1782F82D_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 ___item0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_m69AE2AA581A9F7CC56C2A779BA4524E1900ADF55_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 L_1 = ___item0;
RuntimeObject* L_2 = ___comparer1;
int32_t L_3;
L_3 = List_1_BinarySearch_m1984A999BA27A2FFD51B3C1CD503BD664DEFB62C(__this, 0, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 24));
return L_3;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Clear_m79853E299C26DBEFCE9200A5590A61E088392ABA_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
}
{
int32_t L_1 = (int32_t)__this->____size_2;
V_0 = L_1;
__this->____size_2 = 0;
int32_t L_2 = V_0;
if ((((int32_t)L_2) <= ((int32_t)0)))
{
goto IL_003c;
}
}
{
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_3 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
int32_t L_4 = V_0;
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_3, 0, L_4, NULL);
return;
}
IL_003c:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Contains_mF9800FA1BDF6A933AF36362076483B1BE82EBC20_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 ___item0, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
if (!L_0)
{
goto IL_0016;
}
}
{
SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 L_1 = ___item0;
int32_t L_2;
L_2 = List_1_IndexOf_mE4A1E26F51C7E76116D2B46425DB16CA1747633A(__this, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 26));
return (bool)((((int32_t)((((int32_t)L_2) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_0016:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_System_Collections_IList_Contains_m73C846A31FD5D6ADBA521145F6D68870B27436CE_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___item0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
bool L_1;
L_1 = List_1_IsCompatibleObject_m03CEF85CD52AE36C26074DB0A55BFD107909060B(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
if (!L_1)
{
goto IL_0015;
}
}
{
RuntimeObject* L_2 = ___item0;
bool L_3;
L_3 = List_1_Contains_mF9800FA1BDF6A933AF36362076483B1BE82EBC20(__this, ((*(SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452*)((SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452*)(SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 28));
return L_3;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_CopyTo_mF4113149BCB60696D3AB60CF702F5A666F242911_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* ___array0, const RuntimeMethod* method)
{
{
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_0 = ___array0;
List_1_CopyTo_m1B3BDDEB542B9E9E75DF1442B5B69058E0391CBB(__this, L_0, 0, il2cpp_rgctx_method(method->klass->rgctx_data, 29));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_System_Collections_ICollection_CopyTo_m62C0539136B3F5473FB58A642D846634C6B69C62_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, RuntimeArray* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeArray* L_0 = ___array0;
if (!L_0)
{
goto IL_0012;
}
}
{
RuntimeArray* L_1 = ___array0;
NullCheck(L_1);
int32_t L_2;
L_2 = Array_get_Rank_m9383A200A2ECC89ECA44FE5F812ECFB874449C5F(L_1, NULL);
if ((((int32_t)L_2) == ((int32_t)1)))
{
goto IL_0012;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)7, NULL);
}
IL_0012:
{
}
try
{
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_3 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
RuntimeArray* L_4 = ___array0;
int32_t L_5 = ___arrayIndex1;
int32_t L_6 = (int32_t)__this->____size_2;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_3, 0, L_4, L_5, L_6, NULL);
goto IL_0031;
}
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArrayTypeMismatchException_t95F1723A5A166E62D3FBEF9734DEFBF61594F8F1_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0029;
}
throw e;
}
CATCH_0029:
{
ThrowHelper_ThrowArgumentException_Argument_InvalidArrayType_m469A6A5731A0F1E94D8B609ED9D001C3A1652A58(NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0031;
}
IL_0031:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_CopyTo_m1B3BDDEB542B9E9E75DF1442B5B69058E0391CBB_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_0 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
int32_t L_3 = (int32_t)__this->____size_2;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_0, 0, (RuntimeArray*)L_1, L_2, L_3, NULL);
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_EnsureCapacity_mFC7CE2DAD1486472AD9C32D20031FBF334B93A76_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, int32_t ___min0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t G_B4_0 = 0;
{
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_0 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
NullCheck(L_0);
int32_t L_1 = ___min0;
if ((((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))) >= ((int32_t)L_1)))
{
goto IL_003d;
}
}
{
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_2 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
NullCheck(L_2);
if (!(((RuntimeArray*)L_2)->max_length))
{
goto IL_0020;
}
}
{
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_3 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
NullCheck(L_3);
G_B4_0 = ((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_3)->max_length)), 2));
goto IL_0021;
}
IL_0020:
{
G_B4_0 = 4;
}
IL_0021:
{
V_0 = G_B4_0;
int32_t L_4 = V_0;
if ((!(((uint32_t)L_4) > ((uint32_t)((int32_t)2146435071)))))
{
goto IL_0030;
}
}
{
V_0 = ((int32_t)2146435071);
}
IL_0030:
{
int32_t L_5 = V_0;
int32_t L_6 = ___min0;
if ((((int32_t)L_5) >= ((int32_t)L_6)))
{
goto IL_0036;
}
}
{
int32_t L_7 = ___min0;
V_0 = L_7;
}
IL_0036:
{
int32_t L_8 = V_0;
List_1_set_Capacity_m25F4ABEEA51BFABF34BD833A3234A863F012B1EE(__this, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 30));
}
IL_003d:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Exists_mD9655C5E9FD3A2AEE68482EE929C7A25D2000FBB_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, Predicate_1_t19AD45D1959BE743073EC8A444DE8A4CD156EBDC* ___match0, const RuntimeMethod* method)
{
{
Predicate_1_t19AD45D1959BE743073EC8A444DE8A4CD156EBDC* L_0 = ___match0;
int32_t L_1;
L_1 = List_1_FindIndex_m82093DAEFEB13F65D340D87279CBE1B0E37630FE(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 32));
return (bool)((((int32_t)((((int32_t)L_1) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 List_1_Find_m9F72B2F15F77011B46D83CB87A19FF12A7582DA3_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, Predicate_1_t19AD45D1959BE743073EC8A444DE8A4CD156EBDC* ___match0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 V_1;
memset((&V_1), 0, sizeof(V_1));
{
Predicate_1_t19AD45D1959BE743073EC8A444DE8A4CD156EBDC* L_0 = ___match0;
if (L_0)
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)8, NULL);
}
IL_0009:
{
V_0 = 0;
goto IL_0032;
}
IL_000d:
{
Predicate_1_t19AD45D1959BE743073EC8A444DE8A4CD156EBDC* L_1 = ___match0;
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_2 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
int32_t L_3 = V_0;
NullCheck(L_2);
int32_t L_4 = L_3;
SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
NullCheck(L_1);
bool L_6;
L_6 = Predicate_1_Invoke_mCAAFFB8B975CC9C9EB0020ABC8FC6826A53CBC68_inline(L_1, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (!L_6)
{
goto IL_002e;
}
}
{
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_7 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
int32_t L_8 = V_0;
NullCheck(L_7);
int32_t L_9 = L_8;
SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
return L_10;
}
IL_002e:
{
int32_t L_11 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_11, 1));
}
IL_0032:
{
int32_t L_12 = V_0;
int32_t L_13 = (int32_t)__this->____size_2;
if ((((int32_t)L_12) < ((int32_t)L_13)))
{
goto IL_000d;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452));
SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 L_14 = V_1;
return L_14;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tE15A36783D21F016929125A00F602D220C32C84A* List_1_FindAll_mC7C7D4C8412252F5D9B1F104F674DD95FDE494B3_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, Predicate_1_t19AD45D1959BE743073EC8A444DE8A4CD156EBDC* ___match0, const RuntimeMethod* method)
{
List_1_tE15A36783D21F016929125A00F602D220C32C84A* V_0 = NULL;
int32_t V_1 = 0;
{
Predicate_1_t19AD45D1959BE743073EC8A444DE8A4CD156EBDC* L_0 = ___match0;
if (L_0)
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)8, NULL);
}
IL_0009:
{
List_1_tE15A36783D21F016929125A00F602D220C32C84A* L_1 = (List_1_tE15A36783D21F016929125A00F602D220C32C84A*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 0));
List_1__ctor_m9F7DDF65A5DEE6C99AF06E0CD8522D259BAA070C(L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
V_0 = L_1;
V_1 = 0;
goto IL_003d;
}
IL_0013:
{
Predicate_1_t19AD45D1959BE743073EC8A444DE8A4CD156EBDC* L_2 = ___match0;
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_3 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
int32_t L_4 = V_1;
NullCheck(L_3);
int32_t L_5 = L_4;
SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
NullCheck(L_2);
bool L_7;
L_7 = Predicate_1_Invoke_mCAAFFB8B975CC9C9EB0020ABC8FC6826A53CBC68_inline(L_2, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (!L_7)
{
goto IL_0039;
}
}
{
List_1_tE15A36783D21F016929125A00F602D220C32C84A* L_8 = V_0;
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_9 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
int32_t L_10 = V_1;
NullCheck(L_9);
int32_t L_11 = L_10;
SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
NullCheck(L_8);
List_1_Add_m2A67FD5726B4822A0635AE943CF6D96A403D71CD_inline(L_8, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
}
IL_0039:
{
int32_t L_13 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_13, 1));
}
IL_003d:
{
int32_t L_14 = V_1;
int32_t L_15 = (int32_t)__this->____size_2;
if ((((int32_t)L_14) < ((int32_t)L_15)))
{
goto IL_0013;
}
}
{
List_1_tE15A36783D21F016929125A00F602D220C32C84A* L_16 = V_0;
return L_16;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_m82093DAEFEB13F65D340D87279CBE1B0E37630FE_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, Predicate_1_t19AD45D1959BE743073EC8A444DE8A4CD156EBDC* ___match0, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
Predicate_1_t19AD45D1959BE743073EC8A444DE8A4CD156EBDC* L_1 = ___match0;
int32_t L_2;
L_2 = List_1_FindIndex_m4627A14E4CCA05915176D272C6B2711C8DEE8303(__this, 0, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 35));
return L_2;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_m4627A14E4CCA05915176D272C6B2711C8DEE8303_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, int32_t ___startIndex0, int32_t ___count1, Predicate_1_t19AD45D1959BE743073EC8A444DE8A4CD156EBDC* ___match2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
int32_t L_0 = ___startIndex0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) > ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowStartIndexArgumentOutOfRange_ArgumentOutOfRange_Index_m94BADCC6D7EBBD12BE8323775FFB43AF01499B0F(NULL);
}
IL_000e:
{
int32_t L_2 = ___count1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_001d;
}
}
{
int32_t L_3 = ___startIndex0;
int32_t L_4 = (int32_t)__this->____size_2;
int32_t L_5 = ___count1;
if ((((int32_t)L_3) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_4, L_5)))))
{
goto IL_0022;
}
}
IL_001d:
{
ThrowHelper_ThrowCountArgumentOutOfRange_ArgumentOutOfRange_Count_m6C4A7F645BDD8EB62B50CB76E84416D94620DCC7(NULL);
}
IL_0022:
{
Predicate_1_t19AD45D1959BE743073EC8A444DE8A4CD156EBDC* L_6 = ___match2;
if (L_6)
{
goto IL_002b;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)8, NULL);
}
IL_002b:
{
int32_t L_7 = ___startIndex0;
int32_t L_8 = ___count1;
V_0 = ((int32_t)il2cpp_codegen_add(L_7, L_8));
int32_t L_9 = ___startIndex0;
V_1 = L_9;
goto IL_004d;
}
IL_0033:
{
Predicate_1_t19AD45D1959BE743073EC8A444DE8A4CD156EBDC* L_10 = ___match2;
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_11 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
int32_t L_12 = V_1;
NullCheck(L_11);
int32_t L_13 = L_12;
SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 L_14 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_13));
NullCheck(L_10);
bool L_15;
L_15 = Predicate_1_Invoke_mCAAFFB8B975CC9C9EB0020ABC8FC6826A53CBC68_inline(L_10, L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (!L_15)
{
goto IL_0049;
}
}
{
int32_t L_16 = V_1;
return L_16;
}
IL_0049:
{
int32_t L_17 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_17, 1));
}
IL_004d:
{
int32_t L_18 = V_1;
int32_t L_19 = V_0;
if ((((int32_t)L_18) < ((int32_t)L_19)))
{
goto IL_0033;
}
}
{
return (-1);
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_ForEach_m29D9156303EC1C576FC736E674D5EC4A8EA06FBF_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, Action_1_tDEE138ADA6A5B56B11D9CFC823CBBD375BA9115A* ___action0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
Action_1_tDEE138ADA6A5B56B11D9CFC823CBBD375BA9115A* L_0 = ___action0;
if (L_0)
{
goto IL_000a;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)((int32_t)33), NULL);
}
IL_000a:
{
int32_t L_1 = (int32_t)__this->____version_3;
V_0 = L_1;
V_1 = 0;
goto IL_0034;
}
IL_0015:
{
int32_t L_2 = V_0;
int32_t L_3 = (int32_t)__this->____version_3;
if ((!(((uint32_t)L_2) == ((uint32_t)L_3))))
{
goto IL_003d;
}
}
{
Action_1_tDEE138ADA6A5B56B11D9CFC823CBBD375BA9115A* L_4 = ___action0;
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_5 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
int32_t L_6 = V_1;
NullCheck(L_5);
int32_t L_7 = L_6;
SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck(L_4);
Action_1_Invoke_m1AE5DA812CC78579382FC604F31F5C324DFA5DAC_inline(L_4, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 37));
int32_t L_9 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_9, 1));
}
IL_0034:
{
int32_t L_10 = V_1;
int32_t L_11 = (int32_t)__this->____size_2;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0015;
}
}
IL_003d:
{
int32_t L_12 = V_0;
int32_t L_13 = (int32_t)__this->____version_3;
if ((((int32_t)L_12) == ((int32_t)L_13)))
{
goto IL_004b;
}
}
{
ThrowHelper_ThrowInvalidOperationException_InvalidOperation_EnumFailedVersion_m5331E2E0EC0E36843D53F439C2529530595ACE9F(NULL);
}
IL_004b:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t79A467E7C13197680FE62582108B3BE3348A0F1F List_1_GetEnumerator_m0962E3FB44829DE7E0AA6C86EBA4DCB1AF4D6066_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, const RuntimeMethod* method)
{
{
Enumerator_t79A467E7C13197680FE62582108B3BE3348A0F1F L_0;
memset((&L_0), 0, sizeof(L_0));
Enumerator__ctor_m076C4519BED94CBC69AF27F7F77E90B2627BF052((&L_0), __this, il2cpp_rgctx_method(method->klass->rgctx_data, 39));
return L_0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_mCF0D110DE05EE95B1AE7515914B2BAE2DB9499D0_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, const RuntimeMethod* method)
{
{
Enumerator_t79A467E7C13197680FE62582108B3BE3348A0F1F L_0;
memset((&L_0), 0, sizeof(L_0));
Enumerator__ctor_m076C4519BED94CBC69AF27F7F77E90B2627BF052((&L_0), __this, il2cpp_rgctx_method(method->klass->rgctx_data, 39));
Enumerator_t79A467E7C13197680FE62582108B3BE3348A0F1F L_1 = L_0;
RuntimeObject* L_2 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 38), &L_1);
return (RuntimeObject*)L_2;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_IEnumerable_GetEnumerator_mC8CF8B44F0ED5CAF357BB9E791077A668BB28A57_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, const RuntimeMethod* method)
{
{
Enumerator_t79A467E7C13197680FE62582108B3BE3348A0F1F L_0;
memset((&L_0), 0, sizeof(L_0));
Enumerator__ctor_m076C4519BED94CBC69AF27F7F77E90B2627BF052((&L_0), __this, il2cpp_rgctx_method(method->klass->rgctx_data, 39));
Enumerator_t79A467E7C13197680FE62582108B3BE3348A0F1F L_1 = L_0;
RuntimeObject* L_2 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 38), &L_1);
return (RuntimeObject*)L_2;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tE15A36783D21F016929125A00F602D220C32C84A* List_1_GetRange_m098F802879EA16599B981A99692BC9DB822B0712_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method)
{
List_1_tE15A36783D21F016929125A00F602D220C32C84A* V_0 = NULL;
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
int32_t L_5 = ___count1;
List_1_tE15A36783D21F016929125A00F602D220C32C84A* L_6 = (List_1_tE15A36783D21F016929125A00F602D220C32C84A*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 0));
List_1__ctor_mD955D5B642510166CAF5FB380761AB96C7EABED9(L_6, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 41));
V_0 = L_6;
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_7 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
int32_t L_8 = ___index0;
List_1_tE15A36783D21F016929125A00F602D220C32C84A* L_9 = V_0;
NullCheck(L_9);
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_10 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)L_9->____items_1;
int32_t L_11 = ___count1;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_7, L_8, (RuntimeArray*)L_10, 0, L_11, NULL);
List_1_tE15A36783D21F016929125A00F602D220C32C84A* L_12 = V_0;
int32_t L_13 = ___count1;
NullCheck(L_12);
L_12->____size_2 = L_13;
List_1_tE15A36783D21F016929125A00F602D220C32C84A* L_14 = V_0;
return L_14;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_IndexOf_mE4A1E26F51C7E76116D2B46425DB16CA1747633A_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 ___item0, const RuntimeMethod* method)
{
{
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_0 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 L_1 = ___item0;
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3;
L_3 = Array_IndexOf_TisSerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452_m902D1500A5E9C164C4BEA4454F170BE71E50886E(L_0, L_1, 0, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 42));
return L_3;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_System_Collections_IList_IndexOf_mAD8FDD213950051A147ACCC288F068499C41A5A2_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___item0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
bool L_1;
L_1 = List_1_IsCompatibleObject_m03CEF85CD52AE36C26074DB0A55BFD107909060B(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
if (!L_1)
{
goto IL_0015;
}
}
{
RuntimeObject* L_2 = ___item0;
int32_t L_3;
L_3 = List_1_IndexOf_mE4A1E26F51C7E76116D2B46425DB16CA1747633A(__this, ((*(SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452*)((SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452*)(SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 26));
return L_3;
}
IL_0015:
{
return (-1);
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Insert_m5BF63154DFD5997ED5CA0B1E502BD5C7B1695262_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, int32_t ___index0, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 ___item1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) > ((uint32_t)L_1))))
{
goto IL_0012;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)13), (int32_t)((int32_t)27), NULL);
}
IL_0012:
{
int32_t L_2 = (int32_t)__this->____size_2;
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_3 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
NullCheck(L_3);
if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)(((RuntimeArray*)L_3)->max_length))))))
{
goto IL_0030;
}
}
{
int32_t L_4 = (int32_t)__this->____size_2;
List_1_EnsureCapacity_mFC7CE2DAD1486472AD9C32D20031FBF334B93A76(__this, ((int32_t)il2cpp_codegen_add(L_4, 1)), il2cpp_rgctx_method(method->klass->rgctx_data, 15));
}
IL_0030:
{
int32_t L_5 = ___index0;
int32_t L_6 = (int32_t)__this->____size_2;
if ((((int32_t)L_5) >= ((int32_t)L_6)))
{
goto IL_0056;
}
}
{
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_7 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
int32_t L_8 = ___index0;
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_9 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
int32_t L_10 = ___index0;
int32_t L_11 = (int32_t)__this->____size_2;
int32_t L_12 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_7, L_8, (RuntimeArray*)L_9, ((int32_t)il2cpp_codegen_add(L_10, 1)), ((int32_t)il2cpp_codegen_subtract(L_11, L_12)), NULL);
}
IL_0056:
{
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_13 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
int32_t L_14 = ___index0;
SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 L_15 = ___item1;
NullCheck(L_13);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452)L_15);
int32_t L_16 = (int32_t)__this->____size_2;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_16, 1));
int32_t L_17 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_17, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_System_Collections_IList_Insert_mBC7DDF36A468E4095CD573ADED28A602FDEB8584_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, int32_t ___index0, RuntimeObject* ___item1, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeObject* L_0 = ___item1;
ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisSerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452_m5940DE1E01EF1CD879C88A40FC90B65D56008AC8(L_0, (int32_t)((int32_t)20), il2cpp_rgctx_method(method->klass->rgctx_data, 11));
}
try
{
int32_t L_1 = ___index0;
RuntimeObject* L_2 = ___item1;
List_1_Insert_m5BF63154DFD5997ED5CA0B1E502BD5C7B1695262(__this, L_1, ((*(SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452*)((SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452*)(SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 43));
goto IL_002a;
}
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0017;
}
throw e;
}
CATCH_0017:
{
RuntimeObject* L_3 = ___item1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->klass->rgctx_data, 13)) };
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
Type_t* L_5;
L_5 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_4, NULL);
ThrowHelper_ThrowWrongValueTypeArgumentException_mC1A6BBE43C360583C1E2C463D5B0AADF1E3E1910(L_3, L_5, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_002a;
}
IL_002a:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_InsertRange_mE92D40D4770019281B6BA2C330D63A165F9BF993_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, int32_t ___index0, RuntimeObject* ___collection1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
int32_t V_1 = 0;
RuntimeObject* V_2 = NULL;
{
RuntimeObject* L_0 = ___collection1;
if (L_0)
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)6, NULL);
}
IL_0009:
{
int32_t L_1 = ___index0;
int32_t L_2 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_1) > ((uint32_t)L_2))))
{
goto IL_0017;
}
}
{
ThrowHelper_ThrowArgumentOutOfRange_IndexException_mC7661B8C6DD827679C95FC6B6C08F8724174936D(NULL);
}
IL_0017:
{
RuntimeObject* L_3 = ___collection1;
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 5)));
RuntimeObject* L_4 = V_0;
if (!L_4)
{
goto IL_00bc;
}
}
{
RuntimeObject* L_5 = V_0;
NullCheck(L_5);
int32_t L_6;
L_6 = InterfaceFuncInvoker0< int32_t >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_5);
V_1 = L_6;
int32_t L_7 = V_1;
if ((((int32_t)L_7) <= ((int32_t)0)))
{
goto IL_00fb;
}
}
{
int32_t L_8 = (int32_t)__this->____size_2;
int32_t L_9 = V_1;
List_1_EnsureCapacity_mFC7CE2DAD1486472AD9C32D20031FBF334B93A76(__this, ((int32_t)il2cpp_codegen_add(L_8, L_9)), il2cpp_rgctx_method(method->klass->rgctx_data, 15));
int32_t L_10 = ___index0;
int32_t L_11 = (int32_t)__this->____size_2;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0066;
}
}
{
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_12 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
int32_t L_13 = ___index0;
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_14 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
int32_t L_15 = ___index0;
int32_t L_16 = V_1;
int32_t L_17 = (int32_t)__this->____size_2;
int32_t L_18 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_12, L_13, (RuntimeArray*)L_14, ((int32_t)il2cpp_codegen_add(L_15, L_16)), ((int32_t)il2cpp_codegen_subtract(L_17, L_18)), NULL);
}
IL_0066:
{
RuntimeObject* L_19 = V_0;
if ((!(((RuntimeObject*)(List_1_tE15A36783D21F016929125A00F602D220C32C84A*)__this) == ((RuntimeObject*)(RuntimeObject*)L_19))))
{
goto IL_009f;
}
}
{
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_20 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_21 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
int32_t L_22 = ___index0;
int32_t L_23 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_20, 0, (RuntimeArray*)L_21, L_22, L_23, NULL);
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_24 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
int32_t L_25 = ___index0;
int32_t L_26 = V_1;
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_27 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
int32_t L_28 = ___index0;
int32_t L_29 = (int32_t)__this->____size_2;
int32_t L_30 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_24, ((int32_t)il2cpp_codegen_add(L_25, L_26)), (RuntimeArray*)L_27, ((int32_t)il2cpp_codegen_multiply(L_28, 2)), ((int32_t)il2cpp_codegen_subtract(L_29, L_30)), NULL);
goto IL_00ac;
}
IL_009f:
{
RuntimeObject* L_31 = V_0;
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_32 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
int32_t L_33 = ___index0;
NullCheck(L_31);
InterfaceActionInvoker2< SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*, int32_t >::Invoke(5, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_31, L_32, L_33);
}
IL_00ac:
{
int32_t L_34 = (int32_t)__this->____size_2;
int32_t L_35 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_34, L_35));
goto IL_00fb;
}
IL_00bc:
{
int32_t L_36 = ___index0;
int32_t L_37 = (int32_t)__this->____size_2;
if ((((int32_t)L_36) >= ((int32_t)L_37)))
{
goto IL_00f4;
}
}
{
RuntimeObject* L_38 = ___collection1;
NullCheck(L_38);
RuntimeObject* L_39;
L_39 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_38);
V_2 = L_39;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00ea:
{
{
RuntimeObject* L_40 = V_2;
if (!L_40)
{
goto IL_00f3;
}
}
{
RuntimeObject* L_41 = V_2;
NullCheck((RuntimeObject*)L_41);
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_41);
}
IL_00f3:
{
return;
}
}
});
try
{
{
goto IL_00e0_1;
}
IL_00ce_1:
{
int32_t L_42 = ___index0;
int32_t L_43 = L_42;
___index0 = ((int32_t)il2cpp_codegen_add(L_43, 1));
RuntimeObject* L_44 = V_2;
NullCheck(L_44);
SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 L_45;
L_45 = InterfaceFuncInvoker0< SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 40), L_44);
List_1_Insert_m5BF63154DFD5997ED5CA0B1E502BD5C7B1695262(__this, L_43, L_45, il2cpp_rgctx_method(method->klass->rgctx_data, 43));
}
IL_00e0_1:
{
RuntimeObject* L_46 = V_2;
NullCheck((RuntimeObject*)L_46);
bool L_47;
L_47 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_46);
if (L_47)
{
goto IL_00ce_1;
}
}
{
goto IL_00fb;
}
}
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00f4:
{
RuntimeObject* L_48 = ___collection1;
List_1_AddEnumerable_m9606977025BDE1ECF8FC27BAB22B2BEA3325E06C(__this, L_48, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
}
IL_00fb:
{
int32_t L_49 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_49, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Remove_m80247B271593D484141E189A27FE385AF3809231_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 ___item0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 L_0 = ___item0;
int32_t L_1;
L_1 = List_1_IndexOf_mE4A1E26F51C7E76116D2B46425DB16CA1747633A(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 26));
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0015;
}
}
{
int32_t L_3 = V_0;
List_1_RemoveAt_mB59317CB5118CD2B5049B80787D942A2ED5BAEC7(__this, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 46));
return (bool)1;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_System_Collections_IList_Remove_m914E5771B9C4076AE5A9A1F49B74D953DCBE4220_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___item0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
bool L_1;
L_1 = List_1_IsCompatibleObject_m03CEF85CD52AE36C26074DB0A55BFD107909060B(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
if (!L_1)
{
goto IL_0015;
}
}
{
RuntimeObject* L_2 = ___item0;
bool L_3;
L_3 = List_1_Remove_m80247B271593D484141E189A27FE385AF3809231(__this, ((*(SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452*)((SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452*)(SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 47));
}
IL_0015:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_RemoveAll_m2C0ED85F7433A7374CAB0FAC49CF1BAD80B3148C_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, Predicate_1_t19AD45D1959BE743073EC8A444DE8A4CD156EBDC* ___match0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
Predicate_1_t19AD45D1959BE743073EC8A444DE8A4CD156EBDC* L_0 = ___match0;
if (L_0)
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)8, NULL);
}
IL_0009:
{
V_0 = 0;
goto IL_0011;
}
IL_000d:
{
int32_t L_1 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_1, 1));
}
IL_0011:
{
int32_t L_2 = V_0;
int32_t L_3 = (int32_t)__this->____size_2;
if ((((int32_t)L_2) >= ((int32_t)L_3)))
{
goto IL_002e;
}
}
{
Predicate_1_t19AD45D1959BE743073EC8A444DE8A4CD156EBDC* L_4 = ___match0;
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_5 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
int32_t L_6 = V_0;
NullCheck(L_5);
int32_t L_7 = L_6;
SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck(L_4);
bool L_9;
L_9 = Predicate_1_Invoke_mCAAFFB8B975CC9C9EB0020ABC8FC6826A53CBC68_inline(L_4, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (!L_9)
{
goto IL_000d;
}
}
IL_002e:
{
int32_t L_10 = V_0;
int32_t L_11 = (int32_t)__this->____size_2;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0039;
}
}
{
return 0;
}
IL_0039:
{
int32_t L_12 = V_0;
V_1 = ((int32_t)il2cpp_codegen_add(L_12, 1));
goto IL_0089;
}
IL_003f:
{
int32_t L_13 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_13, 1));
}
IL_0043:
{
int32_t L_14 = V_1;
int32_t L_15 = (int32_t)__this->____size_2;
if ((((int32_t)L_14) >= ((int32_t)L_15)))
{
goto IL_0060;
}
}
{
Predicate_1_t19AD45D1959BE743073EC8A444DE8A4CD156EBDC* L_16 = ___match0;
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_17 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
int32_t L_18 = V_1;
NullCheck(L_17);
int32_t L_19 = L_18;
SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
NullCheck(L_16);
bool L_21;
L_21 = Predicate_1_Invoke_mCAAFFB8B975CC9C9EB0020ABC8FC6826A53CBC68_inline(L_16, L_20, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (L_21)
{
goto IL_003f;
}
}
IL_0060:
{
int32_t L_22 = V_1;
int32_t L_23 = (int32_t)__this->____size_2;
if ((((int32_t)L_22) >= ((int32_t)L_23)))
{
goto IL_0089;
}
}
{
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_24 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
int32_t L_25 = V_0;
int32_t L_26 = L_25;
V_0 = ((int32_t)il2cpp_codegen_add(L_26, 1));
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_27 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
int32_t L_28 = V_1;
int32_t L_29 = L_28;
V_1 = ((int32_t)il2cpp_codegen_add(L_29, 1));
NullCheck(L_27);
int32_t L_30 = L_29;
SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 L_31 = (L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_30));
NullCheck(L_24);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(L_26), (SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452)L_31);
}
IL_0089:
{
int32_t L_32 = V_1;
int32_t L_33 = (int32_t)__this->____size_2;
if ((((int32_t)L_32) < ((int32_t)L_33)))
{
goto IL_0043;
}
}
{
}
{
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_34 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
int32_t L_35 = V_0;
int32_t L_36 = (int32_t)__this->____size_2;
int32_t L_37 = V_0;
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_34, L_35, ((int32_t)il2cpp_codegen_subtract(L_36, L_37)), NULL);
}
IL_00ad:
{
int32_t L_38 = (int32_t)__this->____size_2;
int32_t L_39 = V_0;
int32_t L_40 = V_0;
__this->____size_2 = L_40;
int32_t L_41 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_41, 1));
return ((int32_t)il2cpp_codegen_subtract(L_38, L_39));
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveAt_mB59317CB5118CD2B5049B80787D942A2ED5BAEC7_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, int32_t ___index0, const RuntimeMethod* method)
{
SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowArgumentOutOfRange_IndexException_mC7661B8C6DD827679C95FC6B6C08F8724174936D(NULL);
}
IL_000e:
{
int32_t L_2 = (int32_t)__this->____size_2;
__this->____size_2 = ((int32_t)il2cpp_codegen_subtract(L_2, 1));
int32_t L_3 = ___index0;
int32_t L_4 = (int32_t)__this->____size_2;
if ((((int32_t)L_3) >= ((int32_t)L_4)))
{
goto IL_0042;
}
}
{
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_5 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
int32_t L_6 = ___index0;
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_7 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
int32_t L_8 = ___index0;
int32_t L_9 = (int32_t)__this->____size_2;
int32_t L_10 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_5, ((int32_t)il2cpp_codegen_add(L_6, 1)), (RuntimeArray*)L_7, L_8, ((int32_t)il2cpp_codegen_subtract(L_9, L_10)), NULL);
}
IL_0042:
{
}
{
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_11 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
int32_t L_12 = (int32_t)__this->____size_2;
il2cpp_codegen_initobj((&V_0), sizeof(SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452));
SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 L_13 = V_0;
NullCheck(L_11);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(L_12), (SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452)L_13);
}
IL_0063:
{
int32_t L_14 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_14, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveRange_m045FD4015563234A38A111D864BECFC38A5188D7_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
int32_t L_5 = ___count1;
if ((((int32_t)L_5) <= ((int32_t)0)))
{
goto IL_008d;
}
}
{
int32_t L_6 = (int32_t)__this->____size_2;
int32_t L_7 = (int32_t)__this->____size_2;
int32_t L_8 = ___count1;
__this->____size_2 = ((int32_t)il2cpp_codegen_subtract(L_7, L_8));
int32_t L_9 = ___index0;
int32_t L_10 = (int32_t)__this->____size_2;
if ((((int32_t)L_9) >= ((int32_t)L_10)))
{
goto IL_0066;
}
}
{
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_11 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
int32_t L_12 = ___index0;
int32_t L_13 = ___count1;
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_14 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
int32_t L_15 = ___index0;
int32_t L_16 = (int32_t)__this->____size_2;
int32_t L_17 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_11, ((int32_t)il2cpp_codegen_add(L_12, L_13)), (RuntimeArray*)L_14, L_15, ((int32_t)il2cpp_codegen_subtract(L_16, L_17)), NULL);
}
IL_0066:
{
int32_t L_18 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_18, 1));
}
{
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_19 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
int32_t L_20 = (int32_t)__this->____size_2;
int32_t L_21 = ___count1;
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_19, L_20, L_21, NULL);
}
IL_008d:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Reverse_mCCF15DE7E89E57F400E84173EE3795917CBEE28B_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_m69AE2AA581A9F7CC56C2A779BA4524E1900ADF55_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
List_1_Reverse_m169C7F26335AC27556DA2D5E9CAC53879600837A(__this, 0, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 48));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Reverse_m169C7F26335AC27556DA2D5E9CAC53879600837A_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
int32_t L_5 = ___count1;
if ((((int32_t)L_5) <= ((int32_t)1)))
{
goto IL_0038;
}
}
{
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_6 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
int32_t L_7 = ___index0;
int32_t L_8 = ___count1;
Array_Reverse_TisSerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452_m862D6739F2B4F4D2D442A15E0804E6DDDD77F30B(L_6, L_7, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 49));
}
IL_0038:
{
int32_t L_9 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_9, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_mCBB4529230848EED1546B80769F38AFC99077DAB_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_m69AE2AA581A9F7CC56C2A779BA4524E1900ADF55_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
List_1_Sort_m1B48F59950323FDA69E911DCBE9C87A9C0CFB8D3(__this, 0, L_0, (RuntimeObject*)NULL, il2cpp_rgctx_method(method->klass->rgctx_data, 50));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m413F87B07166360705FCA3BF8770C3DF8A4C3E49_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_m69AE2AA581A9F7CC56C2A779BA4524E1900ADF55_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
RuntimeObject* L_1 = ___comparer0;
List_1_Sort_m1B48F59950323FDA69E911DCBE9C87A9C0CFB8D3(__this, 0, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 50));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m1B48F59950323FDA69E911DCBE9C87A9C0CFB8D3_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, int32_t ___index0, int32_t ___count1, RuntimeObject* ___comparer2, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
int32_t L_5 = ___count1;
if ((((int32_t)L_5) <= ((int32_t)1)))
{
goto IL_0039;
}
}
{
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_6 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
int32_t L_7 = ___index0;
int32_t L_8 = ___count1;
RuntimeObject* L_9 = ___comparer2;
Array_Sort_TisSerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452_m4D85E4FE7CE167DEA83D2CEEC2F18355E9C65754(L_6, L_7, L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 51));
}
IL_0039:
{
int32_t L_10 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_10, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_mC95DCE992AB79FFF59FD7680C6F2CD66EB36FB88_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, Comparison_1_t58FFF56353C5F80C81DD19A7906EBB581EB35E79* ___comparison0, const RuntimeMethod* method)
{
{
Comparison_1_t58FFF56353C5F80C81DD19A7906EBB581EB35E79* L_0 = ___comparison0;
if (L_0)
{
goto IL_000a;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)((int32_t)34), NULL);
}
IL_000a:
{
int32_t L_1 = (int32_t)__this->____size_2;
if ((((int32_t)L_1) <= ((int32_t)1)))
{
goto IL_0026;
}
}
{
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_2 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
int32_t L_3 = (int32_t)__this->____size_2;
Comparison_1_t58FFF56353C5F80C81DD19A7906EBB581EB35E79* L_4 = ___comparison0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 54));
ArraySortHelper_1_Sort_m39997300262F456AB52A60AA096AFE04D9A2A1AF(L_2, 0, L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 53));
}
IL_0026:
{
int32_t L_5 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_5, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* List_1_ToArray_m4DE72CA66437C79EA70B1622FCDD6C0B9D3A5B50_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, const RuntimeMethod* method)
{
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* V_0 = NULL;
{
int32_t L_0 = (int32_t)__this->____size_2;
if (L_0)
{
goto IL_000e;
}
}
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_1 = ((List_1_tE15A36783D21F016929125A00F602D220C32C84A_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
return L_1;
}
IL_000e:
{
int32_t L_2 = (int32_t)__this->____size_2;
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_3 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)(SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 3), (uint32_t)L_2);
V_0 = L_3;
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_4 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_5 = V_0;
int32_t L_6 = (int32_t)__this->____size_2;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_4, 0, (RuntimeArray*)L_5, 0, L_6, NULL);
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_7 = V_0;
return L_7;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_AddEnumerable_m9606977025BDE1ECF8FC27BAB22B2BEA3325E06C_gshared (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, RuntimeObject* ___enumerable0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 V_1;
memset((&V_1), 0, sizeof(V_1));
int32_t V_2 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
RuntimeObject* L_1 = ___enumerable0;
NullCheck(L_1);
RuntimeObject* L_2;
L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_1);
V_0 = L_2;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0063:
{
{
RuntimeObject* L_3 = V_0;
if (!L_3)
{
goto IL_006c;
}
}
{
RuntimeObject* L_4 = V_0;
NullCheck((RuntimeObject*)L_4);
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_4);
}
IL_006c:
{
return;
}
}
});
try
{
{
goto IL_0059_1;
}
IL_0017_1:
{
RuntimeObject* L_5 = V_0;
NullCheck(L_5);
SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 L_6;
L_6 = InterfaceFuncInvoker0< SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 40), L_5);
V_1 = L_6;
int32_t L_7 = (int32_t)__this->____size_2;
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_8 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
NullCheck(L_8);
if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)(((RuntimeArray*)L_8)->max_length))))))
{
goto IL_003c_1;
}
}
{
int32_t L_9 = (int32_t)__this->____size_2;
List_1_EnsureCapacity_mFC7CE2DAD1486472AD9C32D20031FBF334B93A76(__this, ((int32_t)il2cpp_codegen_add(L_9, 1)), il2cpp_rgctx_method(method->klass->rgctx_data, 15));
}
IL_003c_1:
{
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_10 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
int32_t L_11 = (int32_t)__this->____size_2;
V_2 = L_11;
int32_t L_12 = V_2;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_12, 1));
int32_t L_13 = V_2;
SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 L_14 = V_1;
NullCheck(L_10);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452)L_14);
}
IL_0059_1:
{
RuntimeObject* L_15 = V_0;
NullCheck((RuntimeObject*)L_15);
bool L_16;
L_16 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_15);
if (L_16)
{
goto IL_0017_1;
}
}
{
goto IL_006d;
}
}
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_006d:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__cctor_mEBDC745239411DC63CDCE3E64747DA84CA7BB0DD_gshared (const RuntimeMethod* method)
{
{
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_0 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)(SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)SZArrayNew(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 3), (uint32_t)0);
((List_1_tE15A36783D21F016929125A00F602D220C32C84A_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___s_emptyArray_5 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((List_1_tE15A36783D21F016929125A00F602D220C32C84A_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___s_emptyArray_5), (void*)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
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mDF511B6612E1E5D593A0191B2109B9D43EE273A9_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_0 = ((List_1_t2FCEA7635AA5C3B22E982462685B40276413F521_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_0);
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m5FFC90993678E1D6423051286E157146062A0593_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, int32_t ___capacity0, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
int32_t L_0 = ___capacity0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0012;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)12), (int32_t)4, NULL);
}
IL_0012:
{
int32_t L_1 = ___capacity0;
if (L_1)
{
goto IL_0021;
}
}
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_2 = ((List_1_t2FCEA7635AA5C3B22E982462685B40276413F521_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_2);
return;
}
IL_0021:
{
int32_t L_3 = ___capacity0;
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_4 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)(SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 3), (uint32_t)L_3);
__this->____items_1 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_4);
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m59D081B4C57D281CA83F66587E26FEB56D423187_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, RuntimeObject* ___collection0, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
int32_t V_1 = 0;
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
RuntimeObject* L_0 = ___collection0;
if (L_0)
{
goto IL_000f;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)6, NULL);
}
IL_000f:
{
RuntimeObject* L_1 = ___collection0;
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 5)));
RuntimeObject* L_2 = V_0;
if (!L_2)
{
goto IL_0050;
}
}
{
RuntimeObject* L_3 = V_0;
NullCheck(L_3);
int32_t L_4;
L_4 = InterfaceFuncInvoker0< int32_t >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
V_1 = L_4;
int32_t L_5 = V_1;
if (L_5)
{
goto IL_002f;
}
}
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_6 = ((List_1_t2FCEA7635AA5C3B22E982462685B40276413F521_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_6);
return;
}
IL_002f:
{
int32_t L_7 = V_1;
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_8 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)(SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 3), (uint32_t)L_7);
__this->____items_1 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_8);
RuntimeObject* L_9 = V_0;
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_10 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
NullCheck(L_9);
InterfaceActionInvoker2< SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*, int32_t >::Invoke(5, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_9, L_10, 0);
int32_t L_11 = V_1;
__this->____size_2 = L_11;
return;
}
IL_0050:
{
__this->____size_2 = 0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_12 = ((List_1_t2FCEA7635AA5C3B22E982462685B40276413F521_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_12;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_12);
RuntimeObject* L_13 = ___collection0;
List_1_AddEnumerable_m1F86EBB0D8E529AD1BA9B31671194AAEC1FA64C7(__this, L_13, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_get_Capacity_m54C792F56E71BBAF36D99213BBCAA3EB21B6033E_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, const RuntimeMethod* method)
{
{
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_0 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
NullCheck(L_0);
return ((int32_t)(((RuntimeArray*)L_0)->max_length));
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Capacity_m975C9D90192F7A73264947E27D693CC232ABF90C_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, int32_t ___value0, const RuntimeMethod* method)
{
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* V_0 = NULL;
{
int32_t L_0 = ___value0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((((int32_t)L_0) >= ((int32_t)L_1)))
{
goto IL_0012;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)15), (int32_t)((int32_t)21), NULL);
}
IL_0012:
{
int32_t L_2 = ___value0;
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_3 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
NullCheck(L_3);
if ((((int32_t)L_2) == ((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))
{
goto IL_0058;
}
}
{
int32_t L_4 = ___value0;
if ((((int32_t)L_4) <= ((int32_t)0)))
{
goto IL_004d;
}
}
{
int32_t L_5 = ___value0;
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_6 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)(SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 3), (uint32_t)L_5);
V_0 = L_6;
int32_t L_7 = (int32_t)__this->____size_2;
if ((((int32_t)L_7) <= ((int32_t)0)))
{
goto IL_0045;
}
}
{
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_8 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_9 = V_0;
int32_t L_10 = (int32_t)__this->____size_2;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_8, 0, (RuntimeArray*)L_9, 0, L_10, NULL);
}
IL_0045:
{
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_11 = V_0;
__this->____items_1 = L_11;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_11);
return;
}
IL_004d:
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_12 = ((List_1_t2FCEA7635AA5C3B22E982462685B40276413F521_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_12;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_12);
}
IL_0058:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mE81A223E9D4AA4DCA2561161DEB7272C270767F7_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
return L_0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_System_Collections_IList_get_IsFixedSize_mAD317660AF6DF41C72FD1D08CC633E36EF00FF6A_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m194A1B2C475A4D8C33CB4AF00D6D3FB09B6D9279_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_System_Collections_IList_get_IsReadOnly_m4E715AC6376A7D272C7DA804CDDDE3E8D1DE34D6_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_ICollection_get_SyncRoot_m5D19BA82B67A68A6F69BC20B23FC1104A9549C92_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = (RuntimeObject*)__this->____syncRoot_4;
if (L_0)
{
goto IL_001a;
}
}
{
RuntimeObject** L_1 = (RuntimeObject**)(&__this->____syncRoot_4);
RuntimeObject* L_2 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_2, NULL);
RuntimeObject* L_3;
L_3 = InterlockedCompareExchangeImpl<RuntimeObject*>(L_1, L_2, NULL);
}
IL_001a:
{
RuntimeObject* L_4 = (RuntimeObject*)__this->____syncRoot_4;
return L_4;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C List_1_get_Item_m19D55B15E3A425B61A510C4D4FBE7F6363161D82_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowArgumentOutOfRange_IndexException_mC7661B8C6DD827679C95FC6B6C08F8724174936D(NULL);
}
IL_000e:
{
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_2 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
int32_t L_3 = ___index0;
NullCheck(L_2);
int32_t L_4 = L_3;
SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
return L_5;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Item_mA031C25469EFCA152935F57B6E857621B046FB7A_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, int32_t ___index0, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C ___value1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowArgumentOutOfRange_IndexException_mC7661B8C6DD827679C95FC6B6C08F8724174936D(NULL);
}
IL_000e:
{
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_2 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
int32_t L_3 = ___index0;
SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C L_4 = ___value1;
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C)L_4);
int32_t L_5 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_5, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_IsCompatibleObject_mB94663A5C1A0011DE9A7F868D03E39280C9CAC80_gshared (RuntimeObject* ___value0, const RuntimeMethod* method)
{
SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C V_0;
memset((&V_0), 0, sizeof(V_0));
{
RuntimeObject* L_0 = ___value0;
if (((RuntimeObject*)IsInst((RuntimeObject*)L_0, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 9))))
{
goto IL_001f;
}
}
{
RuntimeObject* L_1 = ___value0;
if (L_1)
{
goto IL_001d;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C));
SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C L_2 = V_0;
SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C L_3 = L_2;
RuntimeObject* L_4 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_3);
return (bool)((((RuntimeObject*)(RuntimeObject*)L_4) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
}
IL_001d:
{
return (bool)0;
}
IL_001f:
{
return (bool)1;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_IList_get_Item_m4F5F1A9C29E8AD1D6EE9D7DA7720F80AB34BB41D_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C L_1;
L_1 = List_1_get_Item_m19D55B15E3A425B61A510C4D4FBE7F6363161D82(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C L_2 = L_1;
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 9), &L_2);
return L_3;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_System_Collections_IList_set_Item_m556B0936AB11B5C4321EB632A61F6B156865F0E8_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, int32_t ___index0, RuntimeObject* ___value1, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeObject* L_0 = ___value1;
ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisSerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C_m5D352935B6834839DA3DFCCBAA0A844FC09EB8EE(L_0, (int32_t)((int32_t)15), il2cpp_rgctx_method(method->klass->rgctx_data, 11));
}
try
{
int32_t L_1 = ___index0;
RuntimeObject* L_2 = ___value1;
List_1_set_Item_mA031C25469EFCA152935F57B6E857621B046FB7A(__this, L_1, ((*(SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C*)((SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C*)(SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 12));
goto IL_002a;
}
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0017;
}
throw e;
}
CATCH_0017:
{
RuntimeObject* L_3 = ___value1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->klass->rgctx_data, 13)) };
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
Type_t* L_5;
L_5 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_4, NULL);
ThrowHelper_ThrowWrongValueTypeArgumentException_mC1A6BBE43C360583C1E2C463D5B0AADF1E3E1910(L_3, L_5, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_002a;
}
IL_002a:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_m90D4191082A9625E71B5BC4A7BC252C5BD7E8299_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C ___item0, const RuntimeMethod* method)
{
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_1 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
V_0 = L_1;
int32_t L_2 = (int32_t)__this->____size_2;
V_1 = L_2;
int32_t L_3 = V_1;
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_4 = V_0;
NullCheck(L_4);
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
{
goto IL_0034;
}
}
{
int32_t L_5 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_6 = V_0;
int32_t L_7 = V_1;
SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C L_8 = ___item0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C)L_8);
return;
}
IL_0034:
{
SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C L_9 = ___item0;
List_1_AddWithResize_mAE7B1D480FC532D533FA051FA8E394D1ADDF3757(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void List_1_AddWithResize_mAE7B1D480FC532D533FA051FA8E394D1ADDF3757_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C ___item0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->____size_2;
V_0 = L_0;
int32_t L_1 = V_0;
List_1_EnsureCapacity_m3A7C5ABA9FB19F100803F8147B514C6FE6C5A133(__this, ((int32_t)il2cpp_codegen_add(L_1, 1)), il2cpp_rgctx_method(method->klass->rgctx_data, 15));
int32_t L_2 = V_0;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_2, 1));
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_3 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
int32_t L_4 = V_0;
SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C L_5 = ___item0;
NullCheck(L_3);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(L_4), (SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C)L_5);
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_System_Collections_IList_Add_m69B99E746E5D667121C4C85DCEFFD08C102F86BB_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeObject* L_0 = ___item0;
ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisSerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C_m5D352935B6834839DA3DFCCBAA0A844FC09EB8EE(L_0, (int32_t)((int32_t)20), il2cpp_rgctx_method(method->klass->rgctx_data, 11));
}
try
{
RuntimeObject* L_1 = ___item0;
List_1_Add_m90D4191082A9625E71B5BC4A7BC252C5BD7E8299_inline(__this, ((*(SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C*)((SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C*)(SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C*)UnBox(L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 16));
goto IL_0029;
}
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0016;
}
throw e;
}
CATCH_0016:
{
RuntimeObject* L_2 = ___item0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_3 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->klass->rgctx_data, 13)) };
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
Type_t* L_4;
L_4 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_3, NULL);
ThrowHelper_ThrowWrongValueTypeArgumentException_mC1A6BBE43C360583C1E2C463D5B0AADF1E3E1910(L_2, L_4, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0029;
}
IL_0029:
{
int32_t L_5;
L_5 = List_1_get_Count_mE81A223E9D4AA4DCA2561161DEB7272C270767F7_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
return ((int32_t)il2cpp_codegen_subtract(L_5, 1));
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_AddRange_m6258D7740604B2C096CC12D4B794EA311919EDF0_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, RuntimeObject* ___collection0, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
RuntimeObject* L_1 = ___collection0;
List_1_InsertRange_m46A473BEFE2D9C907045B0035F9312D0D978BC13(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 18));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyCollection_1_t3A3413BCAB006EAF1F0AD4A130CF22CE3B13A037* List_1_AsReadOnly_m8F917EEEE4AB003B019A74075E2C3792AEADB1A1_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, const RuntimeMethod* method)
{
{
ReadOnlyCollection_1_t3A3413BCAB006EAF1F0AD4A130CF22CE3B13A037* L_0 = (ReadOnlyCollection_1_t3A3413BCAB006EAF1F0AD4A130CF22CE3B13A037*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 19));
ReadOnlyCollection_1__ctor_m947C2CC67594BB34D0D6EE6B94D8C19A2AF3445B(L_0, (RuntimeObject*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
return L_0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_m61E7AF69A5BCFF7F971653572B0A46DD2C0E5ECF_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, int32_t ___index0, int32_t ___count1, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C ___item2, RuntimeObject* ___comparer3, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_5 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
int32_t L_6 = ___index0;
int32_t L_7 = ___count1;
SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C L_8 = ___item2;
RuntimeObject* L_9 = ___comparer3;
int32_t L_10;
L_10 = Array_BinarySearch_TisSerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C_m21E5604C94719811E7C2BBE5D7CA5EDA0EA4D3B4(L_5, L_6, L_7, L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 23));
return L_10;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_m384798E459C7A7D26CDC64DCA18B0C5C0398376D_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C ___item0, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_mE81A223E9D4AA4DCA2561161DEB7272C270767F7_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C L_1 = ___item0;
int32_t L_2;
L_2 = List_1_BinarySearch_m61E7AF69A5BCFF7F971653572B0A46DD2C0E5ECF(__this, 0, L_0, L_1, (RuntimeObject*)NULL, il2cpp_rgctx_method(method->klass->rgctx_data, 24));
return L_2;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_m4503041070111FB247CC79AF419862294D209C0E_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C ___item0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_mE81A223E9D4AA4DCA2561161DEB7272C270767F7_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C L_1 = ___item0;
RuntimeObject* L_2 = ___comparer1;
int32_t L_3;
L_3 = List_1_BinarySearch_m61E7AF69A5BCFF7F971653572B0A46DD2C0E5ECF(__this, 0, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 24));
return L_3;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Clear_mE06767F9629A9303A0732E40A99362DC2521F1B9_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
}
{
int32_t L_1 = (int32_t)__this->____size_2;
V_0 = L_1;
__this->____size_2 = 0;
int32_t L_2 = V_0;
if ((((int32_t)L_2) <= ((int32_t)0)))
{
goto IL_003c;
}
}
{
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_3 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
int32_t L_4 = V_0;
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_3, 0, L_4, NULL);
return;
}
IL_003c:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Contains_mC04FFCB9EBA1CD48953C861DAD7BFC6D20680B03_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C ___item0, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
if (!L_0)
{
goto IL_0016;
}
}
{
SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C L_1 = ___item0;
int32_t L_2;
L_2 = List_1_IndexOf_m524C2D0526AD60FEB7BD841C9A1DBFBB82CA6486(__this, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 26));
return (bool)((((int32_t)((((int32_t)L_2) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_0016:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_System_Collections_IList_Contains_mADA5300BCF48CE3586EE988309F651CB8311C542_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___item0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
bool L_1;
L_1 = List_1_IsCompatibleObject_mB94663A5C1A0011DE9A7F868D03E39280C9CAC80(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
if (!L_1)
{
goto IL_0015;
}
}
{
RuntimeObject* L_2 = ___item0;
bool L_3;
L_3 = List_1_Contains_mC04FFCB9EBA1CD48953C861DAD7BFC6D20680B03(__this, ((*(SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C*)((SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C*)(SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 28));
return L_3;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_CopyTo_m2AC36D27A896C66C7039A09ED43293244B37BCFD_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* ___array0, const RuntimeMethod* method)
{
{
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_0 = ___array0;
List_1_CopyTo_m0E6361A596C027F8333A552518F4FBFB1E79758A(__this, L_0, 0, il2cpp_rgctx_method(method->klass->rgctx_data, 29));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_System_Collections_ICollection_CopyTo_mE3605E79E7E251C669999FF03B85EC184C5B65F5_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, RuntimeArray* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeArray* L_0 = ___array0;
if (!L_0)
{
goto IL_0012;
}
}
{
RuntimeArray* L_1 = ___array0;
NullCheck(L_1);
int32_t L_2;
L_2 = Array_get_Rank_m9383A200A2ECC89ECA44FE5F812ECFB874449C5F(L_1, NULL);
if ((((int32_t)L_2) == ((int32_t)1)))
{
goto IL_0012;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)7, NULL);
}
IL_0012:
{
}
try
{
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_3 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
RuntimeArray* L_4 = ___array0;
int32_t L_5 = ___arrayIndex1;
int32_t L_6 = (int32_t)__this->____size_2;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_3, 0, L_4, L_5, L_6, NULL);
goto IL_0031;
}
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArrayTypeMismatchException_t95F1723A5A166E62D3FBEF9734DEFBF61594F8F1_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0029;
}
throw e;
}
CATCH_0029:
{
ThrowHelper_ThrowArgumentException_Argument_InvalidArrayType_m469A6A5731A0F1E94D8B609ED9D001C3A1652A58(NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0031;
}
IL_0031:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_CopyTo_m0E6361A596C027F8333A552518F4FBFB1E79758A_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_0 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
int32_t L_3 = (int32_t)__this->____size_2;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_0, 0, (RuntimeArray*)L_1, L_2, L_3, NULL);
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_EnsureCapacity_m3A7C5ABA9FB19F100803F8147B514C6FE6C5A133_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, int32_t ___min0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t G_B4_0 = 0;
{
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_0 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
NullCheck(L_0);
int32_t L_1 = ___min0;
if ((((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))) >= ((int32_t)L_1)))
{
goto IL_003d;
}
}
{
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_2 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
NullCheck(L_2);
if (!(((RuntimeArray*)L_2)->max_length))
{
goto IL_0020;
}
}
{
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_3 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
NullCheck(L_3);
G_B4_0 = ((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_3)->max_length)), 2));
goto IL_0021;
}
IL_0020:
{
G_B4_0 = 4;
}
IL_0021:
{
V_0 = G_B4_0;
int32_t L_4 = V_0;
if ((!(((uint32_t)L_4) > ((uint32_t)((int32_t)2146435071)))))
{
goto IL_0030;
}
}
{
V_0 = ((int32_t)2146435071);
}
IL_0030:
{
int32_t L_5 = V_0;
int32_t L_6 = ___min0;
if ((((int32_t)L_5) >= ((int32_t)L_6)))
{
goto IL_0036;
}
}
{
int32_t L_7 = ___min0;
V_0 = L_7;
}
IL_0036:
{
int32_t L_8 = V_0;
List_1_set_Capacity_m975C9D90192F7A73264947E27D693CC232ABF90C(__this, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 30));
}
IL_003d:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Exists_mB1EEB84FE224D2ECFBF33015A19D74D4C96EB764_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, Predicate_1_tC88052F39393D0E4E248EB8800665E2921E13909* ___match0, const RuntimeMethod* method)
{
{
Predicate_1_tC88052F39393D0E4E248EB8800665E2921E13909* L_0 = ___match0;
int32_t L_1;
L_1 = List_1_FindIndex_mA8C399896D8BC725B18D20518A34B18283F5484F(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 32));
return (bool)((((int32_t)((((int32_t)L_1) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C List_1_Find_mCDFDB03FB0E1792F2685DC049D3DCD9F42696D8C_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, Predicate_1_tC88052F39393D0E4E248EB8800665E2921E13909* ___match0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C V_1;
memset((&V_1), 0, sizeof(V_1));
{
Predicate_1_tC88052F39393D0E4E248EB8800665E2921E13909* L_0 = ___match0;
if (L_0)
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)8, NULL);
}
IL_0009:
{
V_0 = 0;
goto IL_0032;
}
IL_000d:
{
Predicate_1_tC88052F39393D0E4E248EB8800665E2921E13909* L_1 = ___match0;
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_2 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
int32_t L_3 = V_0;
NullCheck(L_2);
int32_t L_4 = L_3;
SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
NullCheck(L_1);
bool L_6;
L_6 = Predicate_1_Invoke_m8AE9297F7EBFDF86DC2736E37B03A98E7CEE6208_inline(L_1, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (!L_6)
{
goto IL_002e;
}
}
{
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_7 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
int32_t L_8 = V_0;
NullCheck(L_7);
int32_t L_9 = L_8;
SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
return L_10;
}
IL_002e:
{
int32_t L_11 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_11, 1));
}
IL_0032:
{
int32_t L_12 = V_0;
int32_t L_13 = (int32_t)__this->____size_2;
if ((((int32_t)L_12) < ((int32_t)L_13)))
{
goto IL_000d;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C));
SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C L_14 = V_1;
return L_14;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* List_1_FindAll_mDDB688745E7AB0CB7B99FFDA221073A50288AF5D_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, Predicate_1_tC88052F39393D0E4E248EB8800665E2921E13909* ___match0, const RuntimeMethod* method)
{
List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* V_0 = NULL;
int32_t V_1 = 0;
{
Predicate_1_tC88052F39393D0E4E248EB8800665E2921E13909* L_0 = ___match0;
if (L_0)
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)8, NULL);
}
IL_0009:
{
List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* L_1 = (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 0));
List_1__ctor_mDF511B6612E1E5D593A0191B2109B9D43EE273A9(L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
V_0 = L_1;
V_1 = 0;
goto IL_003d;
}
IL_0013:
{
Predicate_1_tC88052F39393D0E4E248EB8800665E2921E13909* L_2 = ___match0;
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_3 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
int32_t L_4 = V_1;
NullCheck(L_3);
int32_t L_5 = L_4;
SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
NullCheck(L_2);
bool L_7;
L_7 = Predicate_1_Invoke_m8AE9297F7EBFDF86DC2736E37B03A98E7CEE6208_inline(L_2, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (!L_7)
{
goto IL_0039;
}
}
{
List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* L_8 = V_0;
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_9 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
int32_t L_10 = V_1;
NullCheck(L_9);
int32_t L_11 = L_10;
SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
NullCheck(L_8);
List_1_Add_m90D4191082A9625E71B5BC4A7BC252C5BD7E8299_inline(L_8, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
}
IL_0039:
{
int32_t L_13 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_13, 1));
}
IL_003d:
{
int32_t L_14 = V_1;
int32_t L_15 = (int32_t)__this->____size_2;
if ((((int32_t)L_14) < ((int32_t)L_15)))
{
goto IL_0013;
}
}
{
List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* L_16 = V_0;
return L_16;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_mA8C399896D8BC725B18D20518A34B18283F5484F_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, Predicate_1_tC88052F39393D0E4E248EB8800665E2921E13909* ___match0, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
Predicate_1_tC88052F39393D0E4E248EB8800665E2921E13909* L_1 = ___match0;
int32_t L_2;
L_2 = List_1_FindIndex_mDADADD15306435E68B7C2B9DEAA02573ECC0B51A(__this, 0, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 35));
return L_2;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_mDADADD15306435E68B7C2B9DEAA02573ECC0B51A_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, int32_t ___startIndex0, int32_t ___count1, Predicate_1_tC88052F39393D0E4E248EB8800665E2921E13909* ___match2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
int32_t L_0 = ___startIndex0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) > ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowStartIndexArgumentOutOfRange_ArgumentOutOfRange_Index_m94BADCC6D7EBBD12BE8323775FFB43AF01499B0F(NULL);
}
IL_000e:
{
int32_t L_2 = ___count1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_001d;
}
}
{
int32_t L_3 = ___startIndex0;
int32_t L_4 = (int32_t)__this->____size_2;
int32_t L_5 = ___count1;
if ((((int32_t)L_3) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_4, L_5)))))
{
goto IL_0022;
}
}
IL_001d:
{
ThrowHelper_ThrowCountArgumentOutOfRange_ArgumentOutOfRange_Count_m6C4A7F645BDD8EB62B50CB76E84416D94620DCC7(NULL);
}
IL_0022:
{
Predicate_1_tC88052F39393D0E4E248EB8800665E2921E13909* L_6 = ___match2;
if (L_6)
{
goto IL_002b;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)8, NULL);
}
IL_002b:
{
int32_t L_7 = ___startIndex0;
int32_t L_8 = ___count1;
V_0 = ((int32_t)il2cpp_codegen_add(L_7, L_8));
int32_t L_9 = ___startIndex0;
V_1 = L_9;
goto IL_004d;
}
IL_0033:
{
Predicate_1_tC88052F39393D0E4E248EB8800665E2921E13909* L_10 = ___match2;
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_11 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
int32_t L_12 = V_1;
NullCheck(L_11);
int32_t L_13 = L_12;
SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C L_14 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_13));
NullCheck(L_10);
bool L_15;
L_15 = Predicate_1_Invoke_m8AE9297F7EBFDF86DC2736E37B03A98E7CEE6208_inline(L_10, L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (!L_15)
{
goto IL_0049;
}
}
{
int32_t L_16 = V_1;
return L_16;
}
IL_0049:
{
int32_t L_17 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_17, 1));
}
IL_004d:
{
int32_t L_18 = V_1;
int32_t L_19 = V_0;
if ((((int32_t)L_18) < ((int32_t)L_19)))
{
goto IL_0033;
}
}
{
return (-1);
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_ForEach_m41E24CBCFC150713C1BE070548CD1BA005FF1894_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, Action_1_tD86C2FCC7B89EA018509622FD8BA07E5851ED1D9* ___action0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
Action_1_tD86C2FCC7B89EA018509622FD8BA07E5851ED1D9* L_0 = ___action0;
if (L_0)
{
goto IL_000a;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)((int32_t)33), NULL);
}
IL_000a:
{
int32_t L_1 = (int32_t)__this->____version_3;
V_0 = L_1;
V_1 = 0;
goto IL_0034;
}
IL_0015:
{
int32_t L_2 = V_0;
int32_t L_3 = (int32_t)__this->____version_3;
if ((!(((uint32_t)L_2) == ((uint32_t)L_3))))
{
goto IL_003d;
}
}
{
Action_1_tD86C2FCC7B89EA018509622FD8BA07E5851ED1D9* L_4 = ___action0;
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_5 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
int32_t L_6 = V_1;
NullCheck(L_5);
int32_t L_7 = L_6;
SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck(L_4);
Action_1_Invoke_m8186B7CA741A9C5ACC10D5B1572DB2B8A5800C00_inline(L_4, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 37));
int32_t L_9 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_9, 1));
}
IL_0034:
{
int32_t L_10 = V_1;
int32_t L_11 = (int32_t)__this->____size_2;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0015;
}
}
IL_003d:
{
int32_t L_12 = V_0;
int32_t L_13 = (int32_t)__this->____version_3;
if ((((int32_t)L_12) == ((int32_t)L_13)))
{
goto IL_004b;
}
}
{
ThrowHelper_ThrowInvalidOperationException_InvalidOperation_EnumFailedVersion_m5331E2E0EC0E36843D53F439C2529530595ACE9F(NULL);
}
IL_004b:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tD348BAA5B9575AFEB2F626A5366EBD048E31D7CD List_1_GetEnumerator_mFBCD305E26DF17679838A948438689EDF77B2815_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, const RuntimeMethod* method)
{
{
Enumerator_tD348BAA5B9575AFEB2F626A5366EBD048E31D7CD L_0;
memset((&L_0), 0, sizeof(L_0));
Enumerator__ctor_m1EC4A0FEE0303C1C2DE4379C588489BF390331CE((&L_0), __this, il2cpp_rgctx_method(method->klass->rgctx_data, 39));
return L_0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m31FBFF779BA910B688BA2C53CC9BB08F4390B79E_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, const RuntimeMethod* method)
{
{
Enumerator_tD348BAA5B9575AFEB2F626A5366EBD048E31D7CD L_0;
memset((&L_0), 0, sizeof(L_0));
Enumerator__ctor_m1EC4A0FEE0303C1C2DE4379C588489BF390331CE((&L_0), __this, il2cpp_rgctx_method(method->klass->rgctx_data, 39));
Enumerator_tD348BAA5B9575AFEB2F626A5366EBD048E31D7CD L_1 = L_0;
RuntimeObject* L_2 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 38), &L_1);
return (RuntimeObject*)L_2;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_IEnumerable_GetEnumerator_m863F1E5C6D50477A08E8530C967FF8C5F843FB09_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, const RuntimeMethod* method)
{
{
Enumerator_tD348BAA5B9575AFEB2F626A5366EBD048E31D7CD L_0;
memset((&L_0), 0, sizeof(L_0));
Enumerator__ctor_m1EC4A0FEE0303C1C2DE4379C588489BF390331CE((&L_0), __this, il2cpp_rgctx_method(method->klass->rgctx_data, 39));
Enumerator_tD348BAA5B9575AFEB2F626A5366EBD048E31D7CD L_1 = L_0;
RuntimeObject* L_2 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 38), &L_1);
return (RuntimeObject*)L_2;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* List_1_GetRange_mC0C6112682F1A56FC7A795D3F0A8DF960D5811E4_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method)
{
List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* V_0 = NULL;
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
int32_t L_5 = ___count1;
List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* L_6 = (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 0));
List_1__ctor_m5FFC90993678E1D6423051286E157146062A0593(L_6, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 41));
V_0 = L_6;
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_7 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
int32_t L_8 = ___index0;
List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* L_9 = V_0;
NullCheck(L_9);
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_10 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)L_9->____items_1;
int32_t L_11 = ___count1;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_7, L_8, (RuntimeArray*)L_10, 0, L_11, NULL);
List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* L_12 = V_0;
int32_t L_13 = ___count1;
NullCheck(L_12);
L_12->____size_2 = L_13;
List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* L_14 = V_0;
return L_14;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_IndexOf_m524C2D0526AD60FEB7BD841C9A1DBFBB82CA6486_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C ___item0, const RuntimeMethod* method)
{
{
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_0 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C L_1 = ___item0;
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3;
L_3 = Array_IndexOf_TisSerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C_m4A83F5748E8869794593BC1EB839E7038BB571FD(L_0, L_1, 0, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 42));
return L_3;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_System_Collections_IList_IndexOf_mA1024BFDAF3DF6A6CEA286378D81CC8FFA91D659_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___item0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
bool L_1;
L_1 = List_1_IsCompatibleObject_mB94663A5C1A0011DE9A7F868D03E39280C9CAC80(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
if (!L_1)
{
goto IL_0015;
}
}
{
RuntimeObject* L_2 = ___item0;
int32_t L_3;
L_3 = List_1_IndexOf_m524C2D0526AD60FEB7BD841C9A1DBFBB82CA6486(__this, ((*(SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C*)((SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C*)(SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 26));
return L_3;
}
IL_0015:
{
return (-1);
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Insert_m75F6C8341EC07139DE8440C481068B3D64CA69D5_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, int32_t ___index0, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C ___item1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) > ((uint32_t)L_1))))
{
goto IL_0012;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)13), (int32_t)((int32_t)27), NULL);
}
IL_0012:
{
int32_t L_2 = (int32_t)__this->____size_2;
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_3 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
NullCheck(L_3);
if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)(((RuntimeArray*)L_3)->max_length))))))
{
goto IL_0030;
}
}
{
int32_t L_4 = (int32_t)__this->____size_2;
List_1_EnsureCapacity_m3A7C5ABA9FB19F100803F8147B514C6FE6C5A133(__this, ((int32_t)il2cpp_codegen_add(L_4, 1)), il2cpp_rgctx_method(method->klass->rgctx_data, 15));
}
IL_0030:
{
int32_t L_5 = ___index0;
int32_t L_6 = (int32_t)__this->____size_2;
if ((((int32_t)L_5) >= ((int32_t)L_6)))
{
goto IL_0056;
}
}
{
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_7 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
int32_t L_8 = ___index0;
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_9 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
int32_t L_10 = ___index0;
int32_t L_11 = (int32_t)__this->____size_2;
int32_t L_12 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_7, L_8, (RuntimeArray*)L_9, ((int32_t)il2cpp_codegen_add(L_10, 1)), ((int32_t)il2cpp_codegen_subtract(L_11, L_12)), NULL);
}
IL_0056:
{
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_13 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
int32_t L_14 = ___index0;
SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C L_15 = ___item1;
NullCheck(L_13);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C)L_15);
int32_t L_16 = (int32_t)__this->____size_2;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_16, 1));
int32_t L_17 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_17, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_System_Collections_IList_Insert_mA0331B0C0C30EFE931781520FD1E2FBAD61A7C38_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, int32_t ___index0, RuntimeObject* ___item1, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeObject* L_0 = ___item1;
ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisSerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C_m5D352935B6834839DA3DFCCBAA0A844FC09EB8EE(L_0, (int32_t)((int32_t)20), il2cpp_rgctx_method(method->klass->rgctx_data, 11));
}
try
{
int32_t L_1 = ___index0;
RuntimeObject* L_2 = ___item1;
List_1_Insert_m75F6C8341EC07139DE8440C481068B3D64CA69D5(__this, L_1, ((*(SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C*)((SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C*)(SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 43));
goto IL_002a;
}
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0017;
}
throw e;
}
CATCH_0017:
{
RuntimeObject* L_3 = ___item1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->klass->rgctx_data, 13)) };
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
Type_t* L_5;
L_5 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_4, NULL);
ThrowHelper_ThrowWrongValueTypeArgumentException_mC1A6BBE43C360583C1E2C463D5B0AADF1E3E1910(L_3, L_5, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_002a;
}
IL_002a:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_InsertRange_m46A473BEFE2D9C907045B0035F9312D0D978BC13_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, int32_t ___index0, RuntimeObject* ___collection1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
int32_t V_1 = 0;
RuntimeObject* V_2 = NULL;
{
RuntimeObject* L_0 = ___collection1;
if (L_0)
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)6, NULL);
}
IL_0009:
{
int32_t L_1 = ___index0;
int32_t L_2 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_1) > ((uint32_t)L_2))))
{
goto IL_0017;
}
}
{
ThrowHelper_ThrowArgumentOutOfRange_IndexException_mC7661B8C6DD827679C95FC6B6C08F8724174936D(NULL);
}
IL_0017:
{
RuntimeObject* L_3 = ___collection1;
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 5)));
RuntimeObject* L_4 = V_0;
if (!L_4)
{
goto IL_00bc;
}
}
{
RuntimeObject* L_5 = V_0;
NullCheck(L_5);
int32_t L_6;
L_6 = InterfaceFuncInvoker0< int32_t >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_5);
V_1 = L_6;
int32_t L_7 = V_1;
if ((((int32_t)L_7) <= ((int32_t)0)))
{
goto IL_00fb;
}
}
{
int32_t L_8 = (int32_t)__this->____size_2;
int32_t L_9 = V_1;
List_1_EnsureCapacity_m3A7C5ABA9FB19F100803F8147B514C6FE6C5A133(__this, ((int32_t)il2cpp_codegen_add(L_8, L_9)), il2cpp_rgctx_method(method->klass->rgctx_data, 15));
int32_t L_10 = ___index0;
int32_t L_11 = (int32_t)__this->____size_2;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0066;
}
}
{
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_12 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
int32_t L_13 = ___index0;
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_14 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
int32_t L_15 = ___index0;
int32_t L_16 = V_1;
int32_t L_17 = (int32_t)__this->____size_2;
int32_t L_18 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_12, L_13, (RuntimeArray*)L_14, ((int32_t)il2cpp_codegen_add(L_15, L_16)), ((int32_t)il2cpp_codegen_subtract(L_17, L_18)), NULL);
}
IL_0066:
{
RuntimeObject* L_19 = V_0;
if ((!(((RuntimeObject*)(List_1_t2FCEA7635AA5C3B22E982462685B40276413F521*)__this) == ((RuntimeObject*)(RuntimeObject*)L_19))))
{
goto IL_009f;
}
}
{
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_20 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_21 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
int32_t L_22 = ___index0;
int32_t L_23 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_20, 0, (RuntimeArray*)L_21, L_22, L_23, NULL);
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_24 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
int32_t L_25 = ___index0;
int32_t L_26 = V_1;
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_27 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
int32_t L_28 = ___index0;
int32_t L_29 = (int32_t)__this->____size_2;
int32_t L_30 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_24, ((int32_t)il2cpp_codegen_add(L_25, L_26)), (RuntimeArray*)L_27, ((int32_t)il2cpp_codegen_multiply(L_28, 2)), ((int32_t)il2cpp_codegen_subtract(L_29, L_30)), NULL);
goto IL_00ac;
}
IL_009f:
{
RuntimeObject* L_31 = V_0;
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_32 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
int32_t L_33 = ___index0;
NullCheck(L_31);
InterfaceActionInvoker2< SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*, int32_t >::Invoke(5, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_31, L_32, L_33);
}
IL_00ac:
{
int32_t L_34 = (int32_t)__this->____size_2;
int32_t L_35 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_34, L_35));
goto IL_00fb;
}
IL_00bc:
{
int32_t L_36 = ___index0;
int32_t L_37 = (int32_t)__this->____size_2;
if ((((int32_t)L_36) >= ((int32_t)L_37)))
{
goto IL_00f4;
}
}
{
RuntimeObject* L_38 = ___collection1;
NullCheck(L_38);
RuntimeObject* L_39;
L_39 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_38);
V_2 = L_39;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00ea:
{
{
RuntimeObject* L_40 = V_2;
if (!L_40)
{
goto IL_00f3;
}
}
{
RuntimeObject* L_41 = V_2;
NullCheck((RuntimeObject*)L_41);
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_41);
}
IL_00f3:
{
return;
}
}
});
try
{
{
goto IL_00e0_1;
}
IL_00ce_1:
{
int32_t L_42 = ___index0;
int32_t L_43 = L_42;
___index0 = ((int32_t)il2cpp_codegen_add(L_43, 1));
RuntimeObject* L_44 = V_2;
NullCheck(L_44);
SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C L_45;
L_45 = InterfaceFuncInvoker0< SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 40), L_44);
List_1_Insert_m75F6C8341EC07139DE8440C481068B3D64CA69D5(__this, L_43, L_45, il2cpp_rgctx_method(method->klass->rgctx_data, 43));
}
IL_00e0_1:
{
RuntimeObject* L_46 = V_2;
NullCheck((RuntimeObject*)L_46);
bool L_47;
L_47 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_46);
if (L_47)
{
goto IL_00ce_1;
}
}
{
goto IL_00fb;
}
}
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00f4:
{
RuntimeObject* L_48 = ___collection1;
List_1_AddEnumerable_m1F86EBB0D8E529AD1BA9B31671194AAEC1FA64C7(__this, L_48, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
}
IL_00fb:
{
int32_t L_49 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_49, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Remove_mF8D55CF31B558EBA0DFACC22240B272EDAADEE4D_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C ___item0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C L_0 = ___item0;
int32_t L_1;
L_1 = List_1_IndexOf_m524C2D0526AD60FEB7BD841C9A1DBFBB82CA6486(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 26));
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0015;
}
}
{
int32_t L_3 = V_0;
List_1_RemoveAt_mB4E1987A0D4D6F6D53A06D4C18DCD7863499137E(__this, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 46));
return (bool)1;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_System_Collections_IList_Remove_m2C362162080F373834442D4DD335F513AB53B80F_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___item0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
bool L_1;
L_1 = List_1_IsCompatibleObject_mB94663A5C1A0011DE9A7F868D03E39280C9CAC80(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
if (!L_1)
{
goto IL_0015;
}
}
{
RuntimeObject* L_2 = ___item0;
bool L_3;
L_3 = List_1_Remove_mF8D55CF31B558EBA0DFACC22240B272EDAADEE4D(__this, ((*(SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C*)((SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C*)(SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 47));
}
IL_0015:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_RemoveAll_m85695089738864B45AD0EEF34B13489B82306C69_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, Predicate_1_tC88052F39393D0E4E248EB8800665E2921E13909* ___match0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
Predicate_1_tC88052F39393D0E4E248EB8800665E2921E13909* L_0 = ___match0;
if (L_0)
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)8, NULL);
}
IL_0009:
{
V_0 = 0;
goto IL_0011;
}
IL_000d:
{
int32_t L_1 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_1, 1));
}
IL_0011:
{
int32_t L_2 = V_0;
int32_t L_3 = (int32_t)__this->____size_2;
if ((((int32_t)L_2) >= ((int32_t)L_3)))
{
goto IL_002e;
}
}
{
Predicate_1_tC88052F39393D0E4E248EB8800665E2921E13909* L_4 = ___match0;
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_5 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
int32_t L_6 = V_0;
NullCheck(L_5);
int32_t L_7 = L_6;
SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck(L_4);
bool L_9;
L_9 = Predicate_1_Invoke_m8AE9297F7EBFDF86DC2736E37B03A98E7CEE6208_inline(L_4, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (!L_9)
{
goto IL_000d;
}
}
IL_002e:
{
int32_t L_10 = V_0;
int32_t L_11 = (int32_t)__this->____size_2;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0039;
}
}
{
return 0;
}
IL_0039:
{
int32_t L_12 = V_0;
V_1 = ((int32_t)il2cpp_codegen_add(L_12, 1));
goto IL_0089;
}
IL_003f:
{
int32_t L_13 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_13, 1));
}
IL_0043:
{
int32_t L_14 = V_1;
int32_t L_15 = (int32_t)__this->____size_2;
if ((((int32_t)L_14) >= ((int32_t)L_15)))
{
goto IL_0060;
}
}
{
Predicate_1_tC88052F39393D0E4E248EB8800665E2921E13909* L_16 = ___match0;
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_17 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
int32_t L_18 = V_1;
NullCheck(L_17);
int32_t L_19 = L_18;
SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
NullCheck(L_16);
bool L_21;
L_21 = Predicate_1_Invoke_m8AE9297F7EBFDF86DC2736E37B03A98E7CEE6208_inline(L_16, L_20, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (L_21)
{
goto IL_003f;
}
}
IL_0060:
{
int32_t L_22 = V_1;
int32_t L_23 = (int32_t)__this->____size_2;
if ((((int32_t)L_22) >= ((int32_t)L_23)))
{
goto IL_0089;
}
}
{
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_24 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
int32_t L_25 = V_0;
int32_t L_26 = L_25;
V_0 = ((int32_t)il2cpp_codegen_add(L_26, 1));
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_27 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
int32_t L_28 = V_1;
int32_t L_29 = L_28;
V_1 = ((int32_t)il2cpp_codegen_add(L_29, 1));
NullCheck(L_27);
int32_t L_30 = L_29;
SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C L_31 = (L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_30));
NullCheck(L_24);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(L_26), (SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C)L_31);
}
IL_0089:
{
int32_t L_32 = V_1;
int32_t L_33 = (int32_t)__this->____size_2;
if ((((int32_t)L_32) < ((int32_t)L_33)))
{
goto IL_0043;
}
}
{
}
{
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_34 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
int32_t L_35 = V_0;
int32_t L_36 = (int32_t)__this->____size_2;
int32_t L_37 = V_0;
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_34, L_35, ((int32_t)il2cpp_codegen_subtract(L_36, L_37)), NULL);
}
IL_00ad:
{
int32_t L_38 = (int32_t)__this->____size_2;
int32_t L_39 = V_0;
int32_t L_40 = V_0;
__this->____size_2 = L_40;
int32_t L_41 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_41, 1));
return ((int32_t)il2cpp_codegen_subtract(L_38, L_39));
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveAt_mB4E1987A0D4D6F6D53A06D4C18DCD7863499137E_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, int32_t ___index0, const RuntimeMethod* method)
{
SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowArgumentOutOfRange_IndexException_mC7661B8C6DD827679C95FC6B6C08F8724174936D(NULL);
}
IL_000e:
{
int32_t L_2 = (int32_t)__this->____size_2;
__this->____size_2 = ((int32_t)il2cpp_codegen_subtract(L_2, 1));
int32_t L_3 = ___index0;
int32_t L_4 = (int32_t)__this->____size_2;
if ((((int32_t)L_3) >= ((int32_t)L_4)))
{
goto IL_0042;
}
}
{
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_5 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
int32_t L_6 = ___index0;
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_7 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
int32_t L_8 = ___index0;
int32_t L_9 = (int32_t)__this->____size_2;
int32_t L_10 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_5, ((int32_t)il2cpp_codegen_add(L_6, 1)), (RuntimeArray*)L_7, L_8, ((int32_t)il2cpp_codegen_subtract(L_9, L_10)), NULL);
}
IL_0042:
{
}
{
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_11 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
int32_t L_12 = (int32_t)__this->____size_2;
il2cpp_codegen_initobj((&V_0), sizeof(SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C));
SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C L_13 = V_0;
NullCheck(L_11);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(L_12), (SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C)L_13);
}
IL_0063:
{
int32_t L_14 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_14, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveRange_m4467AA58541637782D69785CC3B60A47A9E35170_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
int32_t L_5 = ___count1;
if ((((int32_t)L_5) <= ((int32_t)0)))
{
goto IL_008d;
}
}
{
int32_t L_6 = (int32_t)__this->____size_2;
int32_t L_7 = (int32_t)__this->____size_2;
int32_t L_8 = ___count1;
__this->____size_2 = ((int32_t)il2cpp_codegen_subtract(L_7, L_8));
int32_t L_9 = ___index0;
int32_t L_10 = (int32_t)__this->____size_2;
if ((((int32_t)L_9) >= ((int32_t)L_10)))
{
goto IL_0066;
}
}
{
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_11 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
int32_t L_12 = ___index0;
int32_t L_13 = ___count1;
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_14 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
int32_t L_15 = ___index0;
int32_t L_16 = (int32_t)__this->____size_2;
int32_t L_17 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_11, ((int32_t)il2cpp_codegen_add(L_12, L_13)), (RuntimeArray*)L_14, L_15, ((int32_t)il2cpp_codegen_subtract(L_16, L_17)), NULL);
}
IL_0066:
{
int32_t L_18 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_18, 1));
}
{
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_19 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
int32_t L_20 = (int32_t)__this->____size_2;
int32_t L_21 = ___count1;
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_19, L_20, L_21, NULL);
}
IL_008d:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Reverse_m42FA75D3CDF03E6D580936F19CE7B66F5766262B_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_mE81A223E9D4AA4DCA2561161DEB7272C270767F7_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
List_1_Reverse_m70E68459859E2C8BC615437D92B5B9B1A5D72BFF(__this, 0, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 48));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Reverse_m70E68459859E2C8BC615437D92B5B9B1A5D72BFF_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
int32_t L_5 = ___count1;
if ((((int32_t)L_5) <= ((int32_t)1)))
{
goto IL_0038;
}
}
{
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_6 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
int32_t L_7 = ___index0;
int32_t L_8 = ___count1;
Array_Reverse_TisSerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C_mD3A257991DAB7EAD1DD8487EC2F9DE58215C7592(L_6, L_7, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 49));
}
IL_0038:
{
int32_t L_9 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_9, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_mE4EB8F8E53B63613363250838EDC48C267C94409_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_mE81A223E9D4AA4DCA2561161DEB7272C270767F7_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
List_1_Sort_m5254C176BB64840E14C149B31066CF9044F2D2CF(__this, 0, L_0, (RuntimeObject*)NULL, il2cpp_rgctx_method(method->klass->rgctx_data, 50));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_mC93B9728F7067AB5045631001A00C81E542BCA98_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_mE81A223E9D4AA4DCA2561161DEB7272C270767F7_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
RuntimeObject* L_1 = ___comparer0;
List_1_Sort_m5254C176BB64840E14C149B31066CF9044F2D2CF(__this, 0, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 50));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m5254C176BB64840E14C149B31066CF9044F2D2CF_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, int32_t ___index0, int32_t ___count1, RuntimeObject* ___comparer2, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
int32_t L_5 = ___count1;
if ((((int32_t)L_5) <= ((int32_t)1)))
{
goto IL_0039;
}
}
{
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_6 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
int32_t L_7 = ___index0;
int32_t L_8 = ___count1;
RuntimeObject* L_9 = ___comparer2;
Array_Sort_TisSerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C_mA58CCDCCF75E20773ED8435ABB3D91AE775C757E(L_6, L_7, L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 51));
}
IL_0039:
{
int32_t L_10 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_10, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_mE0878729E2044C3C90F41E880349415060A8B224_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, Comparison_1_t99F688A497AAEF1CCF78A6A519D6262CD5BD4B9D* ___comparison0, const RuntimeMethod* method)
{
{
Comparison_1_t99F688A497AAEF1CCF78A6A519D6262CD5BD4B9D* L_0 = ___comparison0;
if (L_0)
{
goto IL_000a;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)((int32_t)34), NULL);
}
IL_000a:
{
int32_t L_1 = (int32_t)__this->____size_2;
if ((((int32_t)L_1) <= ((int32_t)1)))
{
goto IL_0026;
}
}
{
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_2 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
int32_t L_3 = (int32_t)__this->____size_2;
Comparison_1_t99F688A497AAEF1CCF78A6A519D6262CD5BD4B9D* L_4 = ___comparison0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 54));
ArraySortHelper_1_Sort_mA360D8B1440745F35A3F6FC4CB3A22BB56FB3FEF(L_2, 0, L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 53));
}
IL_0026:
{
int32_t L_5 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_5, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* List_1_ToArray_m001C136F5A5B73F844308DBD0202218ED98038FC_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, const RuntimeMethod* method)
{
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* V_0 = NULL;
{
int32_t L_0 = (int32_t)__this->____size_2;
if (L_0)
{
goto IL_000e;
}
}
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_1 = ((List_1_t2FCEA7635AA5C3B22E982462685B40276413F521_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
return L_1;
}
IL_000e:
{
int32_t L_2 = (int32_t)__this->____size_2;
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_3 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)(SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 3), (uint32_t)L_2);
V_0 = L_3;
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_4 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_5 = V_0;
int32_t L_6 = (int32_t)__this->____size_2;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_4, 0, (RuntimeArray*)L_5, 0, L_6, NULL);
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_7 = V_0;
return L_7;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_AddEnumerable_m1F86EBB0D8E529AD1BA9B31671194AAEC1FA64C7_gshared (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, RuntimeObject* ___enumerable0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C V_1;
memset((&V_1), 0, sizeof(V_1));
int32_t V_2 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
RuntimeObject* L_1 = ___enumerable0;
NullCheck(L_1);
RuntimeObject* L_2;
L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_1);
V_0 = L_2;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0063:
{
{
RuntimeObject* L_3 = V_0;
if (!L_3)
{
goto IL_006c;
}
}
{
RuntimeObject* L_4 = V_0;
NullCheck((RuntimeObject*)L_4);
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_4);
}
IL_006c:
{
return;
}
}
});
try
{
{
goto IL_0059_1;
}
IL_0017_1:
{
RuntimeObject* L_5 = V_0;
NullCheck(L_5);
SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C L_6;
L_6 = InterfaceFuncInvoker0< SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 40), L_5);
V_1 = L_6;
int32_t L_7 = (int32_t)__this->____size_2;
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_8 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
NullCheck(L_8);
if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)(((RuntimeArray*)L_8)->max_length))))))
{
goto IL_003c_1;
}
}
{
int32_t L_9 = (int32_t)__this->____size_2;
List_1_EnsureCapacity_m3A7C5ABA9FB19F100803F8147B514C6FE6C5A133(__this, ((int32_t)il2cpp_codegen_add(L_9, 1)), il2cpp_rgctx_method(method->klass->rgctx_data, 15));
}
IL_003c_1:
{
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_10 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
int32_t L_11 = (int32_t)__this->____size_2;
V_2 = L_11;
int32_t L_12 = V_2;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_12, 1));
int32_t L_13 = V_2;
SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C L_14 = V_1;
NullCheck(L_10);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C)L_14);
}
IL_0059_1:
{
RuntimeObject* L_15 = V_0;
NullCheck((RuntimeObject*)L_15);
bool L_16;
L_16 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_15);
if (L_16)
{
goto IL_0017_1;
}
}
{
goto IL_006d;
}
}
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_006d:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__cctor_mB1EF2C4F4201624E5C847C7D778BEDB4973414DA_gshared (const RuntimeMethod* method)
{
{
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_0 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)(SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)SZArrayNew(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 3), (uint32_t)0);
((List_1_t2FCEA7635AA5C3B22E982462685B40276413F521_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___s_emptyArray_5 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((List_1_t2FCEA7635AA5C3B22E982462685B40276413F521_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___s_emptyArray_5), (void*)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
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mFEF8BE0609A5B0185A946E4BE78E3AE078DCDFDF_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_0 = ((List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_0);
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m9D4C783EADEFE471AE4694A264FC274077D002B4_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___capacity0, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
int32_t L_0 = ___capacity0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0012;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)12), (int32_t)4, NULL);
}
IL_0012:
{
int32_t L_1 = ___capacity0;
if (L_1)
{
goto IL_0021;
}
}
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_2 = ((List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_2);
return;
}
IL_0021:
{
int32_t L_3 = ___capacity0;
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_4 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)(SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 3), (uint32_t)L_3);
__this->____items_1 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_4);
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m9B0EBFC1936470C69C4E10C853BDA10392BBB663_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, RuntimeObject* ___collection0, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
int32_t V_1 = 0;
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
RuntimeObject* L_0 = ___collection0;
if (L_0)
{
goto IL_000f;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)6, NULL);
}
IL_000f:
{
RuntimeObject* L_1 = ___collection0;
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 5)));
RuntimeObject* L_2 = V_0;
if (!L_2)
{
goto IL_0050;
}
}
{
RuntimeObject* L_3 = V_0;
NullCheck(L_3);
int32_t L_4;
L_4 = InterfaceFuncInvoker0< int32_t >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
V_1 = L_4;
int32_t L_5 = V_1;
if (L_5)
{
goto IL_002f;
}
}
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_6 = ((List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_6);
return;
}
IL_002f:
{
int32_t L_7 = V_1;
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_8 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)(SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 3), (uint32_t)L_7);
__this->____items_1 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_8);
RuntimeObject* L_9 = V_0;
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_10 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
NullCheck(L_9);
InterfaceActionInvoker2< SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*, int32_t >::Invoke(5, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_9, L_10, 0);
int32_t L_11 = V_1;
__this->____size_2 = L_11;
return;
}
IL_0050:
{
__this->____size_2 = 0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_12 = ((List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_12;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_12);
RuntimeObject* L_13 = ___collection0;
List_1_AddEnumerable_mDF2147E522AD80A7B6A79CF8E7F00EC7DBF8A032(__this, L_13, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_get_Capacity_m243B21DC306289B2D1B21D4C5F06F2F2C19DFA60_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, const RuntimeMethod* method)
{
{
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_0 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
NullCheck(L_0);
return ((int32_t)(((RuntimeArray*)L_0)->max_length));
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Capacity_m40FE27C2AB4F6F5F863957210FA90C1BF581D293_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___value0, const RuntimeMethod* method)
{
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* V_0 = NULL;
{
int32_t L_0 = ___value0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((((int32_t)L_0) >= ((int32_t)L_1)))
{
goto IL_0012;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)15), (int32_t)((int32_t)21), NULL);
}
IL_0012:
{
int32_t L_2 = ___value0;
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_3 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
NullCheck(L_3);
if ((((int32_t)L_2) == ((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))
{
goto IL_0058;
}
}
{
int32_t L_4 = ___value0;
if ((((int32_t)L_4) <= ((int32_t)0)))
{
goto IL_004d;
}
}
{
int32_t L_5 = ___value0;
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_6 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)(SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 3), (uint32_t)L_5);
V_0 = L_6;
int32_t L_7 = (int32_t)__this->____size_2;
if ((((int32_t)L_7) <= ((int32_t)0)))
{
goto IL_0045;
}
}
{
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_8 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_9 = V_0;
int32_t L_10 = (int32_t)__this->____size_2;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_8, 0, (RuntimeArray*)L_9, 0, L_10, NULL);
}
IL_0045:
{
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_11 = V_0;
__this->____items_1 = L_11;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_11);
return;
}
IL_004d:
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_12 = ((List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_12;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_12);
}
IL_0058:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mF3540C84790DAB9D381F00753BA20A85694C3446_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
return L_0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_System_Collections_IList_get_IsFixedSize_m4555484688FA5BBA3F7E9CE8C72F3963BA3E5F41_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m822C3C1C1A45E2F95780EF9170EEEC8BDB72A42A_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_System_Collections_IList_get_IsReadOnly_mC73F97533663A2940520ECD601A07775A683F622_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_ICollection_get_SyncRoot_mACA969D1E637325E64B895FFA84FF8DBB882724B_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = (RuntimeObject*)__this->____syncRoot_4;
if (L_0)
{
goto IL_001a;
}
}
{
RuntimeObject** L_1 = (RuntimeObject**)(&__this->____syncRoot_4);
RuntimeObject* L_2 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_2, NULL);
RuntimeObject* L_3;
L_3 = InterlockedCompareExchangeImpl<RuntimeObject*>(L_1, L_2, NULL);
}
IL_001a:
{
RuntimeObject* L_4 = (RuntimeObject*)__this->____syncRoot_4;
return L_4;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC List_1_get_Item_mAAE7FBDBD94CC48BA01C01ACFC3C66EE219110D0_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowArgumentOutOfRange_IndexException_mC7661B8C6DD827679C95FC6B6C08F8724174936D(NULL);
}
IL_000e:
{
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_2 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
int32_t L_3 = ___index0;
NullCheck(L_2);
int32_t L_4 = L_3;
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
return L_5;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Item_m58893707EC3B663186D1550A23DE96C818416CBD_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___index0, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ___value1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowArgumentOutOfRange_IndexException_mC7661B8C6DD827679C95FC6B6C08F8724174936D(NULL);
}
IL_000e:
{
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_2 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
int32_t L_3 = ___index0;
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_4 = ___value1;
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC)L_4);
int32_t L_5 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_5, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_IsCompatibleObject_mC9CB5EB21839923C050E6922FE7050867F374865_gshared (RuntimeObject* ___value0, const RuntimeMethod* method)
{
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC V_0;
memset((&V_0), 0, sizeof(V_0));
{
RuntimeObject* L_0 = ___value0;
if (((RuntimeObject*)IsInst((RuntimeObject*)L_0, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 9))))
{
goto IL_001f;
}
}
{
RuntimeObject* L_1 = ___value0;
if (L_1)
{
goto IL_001d;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC));
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_2 = V_0;
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_3 = L_2;
RuntimeObject* L_4 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_3);
return (bool)((((RuntimeObject*)(RuntimeObject*)L_4) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
}
IL_001d:
{
return (bool)0;
}
IL_001f:
{
return (bool)1;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_IList_get_Item_m328466F241E01D12C4560BF873B0DCB364184FAC_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_1;
L_1 = List_1_get_Item_mAAE7FBDBD94CC48BA01C01ACFC3C66EE219110D0(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_2 = L_1;
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 9), &L_2);
return L_3;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_System_Collections_IList_set_Item_mC8AC62D168434E9AB15DF194B4259FE7913CD978_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___index0, RuntimeObject* ___value1, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeObject* L_0 = ___value1;
ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisSingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC_m85CB6FEF509A4859399929F09F545FA1133C3051(L_0, (int32_t)((int32_t)15), il2cpp_rgctx_method(method->klass->rgctx_data, 11));
}
try
{
int32_t L_1 = ___index0;
RuntimeObject* L_2 = ___value1;
List_1_set_Item_m58893707EC3B663186D1550A23DE96C818416CBD(__this, L_1, ((*(SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC*)((SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC*)(SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 12));
goto IL_002a;
}
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0017;
}
throw e;
}
CATCH_0017:
{
RuntimeObject* L_3 = ___value1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->klass->rgctx_data, 13)) };
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
Type_t* L_5;
L_5 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_4, NULL);
ThrowHelper_ThrowWrongValueTypeArgumentException_mC1A6BBE43C360583C1E2C463D5B0AADF1E3E1910(L_3, L_5, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_002a;
}
IL_002a:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_m624C469B79ADC28E429B7A3CA96DA72345621643_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ___item0, const RuntimeMethod* method)
{
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_1 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
V_0 = L_1;
int32_t L_2 = (int32_t)__this->____size_2;
V_1 = L_2;
int32_t L_3 = V_1;
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_4 = V_0;
NullCheck(L_4);
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
{
goto IL_0034;
}
}
{
int32_t L_5 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_6 = V_0;
int32_t L_7 = V_1;
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_8 = ___item0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC)L_8);
return;
}
IL_0034:
{
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_9 = ___item0;
List_1_AddWithResize_m594A4155F206677F45ECD9AAE7E9EFD0AE6137ED(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void List_1_AddWithResize_m594A4155F206677F45ECD9AAE7E9EFD0AE6137ED_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ___item0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->____size_2;
V_0 = L_0;
int32_t L_1 = V_0;
List_1_EnsureCapacity_m1A140613D2D236E9CF413F81D549E39415DF0058(__this, ((int32_t)il2cpp_codegen_add(L_1, 1)), il2cpp_rgctx_method(method->klass->rgctx_data, 15));
int32_t L_2 = V_0;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_2, 1));
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_3 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
int32_t L_4 = V_0;
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_5 = ___item0;
NullCheck(L_3);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(L_4), (SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC)L_5);
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_System_Collections_IList_Add_mA3942A650A2BBD4285AB8BCB8F6E3C9AC3C4C6C4_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeObject* L_0 = ___item0;
ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisSingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC_m85CB6FEF509A4859399929F09F545FA1133C3051(L_0, (int32_t)((int32_t)20), il2cpp_rgctx_method(method->klass->rgctx_data, 11));
}
try
{
RuntimeObject* L_1 = ___item0;
List_1_Add_m624C469B79ADC28E429B7A3CA96DA72345621643_inline(__this, ((*(SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC*)((SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC*)(SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC*)UnBox(L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 16));
goto IL_0029;
}
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0016;
}
throw e;
}
CATCH_0016:
{
RuntimeObject* L_2 = ___item0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_3 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->klass->rgctx_data, 13)) };
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
Type_t* L_4;
L_4 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_3, NULL);
ThrowHelper_ThrowWrongValueTypeArgumentException_mC1A6BBE43C360583C1E2C463D5B0AADF1E3E1910(L_2, L_4, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0029;
}
IL_0029:
{
int32_t L_5;
L_5 = List_1_get_Count_mF3540C84790DAB9D381F00753BA20A85694C3446_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
return ((int32_t)il2cpp_codegen_subtract(L_5, 1));
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_AddRange_m6C9383E6FC71D115A5C539DD079A91E2472A7DB0_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, RuntimeObject* ___collection0, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
RuntimeObject* L_1 = ___collection0;
List_1_InsertRange_m8C743BAB2CDB84037FE830DF12A8B561EFEEEA60(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 18));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyCollection_1_tB4D9A0CDCFB95FF39CF5E7E6C0BA76B3178ECBDF* List_1_AsReadOnly_m95A11E2B168BD4F033EE85776867849761D059CA_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, const RuntimeMethod* method)
{
{
ReadOnlyCollection_1_tB4D9A0CDCFB95FF39CF5E7E6C0BA76B3178ECBDF* L_0 = (ReadOnlyCollection_1_tB4D9A0CDCFB95FF39CF5E7E6C0BA76B3178ECBDF*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 19));
ReadOnlyCollection_1__ctor_m236FFEDF5196507C82BBA262351A75F0337621F3(L_0, (RuntimeObject*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
return L_0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_mC33A081AC70A6F890BD1F7EB86A505EFB85B2A34_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___index0, int32_t ___count1, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ___item2, RuntimeObject* ___comparer3, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_5 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
int32_t L_6 = ___index0;
int32_t L_7 = ___count1;
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_8 = ___item2;
RuntimeObject* L_9 = ___comparer3;
int32_t L_10;
L_10 = Array_BinarySearch_TisSingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC_mADCDA1C9B37E3A0E4E43BC98F1CC6A028AB4A020(L_5, L_6, L_7, L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 23));
return L_10;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_m94CB3C793CD0C473175201F3C8A5E69389CD6929_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ___item0, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_mF3540C84790DAB9D381F00753BA20A85694C3446_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_1 = ___item0;
int32_t L_2;
L_2 = List_1_BinarySearch_mC33A081AC70A6F890BD1F7EB86A505EFB85B2A34(__this, 0, L_0, L_1, (RuntimeObject*)NULL, il2cpp_rgctx_method(method->klass->rgctx_data, 24));
return L_2;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_m4DFF9BFCC39275243700778EDC768DE7368ED50D_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ___item0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_mF3540C84790DAB9D381F00753BA20A85694C3446_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_1 = ___item0;
RuntimeObject* L_2 = ___comparer1;
int32_t L_3;
L_3 = List_1_BinarySearch_mC33A081AC70A6F890BD1F7EB86A505EFB85B2A34(__this, 0, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 24));
return L_3;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Clear_m21752AD1C5AFF444A40956A05C1AC41FB9F88DCB_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
goto IL_0035;
}
IL_0035:
{
__this->____size_2 = 0;
}
IL_003c:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Contains_mA5832B215E464CAC8345E7ECC45562E884AE146D_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ___item0, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
if (!L_0)
{
goto IL_0016;
}
}
{
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_1 = ___item0;
int32_t L_2;
L_2 = List_1_IndexOf_mF5A7DA78EA07100BDE8044CA37C505F36AD7ACB1(__this, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 26));
return (bool)((((int32_t)((((int32_t)L_2) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_0016:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_System_Collections_IList_Contains_mED517429468C156C8F8C5608555F8420C755EEF1_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___item0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
bool L_1;
L_1 = List_1_IsCompatibleObject_mC9CB5EB21839923C050E6922FE7050867F374865(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
if (!L_1)
{
goto IL_0015;
}
}
{
RuntimeObject* L_2 = ___item0;
bool L_3;
L_3 = List_1_Contains_mA5832B215E464CAC8345E7ECC45562E884AE146D(__this, ((*(SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC*)((SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC*)(SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 28));
return L_3;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_CopyTo_m3BE7B292C99B3D90B11E5E2B982FC38BEDB111F1_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* ___array0, const RuntimeMethod* method)
{
{
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_0 = ___array0;
List_1_CopyTo_m15B9FC56E0418F730FC3A37C8E482F7108D73B62(__this, L_0, 0, il2cpp_rgctx_method(method->klass->rgctx_data, 29));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_System_Collections_ICollection_CopyTo_mAACFB6ECDBAA2A5F6B154D4F3CCC28E9B4BA781E_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, RuntimeArray* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeArray* L_0 = ___array0;
if (!L_0)
{
goto IL_0012;
}
}
{
RuntimeArray* L_1 = ___array0;
NullCheck(L_1);
int32_t L_2;
L_2 = Array_get_Rank_m9383A200A2ECC89ECA44FE5F812ECFB874449C5F(L_1, NULL);
if ((((int32_t)L_2) == ((int32_t)1)))
{
goto IL_0012;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)7, NULL);
}
IL_0012:
{
}
try
{
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_3 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
RuntimeArray* L_4 = ___array0;
int32_t L_5 = ___arrayIndex1;
int32_t L_6 = (int32_t)__this->____size_2;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_3, 0, L_4, L_5, L_6, NULL);
goto IL_0031;
}
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArrayTypeMismatchException_t95F1723A5A166E62D3FBEF9734DEFBF61594F8F1_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0029;
}
throw e;
}
CATCH_0029:
{
ThrowHelper_ThrowArgumentException_Argument_InvalidArrayType_m469A6A5731A0F1E94D8B609ED9D001C3A1652A58(NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0031;
}
IL_0031:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_CopyTo_m15B9FC56E0418F730FC3A37C8E482F7108D73B62_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_0 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
int32_t L_3 = (int32_t)__this->____size_2;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_0, 0, (RuntimeArray*)L_1, L_2, L_3, NULL);
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_EnsureCapacity_m1A140613D2D236E9CF413F81D549E39415DF0058_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___min0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t G_B4_0 = 0;
{
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_0 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
NullCheck(L_0);
int32_t L_1 = ___min0;
if ((((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))) >= ((int32_t)L_1)))
{
goto IL_003d;
}
}
{
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_2 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
NullCheck(L_2);
if (!(((RuntimeArray*)L_2)->max_length))
{
goto IL_0020;
}
}
{
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_3 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
NullCheck(L_3);
G_B4_0 = ((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_3)->max_length)), 2));
goto IL_0021;
}
IL_0020:
{
G_B4_0 = 4;
}
IL_0021:
{
V_0 = G_B4_0;
int32_t L_4 = V_0;
if ((!(((uint32_t)L_4) > ((uint32_t)((int32_t)2146435071)))))
{
goto IL_0030;
}
}
{
V_0 = ((int32_t)2146435071);
}
IL_0030:
{
int32_t L_5 = V_0;
int32_t L_6 = ___min0;
if ((((int32_t)L_5) >= ((int32_t)L_6)))
{
goto IL_0036;
}
}
{
int32_t L_7 = ___min0;
V_0 = L_7;
}
IL_0036:
{
int32_t L_8 = V_0;
List_1_set_Capacity_m40FE27C2AB4F6F5F863957210FA90C1BF581D293(__this, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 30));
}
IL_003d:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Exists_m65E6A34E224557ACA8A50FE780878885D50678F2_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, Predicate_1_t107748E0E0D2277266234EAF67AC068394C4351C* ___match0, const RuntimeMethod* method)
{
{
Predicate_1_t107748E0E0D2277266234EAF67AC068394C4351C* L_0 = ___match0;
int32_t L_1;
L_1 = List_1_FindIndex_mF2AFA5B913B4B2AA7DD0D1016973A79A93BBFD38(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 32));
return (bool)((((int32_t)((((int32_t)L_1) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC List_1_Find_m701449053C91BA4CE5325287F8B79466C147BA05_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, Predicate_1_t107748E0E0D2277266234EAF67AC068394C4351C* ___match0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC V_1;
memset((&V_1), 0, sizeof(V_1));
{
Predicate_1_t107748E0E0D2277266234EAF67AC068394C4351C* L_0 = ___match0;
if (L_0)
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)8, NULL);
}
IL_0009:
{
V_0 = 0;
goto IL_0032;
}
IL_000d:
{
Predicate_1_t107748E0E0D2277266234EAF67AC068394C4351C* L_1 = ___match0;
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_2 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
int32_t L_3 = V_0;
NullCheck(L_2);
int32_t L_4 = L_3;
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
NullCheck(L_1);
bool L_6;
L_6 = Predicate_1_Invoke_mADD6CFDE192E3E822D5296926054ED8A41DB09C4_inline(L_1, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (!L_6)
{
goto IL_002e;
}
}
{
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_7 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
int32_t L_8 = V_0;
NullCheck(L_7);
int32_t L_9 = L_8;
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
return L_10;
}
IL_002e:
{
int32_t L_11 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_11, 1));
}
IL_0032:
{
int32_t L_12 = V_0;
int32_t L_13 = (int32_t)__this->____size_2;
if ((((int32_t)L_12) < ((int32_t)L_13)))
{
goto IL_000d;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC));
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_14 = V_1;
return L_14;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* List_1_FindAll_mF35FA0866E297E0A404D641DF58BFA6A3C1367FC_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, Predicate_1_t107748E0E0D2277266234EAF67AC068394C4351C* ___match0, const RuntimeMethod* method)
{
List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* V_0 = NULL;
int32_t V_1 = 0;
{
Predicate_1_t107748E0E0D2277266234EAF67AC068394C4351C* L_0 = ___match0;
if (L_0)
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)8, NULL);
}
IL_0009:
{
List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* L_1 = (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 0));
List_1__ctor_mFEF8BE0609A5B0185A946E4BE78E3AE078DCDFDF(L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
V_0 = L_1;
V_1 = 0;
goto IL_003d;
}
IL_0013:
{
Predicate_1_t107748E0E0D2277266234EAF67AC068394C4351C* L_2 = ___match0;
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_3 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
int32_t L_4 = V_1;
NullCheck(L_3);
int32_t L_5 = L_4;
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
NullCheck(L_2);
bool L_7;
L_7 = Predicate_1_Invoke_mADD6CFDE192E3E822D5296926054ED8A41DB09C4_inline(L_2, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (!L_7)
{
goto IL_0039;
}
}
{
List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* L_8 = V_0;
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_9 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
int32_t L_10 = V_1;
NullCheck(L_9);
int32_t L_11 = L_10;
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
NullCheck(L_8);
List_1_Add_m624C469B79ADC28E429B7A3CA96DA72345621643_inline(L_8, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
}
IL_0039:
{
int32_t L_13 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_13, 1));
}
IL_003d:
{
int32_t L_14 = V_1;
int32_t L_15 = (int32_t)__this->____size_2;
if ((((int32_t)L_14) < ((int32_t)L_15)))
{
goto IL_0013;
}
}
{
List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* L_16 = V_0;
return L_16;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_mF2AFA5B913B4B2AA7DD0D1016973A79A93BBFD38_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, Predicate_1_t107748E0E0D2277266234EAF67AC068394C4351C* ___match0, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
Predicate_1_t107748E0E0D2277266234EAF67AC068394C4351C* L_1 = ___match0;
int32_t L_2;
L_2 = List_1_FindIndex_mA8A19319FB31E9FB37C309AB8938A9FE57AA5C9F(__this, 0, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 35));
return L_2;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_mA8A19319FB31E9FB37C309AB8938A9FE57AA5C9F_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___startIndex0, int32_t ___count1, Predicate_1_t107748E0E0D2277266234EAF67AC068394C4351C* ___match2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
int32_t L_0 = ___startIndex0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) > ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowStartIndexArgumentOutOfRange_ArgumentOutOfRange_Index_m94BADCC6D7EBBD12BE8323775FFB43AF01499B0F(NULL);
}
IL_000e:
{
int32_t L_2 = ___count1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_001d;
}
}
{
int32_t L_3 = ___startIndex0;
int32_t L_4 = (int32_t)__this->____size_2;
int32_t L_5 = ___count1;
if ((((int32_t)L_3) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_4, L_5)))))
{
goto IL_0022;
}
}
IL_001d:
{
ThrowHelper_ThrowCountArgumentOutOfRange_ArgumentOutOfRange_Count_m6C4A7F645BDD8EB62B50CB76E84416D94620DCC7(NULL);
}
IL_0022:
{
Predicate_1_t107748E0E0D2277266234EAF67AC068394C4351C* L_6 = ___match2;
if (L_6)
{
goto IL_002b;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)8, NULL);
}
IL_002b:
{
int32_t L_7 = ___startIndex0;
int32_t L_8 = ___count1;
V_0 = ((int32_t)il2cpp_codegen_add(L_7, L_8));
int32_t L_9 = ___startIndex0;
V_1 = L_9;
goto IL_004d;
}
IL_0033:
{
Predicate_1_t107748E0E0D2277266234EAF67AC068394C4351C* L_10 = ___match2;
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_11 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
int32_t L_12 = V_1;
NullCheck(L_11);
int32_t L_13 = L_12;
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_14 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_13));
NullCheck(L_10);
bool L_15;
L_15 = Predicate_1_Invoke_mADD6CFDE192E3E822D5296926054ED8A41DB09C4_inline(L_10, L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (!L_15)
{
goto IL_0049;
}
}
{
int32_t L_16 = V_1;
return L_16;
}
IL_0049:
{
int32_t L_17 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_17, 1));
}
IL_004d:
{
int32_t L_18 = V_1;
int32_t L_19 = V_0;
if ((((int32_t)L_18) < ((int32_t)L_19)))
{
goto IL_0033;
}
}
{
return (-1);
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_ForEach_m8B78D3EEAEFEC7828745574DAF7C38944F2F8E8A_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, Action_1_t4501483487EE874F237B6B25ACC1026A64FBF612* ___action0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
Action_1_t4501483487EE874F237B6B25ACC1026A64FBF612* L_0 = ___action0;
if (L_0)
{
goto IL_000a;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)((int32_t)33), NULL);
}
IL_000a:
{
int32_t L_1 = (int32_t)__this->____version_3;
V_0 = L_1;
V_1 = 0;
goto IL_0034;
}
IL_0015:
{
int32_t L_2 = V_0;
int32_t L_3 = (int32_t)__this->____version_3;
if ((!(((uint32_t)L_2) == ((uint32_t)L_3))))
{
goto IL_003d;
}
}
{
Action_1_t4501483487EE874F237B6B25ACC1026A64FBF612* L_4 = ___action0;
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_5 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
int32_t L_6 = V_1;
NullCheck(L_5);
int32_t L_7 = L_6;
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck(L_4);
Action_1_Invoke_m6A44347B678A89104F91C3A85581DCC41A21AD5B_inline(L_4, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 37));
int32_t L_9 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_9, 1));
}
IL_0034:
{
int32_t L_10 = V_1;
int32_t L_11 = (int32_t)__this->____size_2;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0015;
}
}
IL_003d:
{
int32_t L_12 = V_0;
int32_t L_13 = (int32_t)__this->____version_3;
if ((((int32_t)L_12) == ((int32_t)L_13)))
{
goto IL_004b;
}
}
{
ThrowHelper_ThrowInvalidOperationException_InvalidOperation_EnumFailedVersion_m5331E2E0EC0E36843D53F439C2529530595ACE9F(NULL);
}
IL_004b:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t59E02176F2EE4E264A4750514AA127E2E21FF5D9 List_1_GetEnumerator_mAAAF1FE8DEBF77859AC0663A4C794BB8570C9930_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, const RuntimeMethod* method)
{
{
Enumerator_t59E02176F2EE4E264A4750514AA127E2E21FF5D9 L_0;
memset((&L_0), 0, sizeof(L_0));
Enumerator__ctor_m159144864209387AA18DEABE7B7985388F8F3452((&L_0), __this, il2cpp_rgctx_method(method->klass->rgctx_data, 39));
return L_0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_mBCEC03D60D1DB36D692026A18BEB259489900E5C_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, const RuntimeMethod* method)
{
{
Enumerator_t59E02176F2EE4E264A4750514AA127E2E21FF5D9 L_0;
memset((&L_0), 0, sizeof(L_0));
Enumerator__ctor_m159144864209387AA18DEABE7B7985388F8F3452((&L_0), __this, il2cpp_rgctx_method(method->klass->rgctx_data, 39));
Enumerator_t59E02176F2EE4E264A4750514AA127E2E21FF5D9 L_1 = L_0;
RuntimeObject* L_2 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 38), &L_1);
return (RuntimeObject*)L_2;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_IEnumerable_GetEnumerator_m2720314B086456588769D3DE8AFB012759038C96_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, const RuntimeMethod* method)
{
{
Enumerator_t59E02176F2EE4E264A4750514AA127E2E21FF5D9 L_0;
memset((&L_0), 0, sizeof(L_0));
Enumerator__ctor_m159144864209387AA18DEABE7B7985388F8F3452((&L_0), __this, il2cpp_rgctx_method(method->klass->rgctx_data, 39));
Enumerator_t59E02176F2EE4E264A4750514AA127E2E21FF5D9 L_1 = L_0;
RuntimeObject* L_2 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 38), &L_1);
return (RuntimeObject*)L_2;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* List_1_GetRange_mE12DCA96AA0450B2FF4B5A37EE25A1E93EF9620A_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method)
{
List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* V_0 = NULL;
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
int32_t L_5 = ___count1;
List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* L_6 = (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 0));
List_1__ctor_m9D4C783EADEFE471AE4694A264FC274077D002B4(L_6, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 41));
V_0 = L_6;
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_7 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
int32_t L_8 = ___index0;
List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* L_9 = V_0;
NullCheck(L_9);
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_10 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)L_9->____items_1;
int32_t L_11 = ___count1;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_7, L_8, (RuntimeArray*)L_10, 0, L_11, NULL);
List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* L_12 = V_0;
int32_t L_13 = ___count1;
NullCheck(L_12);
L_12->____size_2 = L_13;
List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* L_14 = V_0;
return L_14;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_IndexOf_mF5A7DA78EA07100BDE8044CA37C505F36AD7ACB1_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ___item0, const RuntimeMethod* method)
{
{
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_0 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_1 = ___item0;
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3;
L_3 = Array_IndexOf_TisSingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC_m5A2EB67A073F2BFF5B3DCDDBD15D75BC3CFB909C(L_0, L_1, 0, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 42));
return L_3;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_System_Collections_IList_IndexOf_mB8E1E8E1A197395AD882409A03CD6F2D4B9BE328_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___item0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
bool L_1;
L_1 = List_1_IsCompatibleObject_mC9CB5EB21839923C050E6922FE7050867F374865(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
if (!L_1)
{
goto IL_0015;
}
}
{
RuntimeObject* L_2 = ___item0;
int32_t L_3;
L_3 = List_1_IndexOf_mF5A7DA78EA07100BDE8044CA37C505F36AD7ACB1(__this, ((*(SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC*)((SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC*)(SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 26));
return L_3;
}
IL_0015:
{
return (-1);
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Insert_mC8E7189F3D9D95975CFE821AC3B560B2EA7AB7A8_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___index0, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ___item1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) > ((uint32_t)L_1))))
{
goto IL_0012;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)13), (int32_t)((int32_t)27), NULL);
}
IL_0012:
{
int32_t L_2 = (int32_t)__this->____size_2;
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_3 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
NullCheck(L_3);
if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)(((RuntimeArray*)L_3)->max_length))))))
{
goto IL_0030;
}
}
{
int32_t L_4 = (int32_t)__this->____size_2;
List_1_EnsureCapacity_m1A140613D2D236E9CF413F81D549E39415DF0058(__this, ((int32_t)il2cpp_codegen_add(L_4, 1)), il2cpp_rgctx_method(method->klass->rgctx_data, 15));
}
IL_0030:
{
int32_t L_5 = ___index0;
int32_t L_6 = (int32_t)__this->____size_2;
if ((((int32_t)L_5) >= ((int32_t)L_6)))
{
goto IL_0056;
}
}
{
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_7 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
int32_t L_8 = ___index0;
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_9 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
int32_t L_10 = ___index0;
int32_t L_11 = (int32_t)__this->____size_2;
int32_t L_12 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_7, L_8, (RuntimeArray*)L_9, ((int32_t)il2cpp_codegen_add(L_10, 1)), ((int32_t)il2cpp_codegen_subtract(L_11, L_12)), NULL);
}
IL_0056:
{
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_13 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
int32_t L_14 = ___index0;
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_15 = ___item1;
NullCheck(L_13);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC)L_15);
int32_t L_16 = (int32_t)__this->____size_2;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_16, 1));
int32_t L_17 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_17, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_System_Collections_IList_Insert_mBD8DBA214029319A0AED43030E4EDE7B27E12C6A_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___index0, RuntimeObject* ___item1, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeObject* L_0 = ___item1;
ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisSingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC_m85CB6FEF509A4859399929F09F545FA1133C3051(L_0, (int32_t)((int32_t)20), il2cpp_rgctx_method(method->klass->rgctx_data, 11));
}
try
{
int32_t L_1 = ___index0;
RuntimeObject* L_2 = ___item1;
List_1_Insert_mC8E7189F3D9D95975CFE821AC3B560B2EA7AB7A8(__this, L_1, ((*(SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC*)((SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC*)(SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 43));
goto IL_002a;
}
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0017;
}
throw e;
}
CATCH_0017:
{
RuntimeObject* L_3 = ___item1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->klass->rgctx_data, 13)) };
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
Type_t* L_5;
L_5 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_4, NULL);
ThrowHelper_ThrowWrongValueTypeArgumentException_mC1A6BBE43C360583C1E2C463D5B0AADF1E3E1910(L_3, L_5, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_002a;
}
IL_002a:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_InsertRange_m8C743BAB2CDB84037FE830DF12A8B561EFEEEA60_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___index0, RuntimeObject* ___collection1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
int32_t V_1 = 0;
RuntimeObject* V_2 = NULL;
{
RuntimeObject* L_0 = ___collection1;
if (L_0)
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)6, NULL);
}
IL_0009:
{
int32_t L_1 = ___index0;
int32_t L_2 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_1) > ((uint32_t)L_2))))
{
goto IL_0017;
}
}
{
ThrowHelper_ThrowArgumentOutOfRange_IndexException_mC7661B8C6DD827679C95FC6B6C08F8724174936D(NULL);
}
IL_0017:
{
RuntimeObject* L_3 = ___collection1;
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 5)));
RuntimeObject* L_4 = V_0;
if (!L_4)
{
goto IL_00bc;
}
}
{
RuntimeObject* L_5 = V_0;
NullCheck(L_5);
int32_t L_6;
L_6 = InterfaceFuncInvoker0< int32_t >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_5);
V_1 = L_6;
int32_t L_7 = V_1;
if ((((int32_t)L_7) <= ((int32_t)0)))
{
goto IL_00fb;
}
}
{
int32_t L_8 = (int32_t)__this->____size_2;
int32_t L_9 = V_1;
List_1_EnsureCapacity_m1A140613D2D236E9CF413F81D549E39415DF0058(__this, ((int32_t)il2cpp_codegen_add(L_8, L_9)), il2cpp_rgctx_method(method->klass->rgctx_data, 15));
int32_t L_10 = ___index0;
int32_t L_11 = (int32_t)__this->____size_2;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0066;
}
}
{
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_12 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
int32_t L_13 = ___index0;
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_14 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
int32_t L_15 = ___index0;
int32_t L_16 = V_1;
int32_t L_17 = (int32_t)__this->____size_2;
int32_t L_18 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_12, L_13, (RuntimeArray*)L_14, ((int32_t)il2cpp_codegen_add(L_15, L_16)), ((int32_t)il2cpp_codegen_subtract(L_17, L_18)), NULL);
}
IL_0066:
{
RuntimeObject* L_19 = V_0;
if ((!(((RuntimeObject*)(List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF*)__this) == ((RuntimeObject*)(RuntimeObject*)L_19))))
{
goto IL_009f;
}
}
{
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_20 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_21 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
int32_t L_22 = ___index0;
int32_t L_23 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_20, 0, (RuntimeArray*)L_21, L_22, L_23, NULL);
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_24 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
int32_t L_25 = ___index0;
int32_t L_26 = V_1;
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_27 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
int32_t L_28 = ___index0;
int32_t L_29 = (int32_t)__this->____size_2;
int32_t L_30 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_24, ((int32_t)il2cpp_codegen_add(L_25, L_26)), (RuntimeArray*)L_27, ((int32_t)il2cpp_codegen_multiply(L_28, 2)), ((int32_t)il2cpp_codegen_subtract(L_29, L_30)), NULL);
goto IL_00ac;
}
IL_009f:
{
RuntimeObject* L_31 = V_0;
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_32 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
int32_t L_33 = ___index0;
NullCheck(L_31);
InterfaceActionInvoker2< SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*, int32_t >::Invoke(5, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_31, L_32, L_33);
}
IL_00ac:
{
int32_t L_34 = (int32_t)__this->____size_2;
int32_t L_35 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_34, L_35));
goto IL_00fb;
}
IL_00bc:
{
int32_t L_36 = ___index0;
int32_t L_37 = (int32_t)__this->____size_2;
if ((((int32_t)L_36) >= ((int32_t)L_37)))
{
goto IL_00f4;
}
}
{
RuntimeObject* L_38 = ___collection1;
NullCheck(L_38);
RuntimeObject* L_39;
L_39 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_38);
V_2 = L_39;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00ea:
{
{
RuntimeObject* L_40 = V_2;
if (!L_40)
{
goto IL_00f3;
}
}
{
RuntimeObject* L_41 = V_2;
NullCheck((RuntimeObject*)L_41);
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_41);
}
IL_00f3:
{
return;
}
}
});
try
{
{
goto IL_00e0_1;
}
IL_00ce_1:
{
int32_t L_42 = ___index0;
int32_t L_43 = L_42;
___index0 = ((int32_t)il2cpp_codegen_add(L_43, 1));
RuntimeObject* L_44 = V_2;
NullCheck(L_44);
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_45;
L_45 = InterfaceFuncInvoker0< SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 40), L_44);
List_1_Insert_mC8E7189F3D9D95975CFE821AC3B560B2EA7AB7A8(__this, L_43, L_45, il2cpp_rgctx_method(method->klass->rgctx_data, 43));
}
IL_00e0_1:
{
RuntimeObject* L_46 = V_2;
NullCheck((RuntimeObject*)L_46);
bool L_47;
L_47 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_46);
if (L_47)
{
goto IL_00ce_1;
}
}
{
goto IL_00fb;
}
}
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00f4:
{
RuntimeObject* L_48 = ___collection1;
List_1_AddEnumerable_mDF2147E522AD80A7B6A79CF8E7F00EC7DBF8A032(__this, L_48, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
}
IL_00fb:
{
int32_t L_49 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_49, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Remove_mA8E72E7CFB72101AA88E01A84F746ECBD8E91B3F_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ___item0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_0 = ___item0;
int32_t L_1;
L_1 = List_1_IndexOf_mF5A7DA78EA07100BDE8044CA37C505F36AD7ACB1(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 26));
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0015;
}
}
{
int32_t L_3 = V_0;
List_1_RemoveAt_m911F1AFFA59FD181BA9363E0B6C8B5B95067EC3B(__this, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 46));
return (bool)1;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_System_Collections_IList_Remove_mF11CDACF173F28EBB282A0E10465306215533D69_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___item0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
bool L_1;
L_1 = List_1_IsCompatibleObject_mC9CB5EB21839923C050E6922FE7050867F374865(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
if (!L_1)
{
goto IL_0015;
}
}
{
RuntimeObject* L_2 = ___item0;
bool L_3;
L_3 = List_1_Remove_mA8E72E7CFB72101AA88E01A84F746ECBD8E91B3F(__this, ((*(SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC*)((SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC*)(SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 47));
}
IL_0015:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_RemoveAll_m942EE1B1849CFF13050D5AC9C5543626606E41FD_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, Predicate_1_t107748E0E0D2277266234EAF67AC068394C4351C* ___match0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
Predicate_1_t107748E0E0D2277266234EAF67AC068394C4351C* L_0 = ___match0;
if (L_0)
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)8, NULL);
}
IL_0009:
{
V_0 = 0;
goto IL_0011;
}
IL_000d:
{
int32_t L_1 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_1, 1));
}
IL_0011:
{
int32_t L_2 = V_0;
int32_t L_3 = (int32_t)__this->____size_2;
if ((((int32_t)L_2) >= ((int32_t)L_3)))
{
goto IL_002e;
}
}
{
Predicate_1_t107748E0E0D2277266234EAF67AC068394C4351C* L_4 = ___match0;
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_5 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
int32_t L_6 = V_0;
NullCheck(L_5);
int32_t L_7 = L_6;
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck(L_4);
bool L_9;
L_9 = Predicate_1_Invoke_mADD6CFDE192E3E822D5296926054ED8A41DB09C4_inline(L_4, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (!L_9)
{
goto IL_000d;
}
}
IL_002e:
{
int32_t L_10 = V_0;
int32_t L_11 = (int32_t)__this->____size_2;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0039;
}
}
{
return 0;
}
IL_0039:
{
int32_t L_12 = V_0;
V_1 = ((int32_t)il2cpp_codegen_add(L_12, 1));
goto IL_0089;
}
IL_003f:
{
int32_t L_13 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_13, 1));
}
IL_0043:
{
int32_t L_14 = V_1;
int32_t L_15 = (int32_t)__this->____size_2;
if ((((int32_t)L_14) >= ((int32_t)L_15)))
{
goto IL_0060;
}
}
{
Predicate_1_t107748E0E0D2277266234EAF67AC068394C4351C* L_16 = ___match0;
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_17 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
int32_t L_18 = V_1;
NullCheck(L_17);
int32_t L_19 = L_18;
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
NullCheck(L_16);
bool L_21;
L_21 = Predicate_1_Invoke_mADD6CFDE192E3E822D5296926054ED8A41DB09C4_inline(L_16, L_20, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (L_21)
{
goto IL_003f;
}
}
IL_0060:
{
int32_t L_22 = V_1;
int32_t L_23 = (int32_t)__this->____size_2;
if ((((int32_t)L_22) >= ((int32_t)L_23)))
{
goto IL_0089;
}
}
{
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_24 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
int32_t L_25 = V_0;
int32_t L_26 = L_25;
V_0 = ((int32_t)il2cpp_codegen_add(L_26, 1));
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_27 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
int32_t L_28 = V_1;
int32_t L_29 = L_28;
V_1 = ((int32_t)il2cpp_codegen_add(L_29, 1));
NullCheck(L_27);
int32_t L_30 = L_29;
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_31 = (L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_30));
NullCheck(L_24);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(L_26), (SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC)L_31);
}
IL_0089:
{
int32_t L_32 = V_1;
int32_t L_33 = (int32_t)__this->____size_2;
if ((((int32_t)L_32) < ((int32_t)L_33)))
{
goto IL_0043;
}
}
{
goto IL_00ad;
}
IL_00ad:
{
int32_t L_34 = (int32_t)__this->____size_2;
int32_t L_35 = V_0;
int32_t L_36 = V_0;
__this->____size_2 = L_36;
int32_t L_37 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_37, 1));
return ((int32_t)il2cpp_codegen_subtract(L_34, L_35));
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveAt_m911F1AFFA59FD181BA9363E0B6C8B5B95067EC3B_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___index0, const RuntimeMethod* method)
{
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowArgumentOutOfRange_IndexException_mC7661B8C6DD827679C95FC6B6C08F8724174936D(NULL);
}
IL_000e:
{
int32_t L_2 = (int32_t)__this->____size_2;
__this->____size_2 = ((int32_t)il2cpp_codegen_subtract(L_2, 1));
int32_t L_3 = ___index0;
int32_t L_4 = (int32_t)__this->____size_2;
if ((((int32_t)L_3) >= ((int32_t)L_4)))
{
goto IL_0042;
}
}
{
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_5 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
int32_t L_6 = ___index0;
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_7 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
int32_t L_8 = ___index0;
int32_t L_9 = (int32_t)__this->____size_2;
int32_t L_10 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_5, ((int32_t)il2cpp_codegen_add(L_6, 1)), (RuntimeArray*)L_7, L_8, ((int32_t)il2cpp_codegen_subtract(L_9, L_10)), NULL);
}
IL_0042:
{
goto IL_0063;
}
IL_0063:
{
int32_t L_11 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_11, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveRange_m5B47428142038A77A46C58F4673D5B84A07CEA92_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
int32_t L_5 = ___count1;
if ((((int32_t)L_5) <= ((int32_t)0)))
{
goto IL_008d;
}
}
{
int32_t L_6 = (int32_t)__this->____size_2;
int32_t L_7 = (int32_t)__this->____size_2;
int32_t L_8 = ___count1;
__this->____size_2 = ((int32_t)il2cpp_codegen_subtract(L_7, L_8));
int32_t L_9 = ___index0;
int32_t L_10 = (int32_t)__this->____size_2;
if ((((int32_t)L_9) >= ((int32_t)L_10)))
{
goto IL_0066;
}
}
{
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_11 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
int32_t L_12 = ___index0;
int32_t L_13 = ___count1;
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_14 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
int32_t L_15 = ___index0;
int32_t L_16 = (int32_t)__this->____size_2;
int32_t L_17 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_11, ((int32_t)il2cpp_codegen_add(L_12, L_13)), (RuntimeArray*)L_14, L_15, ((int32_t)il2cpp_codegen_subtract(L_16, L_17)), NULL);
}
IL_0066:
{
int32_t L_18 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_18, 1));
goto IL_008d;
}
IL_008d:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Reverse_m615589F6FA55D03C1E49CD0793C4579B1EA8ACB9_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_mF3540C84790DAB9D381F00753BA20A85694C3446_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
List_1_Reverse_m6558ECB96638BF339DAB6BDB70413BA7570A84F9(__this, 0, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 48));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Reverse_m6558ECB96638BF339DAB6BDB70413BA7570A84F9_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
int32_t L_5 = ___count1;
if ((((int32_t)L_5) <= ((int32_t)1)))
{
goto IL_0038;
}
}
{
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_6 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
int32_t L_7 = ___index0;
int32_t L_8 = ___count1;
Array_Reverse_TisSingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC_mD8F006C0A007C05BB69E417FA65A5A66965F997C(L_6, L_7, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 49));
}
IL_0038:
{
int32_t L_9 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_9, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_mDB26BFC83DBD8458E3C5E40674317901B6D60960_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_mF3540C84790DAB9D381F00753BA20A85694C3446_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
List_1_Sort_m4F48B52D720DB8E76904DB4647F7BDA63FDEC552(__this, 0, L_0, (RuntimeObject*)NULL, il2cpp_rgctx_method(method->klass->rgctx_data, 50));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m73682F7A633F3DDE4C73BA091D7DF9A6B37C9EDF_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_mF3540C84790DAB9D381F00753BA20A85694C3446_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
RuntimeObject* L_1 = ___comparer0;
List_1_Sort_m4F48B52D720DB8E76904DB4647F7BDA63FDEC552(__this, 0, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 50));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m4F48B52D720DB8E76904DB4647F7BDA63FDEC552_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, int32_t ___index0, int32_t ___count1, RuntimeObject* ___comparer2, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
int32_t L_5 = ___count1;
if ((((int32_t)L_5) <= ((int32_t)1)))
{
goto IL_0039;
}
}
{
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_6 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
int32_t L_7 = ___index0;
int32_t L_8 = ___count1;
RuntimeObject* L_9 = ___comparer2;
Array_Sort_TisSingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC_mE6A4B57DE0CB3DEC8371BDC3DAAAD29D6C9E3B2B(L_6, L_7, L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 51));
}
IL_0039:
{
int32_t L_10 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_10, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_mA14F47787ACFCA9DBDE6F5227BC1070CC0AC6E24_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, Comparison_1_tA6E38F9B8A5E125EC6515F9679C2079C747A0149* ___comparison0, const RuntimeMethod* method)
{
{
Comparison_1_tA6E38F9B8A5E125EC6515F9679C2079C747A0149* L_0 = ___comparison0;
if (L_0)
{
goto IL_000a;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)((int32_t)34), NULL);
}
IL_000a:
{
int32_t L_1 = (int32_t)__this->____size_2;
if ((((int32_t)L_1) <= ((int32_t)1)))
{
goto IL_0026;
}
}
{
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_2 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
int32_t L_3 = (int32_t)__this->____size_2;
Comparison_1_tA6E38F9B8A5E125EC6515F9679C2079C747A0149* L_4 = ___comparison0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 54));
ArraySortHelper_1_Sort_m3182DABDA1EFACFF8268887837CA976A3577C3E6(L_2, 0, L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 53));
}
IL_0026:
{
int32_t L_5 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_5, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* List_1_ToArray_m60A0D5DD91FC53DD96E7949CE29E6FA9724180F2_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, const RuntimeMethod* method)
{
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* V_0 = NULL;
{
int32_t L_0 = (int32_t)__this->____size_2;
if (L_0)
{
goto IL_000e;
}
}
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_1 = ((List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
return L_1;
}
IL_000e:
{
int32_t L_2 = (int32_t)__this->____size_2;
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_3 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)(SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 3), (uint32_t)L_2);
V_0 = L_3;
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_4 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_5 = V_0;
int32_t L_6 = (int32_t)__this->____size_2;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_4, 0, (RuntimeArray*)L_5, 0, L_6, NULL);
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_7 = V_0;
return L_7;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_AddEnumerable_mDF2147E522AD80A7B6A79CF8E7F00EC7DBF8A032_gshared (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, RuntimeObject* ___enumerable0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC V_1;
memset((&V_1), 0, sizeof(V_1));
int32_t V_2 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
RuntimeObject* L_1 = ___enumerable0;
NullCheck(L_1);
RuntimeObject* L_2;
L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_1);
V_0 = L_2;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0063:
{
{
RuntimeObject* L_3 = V_0;
if (!L_3)
{
goto IL_006c;
}
}
{
RuntimeObject* L_4 = V_0;
NullCheck((RuntimeObject*)L_4);
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_4);
}
IL_006c:
{
return;
}
}
});
try
{
{
goto IL_0059_1;
}
IL_0017_1:
{
RuntimeObject* L_5 = V_0;
NullCheck(L_5);
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_6;
L_6 = InterfaceFuncInvoker0< SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 40), L_5);
V_1 = L_6;
int32_t L_7 = (int32_t)__this->____size_2;
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_8 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
NullCheck(L_8);
if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)(((RuntimeArray*)L_8)->max_length))))))
{
goto IL_003c_1;
}
}
{
int32_t L_9 = (int32_t)__this->____size_2;
List_1_EnsureCapacity_m1A140613D2D236E9CF413F81D549E39415DF0058(__this, ((int32_t)il2cpp_codegen_add(L_9, 1)), il2cpp_rgctx_method(method->klass->rgctx_data, 15));
}
IL_003c_1:
{
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_10 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
int32_t L_11 = (int32_t)__this->____size_2;
V_2 = L_11;
int32_t L_12 = V_2;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_12, 1));
int32_t L_13 = V_2;
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_14 = V_1;
NullCheck(L_10);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC)L_14);
}
IL_0059_1:
{
RuntimeObject* L_15 = V_0;
NullCheck((RuntimeObject*)L_15);
bool L_16;
L_16 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_15);
if (L_16)
{
goto IL_0017_1;
}
}
{
goto IL_006d;
}
}
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_006d:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__cctor_mC80073FB316593C1A68C371348A1661067257614_gshared (const RuntimeMethod* method)
{
{
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_0 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)(SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)SZArrayNew(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 3), (uint32_t)0);
((List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___s_emptyArray_5 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___s_emptyArray_5), (void*)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
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m255703238033B967D14582C45A7BE4E83FF82D04_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_0 = ((List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_0);
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mAA23C6DF65BC54A74F0E73AC8624AEEA85C18B19_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, int32_t ___capacity0, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
int32_t L_0 = ___capacity0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0012;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)12), (int32_t)4, NULL);
}
IL_0012:
{
int32_t L_1 = ___capacity0;
if (L_1)
{
goto IL_0021;
}
}
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_2 = ((List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_2);
return;
}
IL_0021:
{
int32_t L_3 = ___capacity0;
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_4 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)(RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 3), (uint32_t)L_3);
__this->____items_1 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_4);
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mDA104D353CF254CE9FDDBEBD87CC33BBE91B2C71_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, RuntimeObject* ___collection0, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
int32_t V_1 = 0;
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
RuntimeObject* L_0 = ___collection0;
if (L_0)
{
goto IL_000f;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)6, NULL);
}
IL_000f:
{
RuntimeObject* L_1 = ___collection0;
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 5)));
RuntimeObject* L_2 = V_0;
if (!L_2)
{
goto IL_0050;
}
}
{
RuntimeObject* L_3 = V_0;
NullCheck(L_3);
int32_t L_4;
L_4 = InterfaceFuncInvoker0< int32_t >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
V_1 = L_4;
int32_t L_5 = V_1;
if (L_5)
{
goto IL_002f;
}
}
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_6 = ((List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_6);
return;
}
IL_002f:
{
int32_t L_7 = V_1;
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_8 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)(RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 3), (uint32_t)L_7);
__this->____items_1 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_8);
RuntimeObject* L_9 = V_0;
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_10 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
NullCheck(L_9);
InterfaceActionInvoker2< RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*, int32_t >::Invoke(5, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_9, L_10, 0);
int32_t L_11 = V_1;
__this->____size_2 = L_11;
return;
}
IL_0050:
{
__this->____size_2 = 0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_12 = ((List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_12;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_12);
RuntimeObject* L_13 = ___collection0;
List_1_AddEnumerable_m7088ED3394FFF962AB1A50214F6D8008985A47A1(__this, L_13, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_get_Capacity_m7A6BB12419C067C792CC300467B17CBE3B57B883_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, const RuntimeMethod* method)
{
{
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_0 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
NullCheck(L_0);
return ((int32_t)(((RuntimeArray*)L_0)->max_length));
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Capacity_m50BEC845EFC6BDB5291D5D4560E39559571A249E_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, int32_t ___value0, const RuntimeMethod* method)
{
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* V_0 = NULL;
{
int32_t L_0 = ___value0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((((int32_t)L_0) >= ((int32_t)L_1)))
{
goto IL_0012;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)15), (int32_t)((int32_t)21), NULL);
}
IL_0012:
{
int32_t L_2 = ___value0;
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_3 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
NullCheck(L_3);
if ((((int32_t)L_2) == ((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))
{
goto IL_0058;
}
}
{
int32_t L_4 = ___value0;
if ((((int32_t)L_4) <= ((int32_t)0)))
{
goto IL_004d;
}
}
{
int32_t L_5 = ___value0;
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_6 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)(RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 3), (uint32_t)L_5);
V_0 = L_6;
int32_t L_7 = (int32_t)__this->____size_2;
if ((((int32_t)L_7) <= ((int32_t)0)))
{
goto IL_0045;
}
}
{
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_8 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_9 = V_0;
int32_t L_10 = (int32_t)__this->____size_2;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_8, 0, (RuntimeArray*)L_9, 0, L_10, NULL);
}
IL_0045:
{
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_11 = V_0;
__this->____items_1 = L_11;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_11);
return;
}
IL_004d:
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_12 = ((List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
__this->____items_1 = L_12;
Il2CppCodeGenWriteBarrier((void**)(&__this->____items_1), (void*)L_12);
}
IL_0058:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mAAEDC1FC4B64FF31F3BCA12217394EF6F745A0CB_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
return L_0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_System_Collections_IList_get_IsFixedSize_m97F73395370644D71342F5BF12F48DC52D9EA20C_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m30BD4E710D264C1FAEAAC8EF5E8DDFC096662B4B_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_System_Collections_IList_get_IsReadOnly_mDED5C097E3EED3DA1DA2E8F4B98F27D1ABC2D952_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_ICollection_get_SyncRoot_mA234640D460656239EBB79BEFCE2C047AA683730_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = (RuntimeObject*)__this->____syncRoot_4;
if (L_0)
{
goto IL_001a;
}
}
{
RuntimeObject** L_1 = (RuntimeObject**)(&__this->____syncRoot_4);
RuntimeObject* L_2 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_2, NULL);
RuntimeObject* L_3;
L_3 = InterlockedCompareExchangeImpl<RuntimeObject*>(L_1, L_2, NULL);
}
IL_001a:
{
RuntimeObject* L_4 = (RuntimeObject*)__this->____syncRoot_4;
return L_4;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE List_1_get_Item_m6F50163981F18AD78856766254735B84087CEB3A_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowArgumentOutOfRange_IndexException_mC7661B8C6DD827679C95FC6B6C08F8724174936D(NULL);
}
IL_000e:
{
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_2 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
int32_t L_3 = ___index0;
NullCheck(L_2);
int32_t L_4 = L_3;
RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
return L_5;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Item_m1E6C8D90BA9A30407DAEF89982AD3CDF11CF6B32_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, int32_t ___index0, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE ___value1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowArgumentOutOfRange_IndexException_mC7661B8C6DD827679C95FC6B6C08F8724174936D(NULL);
}
IL_000e:
{
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_2 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
int32_t L_3 = ___index0;
RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE L_4 = ___value1;
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE)L_4);
int32_t L_5 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_5, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_IsCompatibleObject_m3AD55A212B79AE5A71A921515B5B560ED09AA679_gshared (RuntimeObject* ___value0, const RuntimeMethod* method)
{
RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE V_0;
memset((&V_0), 0, sizeof(V_0));
{
RuntimeObject* L_0 = ___value0;
if (((RuntimeObject*)IsInst((RuntimeObject*)L_0, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 9))))
{
goto IL_001f;
}
}
{
RuntimeObject* L_1 = ___value0;
if (L_1)
{
goto IL_001d;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE));
RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE L_2 = V_0;
RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE L_3 = L_2;
RuntimeObject* L_4 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_3);
return (bool)((((RuntimeObject*)(RuntimeObject*)L_4) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
}
IL_001d:
{
return (bool)0;
}
IL_001f:
{
return (bool)1;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_IList_get_Item_mE42ACE016FF9C08278C4BB1E27BBA7D698CB9457_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE L_1;
L_1 = List_1_get_Item_m6F50163981F18AD78856766254735B84087CEB3A(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE L_2 = L_1;
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 9), &L_2);
return L_3;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_System_Collections_IList_set_Item_m1F4988F2A6557CE9A62A9995E24A786543798A69_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, int32_t ___index0, RuntimeObject* ___value1, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeObject* L_0 = ___value1;
ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisRenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE_m76CAF61428C4E009D1A428123021D438127BE97A(L_0, (int32_t)((int32_t)15), il2cpp_rgctx_method(method->klass->rgctx_data, 11));
}
try
{
int32_t L_1 = ___index0;
RuntimeObject* L_2 = ___value1;
List_1_set_Item_m1E6C8D90BA9A30407DAEF89982AD3CDF11CF6B32(__this, L_1, ((*(RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE*)((RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE*)(RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 12));
goto IL_002a;
}
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0017;
}
throw e;
}
CATCH_0017:
{
RuntimeObject* L_3 = ___value1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->klass->rgctx_data, 13)) };
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
Type_t* L_5;
L_5 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_4, NULL);
ThrowHelper_ThrowWrongValueTypeArgumentException_mC1A6BBE43C360583C1E2C463D5B0AADF1E3E1910(L_3, L_5, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_002a;
}
IL_002a:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_mD3E9E49A0FA7E3FB0E9EAAEB94864A1E9161612D_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE ___item0, const RuntimeMethod* method)
{
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_1 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
V_0 = L_1;
int32_t L_2 = (int32_t)__this->____size_2;
V_1 = L_2;
int32_t L_3 = V_1;
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_4 = V_0;
NullCheck(L_4);
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
{
goto IL_0034;
}
}
{
int32_t L_5 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_6 = V_0;
int32_t L_7 = V_1;
RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE L_8 = ___item0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE)L_8);
return;
}
IL_0034:
{
RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE L_9 = ___item0;
List_1_AddWithResize_mC8CCF79EEFA3DFA94ED1D51F5BE288209FBBDA6F(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void List_1_AddWithResize_mC8CCF79EEFA3DFA94ED1D51F5BE288209FBBDA6F_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE ___item0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->____size_2;
V_0 = L_0;
int32_t L_1 = V_0;
List_1_EnsureCapacity_mA0D0641DCB08BA2E8610EDD5AD2C37E3F638BD69(__this, ((int32_t)il2cpp_codegen_add(L_1, 1)), il2cpp_rgctx_method(method->klass->rgctx_data, 15));
int32_t L_2 = V_0;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_2, 1));
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_3 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
int32_t L_4 = V_0;
RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE L_5 = ___item0;
NullCheck(L_3);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(L_4), (RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE)L_5);
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_System_Collections_IList_Add_m2A6BB12299DCF64E856CA674746C529B9E7D4124_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeObject* L_0 = ___item0;
ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisRenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE_m76CAF61428C4E009D1A428123021D438127BE97A(L_0, (int32_t)((int32_t)20), il2cpp_rgctx_method(method->klass->rgctx_data, 11));
}
try
{
RuntimeObject* L_1 = ___item0;
List_1_Add_mD3E9E49A0FA7E3FB0E9EAAEB94864A1E9161612D_inline(__this, ((*(RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE*)((RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE*)(RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE*)UnBox(L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 16));
goto IL_0029;
}
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0016;
}
throw e;
}
CATCH_0016:
{
RuntimeObject* L_2 = ___item0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_3 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->klass->rgctx_data, 13)) };
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
Type_t* L_4;
L_4 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_3, NULL);
ThrowHelper_ThrowWrongValueTypeArgumentException_mC1A6BBE43C360583C1E2C463D5B0AADF1E3E1910(L_2, L_4, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0029;
}
IL_0029:
{
int32_t L_5;
L_5 = List_1_get_Count_mAAEDC1FC4B64FF31F3BCA12217394EF6F745A0CB_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
return ((int32_t)il2cpp_codegen_subtract(L_5, 1));
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_AddRange_m361F7ACA0E38688693676044288C0741E4680D07_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, RuntimeObject* ___collection0, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
RuntimeObject* L_1 = ___collection0;
List_1_InsertRange_m160564DB4C2AF522F842222EC1BE470BD4D2BFBC(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 18));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyCollection_1_tE3E9C8F094CD8107FF7B47147C9E7377DF44D188* List_1_AsReadOnly_mC37E8DB5D745B3A03535FC28A2936233B1D802A4_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, const RuntimeMethod* method)
{
{
ReadOnlyCollection_1_tE3E9C8F094CD8107FF7B47147C9E7377DF44D188* L_0 = (ReadOnlyCollection_1_tE3E9C8F094CD8107FF7B47147C9E7377DF44D188*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 19));
ReadOnlyCollection_1__ctor_m1F8DFD7DA2A310E5F329E7FED4F657741C0864F3(L_0, (RuntimeObject*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
return L_0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_m09B361D3D35A2062535FFCE496DA4925E98CB326_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, int32_t ___index0, int32_t ___count1, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE ___item2, RuntimeObject* ___comparer3, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_5 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
int32_t L_6 = ___index0;
int32_t L_7 = ___count1;
RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE L_8 = ___item2;
RuntimeObject* L_9 = ___comparer3;
int32_t L_10;
L_10 = Array_BinarySearch_TisRenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE_mE95F7B0B9C6C11DDCBA587DDB499F531EFDAE0A6(L_5, L_6, L_7, L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 23));
return L_10;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_m9D341BB5D3429F5AED2DCFF252F94AF3F02224A3_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE ___item0, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_mAAEDC1FC4B64FF31F3BCA12217394EF6F745A0CB_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE L_1 = ___item0;
int32_t L_2;
L_2 = List_1_BinarySearch_m09B361D3D35A2062535FFCE496DA4925E98CB326(__this, 0, L_0, L_1, (RuntimeObject*)NULL, il2cpp_rgctx_method(method->klass->rgctx_data, 24));
return L_2;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_m7203BE889788578D05AEDAC2701EE94C8F12C2FA_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE ___item0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_mAAEDC1FC4B64FF31F3BCA12217394EF6F745A0CB_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE L_1 = ___item0;
RuntimeObject* L_2 = ___comparer1;
int32_t L_3;
L_3 = List_1_BinarySearch_m09B361D3D35A2062535FFCE496DA4925E98CB326(__this, 0, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 24));
return L_3;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Clear_m7924686238D7A45D6E89936E021F91219B4E441B_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
}
{
int32_t L_1 = (int32_t)__this->____size_2;
V_0 = L_1;
__this->____size_2 = 0;
int32_t L_2 = V_0;
if ((((int32_t)L_2) <= ((int32_t)0)))
{
goto IL_003c;
}
}
{
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_3 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
int32_t L_4 = V_0;
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_3, 0, L_4, NULL);
return;
}
IL_003c:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Contains_m8B083500B9C34ABB12D552B8C24E2ED1B8576986_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE ___item0, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
if (!L_0)
{
goto IL_0016;
}
}
{
RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE L_1 = ___item0;
int32_t L_2;
L_2 = List_1_IndexOf_m312D2557BE560A3C9B669F02117579E3AE2A177F(__this, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 26));
return (bool)((((int32_t)((((int32_t)L_2) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_0016:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_System_Collections_IList_Contains_m6052F9B9AD17F920AC4A80695948DFB4D7E0470A_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___item0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
bool L_1;
L_1 = List_1_IsCompatibleObject_m3AD55A212B79AE5A71A921515B5B560ED09AA679(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
if (!L_1)
{
goto IL_0015;
}
}
{
RuntimeObject* L_2 = ___item0;
bool L_3;
L_3 = List_1_Contains_m8B083500B9C34ABB12D552B8C24E2ED1B8576986(__this, ((*(RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE*)((RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE*)(RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 28));
return L_3;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_CopyTo_m406BB27AEC4156138F53A64F79AA86B898F4C5D2_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* ___array0, const RuntimeMethod* method)
{
{
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_0 = ___array0;
List_1_CopyTo_m4D10EE8519FA0749CB92DDB500BC753CBB15266E(__this, L_0, 0, il2cpp_rgctx_method(method->klass->rgctx_data, 29));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_System_Collections_ICollection_CopyTo_mB5B04CC28FF37ADBF40E510DD38440ED7E91E688_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, RuntimeArray* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeArray* L_0 = ___array0;
if (!L_0)
{
goto IL_0012;
}
}
{
RuntimeArray* L_1 = ___array0;
NullCheck(L_1);
int32_t L_2;
L_2 = Array_get_Rank_m9383A200A2ECC89ECA44FE5F812ECFB874449C5F(L_1, NULL);
if ((((int32_t)L_2) == ((int32_t)1)))
{
goto IL_0012;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)7, NULL);
}
IL_0012:
{
}
try
{
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_3 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
RuntimeArray* L_4 = ___array0;
int32_t L_5 = ___arrayIndex1;
int32_t L_6 = (int32_t)__this->____size_2;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_3, 0, L_4, L_5, L_6, NULL);
goto IL_0031;
}
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArrayTypeMismatchException_t95F1723A5A166E62D3FBEF9734DEFBF61594F8F1_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0029;
}
throw e;
}
CATCH_0029:
{
ThrowHelper_ThrowArgumentException_Argument_InvalidArrayType_m469A6A5731A0F1E94D8B609ED9D001C3A1652A58(NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0031;
}
IL_0031:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_CopyTo_m4D10EE8519FA0749CB92DDB500BC753CBB15266E_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_0 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
int32_t L_3 = (int32_t)__this->____size_2;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_0, 0, (RuntimeArray*)L_1, L_2, L_3, NULL);
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_EnsureCapacity_mA0D0641DCB08BA2E8610EDD5AD2C37E3F638BD69_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, int32_t ___min0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t G_B4_0 = 0;
{
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_0 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
NullCheck(L_0);
int32_t L_1 = ___min0;
if ((((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))) >= ((int32_t)L_1)))
{
goto IL_003d;
}
}
{
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_2 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
NullCheck(L_2);
if (!(((RuntimeArray*)L_2)->max_length))
{
goto IL_0020;
}
}
{
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_3 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
NullCheck(L_3);
G_B4_0 = ((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_3)->max_length)), 2));
goto IL_0021;
}
IL_0020:
{
G_B4_0 = 4;
}
IL_0021:
{
V_0 = G_B4_0;
int32_t L_4 = V_0;
if ((!(((uint32_t)L_4) > ((uint32_t)((int32_t)2146435071)))))
{
goto IL_0030;
}
}
{
V_0 = ((int32_t)2146435071);
}
IL_0030:
{
int32_t L_5 = V_0;
int32_t L_6 = ___min0;
if ((((int32_t)L_5) >= ((int32_t)L_6)))
{
goto IL_0036;
}
}
{
int32_t L_7 = ___min0;
V_0 = L_7;
}
IL_0036:
{
int32_t L_8 = V_0;
List_1_set_Capacity_m50BEC845EFC6BDB5291D5D4560E39559571A249E(__this, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 30));
}
IL_003d:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Exists_m80685397F78336F5708C802F9F38DB41C67987A9_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, Predicate_1_t11FD0E9C3E3027EDC3E795B12D6DEAB00BE6209E* ___match0, const RuntimeMethod* method)
{
{
Predicate_1_t11FD0E9C3E3027EDC3E795B12D6DEAB00BE6209E* L_0 = ___match0;
int32_t L_1;
L_1 = List_1_FindIndex_m689D20041B03ABFAF7409FFC4C933E4C44478C44(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 32));
return (bool)((((int32_t)((((int32_t)L_1) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE List_1_Find_mBAA57FF98E1763FB284EC10A4C99D55402B3CC07_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, Predicate_1_t11FD0E9C3E3027EDC3E795B12D6DEAB00BE6209E* ___match0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE V_1;
memset((&V_1), 0, sizeof(V_1));
{
Predicate_1_t11FD0E9C3E3027EDC3E795B12D6DEAB00BE6209E* L_0 = ___match0;
if (L_0)
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)8, NULL);
}
IL_0009:
{
V_0 = 0;
goto IL_0032;
}
IL_000d:
{
Predicate_1_t11FD0E9C3E3027EDC3E795B12D6DEAB00BE6209E* L_1 = ___match0;
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_2 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
int32_t L_3 = V_0;
NullCheck(L_2);
int32_t L_4 = L_3;
RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
NullCheck(L_1);
bool L_6;
L_6 = Predicate_1_Invoke_m135269208DD6D8EA90E641BC8AE589799BE775CE_inline(L_1, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (!L_6)
{
goto IL_002e;
}
}
{
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_7 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
int32_t L_8 = V_0;
NullCheck(L_7);
int32_t L_9 = L_8;
RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
return L_10;
}
IL_002e:
{
int32_t L_11 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_11, 1));
}
IL_0032:
{
int32_t L_12 = V_0;
int32_t L_13 = (int32_t)__this->____size_2;
if ((((int32_t)L_12) < ((int32_t)L_13)))
{
goto IL_000d;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE));
RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE L_14 = V_1;
return L_14;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* List_1_FindAll_mBD6A52FC4E7CDE2762C12718017AC7D99A6D5820_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, Predicate_1_t11FD0E9C3E3027EDC3E795B12D6DEAB00BE6209E* ___match0, const RuntimeMethod* method)
{
List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* V_0 = NULL;
int32_t V_1 = 0;
{
Predicate_1_t11FD0E9C3E3027EDC3E795B12D6DEAB00BE6209E* L_0 = ___match0;
if (L_0)
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)8, NULL);
}
IL_0009:
{
List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* L_1 = (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 0));
List_1__ctor_m255703238033B967D14582C45A7BE4E83FF82D04(L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
V_0 = L_1;
V_1 = 0;
goto IL_003d;
}
IL_0013:
{
Predicate_1_t11FD0E9C3E3027EDC3E795B12D6DEAB00BE6209E* L_2 = ___match0;
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_3 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
int32_t L_4 = V_1;
NullCheck(L_3);
int32_t L_5 = L_4;
RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
NullCheck(L_2);
bool L_7;
L_7 = Predicate_1_Invoke_m135269208DD6D8EA90E641BC8AE589799BE775CE_inline(L_2, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (!L_7)
{
goto IL_0039;
}
}
{
List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* L_8 = V_0;
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_9 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
int32_t L_10 = V_1;
NullCheck(L_9);
int32_t L_11 = L_10;
RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
NullCheck(L_8);
List_1_Add_mD3E9E49A0FA7E3FB0E9EAAEB94864A1E9161612D_inline(L_8, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
}
IL_0039:
{
int32_t L_13 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_13, 1));
}
IL_003d:
{
int32_t L_14 = V_1;
int32_t L_15 = (int32_t)__this->____size_2;
if ((((int32_t)L_14) < ((int32_t)L_15)))
{
goto IL_0013;
}
}
{
List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* L_16 = V_0;
return L_16;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_m689D20041B03ABFAF7409FFC4C933E4C44478C44_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, Predicate_1_t11FD0E9C3E3027EDC3E795B12D6DEAB00BE6209E* ___match0, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
Predicate_1_t11FD0E9C3E3027EDC3E795B12D6DEAB00BE6209E* L_1 = ___match0;
int32_t L_2;
L_2 = List_1_FindIndex_mABC7CD3C41F16438834ACA413E5108A28E2264E6(__this, 0, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 35));
return L_2;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_mABC7CD3C41F16438834ACA413E5108A28E2264E6_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, int32_t ___startIndex0, int32_t ___count1, Predicate_1_t11FD0E9C3E3027EDC3E795B12D6DEAB00BE6209E* ___match2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
int32_t L_0 = ___startIndex0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) > ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowStartIndexArgumentOutOfRange_ArgumentOutOfRange_Index_m94BADCC6D7EBBD12BE8323775FFB43AF01499B0F(NULL);
}
IL_000e:
{
int32_t L_2 = ___count1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_001d;
}
}
{
int32_t L_3 = ___startIndex0;
int32_t L_4 = (int32_t)__this->____size_2;
int32_t L_5 = ___count1;
if ((((int32_t)L_3) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_4, L_5)))))
{
goto IL_0022;
}
}
IL_001d:
{
ThrowHelper_ThrowCountArgumentOutOfRange_ArgumentOutOfRange_Count_m6C4A7F645BDD8EB62B50CB76E84416D94620DCC7(NULL);
}
IL_0022:
{
Predicate_1_t11FD0E9C3E3027EDC3E795B12D6DEAB00BE6209E* L_6 = ___match2;
if (L_6)
{
goto IL_002b;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)8, NULL);
}
IL_002b:
{
int32_t L_7 = ___startIndex0;
int32_t L_8 = ___count1;
V_0 = ((int32_t)il2cpp_codegen_add(L_7, L_8));
int32_t L_9 = ___startIndex0;
V_1 = L_9;
goto IL_004d;
}
IL_0033:
{
Predicate_1_t11FD0E9C3E3027EDC3E795B12D6DEAB00BE6209E* L_10 = ___match2;
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_11 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
int32_t L_12 = V_1;
NullCheck(L_11);
int32_t L_13 = L_12;
RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE L_14 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_13));
NullCheck(L_10);
bool L_15;
L_15 = Predicate_1_Invoke_m135269208DD6D8EA90E641BC8AE589799BE775CE_inline(L_10, L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (!L_15)
{
goto IL_0049;
}
}
{
int32_t L_16 = V_1;
return L_16;
}
IL_0049:
{
int32_t L_17 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_17, 1));
}
IL_004d:
{
int32_t L_18 = V_1;
int32_t L_19 = V_0;
if ((((int32_t)L_18) < ((int32_t)L_19)))
{
goto IL_0033;
}
}
{
return (-1);
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_ForEach_mDC8762510BDC07FE4309139C6FB5209B4C0F8DA1_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, Action_1_tD0160E105457D40D8673BAC7E6B940058EE57412* ___action0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
Action_1_tD0160E105457D40D8673BAC7E6B940058EE57412* L_0 = ___action0;
if (L_0)
{
goto IL_000a;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)((int32_t)33), NULL);
}
IL_000a:
{
int32_t L_1 = (int32_t)__this->____version_3;
V_0 = L_1;
V_1 = 0;
goto IL_0034;
}
IL_0015:
{
int32_t L_2 = V_0;
int32_t L_3 = (int32_t)__this->____version_3;
if ((!(((uint32_t)L_2) == ((uint32_t)L_3))))
{
goto IL_003d;
}
}
{
Action_1_tD0160E105457D40D8673BAC7E6B940058EE57412* L_4 = ___action0;
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_5 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
int32_t L_6 = V_1;
NullCheck(L_5);
int32_t L_7 = L_6;
RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck(L_4);
Action_1_Invoke_m02B1A77D2272E9F41F217EA15AB3CB64FA07A90C_inline(L_4, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 37));
int32_t L_9 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_9, 1));
}
IL_0034:
{
int32_t L_10 = V_1;
int32_t L_11 = (int32_t)__this->____size_2;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0015;
}
}
IL_003d:
{
int32_t L_12 = V_0;
int32_t L_13 = (int32_t)__this->____version_3;
if ((((int32_t)L_12) == ((int32_t)L_13)))
{
goto IL_004b;
}
}
{
ThrowHelper_ThrowInvalidOperationException_InvalidOperation_EnumFailedVersion_m5331E2E0EC0E36843D53F439C2529530595ACE9F(NULL);
}
IL_004b:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t1D1919C4A31BDA5C91BD99149B33227908BAECCD List_1_GetEnumerator_m8B8B759890163E285B969AE430F4F9A4C474E5BD_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, const RuntimeMethod* method)
{
{
Enumerator_t1D1919C4A31BDA5C91BD99149B33227908BAECCD L_0;
memset((&L_0), 0, sizeof(L_0));
Enumerator__ctor_mE479DEDD234610FC12442D75F584E580F0623542((&L_0), __this, il2cpp_rgctx_method(method->klass->rgctx_data, 39));
return L_0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m4233757353F9DC5B3967B0A202305C0691A1F179_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, const RuntimeMethod* method)
{
{
Enumerator_t1D1919C4A31BDA5C91BD99149B33227908BAECCD L_0;
memset((&L_0), 0, sizeof(L_0));
Enumerator__ctor_mE479DEDD234610FC12442D75F584E580F0623542((&L_0), __this, il2cpp_rgctx_method(method->klass->rgctx_data, 39));
Enumerator_t1D1919C4A31BDA5C91BD99149B33227908BAECCD L_1 = L_0;
RuntimeObject* L_2 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 38), &L_1);
return (RuntimeObject*)L_2;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_IEnumerable_GetEnumerator_m7BB712094A73D73FF20B68B70363D5B7D717F5F2_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, const RuntimeMethod* method)
{
{
Enumerator_t1D1919C4A31BDA5C91BD99149B33227908BAECCD L_0;
memset((&L_0), 0, sizeof(L_0));
Enumerator__ctor_mE479DEDD234610FC12442D75F584E580F0623542((&L_0), __this, il2cpp_rgctx_method(method->klass->rgctx_data, 39));
Enumerator_t1D1919C4A31BDA5C91BD99149B33227908BAECCD L_1 = L_0;
RuntimeObject* L_2 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 38), &L_1);
return (RuntimeObject*)L_2;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* List_1_GetRange_m2380B5CBFD77BCEC5DB9E0CA15F064940E696B41_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method)
{
List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* V_0 = NULL;
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
int32_t L_5 = ___count1;
List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* L_6 = (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 0));
List_1__ctor_mAA23C6DF65BC54A74F0E73AC8624AEEA85C18B19(L_6, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 41));
V_0 = L_6;
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_7 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
int32_t L_8 = ___index0;
List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* L_9 = V_0;
NullCheck(L_9);
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_10 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)L_9->____items_1;
int32_t L_11 = ___count1;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_7, L_8, (RuntimeArray*)L_10, 0, L_11, NULL);
List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* L_12 = V_0;
int32_t L_13 = ___count1;
NullCheck(L_12);
L_12->____size_2 = L_13;
List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* L_14 = V_0;
return L_14;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_IndexOf_m312D2557BE560A3C9B669F02117579E3AE2A177F_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE ___item0, const RuntimeMethod* method)
{
{
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_0 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE L_1 = ___item0;
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3;
L_3 = Array_IndexOf_TisRenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE_m8404E87C4C2E6DEB5A8A922233858FD8C0D17365(L_0, L_1, 0, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 42));
return L_3;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_System_Collections_IList_IndexOf_mE3190B8DE31567ACA55C55FEE6D7D6BEFD7BF4FD_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___item0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
bool L_1;
L_1 = List_1_IsCompatibleObject_m3AD55A212B79AE5A71A921515B5B560ED09AA679(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
if (!L_1)
{
goto IL_0015;
}
}
{
RuntimeObject* L_2 = ___item0;
int32_t L_3;
L_3 = List_1_IndexOf_m312D2557BE560A3C9B669F02117579E3AE2A177F(__this, ((*(RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE*)((RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE*)(RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 26));
return L_3;
}
IL_0015:
{
return (-1);
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Insert_m6EB4592E7BFBB59116CB9AD0E8072935A552FB58_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, int32_t ___index0, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE ___item1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) > ((uint32_t)L_1))))
{
goto IL_0012;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)13), (int32_t)((int32_t)27), NULL);
}
IL_0012:
{
int32_t L_2 = (int32_t)__this->____size_2;
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_3 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
NullCheck(L_3);
if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)(((RuntimeArray*)L_3)->max_length))))))
{
goto IL_0030;
}
}
{
int32_t L_4 = (int32_t)__this->____size_2;
List_1_EnsureCapacity_mA0D0641DCB08BA2E8610EDD5AD2C37E3F638BD69(__this, ((int32_t)il2cpp_codegen_add(L_4, 1)), il2cpp_rgctx_method(method->klass->rgctx_data, 15));
}
IL_0030:
{
int32_t L_5 = ___index0;
int32_t L_6 = (int32_t)__this->____size_2;
if ((((int32_t)L_5) >= ((int32_t)L_6)))
{
goto IL_0056;
}
}
{
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_7 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
int32_t L_8 = ___index0;
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_9 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
int32_t L_10 = ___index0;
int32_t L_11 = (int32_t)__this->____size_2;
int32_t L_12 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_7, L_8, (RuntimeArray*)L_9, ((int32_t)il2cpp_codegen_add(L_10, 1)), ((int32_t)il2cpp_codegen_subtract(L_11, L_12)), NULL);
}
IL_0056:
{
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_13 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
int32_t L_14 = ___index0;
RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE L_15 = ___item1;
NullCheck(L_13);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE)L_15);
int32_t L_16 = (int32_t)__this->____size_2;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_16, 1));
int32_t L_17 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_17, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_System_Collections_IList_Insert_mC7FD7D4878F2CDD214885FC40FAFFDA1B7780F96_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, int32_t ___index0, RuntimeObject* ___item1, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeObject* L_0 = ___item1;
ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisRenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE_m76CAF61428C4E009D1A428123021D438127BE97A(L_0, (int32_t)((int32_t)20), il2cpp_rgctx_method(method->klass->rgctx_data, 11));
}
try
{
int32_t L_1 = ___index0;
RuntimeObject* L_2 = ___item1;
List_1_Insert_m6EB4592E7BFBB59116CB9AD0E8072935A552FB58(__this, L_1, ((*(RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE*)((RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE*)(RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 43));
goto IL_002a;
}
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0017;
}
throw e;
}
CATCH_0017:
{
RuntimeObject* L_3 = ___item1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->klass->rgctx_data, 13)) };
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
Type_t* L_5;
L_5 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_4, NULL);
ThrowHelper_ThrowWrongValueTypeArgumentException_mC1A6BBE43C360583C1E2C463D5B0AADF1E3E1910(L_3, L_5, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_002a;
}
IL_002a:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_InsertRange_m160564DB4C2AF522F842222EC1BE470BD4D2BFBC_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, int32_t ___index0, RuntimeObject* ___collection1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
int32_t V_1 = 0;
RuntimeObject* V_2 = NULL;
{
RuntimeObject* L_0 = ___collection1;
if (L_0)
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)6, NULL);
}
IL_0009:
{
int32_t L_1 = ___index0;
int32_t L_2 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_1) > ((uint32_t)L_2))))
{
goto IL_0017;
}
}
{
ThrowHelper_ThrowArgumentOutOfRange_IndexException_mC7661B8C6DD827679C95FC6B6C08F8724174936D(NULL);
}
IL_0017:
{
RuntimeObject* L_3 = ___collection1;
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 5)));
RuntimeObject* L_4 = V_0;
if (!L_4)
{
goto IL_00bc;
}
}
{
RuntimeObject* L_5 = V_0;
NullCheck(L_5);
int32_t L_6;
L_6 = InterfaceFuncInvoker0< int32_t >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_5);
V_1 = L_6;
int32_t L_7 = V_1;
if ((((int32_t)L_7) <= ((int32_t)0)))
{
goto IL_00fb;
}
}
{
int32_t L_8 = (int32_t)__this->____size_2;
int32_t L_9 = V_1;
List_1_EnsureCapacity_mA0D0641DCB08BA2E8610EDD5AD2C37E3F638BD69(__this, ((int32_t)il2cpp_codegen_add(L_8, L_9)), il2cpp_rgctx_method(method->klass->rgctx_data, 15));
int32_t L_10 = ___index0;
int32_t L_11 = (int32_t)__this->____size_2;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0066;
}
}
{
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_12 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
int32_t L_13 = ___index0;
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_14 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
int32_t L_15 = ___index0;
int32_t L_16 = V_1;
int32_t L_17 = (int32_t)__this->____size_2;
int32_t L_18 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_12, L_13, (RuntimeArray*)L_14, ((int32_t)il2cpp_codegen_add(L_15, L_16)), ((int32_t)il2cpp_codegen_subtract(L_17, L_18)), NULL);
}
IL_0066:
{
RuntimeObject* L_19 = V_0;
if ((!(((RuntimeObject*)(List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB*)__this) == ((RuntimeObject*)(RuntimeObject*)L_19))))
{
goto IL_009f;
}
}
{
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_20 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_21 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
int32_t L_22 = ___index0;
int32_t L_23 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_20, 0, (RuntimeArray*)L_21, L_22, L_23, NULL);
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_24 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
int32_t L_25 = ___index0;
int32_t L_26 = V_1;
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_27 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
int32_t L_28 = ___index0;
int32_t L_29 = (int32_t)__this->____size_2;
int32_t L_30 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_24, ((int32_t)il2cpp_codegen_add(L_25, L_26)), (RuntimeArray*)L_27, ((int32_t)il2cpp_codegen_multiply(L_28, 2)), ((int32_t)il2cpp_codegen_subtract(L_29, L_30)), NULL);
goto IL_00ac;
}
IL_009f:
{
RuntimeObject* L_31 = V_0;
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_32 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
int32_t L_33 = ___index0;
NullCheck(L_31);
InterfaceActionInvoker2< RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*, int32_t >::Invoke(5, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_31, L_32, L_33);
}
IL_00ac:
{
int32_t L_34 = (int32_t)__this->____size_2;
int32_t L_35 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_34, L_35));
goto IL_00fb;
}
IL_00bc:
{
int32_t L_36 = ___index0;
int32_t L_37 = (int32_t)__this->____size_2;
if ((((int32_t)L_36) >= ((int32_t)L_37)))
{
goto IL_00f4;
}
}
{
RuntimeObject* L_38 = ___collection1;
NullCheck(L_38);
RuntimeObject* L_39;
L_39 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_38);
V_2 = L_39;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00ea:
{
{
RuntimeObject* L_40 = V_2;
if (!L_40)
{
goto IL_00f3;
}
}
{
RuntimeObject* L_41 = V_2;
NullCheck((RuntimeObject*)L_41);
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_41);
}
IL_00f3:
{
return;
}
}
});
try
{
{
goto IL_00e0_1;
}
IL_00ce_1:
{
int32_t L_42 = ___index0;
int32_t L_43 = L_42;
___index0 = ((int32_t)il2cpp_codegen_add(L_43, 1));
RuntimeObject* L_44 = V_2;
NullCheck(L_44);
RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE L_45;
L_45 = InterfaceFuncInvoker0< RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 40), L_44);
List_1_Insert_m6EB4592E7BFBB59116CB9AD0E8072935A552FB58(__this, L_43, L_45, il2cpp_rgctx_method(method->klass->rgctx_data, 43));
}
IL_00e0_1:
{
RuntimeObject* L_46 = V_2;
NullCheck((RuntimeObject*)L_46);
bool L_47;
L_47 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_46);
if (L_47)
{
goto IL_00ce_1;
}
}
{
goto IL_00fb;
}
}
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00f4:
{
RuntimeObject* L_48 = ___collection1;
List_1_AddEnumerable_m7088ED3394FFF962AB1A50214F6D8008985A47A1(__this, L_48, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
}
IL_00fb:
{
int32_t L_49 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_49, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Remove_m2CB15F6E16DCC6B604EA75C76BD3F871444CEC72_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE ___item0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE L_0 = ___item0;
int32_t L_1;
L_1 = List_1_IndexOf_m312D2557BE560A3C9B669F02117579E3AE2A177F(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 26));
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0015;
}
}
{
int32_t L_3 = V_0;
List_1_RemoveAt_m52674F68DEF606EE087935A700047C6620AA6320(__this, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 46));
return (bool)1;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_System_Collections_IList_Remove_m8505245D8071010FA76C3ECE371EED6E936DD6F6_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___item0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
bool L_1;
L_1 = List_1_IsCompatibleObject_m3AD55A212B79AE5A71A921515B5B560ED09AA679(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
if (!L_1)
{
goto IL_0015;
}
}
{
RuntimeObject* L_2 = ___item0;
bool L_3;
L_3 = List_1_Remove_m2CB15F6E16DCC6B604EA75C76BD3F871444CEC72(__this, ((*(RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE*)((RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE*)(RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE*)UnBox(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 9))))), il2cpp_rgctx_method(method->klass->rgctx_data, 47));
}
IL_0015:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_RemoveAll_m0D986E37289BB9EB135F136D4059D8076ECC361E_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, Predicate_1_t11FD0E9C3E3027EDC3E795B12D6DEAB00BE6209E* ___match0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
Predicate_1_t11FD0E9C3E3027EDC3E795B12D6DEAB00BE6209E* L_0 = ___match0;
if (L_0)
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)8, NULL);
}
IL_0009:
{
V_0 = 0;
goto IL_0011;
}
IL_000d:
{
int32_t L_1 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_1, 1));
}
IL_0011:
{
int32_t L_2 = V_0;
int32_t L_3 = (int32_t)__this->____size_2;
if ((((int32_t)L_2) >= ((int32_t)L_3)))
{
goto IL_002e;
}
}
{
Predicate_1_t11FD0E9C3E3027EDC3E795B12D6DEAB00BE6209E* L_4 = ___match0;
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_5 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
int32_t L_6 = V_0;
NullCheck(L_5);
int32_t L_7 = L_6;
RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck(L_4);
bool L_9;
L_9 = Predicate_1_Invoke_m135269208DD6D8EA90E641BC8AE589799BE775CE_inline(L_4, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (!L_9)
{
goto IL_000d;
}
}
IL_002e:
{
int32_t L_10 = V_0;
int32_t L_11 = (int32_t)__this->____size_2;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0039;
}
}
{
return 0;
}
IL_0039:
{
int32_t L_12 = V_0;
V_1 = ((int32_t)il2cpp_codegen_add(L_12, 1));
goto IL_0089;
}
IL_003f:
{
int32_t L_13 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_13, 1));
}
IL_0043:
{
int32_t L_14 = V_1;
int32_t L_15 = (int32_t)__this->____size_2;
if ((((int32_t)L_14) >= ((int32_t)L_15)))
{
goto IL_0060;
}
}
{
Predicate_1_t11FD0E9C3E3027EDC3E795B12D6DEAB00BE6209E* L_16 = ___match0;
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_17 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
int32_t L_18 = V_1;
NullCheck(L_17);
int32_t L_19 = L_18;
RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
NullCheck(L_16);
bool L_21;
L_21 = Predicate_1_Invoke_m135269208DD6D8EA90E641BC8AE589799BE775CE_inline(L_16, L_20, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
if (L_21)
{
goto IL_003f;
}
}
IL_0060:
{
int32_t L_22 = V_1;
int32_t L_23 = (int32_t)__this->____size_2;
if ((((int32_t)L_22) >= ((int32_t)L_23)))
{
goto IL_0089;
}
}
{
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_24 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
int32_t L_25 = V_0;
int32_t L_26 = L_25;
V_0 = ((int32_t)il2cpp_codegen_add(L_26, 1));
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_27 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
int32_t L_28 = V_1;
int32_t L_29 = L_28;
V_1 = ((int32_t)il2cpp_codegen_add(L_29, 1));
NullCheck(L_27);
int32_t L_30 = L_29;
RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE L_31 = (L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_30));
NullCheck(L_24);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(L_26), (RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE)L_31);
}
IL_0089:
{
int32_t L_32 = V_1;
int32_t L_33 = (int32_t)__this->____size_2;
if ((((int32_t)L_32) < ((int32_t)L_33)))
{
goto IL_0043;
}
}
{
}
{
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_34 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
int32_t L_35 = V_0;
int32_t L_36 = (int32_t)__this->____size_2;
int32_t L_37 = V_0;
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_34, L_35, ((int32_t)il2cpp_codegen_subtract(L_36, L_37)), NULL);
}
IL_00ad:
{
int32_t L_38 = (int32_t)__this->____size_2;
int32_t L_39 = V_0;
int32_t L_40 = V_0;
__this->____size_2 = L_40;
int32_t L_41 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_41, 1));
return ((int32_t)il2cpp_codegen_subtract(L_38, L_39));
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveAt_m52674F68DEF606EE087935A700047C6620AA6320_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, int32_t ___index0, const RuntimeMethod* method)
{
RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->____size_2;
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowArgumentOutOfRange_IndexException_mC7661B8C6DD827679C95FC6B6C08F8724174936D(NULL);
}
IL_000e:
{
int32_t L_2 = (int32_t)__this->____size_2;
__this->____size_2 = ((int32_t)il2cpp_codegen_subtract(L_2, 1));
int32_t L_3 = ___index0;
int32_t L_4 = (int32_t)__this->____size_2;
if ((((int32_t)L_3) >= ((int32_t)L_4)))
{
goto IL_0042;
}
}
{
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_5 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
int32_t L_6 = ___index0;
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_7 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
int32_t L_8 = ___index0;
int32_t L_9 = (int32_t)__this->____size_2;
int32_t L_10 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_5, ((int32_t)il2cpp_codegen_add(L_6, 1)), (RuntimeArray*)L_7, L_8, ((int32_t)il2cpp_codegen_subtract(L_9, L_10)), NULL);
}
IL_0042:
{
}
{
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_11 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
int32_t L_12 = (int32_t)__this->____size_2;
il2cpp_codegen_initobj((&V_0), sizeof(RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE));
RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE L_13 = V_0;
NullCheck(L_11);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(L_12), (RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE)L_13);
}
IL_0063:
{
int32_t L_14 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_14, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveRange_mAB878ABCF5E090FEA0907B04841C3EFCA86DBEE8_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
int32_t L_5 = ___count1;
if ((((int32_t)L_5) <= ((int32_t)0)))
{
goto IL_008d;
}
}
{
int32_t L_6 = (int32_t)__this->____size_2;
int32_t L_7 = (int32_t)__this->____size_2;
int32_t L_8 = ___count1;
__this->____size_2 = ((int32_t)il2cpp_codegen_subtract(L_7, L_8));
int32_t L_9 = ___index0;
int32_t L_10 = (int32_t)__this->____size_2;
if ((((int32_t)L_9) >= ((int32_t)L_10)))
{
goto IL_0066;
}
}
{
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_11 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
int32_t L_12 = ___index0;
int32_t L_13 = ___count1;
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_14 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
int32_t L_15 = ___index0;
int32_t L_16 = (int32_t)__this->____size_2;
int32_t L_17 = ___index0;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_11, ((int32_t)il2cpp_codegen_add(L_12, L_13)), (RuntimeArray*)L_14, L_15, ((int32_t)il2cpp_codegen_subtract(L_16, L_17)), NULL);
}
IL_0066:
{
int32_t L_18 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_18, 1));
}
{
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_19 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
int32_t L_20 = (int32_t)__this->____size_2;
int32_t L_21 = ___count1;
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_19, L_20, L_21, NULL);
}
IL_008d:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Reverse_mC4BAD8E716322A3F4D6484E923860F9B9C9DE1EB_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_mAAEDC1FC4B64FF31F3BCA12217394EF6F745A0CB_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
List_1_Reverse_m49E28EF8B84FB51101331978C42C5B880FC4B2AB(__this, 0, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 48));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Reverse_m49E28EF8B84FB51101331978C42C5B880FC4B2AB_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
int32_t L_5 = ___count1;
if ((((int32_t)L_5) <= ((int32_t)1)))
{
goto IL_0038;
}
}
{
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_6 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
int32_t L_7 = ___index0;
int32_t L_8 = ___count1;
Array_Reverse_TisRenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE_m3709CEB1FB33EB083714D1508DABEDDF386C3A78(L_6, L_7, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 49));
}
IL_0038:
{
int32_t L_9 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_9, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m481FB88B5C34AD079776CA5226F36BB47072F2EE_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_mAAEDC1FC4B64FF31F3BCA12217394EF6F745A0CB_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
List_1_Sort_m55FED7081F7709CED68D3FADA0AA87FB723B8F60(__this, 0, L_0, (RuntimeObject*)NULL, il2cpp_rgctx_method(method->klass->rgctx_data, 50));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m83047CC9A22E39C1B70613E4D18C950A7B3EECAD_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = List_1_get_Count_mAAEDC1FC4B64FF31F3BCA12217394EF6F745A0CB_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
RuntimeObject* L_1 = ___comparer0;
List_1_Sort_m55FED7081F7709CED68D3FADA0AA87FB723B8F60(__this, 0, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 50));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m55FED7081F7709CED68D3FADA0AA87FB723B8F60_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, int32_t ___index0, int32_t ___count1, RuntimeObject* ___comparer2, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
ThrowHelper_ThrowIndexArgumentOutOfRange_NeedNonNegNumException_m57AAB1E093F20BFC64BDDBD90FB5B592F582B82F(NULL);
}
IL_0009:
{
int32_t L_1 = ___count1;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m5430BC879B9D99E39DED788BB9451B8EF029756F((int32_t)((int32_t)16), (int32_t)4, NULL);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->____size_2;
int32_t L_3 = ___index0;
int32_t L_4 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, L_3))) >= ((int32_t)L_4)))
{
goto IL_0027;
}
}
{
ThrowHelper_ThrowArgumentException_m698044D4F664D7D0DDB88124EEEE2D052AF628BA((int32_t)((int32_t)23), NULL);
}
IL_0027:
{
int32_t L_5 = ___count1;
if ((((int32_t)L_5) <= ((int32_t)1)))
{
goto IL_0039;
}
}
{
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_6 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
int32_t L_7 = ___index0;
int32_t L_8 = ___count1;
RuntimeObject* L_9 = ___comparer2;
Array_Sort_TisRenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE_m19948B5288B62FAD71D8C6EDD3B19F6801FD1F28(L_6, L_7, L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 51));
}
IL_0039:
{
int32_t L_10 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_10, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m20BFB4B3FF037B0F63456B34503BBF5872330ADE_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, Comparison_1_tEF46E57E1EA1EAD3E013A3E7CBF83ADA63BD074A* ___comparison0, const RuntimeMethod* method)
{
{
Comparison_1_tEF46E57E1EA1EAD3E013A3E7CBF83ADA63BD074A* L_0 = ___comparison0;
if (L_0)
{
goto IL_000a;
}
}
{
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC((int32_t)((int32_t)34), NULL);
}
IL_000a:
{
int32_t L_1 = (int32_t)__this->____size_2;
if ((((int32_t)L_1) <= ((int32_t)1)))
{
goto IL_0026;
}
}
{
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_2 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
int32_t L_3 = (int32_t)__this->____size_2;
Comparison_1_tEF46E57E1EA1EAD3E013A3E7CBF83ADA63BD074A* L_4 = ___comparison0;
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 54));
ArraySortHelper_1_Sort_m032EFA2DFE420C882B8672A45726329F5E2CDCA9(L_2, 0, L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 53));
}
IL_0026:
{
int32_t L_5 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_5, 1));
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* List_1_ToArray_m6663CE2C4469FA726A7984B1CC25DFB79C86DA7C_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, const RuntimeMethod* method)
{
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* V_0 = NULL;
{
int32_t L_0 = (int32_t)__this->____size_2;
if (L_0)
{
goto IL_000e;
}
}
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_1 = ((List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_emptyArray_5;
return L_1;
}
IL_000e:
{
int32_t L_2 = (int32_t)__this->____size_2;
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_3 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)(RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 3), (uint32_t)L_2);
V_0 = L_3;
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_4 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_5 = V_0;
int32_t L_6 = (int32_t)__this->____size_2;
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_4, 0, (RuntimeArray*)L_5, 0, L_6, NULL);
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_7 = V_0;
return L_7;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_AddEnumerable_m7088ED3394FFF962AB1A50214F6D8008985A47A1_gshared (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, RuntimeObject* ___enumerable0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE V_1;
memset((&V_1), 0, sizeof(V_1));
int32_t V_2 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
RuntimeObject* L_1 = ___enumerable0;
NullCheck(L_1);
RuntimeObject* L_2;
L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_1);
V_0 = L_2;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0063:
{
{
RuntimeObject* L_3 = V_0;
if (!L_3)
{
goto IL_006c;
}
}
{
RuntimeObject* L_4 = V_0;
NullCheck((RuntimeObject*)L_4);
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_4);
}
IL_006c:
{
return;
}
}
});
try
{
{
goto IL_0059_1;
}
IL_0017_1:
{
RuntimeObject* L_5 = V_0;
NullCheck(L_5);
RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE L_6;
L_6 = InterfaceFuncInvoker0< RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 40), L_5);
V_1 = L_6;
int32_t L_7 = (int32_t)__this->____size_2;
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_8 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
NullCheck(L_8);
if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)(((RuntimeArray*)L_8)->max_length))))))
{
goto IL_003c_1;
}
}
{
int32_t L_9 = (int32_t)__this->____size_2;
List_1_EnsureCapacity_mA0D0641DCB08BA2E8610EDD5AD2C37E3F638BD69(__this, ((int32_t)il2cpp_codegen_add(L_9, 1)), il2cpp_rgctx_method(method->klass->rgctx_data, 15));
}
IL_003c_1:
{
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_10 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
int32_t L_11 = (int32_t)__this->____size_2;
V_2 = L_11;
int32_t L_12 = V_2;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_12, 1));
int32_t L_13 = V_2;
RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE L_14 = V_1;
NullCheck(L_10);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE)L_14);
}
IL_0059_1:
{
RuntimeObject* L_15 = V_0;
NullCheck((RuntimeObject*)L_15);
bool L_16;
L_16 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_15);
if (L_16)
{
goto IL_0017_1;
}
}
{
goto IL_006d;
}
}
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_006d:
{
return;
}
}
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__cctor_m4406D3A7D63A96624C3E3A580659660AAD468290_gshared (const RuntimeMethod* method)
{
{
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_0 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)(RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)SZArrayNew(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 3), (uint32_t)0);
((List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___s_emptyArray_5 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___s_emptyArray_5), (void*)L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mAF5BD8A6F522C955DCE46B933758304D5018C7E6_gshared_inline (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA ___item0, const RuntimeMethod* method)
{
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_1 = (SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6*)__this->____items_1;
V_0 = L_1;
int32_t L_2 = (int32_t)__this->____size_2;
V_1 = L_2;
int32_t L_3 = V_1;
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_4 = V_0;
NullCheck(L_4);
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
{
goto IL_0034;
}
}
{
int32_t L_5 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
SortedColumnStateU5BU5D_tD76039072018E258494F81C8D50F35EAC97118E6* L_6 = V_0;
int32_t L_7 = V_1;
SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA L_8 = ___item0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA)L_8);
return;
}
IL_0034:
{
SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA L_9 = ___item0;
List_1_AddWithResize_m11DE4AC99EEC52EC53735CB3AAAA2163F0B3C341(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m8C08AC7F86F1E8919954A207A2FD41980A55B1F9_gshared_inline (List_1_t8E88137DBF3559DC2CF17853F82E9C24C134B291* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mDDF814C07EAAA75700F17BC0D5628DC091DC8843_gshared_inline (Predicate_1_t51DBC74A7C1E0943D5EFA3FE74416B197013147C* __this, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA ___obj0, const RuntimeMethod* method)
{
typedef bool (*FunctionPointerType) (RuntimeObject*, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA, const RuntimeMethod*);
return ((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, ___obj0, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_m72F1143242F61E8C2FF0978434DF277335511C40_gshared_inline (Action_1_t72E548755F4BB43C31EDE2E7DAC9E4AEA03432B0* __this, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA ___obj0, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (RuntimeObject*, SortedColumnState_t24958C451ECBAA5C6C868EA4881A27E45DEEA1AA, const RuntimeMethod*);
((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, ___obj0, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m2B80351888D9BCB1461C8808A0B2278006B46AC5_gshared_inline (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 ___item0, const RuntimeMethod* method)
{
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_1 = (ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41*)__this->____items_1;
V_0 = L_1;
int32_t L_2 = (int32_t)__this->____size_2;
V_1 = L_2;
int32_t L_3 = V_1;
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_4 = V_0;
NullCheck(L_4);
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
{
goto IL_0034;
}
}
{
int32_t L_5 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
ReservedBrickU5BU5D_t370DC93F64A81F2F1D92B87305B941C3FA1D4C41* L_6 = V_0;
int32_t L_7 = V_1;
ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 L_8 = ___item0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9)L_8);
return;
}
IL_0034:
{
ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 L_9 = ___item0;
List_1_AddWithResize_mA1A4564FC0DADFAEC0FFC004CCB8CC9D80FD2023(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m09B76BBFD57FC2975CE5920E87397B946A6E88D7_gshared_inline (List_1_t996FD3EBD106385483E11892EE6A4884B2EC9330* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m91E2DD4011E6B92F0BF4D54948CA5F53D1DE0E7B_gshared_inline (Predicate_1_t4000E2F6D93B445A9E4479DEA0D093186BF3B907* __this, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 ___obj0, const RuntimeMethod* method)
{
typedef bool (*FunctionPointerType) (RuntimeObject*, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9, const RuntimeMethod*);
return ((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, ___obj0, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_m785F59026951A944FC1FBFFA5FC45A41B5A46A43_gshared_inline (Action_1_tCEBA10A27E04AF1981907713C1030E69EC9825E6* __this, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9 ___obj0, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (RuntimeObject*, ReservedBrick_tCFAA149CAAD025D942AF59976B1CC697E96CACB9, const RuntimeMethod*);
((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, ___obj0, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mBD25BC6E762DE994E1326749F2C4A552BC2CC79F_gshared_inline (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B ___item0, const RuntimeMethod* method)
{
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_1 = (BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE*)__this->____items_1;
V_0 = L_1;
int32_t L_2 = (int32_t)__this->____size_2;
V_1 = L_2;
int32_t L_3 = V_1;
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_4 = V_0;
NullCheck(L_4);
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
{
goto IL_0034;
}
}
{
int32_t L_5 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
BrickChunkAllocU5BU5D_t67316E3C7BB0F8E26AB0D8AD7B8CC62FD533F6AE* L_6 = V_0;
int32_t L_7 = V_1;
BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B L_8 = ___item0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B)L_8);
return;
}
IL_0034:
{
BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B L_9 = ___item0;
List_1_AddWithResize_m0F60A70AFEE910197AA0D83E7ADE883278413E49(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m6C34C2E4F4CAE3C6FFE13DC11181ADD0D19C0253_gshared_inline (List_1_t179992B095C528117EEF4782A1F45568BD2D51EA* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m686502E8E7E7D0BA4C6D18B5F9FEBE3CFC179470_gshared_inline (Predicate_1_t9939AC86819E2498AF558953EFF6F269E25648A6* __this, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B ___obj0, const RuntimeMethod* method)
{
typedef bool (*FunctionPointerType) (RuntimeObject*, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B, const RuntimeMethod*);
return ((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, ___obj0, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_m1CABBE687A5B8796B2623B610500C202E7582ADC_gshared_inline (Action_1_tD17A4D72165DC3DB30991AE957053E20BE4178C8* __this, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B ___obj0, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (RuntimeObject*, BrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B, const RuntimeMethod*);
((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, ___obj0, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m789F885930480A60CC99D85E28B6D92CEDA74EF1_gshared_inline (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 ___item0, const RuntimeMethod* method)
{
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_1 = (SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52*)__this->____items_1;
V_0 = L_1;
int32_t L_2 = (int32_t)__this->____size_2;
V_1 = L_2;
int32_t L_3 = V_1;
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_4 = V_0;
NullCheck(L_4);
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
{
goto IL_0034;
}
}
{
int32_t L_5 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
SerializablePerScenarioDataItemU5BU5D_tD35129DA4D6FCEF24D304F5F80F4DA9A389B0A52* L_6 = V_0;
int32_t L_7 = V_1;
SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 L_8 = ___item0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92)L_8);
return;
}
IL_0034:
{
SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 L_9 = ___item0;
List_1_AddWithResize_m199942A4F45DF9A26AE2BF3F5F83EB6872EF1296(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m62E98B115ACDF79B5558CFC3F21D107DCC98D9BB_gshared_inline (List_1_tD47E289A20580491873111C2FC85A5456012FCAC* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m7F899F9611DAC1AC03EEDF59AA231010CA8F99F0_gshared_inline (Predicate_1_tB611AC0628C45AA8C22D98641EB0E2777E379967* __this, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 ___obj0, const RuntimeMethod* method)
{
typedef bool (*FunctionPointerType) (RuntimeObject*, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92, const RuntimeMethod*);
return ((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, ___obj0, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_mE8864E52B8F99441E9CE69FE4157842E40E94DD5_gshared_inline (Action_1_t187C688D32A8DB83E990AEA9706F59866839B943* __this, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92 ___obj0, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (RuntimeObject*, SerializablePerScenarioDataItem_t8ECC5ABF9BA05017D9B44DB66430D5946393AC92, const RuntimeMethod*);
((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, ___obj0, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m1C31C862D450C02A5085E473D157F7AC7B76D046_gshared_inline (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 ___item0, const RuntimeMethod* method)
{
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_1 = (SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA*)__this->____items_1;
V_0 = L_1;
int32_t L_2 = (int32_t)__this->____size_2;
V_1 = L_2;
int32_t L_3 = V_1;
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_4 = V_0;
NullCheck(L_4);
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
{
goto IL_0034;
}
}
{
int32_t L_5 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
SerializableBoundItemU5BU5D_t6A6730B7697F655ED0E1D74377C1108737C653FA* L_6 = V_0;
int32_t L_7 = V_1;
SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 L_8 = ___item0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640)L_8);
return;
}
IL_0034:
{
SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 L_9 = ___item0;
List_1_AddWithResize_mFD764274879592E1088C9DAB36E8B76DB1114FEB(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m9EDF914E652D5A671B9E6B3C1AF001CBADC12B01_gshared_inline (List_1_tFEAC63AB47ECFF037313075F47A5D7240D0DDE44* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m9EA6BB06561BD8025D11A4F544802CD868048653_gshared_inline (Predicate_1_t91F6DA80C04BF546E5879B9232C076E32128590F* __this, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 ___obj0, const RuntimeMethod* method)
{
typedef bool (*FunctionPointerType) (RuntimeObject*, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640, const RuntimeMethod*);
return ((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, ___obj0, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_m96CD6B978BAA81562C4223643F24E228A2347BCD_gshared_inline (Action_1_tB0C884D3D3374CFCE94E90AC8FECDC5E3E791203* __this, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640 ___obj0, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (RuntimeObject*, SerializableBoundItem_tF2F8CD24513F8F4D69DCAC89522EA0D3C032A640, const RuntimeMethod*);
((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, ___obj0, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m57A1BE88ECE375428E12EB373147D1FA8751D4FB_gshared_inline (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C ___item0, const RuntimeMethod* method)
{
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_1 = (SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966*)__this->____items_1;
V_0 = L_1;
int32_t L_2 = (int32_t)__this->____size_2;
V_1 = L_2;
int32_t L_3 = V_1;
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_4 = V_0;
NullCheck(L_4);
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
{
goto IL_0034;
}
}
{
int32_t L_5 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
SerializableHasPVItemU5BU5D_tA6217A7E29B8310E0EA1D3C2C7D4D14690606966* L_6 = V_0;
int32_t L_7 = V_1;
SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C L_8 = ___item0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C)L_8);
return;
}
IL_0034:
{
SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C L_9 = ___item0;
List_1_AddWithResize_m8B89217448277604B1CE90E00676070757A181B7(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mD5B39B9B0F072CA06C68377531E0886E3538F716_gshared_inline (List_1_t9B93A8FFF20D5011038A191EEEBD767C937F3815* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mCF9BF523FD024AF55E93F13ED6D2E00AEB0A484F_gshared_inline (Predicate_1_t9B2D6474D0B9770CC8D95DD34EA4AD9556D351A6* __this, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C ___obj0, const RuntimeMethod* method)
{
typedef bool (*FunctionPointerType) (RuntimeObject*, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C, const RuntimeMethod*);
return ((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, ___obj0, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_mA8F1A4AF0D247CFBFFA0A11F02BE172A36AB1197_gshared_inline (Action_1_t92F25D2BF6C8C5C1D69E8CF2473ABBCC3136018F* __this, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C ___obj0, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (RuntimeObject*, SerializableHasPVItem_t061E2CE4D8B201F280D06ABD0246C7AD8FD9571C, const RuntimeMethod*);
((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, ___obj0, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m2A67FD5726B4822A0635AE943CF6D96A403D71CD_gshared_inline (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 ___item0, const RuntimeMethod* method)
{
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_1 = (SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543*)__this->____items_1;
V_0 = L_1;
int32_t L_2 = (int32_t)__this->____size_2;
V_1 = L_2;
int32_t L_3 = V_1;
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_4 = V_0;
NullCheck(L_4);
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
{
goto IL_0034;
}
}
{
int32_t L_5 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
SerializablePVBakeSettingsU5BU5D_t6434FEA43667C1FCEAD37D5834E74C09B527C543* L_6 = V_0;
int32_t L_7 = V_1;
SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 L_8 = ___item0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452)L_8);
return;
}
IL_0034:
{
SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 L_9 = ___item0;
List_1_AddWithResize_m917A6AD1D7ADF266FC1E66DCCC79AE49E725066C(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m69AE2AA581A9F7CC56C2A779BA4524E1900ADF55_gshared_inline (List_1_tE15A36783D21F016929125A00F602D220C32C84A* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mCAAFFB8B975CC9C9EB0020ABC8FC6826A53CBC68_gshared_inline (Predicate_1_t19AD45D1959BE743073EC8A444DE8A4CD156EBDC* __this, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 ___obj0, const RuntimeMethod* method)
{
typedef bool (*FunctionPointerType) (RuntimeObject*, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452, const RuntimeMethod*);
return ((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, ___obj0, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_m1AE5DA812CC78579382FC604F31F5C324DFA5DAC_gshared_inline (Action_1_tDEE138ADA6A5B56B11D9CFC823CBBD375BA9115A* __this, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452 ___obj0, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (RuntimeObject*, SerializablePVBakeSettings_t9C88167788303739AC5D93A20092598DF654A452, const RuntimeMethod*);
((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, ___obj0, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m90D4191082A9625E71B5BC4A7BC252C5BD7E8299_gshared_inline (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C ___item0, const RuntimeMethod* method)
{
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_1 = (SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530*)__this->____items_1;
V_0 = L_1;
int32_t L_2 = (int32_t)__this->____size_2;
V_1 = L_2;
int32_t L_3 = V_1;
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_4 = V_0;
NullCheck(L_4);
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
{
goto IL_0034;
}
}
{
int32_t L_5 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
SerializablePVProfileU5BU5D_t15CBE5811C9B0A88DEB4669CAAF2FBFF363BC530* L_6 = V_0;
int32_t L_7 = V_1;
SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C L_8 = ___item0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C)L_8);
return;
}
IL_0034:
{
SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C L_9 = ___item0;
List_1_AddWithResize_mAE7B1D480FC532D533FA051FA8E394D1ADDF3757(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mE81A223E9D4AA4DCA2561161DEB7272C270767F7_gshared_inline (List_1_t2FCEA7635AA5C3B22E982462685B40276413F521* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m8AE9297F7EBFDF86DC2736E37B03A98E7CEE6208_gshared_inline (Predicate_1_tC88052F39393D0E4E248EB8800665E2921E13909* __this, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C ___obj0, const RuntimeMethod* method)
{
typedef bool (*FunctionPointerType) (RuntimeObject*, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C, const RuntimeMethod*);
return ((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, ___obj0, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_m8186B7CA741A9C5ACC10D5B1572DB2B8A5800C00_gshared_inline (Action_1_tD86C2FCC7B89EA018509622FD8BA07E5851ED1D9* __this, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C ___obj0, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (RuntimeObject*, SerializablePVProfile_t5A21743AE68601F4B203BC9CE6A6B9A94B114D5C, const RuntimeMethod*);
((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, ___obj0, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m624C469B79ADC28E429B7A3CA96DA72345621643_gshared_inline (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ___item0, const RuntimeMethod* method)
{
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_1 = (SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6*)__this->____items_1;
V_0 = L_1;
int32_t L_2 = (int32_t)__this->____size_2;
V_1 = L_2;
int32_t L_3 = V_1;
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_4 = V_0;
NullCheck(L_4);
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
{
goto IL_0034;
}
}
{
int32_t L_5 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
SingleRangeU5BU5D_t9F938F2249733D85C4F97842A125778D69A843D6* L_6 = V_0;
int32_t L_7 = V_1;
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_8 = ___item0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC)L_8);
return;
}
IL_0034:
{
SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC L_9 = ___item0;
List_1_AddWithResize_m594A4155F206677F45ECD9AAE7E9EFD0AE6137ED(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mF3540C84790DAB9D381F00753BA20A85694C3446_gshared_inline (List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mADD6CFDE192E3E822D5296926054ED8A41DB09C4_gshared_inline (Predicate_1_t107748E0E0D2277266234EAF67AC068394C4351C* __this, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ___obj0, const RuntimeMethod* method)
{
typedef bool (*FunctionPointerType) (RuntimeObject*, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC, const RuntimeMethod*);
return ((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, ___obj0, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_m6A44347B678A89104F91C3A85581DCC41A21AD5B_gshared_inline (Action_1_t4501483487EE874F237B6B25ACC1026A64FBF612* __this, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC ___obj0, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (RuntimeObject*, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC, const RuntimeMethod*);
((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, ___obj0, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mD3E9E49A0FA7E3FB0E9EAAEB94864A1E9161612D_gshared_inline (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE ___item0, const RuntimeMethod* method)
{
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_1 = (RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E*)__this->____items_1;
V_0 = L_1;
int32_t L_2 = (int32_t)__this->____size_2;
V_1 = L_2;
int32_t L_3 = V_1;
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_4 = V_0;
NullCheck(L_4);
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
{
goto IL_0034;
}
}
{
int32_t L_5 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
RenderNodeDataU5BU5D_t73A42A22EC1354DE8A25C10A2E408E1DA7C41B7E* L_6 = V_0;
int32_t L_7 = V_1;
RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE L_8 = ___item0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE)L_8);
return;
}
IL_0034:
{
RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE L_9 = ___item0;
List_1_AddWithResize_mC8CCF79EEFA3DFA94ED1D51F5BE288209FBBDA6F(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mAAEDC1FC4B64FF31F3BCA12217394EF6F745A0CB_gshared_inline (List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m135269208DD6D8EA90E641BC8AE589799BE775CE_gshared_inline (Predicate_1_t11FD0E9C3E3027EDC3E795B12D6DEAB00BE6209E* __this, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE ___obj0, const RuntimeMethod* method)
{
typedef bool (*FunctionPointerType) (RuntimeObject*, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE, const RuntimeMethod*);
return ((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, ___obj0, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_m02B1A77D2272E9F41F217EA15AB3CB64FA07A90C_gshared_inline (Action_1_tD0160E105457D40D8673BAC7E6B940058EE57412* __this, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE ___obj0, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (RuntimeObject*, RenderNodeData_t7527D1643CC280CE2B2E40AB9F5154615B7A99AE, const RuntimeMethod*);
((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, ___obj0, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
| [
"sebastien.michel60@gmail.com"
] | sebastien.michel60@gmail.com |
4dc84872b4a5df7a4b1c25334b14bca8ec4a9b8b | e6c84c84b90a53aca1971db8a009ab14d1e4e375 | /result/lab5/optimize.cc | 34321f11338ab7202f640b2af4faa70ffb74aede | [] | no_license | kenDjango/TDDB44 | 180b5cfe998130278e55d3a425b1357d4a957f3e | 5917ee3903690fb88c46b8623d368ff10078a296 | refs/heads/master | 2021-08-31T09:12:22.034447 | 2017-12-20T21:46:21 | 2017-12-20T21:46:21 | 114,552,724 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,132 | cc | #include "optimize.hh"
/*** This file contains all code pertaining to AST optimisation. It currently
implements a simple optimisation called "constant folding". Most of the
methods in this file are empty, or just relay optimize calls downward
in the AST. If a more powerful AST optimization scheme were to be
implemented, only methods in this file should need to be changed. ***/
ast_optimizer *optimizer = new ast_optimizer();
/* The optimizer's interface method. Starts a recursive optimize call down
the AST nodes, searching for binary operators with constant children. */
void ast_optimizer::do_optimize(ast_stmt_list *body)
{
if (body != NULL) {
body->optimize();
}
}
/* Returns 1 if an AST expression is a subclass of ast_binaryoperation,
ie, eligible for constant folding. */
bool ast_optimizer::is_binop(ast_expression *node)
{
switch (node->tag) {
case AST_ADD:
case AST_SUB:
case AST_OR:
case AST_AND:
case AST_MULT:
case AST_DIVIDE:
case AST_IDIV:
case AST_MOD:
return true;
default:
return false;
}
}
/* We overload this method for the various ast_node subclasses that can
appear in the AST. By use of virtual (dynamic) methods, we ensure that
the correct method is invoked even if the pointers in the AST refer to
one of the abstract classes such as ast_expression or ast_statement. */
void ast_node::optimize()
{
fatal("Trying to optimize abstract class ast_node.");
}
void ast_statement::optimize()
{
fatal("Trying to optimize abstract class ast_statement.");
}
void ast_expression::optimize()
{
fatal("Trying to optimize abstract class ast_expression.");
}
void ast_lvalue::optimize()
{
fatal("Trying to optimize abstract class ast_lvalue.");
}
void ast_binaryoperation::optimize()
{
fatal("Trying to optimize abstract class ast_binaryoperation.");
}
void ast_binaryrelation::optimize()
{
fatal("Trying to optimize abstract class ast_binaryrelation.");
}
/*** The optimize methods for the concrete AST classes. ***/
/* Optimize a statement list. */
void ast_stmt_list::optimize()
{
if (preceding != NULL) {
preceding->optimize();
}
if (last_stmt != NULL) {
last_stmt->optimize();
}
}
/* Optimize a list of expressions. */
void ast_expr_list::optimize()
{
if (preceding != NULL) {
preceding->optimize();
}
if (last_expr != NULL) {
last_expr = optimizer->fold_constants(last_expr);
}
}
/* Optimize an elsif list. */
void ast_elsif_list::optimize()
{
if (preceding != NULL) {
preceding->optimize();
}
if (last_elsif != NULL) {
last_elsif->optimize();
}
}
/* An identifier's value can change at run-time, so we can't perform
constant folding optimization on it unless it is a constant.
Thus we just do nothing here. It can be treated in the fold_constants()
method, however. */
void ast_id::optimize()
{
}
void ast_indexed::optimize()
{
index = optimizer->fold_constants(index);
}
bool ast_optimizer::is_const(ast_expression * expr)
{
switch (expr->tag)
{
case AST_INTEGER:
return true;
case AST_REAL:
return true;
case AST_ID:
return sym_tab->get_symbol_tag(expr->get_ast_id()->sym_p) == SYM_CONST;
default:
return false;
}
}
/* This convenience method is used to apply constant folding to all
binary operations. It returns either the resulting optimized node or the
original node if no optimization could be performed. */
ast_expression *ast_optimizer::fold_constants(ast_expression *node)
{
node->optimize();
if(is_binop(node)){
ast_binaryoperation *bin_op = node->get_ast_binaryoperation();
bin_op->left = fold_constants(bin_op->left);
bin_op->right = fold_constants(bin_op->right);
if (!(is_const(bin_op->left) && is_const(bin_op->right)))
return node;
if(bin_op->left->type == integer_type && bin_op->right->type == integer_type){
long left_value;
long right_value;
if(bin_op->left->tag == AST_ID){
constant_symbol* sym_left = sym_tab->get_symbol(bin_op->left->get_ast_id()->sym_p)->get_constant_symbol();
left_value = sym_left->const_value.ival;
}else left_value = bin_op->left->get_ast_integer()->value;
if(bin_op->right->tag == AST_ID){
constant_symbol* sym_right = sym_tab->get_symbol(bin_op->right->get_ast_id()->sym_p)->get_constant_symbol();
right_value = sym_right->const_value.ival;
}else{
right_value = bin_op->right->get_ast_integer()->value;
}
switch(bin_op->tag){
case AST_ADD:
return new ast_integer(bin_op->pos, left_value + right_value);
case AST_SUB:
return new ast_integer(bin_op->pos, left_value - right_value);
case AST_MULT:
return new ast_integer(bin_op->pos, left_value * right_value);
case AST_AND:
return new ast_integer(bin_op->pos, left_value && right_value);
case AST_OR:
return new ast_integer(bin_op->pos, left_value || right_value);
case AST_IDIV:
return new ast_integer(bin_op->pos, left_value / right_value);
case AST_MOD:
return new ast_integer(bin_op->pos, left_value % right_value);
default:
return node;
}
}
else if(bin_op->left->type == real_type && bin_op->right->type == real_type){
double left_value;
double right_value;
if(bin_op->left->tag == AST_ID){
constant_symbol* sym_left = sym_tab->get_symbol(bin_op->left->get_ast_id()->sym_p)->get_constant_symbol();
left_value = sym_left->const_value.rval;
}
else left_value = bin_op->left->get_ast_real()->value;
if(bin_op->right->tag == AST_ID){
constant_symbol* sym_right = sym_tab->get_symbol(bin_op->right->get_ast_id()->sym_p)->get_constant_symbol();
right_value = sym_right->const_value.rval;
}
else right_value = bin_op->right->get_ast_real()->value;
switch(bin_op->tag){
case AST_ADD:
return new ast_real(bin_op->pos, left_value + right_value);
case AST_SUB:
return new ast_real(bin_op->pos, left_value - right_value);
case AST_MULT:
return new ast_real(bin_op->pos, left_value * right_value);
case AST_AND:
return new ast_real(bin_op->pos, left_value && right_value);
case AST_OR:
return new ast_real(bin_op->pos, left_value || right_value);
case AST_DIVIDE:
return new ast_real(bin_op->pos, left_value / right_value);
default:
return node;
}
}
else return node;
}
return node;
}
/* All the binary operations should already have been detected in their parent
nodes, so we don't need to do anything at all here. */
void ast_add::optimize()
{
left = optimizer->fold_constants(left);
right = optimizer->fold_constants(right);
}
void ast_sub::optimize()
{
left = optimizer->fold_constants(left);
right = optimizer->fold_constants(right);
}
void ast_mult::optimize()
{
left = optimizer->fold_constants(left);
right = optimizer->fold_constants(right);
}
void ast_divide::optimize()
{
left = optimizer->fold_constants(left);
right = optimizer->fold_constants(right);
}
void ast_or::optimize()
{
left = optimizer->fold_constants(left);
right = optimizer->fold_constants(right);
}
void ast_and::optimize()
{
left = optimizer->fold_constants(left);
right = optimizer->fold_constants(right);
}
void ast_idiv::optimize()
{
left = optimizer->fold_constants(left);
right = optimizer->fold_constants(right);
}
void ast_mod::optimize()
{
left = optimizer->fold_constants(left);
right = optimizer->fold_constants(right);
}
/* We can apply constant folding to binary relations as well. */
void ast_equal::optimize()
{
left = optimizer->fold_constants(left);
right = optimizer->fold_constants(right);
}
void ast_notequal::optimize()
{
left = optimizer->fold_constants(left);
right = optimizer->fold_constants(right);
}
void ast_lessthan::optimize()
{
left = optimizer->fold_constants(left);
right = optimizer->fold_constants(right);
}
void ast_greaterthan::optimize()
{
left = optimizer->fold_constants(left);
right = optimizer->fold_constants(right);
}
/*** The various classes derived from ast_statement. ***/
void ast_procedurecall::optimize()
{
if (parameter_list != NULL)
parameter_list->optimize();
}
void ast_assign::optimize()
{
rhs = optimizer->fold_constants(rhs);
}
void ast_while::optimize()
{
condition = optimizer->fold_constants(condition);
if (body != NULL) body->optimize();
}
void ast_if::optimize()
{
condition = optimizer->fold_constants(condition);
if(body != NULL)
body->optimize();
if(elsif_list != NULL)
elsif_list->optimize();
if(else_body != NULL)
else_body->optimize();
}
void ast_return::optimize()
{
if(value != NULL)
value = optimizer->fold_constants(value);
}
void ast_functioncall::optimize()
{
if(parameter_list != NULL)
parameter_list->optimize();
}
void ast_uminus::optimize()
{
expr = optimizer->fold_constants(expr);
}
void ast_not::optimize()
{
expr = optimizer->fold_constants(expr);
}
void ast_elsif::optimize()
{
condition = optimizer->fold_constants(condition);
if (body != NULL)
body->optimize();
}
void ast_integer::optimize()
{
/* Your code here */
}
void ast_real::optimize()
{
/* Your code here */
}
/* Note: See the comment in fold_constants() about casts and folding. */
void ast_cast::optimize()
{
/* Your code here */
}
void ast_procedurehead::optimize()
{
fatal("Trying to call ast_procedurehead::optimize()");
}
void ast_functionhead::optimize()
{
fatal("Trying to call ast_functionhead::optimize()");
}
| [
"kenro028@student.liu.se"
] | kenro028@student.liu.se |
3e4b6c77cd15683ee1a51eecb3a6607e7e321f5a | d34a4dd3d921bec0f50f55473de088efbe8b41ab | /packages/react-native/ReactCommon/react/renderer/components/safeareaview/SafeAreaViewComponentDescriptor.h | 09134eb9abde1fa65bfc96dfbe407a1e16688bd5 | [
"CC-BY-4.0",
"MIT",
"CC-BY-SA-4.0",
"CC-BY-NC-SA-4.0"
] | permissive | sarvex/react-native | 9d8bb564830c872ae37174bf626fc58fe0edcce8 | 196054fa550ed581147dd67ec0495812b8fd0bd4 | refs/heads/master | 2023-08-17T07:03:44.377583 | 2023-08-16T05:27:35 | 2023-08-16T05:27:35 | 33,070,464 | 0 | 0 | CC-BY-4.0 | 2023-09-02T07:35:06 | 2015-03-29T11:24:12 | Java | UTF-8 | C++ | false | false | 1,479 | h | /*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#pragma once
#include <react/debug/react_native_assert.h>
#include <react/renderer/components/safeareaview/SafeAreaViewShadowNode.h>
#include <react/renderer/core/ConcreteComponentDescriptor.h>
namespace facebook::react {
/*
* Descriptor for <SafeAreaView> component.
*/
class SafeAreaViewComponentDescriptor final
: public ConcreteComponentDescriptor<SafeAreaViewShadowNode> {
using ConcreteComponentDescriptor::ConcreteComponentDescriptor;
void adopt(ShadowNode::Unshared const &shadowNode) const override {
react_native_assert(
std::dynamic_pointer_cast<SafeAreaViewShadowNode>(shadowNode));
auto safeAreaViewShadowNode =
std::static_pointer_cast<SafeAreaViewShadowNode>(shadowNode);
react_native_assert(std::dynamic_pointer_cast<YogaLayoutableShadowNode>(
safeAreaViewShadowNode));
auto layoutableShadowNode =
std::static_pointer_cast<YogaLayoutableShadowNode>(
safeAreaViewShadowNode);
auto state =
std::static_pointer_cast<const SafeAreaViewShadowNode::ConcreteState>(
shadowNode->getState());
auto stateData = state->getData();
layoutableShadowNode->setPadding(stateData.padding);
ConcreteComponentDescriptor::adopt(shadowNode);
}
};
} // namespace facebook::react
| [
"facebook-github-bot@users.noreply.github.com"
] | facebook-github-bot@users.noreply.github.com |
395926c2714c009675c13bfcdcee600a5ce619c9 | e4efbce1cf8e880a76e852908a5d55769684b61c | /CSES/1085.cpp | f1a2750c9d18eb943f6abd297f6b5d2721066199 | [] | no_license | Sodbayar/Competitive-Programming | d96dc51e26e7cdb738ce7e68de7dbac9384c9027 | ced407a539a6504f913fa3f2e1bbca723122e993 | refs/heads/master | 2021-08-07T11:01:13.528440 | 2021-07-30T21:50:05 | 2021-07-30T21:50:05 | 231,866,744 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,377 | cpp | #include <iostream>
#include <vector>
#include <queue>
#include <set>
#include <algorithm>
#include <cmath>
#include <cstring>
#include <string>
#include <climits>
#include <sstream>
#include <map>
#include <unordered_map>
#include <cctype>
#include <bitset>
#include <stack>
#include <iterator>
#define vi vector<int>
#define pb push_back
#define pii pair<int, int>
#define mp make_pair
#define ll long long
#define oo (int)1e9 + 7
#define ii pair<int, int>
#define forl(i, k, p) for (int i = k; i <= p; i++)
#define loop(i, p) for (int i = 0; i < p; i++)
#define sf(a) scanf("%d",&a)
#define sfl(a) scanf("%lld",&a)
#define sff(a,b) scanf("%d %d",&a,&bingo)
#define sffl(a,b) scanf("%lld %lld",&a,&bingo)
#define sfff(a,b,c) scanf("%d %d %d",&a,&bingo,&c)
using namespace std;
vector<ll> vec;
int n, k;
bool check(ll mid) {
ll sum = 0;
ll cnt = 0;
loop(i, n) {
if (vec[i] > mid) return false;
sum += vec[i];
if (sum > mid) {
cnt++;
sum = vec[i];
}
if (cnt > k) return false;
}
cnt++;
return cnt <= k;
}
int main() {
cin >> n >> k;
vec.resize(n);
ll top = 0;
ll btm = 0;
loop(i, n) {
cin >> vec[i];
top += vec[i];
}
ll ans = 0;
while (btm <= top) {
ll mid = (btm + top) / 2;
if (check(mid)) {
top = mid - 1;
ans = mid;
}
else {
btm = mid + 1;
}
}
cout << ans << endl;
} | [
"nsdbyr@gmail.com"
] | nsdbyr@gmail.com |
3378b4665e298cac1c50bd90d808a2f1ce0a4d38 | da4a01efd7fe7e435ad50791bf1964751abee0a9 | /op_kernel.h | fc572864384afe11328ebc19e3b971f99168af69 | [] | no_license | yl255/Build-tensorflow-v1.13.1-with-vs2017-using-cuda-10.1 | 110bf8114138a5c8cbce6cd1ac3590c1f72e4064 | 167be3f85299225a6e319f2e007605af3ed988d7 | refs/heads/master | 2022-09-20T06:16:52.539580 | 2020-05-28T05:57:59 | 2020-05-28T05:57:59 | 264,794,093 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 68,335 | h | /* Copyright 2015 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
#ifndef TENSORFLOW_CORE_FRAMEWORK_OP_KERNEL_H_
#define TENSORFLOW_CORE_FRAMEWORK_OP_KERNEL_H_
#include <functional>
#include <utility>
#include <vector>
#include "tensorflow/core/framework/allocator.h"
#include "tensorflow/core/framework/cancellation.h"
#include "tensorflow/core/framework/control_flow.h"
#include "tensorflow/core/framework/device_base.h"
#include "tensorflow/core/framework/graph.pb.h"
#include "tensorflow/core/framework/kernel_def.pb.h"
#include "tensorflow/core/framework/kernel_def_builder.h"
#include "tensorflow/core/framework/node_def_util.h"
#include "tensorflow/core/framework/op.h" // TODO(b/62899350): Remove
#include "tensorflow/core/framework/rendezvous.h"
#include "tensorflow/core/framework/selective_registration.h"
#include "tensorflow/core/framework/session_state.h"
#include "tensorflow/core/framework/tensor.h"
#include "tensorflow/core/framework/tensor_shape.h"
#include "tensorflow/core/framework/tensor_shape.pb.h" // TODO(b/62899350): Remove
#include "tensorflow/core/framework/tracking_allocator.h"
#include "tensorflow/core/framework/types.h"
#include "tensorflow/core/framework/types.pb.h"
#include "tensorflow/core/framework/unique_tensor_references.h"
#include "tensorflow/core/lib/core/errors.h"
#include "tensorflow/core/lib/core/status.h"
#include "tensorflow/core/lib/gtl/array_slice.h"
#include "tensorflow/core/lib/gtl/manual_constructor.h"
#include "tensorflow/core/platform/env.h"
#include "tensorflow/core/platform/logging.h"
#include "tensorflow/core/platform/macros.h"
#include "tensorflow/core/platform/mutex.h"
#include "tensorflow/core/platform/thread_annotations.h"
#include "tensorflow/core/platform/types.h"
namespace Eigen {
struct ThreadPoolDevice;
struct GpuDevice;
struct SyclDevice;
} // end namespace Eigen
namespace tensorflow {
namespace checkpoint {
class TensorSliceReaderCacheWrapper;
} // namespace checkpoint
class AsyncOpKernel;
class CallFrameInterface;
class FunctionLibraryRuntime;
class OpKernelConstruction; // declared below
class OpKernelContext; // declared below,
class OpRegistryInterface;
class ResourceMgr;
class ScopedStepContainer;
class CollectiveExecutor;
class StepStatsCollectorInterface;
class OpKernel {
public:
// OpKernel won't be instantiated by the scheduler, so you may perform
// expensive initialization in the descendant's constructor.
explicit OpKernel(OpKernelConstruction* context);
// Specialized constructor that enables the descendant to provide a different
// `NodeDef` value. For example, this constructor can be used to provide a
// stripped-down `NodeDef` that does not contain the full set of attrs (such
// as tensor values) if the descendant stores them in a different form.
explicit OpKernel(OpKernelConstruction* context,
std::unique_ptr<const NodeDef> node_def);
virtual ~OpKernel();
// An OpKernel's computation can be either synchronous or
// asynchronous. All OpKernel Compute() methods must be thread-safe as they
// may be called concurrently (e.g. by multiple executions of the same graph
// concurrently).
//
// Most OpKernels should compute synchronously. They should
// subclass OpKernel and override the Compute() method and have it
// return after completing the supplied work.
//
// A few special kernels might need to be asynchronous to bound the
// number of threads (e.g., network receive operations). These
// kernels must subclass AsyncOpKernel and override
// AsyncOpKernel::ComputeAsync().
//
// In both cases, implementations of Compute() and ComputeAsync()
// get inputs and write outputs through the given OpKernelContext
// and returns a status via context->SetStatus(). They must be
// thread-safe.
// Synchronous compute.
//
// "context" is guaranteed to be alive until Compute() returns.
virtual void Compute(OpKernelContext* context) = 0;
// Returns nullptr iff this op kernel is synchronous.
virtual AsyncOpKernel* AsAsync() { return nullptr; }
virtual const AsyncOpKernel* AsAsync() const { return nullptr; }
// Returns true iff this op kernel is considered "expensive". The
// runtime may use this flag to optimize graph execution for example
// to "inline" inexpensive kernels.
virtual bool IsExpensive() { return expensive_; }
// Accessors.
const NodeDef& def() const { return *def_; }
const string& name() const; // Same as def().name()
const string& type_string() const; // Same as def().op()
const string& requested_device() const; // Same as def().device()
bool is_internal() const { return is_internal_; }
int num_inputs() const { return input_types_.size(); }
DataType input_type(int i) const { return input_types_[i]; }
const DataTypeVector& input_types() const { return input_types_; }
const MemoryTypeVector& input_memory_types() const {
return input_memory_types_;
}
const string& requested_input(int i) const; // Same as def().input(i)
int num_outputs() const { return output_types_.size(); }
DataType output_type(int o) const { return output_types_[o]; }
const DataTypeVector& output_types() const { return output_types_; }
const MemoryTypeVector& output_memory_types() const {
return output_memory_types_;
}
Status InputRange(StringPiece input_name, int* start, int* stop) const;
Status OutputRange(StringPiece output_name, int* start, int* stop) const;
// We allow legacy scalars within Google up until GraphDef version 6.
// TODO(irving): Remove when we can drop support for GraphDef version 5.
bool allow_legacy_scalars() const {
#if defined(PLATFORM_GOOGLE) || defined(PLATFORM_GOOGLE_ANDROID)
return graph_def_version_ < 6;
#else
return false;
#endif
}
// Allow either scalars or (if allowing legacy scalars) shape (1,).
bool IsLegacyScalar(const TensorShape& shape) const {
return shape.dims() == 0 || (allow_legacy_scalars() && shape.dims() == 1 &&
shape.dim_size(0) == 1);
}
// Allow rank 1 or (if allowing legacy scalars) rank 0.
bool IsLegacyVector(const TensorShape& shape) const {
return shape.dims() == 1 || (allow_legacy_scalars() && shape.dims() == 0);
}
// Turn a shape Tensor into a TensorShape
// TODO(irving): Move to TensorShapeUtils once !allow_legacy_scalars
Status MakeShape(const Tensor& shape, TensorShape* out) const;
private:
const std::unique_ptr<const NodeDef> def_;
const DataTypeVector input_types_;
const MemoryTypeVector input_memory_types_;
const DataTypeVector output_types_;
const MemoryTypeVector output_memory_types_;
const int graph_def_version_;
const bool is_internal_; // True if this is an internal operation
NameRangeMap input_name_map_;
NameRangeMap output_name_map_;
bool expensive_;
TF_DISALLOW_COPY_AND_ASSIGN(OpKernel);
};
class AsyncOpKernel : public OpKernel {
public:
using OpKernel::OpKernel; // Lift OpKernel constructors.
// Asynchronous compute.
//
// Implementations of ComputeAsync() must run "done" to signal the
// completion of the computation. "context" is guaranteed to be
// alive until the "done" callback starts.
typedef std::function<void()> DoneCallback;
virtual void ComputeAsync(OpKernelContext* context, DoneCallback done) = 0;
AsyncOpKernel* AsAsync() final { return this; }
const AsyncOpKernel* AsAsync() const final { return this; }
void Compute(OpKernelContext* context) final;
bool IsExpensive() override { return true; }
};
// Wraps a tensor that is held by an Op across calls to Compute(). For
// memory safety when using asynchronous devices like GPUs, the system
// must be notified when a Tensor is used inside an Op execution. The
// wrapper ensures that all uses of the Tensor are tracked, because in
// order to retrieve the Tensor the caller must use AccessTensor which
// notifies the context.
class PersistentTensor {
public:
PersistentTensor() {}
explicit PersistentTensor(const Tensor& tensor) : tensor_(tensor) {}
// Caller does not own the returned Tensor*.
Tensor* AccessTensor(OpKernelConstruction* context);
// Caller does not own the returned Tensor*.
Tensor* AccessTensor(OpKernelContext* context);
// The check for initialization does not need to access the
// underlying tensor buffer.
bool IsInitialized() const { return tensor_.IsInitialized(); }
int64 NumElements() const { return tensor_.NumElements(); }
int64 AllocatedBytes() const { return tensor_.AllocatedBytes(); }
private:
Tensor tensor_;
};
class OpKernelConstruction {
public:
OpKernelConstruction(DeviceType device_type, DeviceBase* device,
Allocator* allocator, const NodeDef* node_def,
const OpDef* op_def, FunctionLibraryRuntime* flib,
const DataTypeSlice& input_types,
const MemoryTypeSlice& input_memory_types,
const DataTypeSlice& output_types,
const MemoryTypeSlice& output_memory_types,
int graph_def_version, Status* status);
Env* env() const { return device_->env(); }
// Allocation of tensors during kernel construction:
//
// It is legal to temporarily allocate scratch tensor storage during
// Op kernel construction. Scratch tensors should be allocated using
// allocate_temp below. Some kernels need to keep tensors in between
// invocations. If such a Tensor is allocated during kernel
// construction this must be done using allocate_persistent, and the
// Op may only store the returned PersistentTensor object. When the
// Tensor is needed in a subsequent invocation, it can be retrieved
// from the PersistentTensor using the AccessTensor method. This
// ensures that the system is made aware of any use of the tensor's
// allocated memory, which is needed for correctness on asynchronous
// devices such as GPUs.
// Allocates a temporary Tensor of the specified type and shape. The
// Tensor must not be used after kernel construction is
// complete. See comment above.
Status allocate_temp(DataType type, const TensorShape& shape,
Tensor* out_temp);
// Allocates a Tensor of the specified type and shape which the Op
// plans to maintain as persistent state. out_persistent holds the
// PersistentTensor which is the object the caller should store. For
// convenience, if out_tensor is non-null then it will be filled in
// with a Tensor* pointing to the newly-allocated tensor which the
// caller can use instead of calling
// out_persistent->AccessTensor. The caller does not own out_tensor
// and should not keep a copy of it. See comment above.
Status allocate_persistent(DataType type, const TensorShape& shape,
PersistentTensor* out_persistent,
Tensor** out_tensor);
// User-supplied configuration of this operation.
const NodeDef& def() const { return *def_; }
// For inspecting the inputs to this operation.
int num_inputs() const { return input_types_.size(); }
DataType input_type(int i) const { return input_types_[i]; }
const DataTypeSlice& input_types() const { return input_types_; }
const MemoryTypeSlice& input_memory_types() const {
return input_memory_types_;
}
// For inspecting the outputs expected from this operation.
int num_outputs() const { return output_types_.size(); }
DataType output_type(int i) const { return output_types_[i]; }
const DataTypeSlice& output_types() const { return output_types_; }
const MemoryTypeSlice& output_memory_types() const {
return output_memory_types_;
}
// If expected_inputs == inputs() and expected_outputs == output_types(),
// returns OK, else returns INVALID_ARGUMENT with an error message.
// Recommended for Ops with dynamic signatures.
Status MatchSignature(const DataTypeSlice expected_inputs,
const DataTypeSlice expected_outputs);
// For recording configuration errors during construction.
void SetStatus(const Status& status);
const Status& status() const { return *status_; }
// Look up the attr with name attr_name and set *value to its value. If no
// attr with attr_name is found in def(), or the attr does not have
// a matching type, a non-ok status will be returned.
template <class T>
Status GetAttr(StringPiece attr_name, T* value) const;
// Return true if the attr_name is defined in def().
bool HasAttr(StringPiece attr_name) const;
// Return the device type.
const DeviceType& device_type() const { return device_type_; }
// If not nullptr, the kernel can instantiate functions defined in
// the library. E.g.,
// CHECK_NOTNULL(function_library())->Instantiate("Foo", ...).
FunctionLibraryRuntime* function_library() const { return flib_; }
// The GraphDef version whose behavior we should follow.
int graph_def_version() const { return graph_def_version_; }
// Helper routines for the OP_REQUIRES macros
void CtxFailure(const Status& s);
void CtxFailureWithWarning(const Status& s);
void CtxFailure(const char* file, int line, const Status& s);
void CtxFailureWithWarning(const char* file, int line, const Status& s);
// Unrecommended functions: these are functions that have some
// current uses but are not recommended for use, and may go away at
// some future major version release.
// May be used, e.g., to get GPU handles, etc.
//
// Currently only used to call MakeTensorFromProto() for
// implementing ConstantOp for every device. See comments
// on Device::MakeTensorFromProto for longer-term replacement
// ideas.
DeviceBase* device() const { return device_; }
private:
const DeviceType device_type_;
DeviceBase* const device_;
Allocator* allocator_;
const NodeDef* def_;
const OpDef* op_def_;
FunctionLibraryRuntime* flib_;
DataTypeSlice input_types_;
MemoryTypeSlice input_memory_types_;
DataTypeSlice output_types_;
MemoryTypeSlice output_memory_types_;
const int graph_def_version_;
Status* status_;
// Allow op_def_ across from OpKernel, but not from subclasses.
// TODO(irving): Remove protos from this header entirely.
friend class OpKernel;
TF_DISALLOW_COPY_AND_ASSIGN(OpKernelConstruction);
};
// TODO(mrry): Consider converting to a random_access_iterator, and upgrading
// tensorflow::gtl::iterator_range to make the below container classes
// unnecessary.
template <typename ListType, typename ElementType>
class OpArgIterator {
public:
using iterator_category = std::forward_iterator_tag;
using value_type = ElementType;
using pointer = ElementType*;
using reference = ElementType&;
using difference_type = ptrdiff_t;
OpArgIterator(const ListType* list, int i) : list_(list), i_(i) {}
bool operator==(const OpArgIterator& rhs) {
DCHECK(list_ == rhs.list_);
return i_ == rhs.i_;
}
bool operator!=(const OpArgIterator& rhs) {
DCHECK(list_ == rhs.list_);
return i_ != rhs.i_;
}
OpArgIterator operator++() { // prefix ++it
++i_;
return *this;
}
OpArgIterator operator++(int) { // postfix it++
OpArgIterator old_value = *this;
++i_;
return old_value;
}
reference operator*() const { return (*list_)[i_]; }
pointer operator->() { return &(*list_)[i_]; }
private:
const ListType* const list_;
int i_;
};
// Utility class for representing a list of immutable input tensors
// that are passed to the op as a single named argument.
class OpInputList {
public:
typedef OpArgIterator<OpInputList, const Tensor> Iterator;
OpInputList() : ctx_(nullptr), start_(0), stop_(0) {}
OpInputList(OpKernelContext* ctx, int start, int stop)
: ctx_(ctx), start_(start), stop_(stop) {}
OpInputList& operator=(const OpInputList& other) = default;
const Tensor& operator[](int i) const;
int size() const { return stop_ - start_; }
Iterator begin() const { return Iterator(this, 0); }
Iterator end() const { return Iterator(this, size()); }
private:
OpKernelContext* ctx_; // not owned
int start_;
int stop_;
};
// Utility class for representing a list of mutable ("ref") input tensors
// that are passed to the op as a single named argument.
class OpMutableInputList {
public:
typedef OpArgIterator<OpMutableInputList, Tensor*> Iterator;
OpMutableInputList(OpKernelContext* ctx, int start, int stop)
: ctx_(ctx), start_(start), stop_(stop) {}
OpMutableInputList() : ctx_(nullptr), start_(0), stop_(0) {}
OpMutableInputList& operator=(const OpMutableInputList& other) = default;
Tensor at(int i, bool lock_held);
mutex* ref_mutex(int i);
int size() const { return stop_ - start_; }
Iterator begin() const { return Iterator(this, 0); }
Iterator end() const { return Iterator(this, size()); }
private:
OpKernelContext* ctx_; // not owned
int start_;
int stop_;
};
// Utility class for representing a list of output tensors that are
// grouped as a single named output.
class OpOutputList {
public:
typedef OpArgIterator<OpOutputList, const Tensor*> Iterator;
OpOutputList() : ctx_(nullptr), start_(0), stop_(0) {}
OpOutputList(OpKernelContext* ctx, int start, int stop)
: ctx_(ctx), start_(start), stop_(stop) {}
OpOutputList& operator=(const OpOutputList& other) = default;
Tensor* operator[](int i);
bool required(int i) const;
DataType expected_output_dtype(int i) const;
Status allocate(int i, const TensorShape& shape, Tensor** output);
void set(int i, const Tensor& tensor);
void set_ref(int i, mutex* mu, Tensor* tensor_for_ref);
int size() const { return stop_ - start_; }
Iterator begin() const { return Iterator(this, 0); }
Iterator end() const { return Iterator(this, size()); }
private:
OpKernelContext* ctx_; // not owned
int start_;
int stop_;
};
// Holds a tensor or tensor reference. For tensor references, we need
// a mutex to prevent concurrent access to the tensor.
struct TensorValue {
TensorValue() : mutex_if_ref(nullptr), tensor(nullptr) {}
TensorValue(Tensor* t) // NOLINT(runtime/explicit)
: mutex_if_ref(nullptr), tensor(t) {}
TensorValue(mutex* mu, Tensor* t) : mutex_if_ref(mu), tensor(t) {}
Tensor* operator->() const { return tensor; }
bool is_ref() const { return mutex_if_ref != nullptr; }
mutex* mutex_if_ref; // nullptr if not a ref, != nullptr if a ref
Tensor* tensor;
};
// Used to store partitioned graphs from function-calling ops.
struct GraphCollector {
mutex mu;
std::vector<GraphDef> graphs GUARDED_BY(mu);
void CollectGraph(const GraphDef& graph) {
mutex_lock ml(mu);
graphs.push_back(graph);
}
};
class OpKernelContext {
public:
// The first element of a WrappedAllocator is a "base" Allocator and
// the second element is that Allocator wrapped by a
// TrackingAllocator
typedef std::pair<Allocator*, TrackingAllocator*> WrappedAllocator;
// TODO(zhifengc): Do some cleanup of Params.
// The Params struct is passed in to initialize an OpKernelContext,
// and must outlive the OpKernelContext.
struct Params {
~Params() { delete eigen_gpu_device; }
// The step being executed.
int64 step_id = 0;
// The op kernel being computed.
OpKernel* op_kernel = nullptr;
// The device on which the kernel is running.
DeviceBase* device = nullptr;
// The Eigen GPU device wrapper, which may include a per-op
// wrapped allocator. The concrete type of this object depends on
// the type of this->device, so eigen_gpu_device can't be an
// inline member and must be heap allocated. However, we don't
// want to allocate a new eigen_gpu_device for every Op that is
// executed. Instead this member is allocated on first use using
// ensure_eigen_gpu_device, and then if the Params structure is
// re-used for subsequent Ops, the eigen_gpu_device is
// ReInitialized in the OpKernelContext constructor. Unlike the
// other pointers in Params, this one is owned by Params.
PerOpGpuDevice* eigen_gpu_device = nullptr;
inline void ensure_eigen_gpu_device() {
DCHECK(device);
if (nullptr == eigen_gpu_device) {
// Surprisingly, MakeGpuDevice will return nullptr if the
// device is not a GPU device. This is ok, since those devices
// will never use eigen_gpu_device. It seems better to have
// ensure_eigen_gpu_device fall through and regenerate the
// nullptr every time an OpKernelContext is instantiated, than
// to do an unnecessary allocation of a dummy eigen GPU
// device for CPU device Ops.
eigen_gpu_device = device->MakeGpuDevice();
}
}
bool track_allocations = false;
bool log_memory = false;
bool record_tensor_accesses = false;
// Array indexed by output number for this node
const AllocatorAttributes* output_attr_array = nullptr;
// Shared resources accessible by this op kernel invocation.
ResourceMgr* resource_manager = nullptr;
// Per-step resources accessible by this op kernel invocation should be
// stored in this container..
ScopedStepContainer* step_container = nullptr;
// Mechanism used by this op kernel invocation to communicate with
// computations running on other devices.
Rendezvous* rendezvous = nullptr;
// Mechanism for executing a collective op that needs to coordinate
// with parallel instances running on other devices.
CollectiveExecutor* collective_executor = nullptr;
// The session state for this op.
SessionState* session_state = nullptr;
// The tensor store for this op.
TensorStore* tensor_store = nullptr;
// Mechanism used by this op kernel invocation to register a callback
// for its cancellation.
CancellationManager* cancellation_manager = nullptr;
// Inputs to this op kernel.
const gtl::InlinedVector<TensorValue, 4>* inputs = nullptr;
bool is_input_dead = false;
const gtl::InlinedVector<AllocatorAttributes, 4>* input_alloc_attrs =
nullptr;
// Device contexts.
const gtl::InlinedVector<DeviceContext*, 4>* input_device_contexts =
nullptr;
DeviceContext* op_device_context = nullptr;
// Control-flow op supports.
FrameAndIter frame_iter;
// Function call supports.
CallFrameInterface* call_frame = nullptr;
FunctionLibraryRuntime* function_library = nullptr;
std::function<void(std::function<void()>)>* runner = nullptr;
StepStatsCollectorInterface* stats_collector = nullptr;
GraphCollector* graph_collector = nullptr;
// TensorSliceReaderCache support.
checkpoint::TensorSliceReaderCacheWrapper* slice_reader_cache = nullptr;
// Support for forwarding reservations (used by ScopedAllocator).
static const int kNeverForward = -2;
static const int kNoReservation = -1;
// Values in [0,...) represent reservations for the indexed output.
const int* forward_from_array = nullptr;
};
// params must outlive the OpKernelContext.
explicit OpKernelContext(Params* params);
OpKernelContext(Params* params, int noutputs);
~OpKernelContext();
Env* env() const { return params_->device->env(); }
int64 step_id() const { return params_->step_id; }
const OpKernel& op_kernel() const { return *params_->op_kernel; }
// Input/output signature.
int num_inputs() const { return params_->inputs->size(); }
DataType input_dtype(int index) const;
Status input_dtype(StringPiece name, DataType* dtype) const;
MemoryType input_memory_type(int index) const;
int num_outputs() const { return outputs_.size(); }
DataType expected_output_dtype(int index) const;
MemoryType output_memory_type(int index) const;
// Input
// Returns an immutable input tensor. May only be used for non-Ref
// inputs. For Ref inputs use mutable_input below.
// REQUIRES: !IsRefType(input_dtype(index))
// TODO(mrry): Convert this to return Status.
const Tensor& input(int index);
// Returns the named immutable input tensor in "tensor", as defined
// in the OpDef. May only be used for non-Ref inputs. For Ref inputs
// use mutable_input below.
// REQUIRES: !IsRefType(input_dtype(index))
// REQUIRES: the named input must not be a list.
Status input(StringPiece name, const Tensor** tensor);
// Returns the named list-valued immutable input in "list", as
// defined in the OpDef. If the named output is not list-valued,
// returns a one-element list. May only be used for non-Ref
// inputs. For Ref inputs use mutable_input below.
// REQUIRES: !IsRefType(input_dtype(index))
Status input_list(StringPiece name, OpInputList* list);
// For mutable inputs, use the following together to make sure there
// is no concurrent access to mutable_input(), e.g.:
// {
// Tensor& t = context->mutable_input(index);
// mutex_lock lock(*context->input_ref_mutex(index));
// // modify the values in t
// }
// REQUIRES: IsRefType(input_dtype(index))
Status input_ref_mutex(StringPiece name, mutex** out_mutex);
// Returns a mutable input tensor. Must be used to access Ref
// inputs. REQUIRES: IsRefType(input_dtype(index)). The caller may
// modify the values stored in the Tensor buffer, and modifications
// will be visible to other Ops reading the same ref tensor. If
// !lock_held the input mutex will be acquired before returning the
// Tensor.
// TODO(mrry): Convert this to return Status.
Tensor mutable_input(int index, bool lock_held);
// Returns the named mutable input tensor in "tensor", as defined in
// the OpDef. Must be used to access Ref inputs. The values stored
// in the Tensor buffer may be modified, and modifications will be
// visible to other Ops reading the same ref tensor. If !lock_held
// the input mutex will be acquired before returning the Tensor.
// REQUIRES: the named input must not be a list.
// REQUIRES: the named input must be a ref tensor.
Status mutable_input(StringPiece name, Tensor* tensor, bool lock_held);
// Returns the named list-valued mutable input in "list", as defined
// in the OpDef. If the named input is not list-valued, returns a
// one-element list. Must be used to access Ref inputs. The values
// stored in the Tensor buffer may be modified, and modifications
// will be visible to other Ops reading the same ref tensor.
// REQUIRES: the named input must be a ref tensor.
Status mutable_input_list(StringPiece name, OpMutableInputList* list);
// Replace the corresponding Ref Input to use the storage buffer
// used by tensor. If !lock_held the input mutex will be acquired
// before returning the Tensor.
// REQUIRES: IsRefType(input_dtype(index)).
void replace_ref_input(int index, const Tensor& tensor, bool lock_held);
// Replace the corresponding named Ref Input to use the storage
// buffer used by tensor. If !lock_held the input mutex will be
// acquired before returning the Tensor.
// REQUIRES: IsRefType(input_dtype(index)).
Status replace_ref_input(StringPiece name, const Tensor& tensor,
bool lock_held);
// Deletes the Tensor object used as the Ref Input at
// input_index. This is not usually necessary and should be used
// with caution. If !lock_held the input mutex will be acquired
// before returning the Tensor.
// REQUIRES: IsRefType(input_dtype(input_index)).
void delete_ref_input(int input_index, bool lock_held);
// Return true if there is input at the given index. An operator has no
// input at index if its tensor is null. This is primarily used by the
// merge operator.
// TODO(mrry): Convert this to return Status.
bool has_input(int index) const;
// Returns true if all inputs are the same shape, otherwise sets the
// status to a non-OK value and returns false.
// Usage: if (!context->ValidateInputsAreSameShape(this)) return;
bool ValidateInputsAreSameShape(OpKernel* op);
// If non-null, kernels should populate with any partition subgraphs created.
GraphCollector* graph_collector() { return params_->graph_collector; }
// Input to output forwarding.
// Set the output Ref Tensor at output_index to be an alias of the
// input Ref Tensor at input_index.
// REQUIRES: IsRefType(input_dtype(input_index)).
// REQUIRES: IsRefType(output_dtype(output_index)).
void forward_ref_input_to_ref_output(int input_index, int output_index);
// Returns true when an alias to input[input_index], reshaped to output_shape,
// which is safe to use for in-place computation was written to *output.
// Returns false if input[input_index] has a refcount greater than one, or if
// its type does not match the expected output type of output[output_index],
// or the number of elements in input[input_index] does not equal the number
// of elements in output_shape.
bool forward_input_to_output_with_shape(int input_index, int output_index,
const TensorShape& output_shape,
Tensor** output) TF_MUST_USE_RESULT;
Status forward_input_to_output_with_shape(StringPiece input_name,
StringPiece output_name,
const TensorShape& output_shape,
Tensor** output) TF_MUST_USE_RESULT;
// Returns a pointer to a Tensor aliasing the underlying buffer backing
// input[input_index] iff
// * input[input_index] is not a ref,
// * the data type, shape, memory type, and allocator attributes of
// input[input_index] are compatible with those given in dtype, shape,
// memory_type, and attr,
// * refcount on the underlying buffer is one.
// * Either there is no forwarding reservation for either input_index
// or output_index or the specified input is reserved for the specified
// output. More precisely:
//
// These cases mean neither input nor output has a reservation:
// forward_from_array = nullptr
// OR (input_index is not in forward_from_array AND
// (output_index == kNoReservation OR
// forward_from_array[output_index] == kNoReservation))
//
// This case means that input_index is reserved for output_index:
// forward_from_array[output_index] == input_index
//
// This case means the output is reserved to always be allocated,
// never assigned a forwarded input:
// forward_from_array[output_index] == kNeverForward
//
// Otherwise returns nullptr.
// NOTE: For Cuda kernels that read inputs using the __ldg() intrinsic,
// forwarding is only safe if there are no reads via __ldg() after writes
// to the same address.
std::unique_ptr<Tensor> forward_input(
int input_index, int output_index, DataType output_dtype,
const TensorShape& output_shape, MemoryType output_memory_type,
const AllocatorAttributes& output_attr) TF_MUST_USE_RESULT;
// Tries to forward one of the inputs given in input_indices to
// output[output_index]. If none of the given inputs can be forwarded, calls
// allocate_output() to allocate a new output buffer.
Status forward_input_or_allocate_output(
gtl::ArraySlice<int> candidate_input_indices, int output_index,
const TensorShape& output_shape, Tensor** output) TF_MUST_USE_RESULT;
Status forward_input_or_allocate_output(
gtl::ArraySlice<StringPiece> candidate_input_names,
StringPiece output_name, const TensorShape& output_shape,
Tensor** output) TF_MUST_USE_RESULT;
// Tries to reuse one of the inputs given in input_indices as a temporary.
// If none of the given inputs can be forwarded, calls
// allocate_temp() to allocate a new temporary buffer.
Status forward_input_or_allocate_temp(
gtl::ArraySlice<int> candidate_input_indices, DataType type,
const TensorShape& shape, const AllocatorAttributes& allocator_attr,
Tensor* out_temp) TF_MUST_USE_RESULT;
Status forward_input_or_allocate_temp(
gtl::ArraySlice<int> candidate_input_indices, DataType type,
const TensorShape& shape, Tensor* out_temp) TF_MUST_USE_RESULT {
return forward_input_or_allocate_temp(candidate_input_indices, type, shape,
AllocatorAttributes(), out_temp);
}
// Output
// Returns the named list-valued output in "list", as defined in the OpDef.
// If the named output is not list-valued, returns a one-element list.
Status output_list(StringPiece name, OpOutputList* list);
// If output_required(index) returns true, the OpKernel's Compute() method
// should call allocate_output(index, ...), set_output(index, ...),
// set_output_ref(index, ...), or set the status to a non-ok value.
// If it returns false, it may output, but is not required to do so.
// TODO(mrry): Convert this to return Status, and implement a string
// name version.
bool output_required(int index) const {
return true; // TODO(josh11b): implement
}
// Allocation of tensors during kernel execution inside the Compute
// method:
//
// There are three methods to allocate Tensors when an Op kernel
// executes.
//
// 1) allocate_persistent. This is only needed for Tensors that will
// be stored by the Op between invocations, and it *must* be used
// for those Tensors. The call returns a PersistentTensor, and that
// is the only object the Op is allowed to hold on to between
// invocations. When the Tensor is needed in a subsequent
// invocation, it can be retrieved from the PersistentTensor using
// the AccessTensor method. This ensures that the system is made
// aware of any use of the tensor's allocated memory, which is
// needed for correctness on asynchronous devices such as GPUs.
//
// 2) allocate_output. This should be used to allocate any tensor
// that is going to be used as an output from the Op at the end of
// the current execution. The caller indicates which output the
// Tensor will be assigned to, and the call returns the
// newly-allocated Tensor. The Tensor can subsequently be assigned
// to during kernel execution, and will be used as the designated
// output when the kernel execution completes.
//
// 3) allocate_temp. This should be used to allocate any scratch
// storage that is needed while the kernel is executing, and will
// not be retained by the Op.
//
// In some cases a Tensor needs to be used as an output even though
// it was previously allocated elsewhere. The Tensor may have been
// passed as an input, or stored in a PersistentTensor during a
// previous kernel execution, or allocated earlier in the kernel
// execution at a time when it was not known which output it would
// be assigned to. In this case the kernel can use set_output or
// set_output_ref to indicate that the tensor should be used as the
// designated output. It is legal to use any previously-allocated
// Tensor as an argument to set_output or set_output_ref, including
// Tensors allocated via allocate_temp. There may be a performance
// penalty to using a Tensor that was not allocated using
// allocate_output. This is because allocate_output uses the
// AllocatorAttributes stored in output_attr_array for the
// designated output. In some cases, using the wrong attributes may
// cause an extra copy of the Tensor's buffer.
// Allocates output for the specified output index with shape.
// OpKernelContext retains ownership of the returned pointer. See
// comment above.
//
// If memory allocation fails, returns an error status.
//
// REQUIRES: !IsRefType(expected_output_dtype(index))
Status allocate_output(int index, const TensorShape& shape,
Tensor** tensor) TF_MUST_USE_RESULT;
Status allocate_output(StringPiece name, const TensorShape& shape,
Tensor** tensor) TF_MUST_USE_RESULT;
// The following methods use the supplied attributes instead of
// those in output_attr_array. The caller is responsible for
// ensuring that the attributes are "compatible" with the
// output_attr_array, e.g. the tensor is allocated on the correct
// device. See comment above.
Status allocate_output(int index, const TensorShape& shape, Tensor** tensor,
AllocatorAttributes attr) TF_MUST_USE_RESULT;
Status allocate_output(StringPiece name, const TensorShape& shape,
Tensor** tensor,
AllocatorAttributes attr) TF_MUST_USE_RESULT;
// Allocates a temporary Tensor of the specified type and
// shape. Devices such as GPUs that enqueue Ops for lazy execution
// may retain references to the temporary tensors after the Op's
// Compute method has run. See comment above.
Status allocate_temp(DataType type, const TensorShape& shape,
Tensor* out_temp, AllocatorAttributes allocator_attr,
const AllocationAttributes& allocation_attr);
Status allocate_temp(DataType type, const TensorShape& shape,
Tensor* out_temp, AllocatorAttributes allocator_attr) {
return allocate_temp(type, shape, out_temp, allocator_attr,
AllocationAttributes());
}
Status allocate_temp(DataType type, const TensorShape& shape,
Tensor* out_temp) {
return allocate_temp(type, shape, out_temp, AllocatorAttributes());
}
// Allocates a Tensor of the specified type and shape which the Op
// plans to maintain as persistent state. out_persistent holds the
// PersistentTensor which is the object the caller should store. For
// convenience, if out_tensor is non-null then it will be filled in
// with a Tensor* pointing to the newly-allocated tensor which the
// caller can use instead of calling
// out_persistent->AccessTensor. The caller does not own out_tensor
// and should not keep a copy of it. See comment above.
Status allocate_persistent(DataType type, const TensorShape& shape,
PersistentTensor* out_persistent,
Tensor** out_tensor, AllocatorAttributes attr);
Status allocate_persistent(DataType type, const TensorShape& shape,
PersistentTensor* out_persistent,
Tensor** out_tensor) {
return allocate_persistent(type, shape, out_persistent, out_tensor,
AllocatorAttributes());
}
// Copies a tensor (allocated by the caller) to the specified output
// index. REQUIRES: !IsRefType(expected_output_dtype(index))
// REQUIRES: 'tensor' must have the same MemoryType as
// output_memory_types[index]. See comment above.
Status set_output(StringPiece name, const Tensor& tensor);
// To output a reference. Caller retains ownership of mu and tensor_for_ref,
// and they must outlive all uses within the step. See comment above.
// REQUIRES: IsRefType(expected_output_dtype(index))
Status set_output_ref(StringPiece name, mutex* mu, Tensor* tensor_for_ref);
// Returns nullptr if allocate_output() or set_output() have not been called.
Status mutable_output(StringPiece name, Tensor** tensor);
// Records device specific state about how the input tensors were
// computed.
//
// If using the templated function, the type must be a subclass
// of DeviceContext.
//
// Get the DeviceContext used for the index input. Returns nullptr
// if no DeviceContext was provided.
template <typename T>
T* input_device_context(int index);
DeviceContext* input_device_context(int index);
// Return the DeviceContext that should be used for this Op.
//
// If using the templated function, the type must be a subclass
// of DeviceContext.
//
// Returns nullptr if the device did not provide one.
template <typename T>
T* op_device_context();
DeviceContext* op_device_context() {
DeviceContext* ret = params_->op_device_context;
if (ret == nullptr) {
auto* dev_info = device()->tensorflow_gpu_device_info();
if (dev_info) ret = dev_info->default_context;
}
return ret;
}
AllocatorAttributes input_alloc_attr(int index) const {
if (params_->input_alloc_attrs == nullptr) {
return AllocatorAttributes();
} else {
DCHECK_GE(index, 0);
DCHECK_LT(index, params_->input_alloc_attrs->size());
return (*params_->input_alloc_attrs)[index];
}
}
AllocatorAttributes output_alloc_attr(int index) const {
return params_->output_attr_array[index];
}
gtl::InlinedVector<WrappedAllocator, 4> ConsumeWrappedAllocators() {
mutex_lock lock(mu_);
gtl::InlinedVector<WrappedAllocator, 4> retrieved;
retrieved.swap(wrapped_allocators_);
return retrieved;
}
// Communication.
//
// An op kernel communicates with outside environment through
// Rendezvous Send() and Recv().
Rendezvous* rendezvous() const { return params_->rendezvous; }
CollectiveExecutor* collective_executor() const {
return params_->collective_executor;
}
// An op kernel can access the session state it belongs to.
SessionState* session_state() const { return params_->session_state; }
// An op kernel can access the tensor store of the run it belongs to.
TensorStore* tensor_store() const { return params_->tensor_store; }
// Function call support.
//
// If this kernel invocation is within a function execution,
// call_frame() returns the call frame for the function call.
CallFrameInterface* call_frame() const { return params_->call_frame; }
// If not nullptr, the kernel invoke functions defined in the
// library. E.g., CHECK_NOTNULL(function_library())->Run("Foo", ...).
FunctionLibraryRuntime* function_library() const {
return params_->function_library;
}
std::function<void(std::function<void()>)>* runner() const {
return params_->runner;
}
StepStatsCollectorInterface* stats_collector() const {
return params_->stats_collector;
}
// Shared resources accessible to this kernel.
ResourceMgr* resource_manager() const { return params_->resource_manager; }
checkpoint::TensorSliceReaderCacheWrapper* slice_reader_cache() const {
return params_->slice_reader_cache;
}
// Execution.
//
// OpKernels can use these eigen devices to carry out their
// numerical computation.
const Eigen::ThreadPoolDevice& eigen_cpu_device() const {
return *device()->eigen_cpu_device();
}
const Eigen::GpuDevice& eigen_gpu_device() const {
return params_->eigen_gpu_device->device();
}
#ifdef TENSORFLOW_USE_SYCL
const Eigen::SyclDevice& eigen_sycl_device() const {
return *device()->eigen_sycl_device();
}
#endif
template <typename EigenDeviceType>
const EigenDeviceType& eigen_device() const;
// Error handling.
// If expected_inputs == inputs() and expected_outputs == output_types(),
// returns OK, else returns INVALID_ARGUMENT with an error message.
// Recommended for Ops with dynamic signatures, where validation can only
// be performed at runtime.
Status MatchSignature(const DataTypeSlice expected_inputs,
const DataTypeSlice expected_outputs);
// An OpKernel should call SetStatus() if Compute() encounters an
// error.
void SetStatus(const Status& status);
const Status& status() const { return status_; }
// Cancellation.
//
// EXPERIMENTAL. See the implementation in tensorflow::TensorQueue for an
// example of how to use this API.
CancellationManager* cancellation_manager() const {
return params_->cancellation_manager;
}
// Other accessors.
// For control flow.
FrameAndIter frame_iter() const { return params_->frame_iter; }
bool is_input_dead() const { return params_->is_input_dead; }
// May be used, e.g., to get GPU handles, etc.
// TODO(tucker): Add example usage.
DeviceBase* device() const { return params_->device; }
// Retrieve list of referenced tensors in out_vector. Once this is
// called, it is not legal to reference any more tensors. Should
// not be called from Op kernels.
void retrieve_accessed_tensors(TensorReferenceVector* out_vector);
// Per-step container for use by white-listed internal ops.
ScopedStepContainer* step_container() const {
return params_->step_container;
}
// Helper routines for the OP_REQUIRES macros
void CtxFailure(const Status& s);
void CtxFailureWithWarning(const Status& s);
void CtxFailure(const char* file, int line, const Status& s);
void CtxFailureWithWarning(const char* file, int line, const Status& s);
// Unrecommended functions: these are functions that have some
// current uses but are not recommended for use, and may go away at
// some future major version release.
//
// The following functions all have versions that return Status
// to capture error conditions, and are strongly preferred.
Tensor* mutable_output(int index);
void set_output(int index, const Tensor& tensor);
mutex* input_ref_mutex(int index);
void set_output_ref(int index, mutex* mu, Tensor* tensor_for_ref);
TensorValue release_output(int index);
bool track_allocations() const { return params_->track_allocations; }
// Records temp memory allocation. Tensor object is recorded to identify the
// case where temp memory is used as output memory.
void record_temp_memory_allocation(int64 size, const Tensor& t)
LOCKS_EXCLUDED(stats_mu_);
// Returns recorded size of temporary memory;
int64 temp_memory_allocated() const LOCKS_EXCLUDED(stats_mu_);
// Records persistent memory allocation, size can be negative indicating
// deallocation.
void record_persistent_memory_allocation(int64 size, int64 alloc_id = -1)
LOCKS_EXCLUDED(stats_mu_);
// Returns recorded size and ids of persistent memory.
int64 persistent_memory_allocated() const LOCKS_EXCLUDED(stats_mu_);
std::vector<int64> persistent_alloc_ids() const LOCKS_EXCLUDED(stats_mu_);
// Resets counters for temp and persistent memory and recorded ids.
void clear_recorded_memory() LOCKS_EXCLUDED(stats_mu_);
bool input_is_ref(int index) const;
private:
Allocator* get_allocator(AllocatorAttributes attr);
// Internal method to add a tensor's buffer to the list of buffers
// referenced during the execution of the Op, so that GPUs may
// accurately track the memory that may not be reused until the Op
// execution completes.
void record_tensor_reference(const Tensor& tensor);
void really_record_tensor_reference(const Tensor& tensor);
// Internal common method used when allocating tensor memory
Status allocate_tensor(DataType type, const TensorShape& shape,
Tensor* out_tensor,
AllocatorAttributes allocator_attr) {
return allocate_tensor(type, shape, out_tensor, allocator_attr,
AllocationAttributes());
}
Status allocate_tensor(DataType type, const TensorShape& shape,
Tensor* out_tensor, AllocatorAttributes allocator_attr,
const AllocationAttributes& allocation_attr);
// This is called by PersistentTensor::AccessTensor whenever the
// wrapped tensor is retrieved, to ensure the runtime knows that the
// Tensor is being accessed within an Op. This is necessary for
// memory safety of devices like GPUs that queue Ops for
// asynchronous execution after the Compute() method completes.
friend class PersistentTensor;
void NotifyUseOfPersistentTensor(const Tensor& tensor);
Status status_;
friend class CollectiveExecutor; // for access to params_
Params* params_; // not owned
mutable mutex mu_; // mutable so const accessors can acquire the lock
gtl::InlinedVector<WrappedAllocator, 4> wrapped_allocators_ GUARDED_BY(mu_);
gtl::InlinedVector<TensorValue, 4> outputs_;
// Constructed only if <params->record_tensor_accesses>.
ManualConstructor<UniqueTensorReferences> referenced_tensors_ GUARDED_BY(mu_);
// The following data members are only used when allocation tracking is
// enabled.
mutable mutex stats_mu_;
int64 temp_memory_allocated_ GUARDED_BY(stats_mu_);
int64 persistent_memory_allocated_ GUARDED_BY(stats_mu_);
std::unique_ptr<gtl::InlinedVector<std::pair<const void*, int64>, 2>>
temp_tensor_buffer_and_size_ GUARDED_BY(stats_mu_);
std::unique_ptr<gtl::InlinedVector<int64, 2>> persistent_alloc_ids_
GUARDED_BY(stats_mu_);
TF_DISALLOW_COPY_AND_ASSIGN(OpKernelContext);
};
// Register your OpKernel by specifying the Op's name, the device the
// kernel runs on, any type attr constraints for this kernel, any
// host-memory args, and the class to instantiate. Examples:
//
// // A kernel that supports all types.
// REGISTER_KERNEL_BUILDER(Name("Save").Device(DEVICE_CPU), SaveOp);
//
// // The following are equivalent ways of specifying that the kernel only
// // works if the "T" type attr is set to DT_FLOAT.
// REGISTER_KERNEL_BUILDER(
// Name("Sub").Device(DEVICE_CPU).TypeConstraint<float>("T"),
// SubOp<float>);
// // (You would then repeat this for every type supported by "Sub".)
//
// // This form allows you to specify a list of types as the constraint.
// REGISTER_KERNEL_BUILDER(Name("Sub")
// .Device(DEVICE_CPU)
// .TypeConstraint("T", {DT_FLOAT}),
// SubOp<float>);
//
// // A kernel that expects one of the input tensors in host memory.
// REGISTER_KERNEL_BUILDER(
// Name("Reshape").Device(DEVICE_GPU).HostMemory("shape"), ReshapeOp);
//
// See kernel_def_builder for details.
// Instantiate an OpKernel that has been registered. Returns nullptr
// if no operation for that type of device / input signature combination
// (and a NOT_FOUND *status), or there is an error in construction (and
// an INVALID_ARGUMENT *status). Otherwise, the caller takes ownership
// of the returned pointer.
// EXPECTED USAGE: unique_ptr<OpKernel> op = CreateOpKernel(...);
// REQUIRES: def has all attrs specified (e.g. using AddDefaultsToNodeDef()).
std::unique_ptr<OpKernel> CreateOpKernel(DeviceType device_type,
DeviceBase* device,
Allocator* allocator,
const NodeDef& def,
int graph_def_version, Status* status);
Status CreateOpKernel(DeviceType device_type, DeviceBase* device,
Allocator* allocator, FunctionLibraryRuntime* flib,
const NodeDef& def, int graph_def_version,
OpKernel** kernel);
// Returns into 'device_types' the subset of prioritized_types that this
// binary has registered for the given NodeDef.
//
// REQUIRES: * 'device_types' is not nullptr.
// * def has all attrs specified (e.g. using AddDefaultsToNodeDef()).
Status SupportedDeviceTypesForNode(
const std::vector<DeviceType>& prioritized_types, const NodeDef& def,
PrioritizedDeviceTypeVector* device_types);
// Returns a message with a description of the kernels registered for op
// `op_name`.
string KernelsRegisteredForOp(StringPiece op_name);
// Call once after Op registration has completed.
Status ValidateKernelRegistrations(const OpRegistryInterface& op_registry);
// -----------------------------------------------------------------------------
// OpKernel registration implementation follows, please ignore.
// Allow the REGISTER_KERNEL_BUILDER(Name("op_name").Device(...)...) syntax.
namespace register_kernel {
class Name : public KernelDefBuilder {
public:
// With selective registration, kernels whose implementation class is not used
// by any kernel are disabled with the SHOULD_REGISTER_OP_KERNEL call in
// REGISTER_KERNEL_BUILDER_UNIQ. However, an unused kernel that shares an
// implementation class with a used kernel would get through that mechanism.
//
// This mechanism stops that registration by changing the name of the kernel
// for the unused op to one that is ignored by
// OpKernelRegistrar::InitInternal. Note that this method alone is
// not sufficient - the compiler can't evaluate the entire KernelDefBuilder at
// compilation time, so this method doesn't actually reduce code size.
explicit Name(const char* op)
: KernelDefBuilder(SHOULD_REGISTER_OP(op) ? op : "_no_register") {}
};
namespace system {
class Name : public KernelDefBuilder {
public:
// For system kernels, we ignore selective registration and
// unconditionally register the kernel.
explicit Name(const char* op) : KernelDefBuilder(op) {}
};
} // namespace system
} // namespace register_kernel
#define REGISTER_KERNEL_BUILDER(kernel_builder, ...) \
REGISTER_KERNEL_BUILDER_UNIQ_HELPER(__COUNTER__, kernel_builder, __VA_ARGS__)
#define REGISTER_KERNEL_BUILDER_UNIQ_HELPER(ctr, kernel_builder, ...) \
REGISTER_KERNEL_BUILDER_UNIQ(ctr, kernel_builder, __VA_ARGS__)
#define REGISTER_KERNEL_BUILDER_UNIQ(ctr, kernel_builder, ...) \
constexpr bool should_register_##ctr##__flag = \
SHOULD_REGISTER_OP_KERNEL(#__VA_ARGS__); \
static ::tensorflow::kernel_factory::OpKernelRegistrar \
registrar__body__##ctr##__object( \
should_register_##ctr##__flag \
? ::tensorflow::register_kernel::kernel_builder.Build() \
: nullptr, \
#__VA_ARGS__, \
[](::tensorflow::OpKernelConstruction* context) \
-> ::tensorflow::OpKernel* { \
return new __VA_ARGS__(context); \
});
// The `REGISTER_SYSTEM_KERNEL_BUILDER()` macro acts as
// `REGISTER_KERNEL_BUILDER()` except that the kernel is registered
// unconditionally even when selective registration is used.
#define REGISTER_SYSTEM_KERNEL_BUILDER(kernel_builder, ...) \
REGISTER_SYSTEM_KERNEL_BUILDER_UNIQ_HELPER(__COUNTER__, kernel_builder, \
__VA_ARGS__)
#define REGISTER_SYSTEM_KERNEL_BUILDER_UNIQ_HELPER(ctr, kernel_builder, ...) \
REGISTER_SYSTEM_KERNEL_BUILDER_UNIQ(ctr, kernel_builder, __VA_ARGS__)
#define REGISTER_SYSTEM_KERNEL_BUILDER_UNIQ(ctr, kernel_builder, ...) \
static ::tensorflow::kernel_factory::OpKernelRegistrar \
registrar__body__##ctr##__object( \
::tensorflow::register_kernel::system::kernel_builder.Build(), \
#__VA_ARGS__, \
[](::tensorflow::OpKernelConstruction* context) \
-> ::tensorflow::OpKernel* { \
return new __VA_ARGS__(context); \
});
// Checks whether a given kernel is registered on device_type.
bool KernelDefAvailable(const DeviceType& device_type, const NodeDef& node_def);
// If node_def has a corresponding kernel registered on device_type,
// returns OK and fill in the kernel def and kernel_class_name. <def> and
// <kernel_class_name> may be null.
Status FindKernelDef(const DeviceType& device_type, const NodeDef& node_def,
const KernelDef** def, string* kernel_class_name);
// Writes a list of all registered kernels to LOG(INFO), to help users debug
// missing kernel errors.
void LogAllRegisteredKernels();
// Gets a list of all registered kernels.
KernelList GetAllRegisteredKernels();
// Gets a list of all registered kernels for which predicate returns true
KernelList GetFilteredRegisteredKernels(
const std::function<bool(const KernelDef&)>& predicate);
// Gets a list of all registered kernels for a given op
KernelList GetRegisteredKernelsForOp(StringPiece op_name);
namespace kernel_factory {
// OpKernelFactory is responsible for creating OpKernels when TensorFlow needs
// them. You register factories with the TensorFlow core by constructing an
// OpKernelRegistrar and passing the factory as a constructor parameter.
class OpKernelFactory {
public:
virtual OpKernel* Create(OpKernelConstruction* context) = 0;
virtual ~OpKernelFactory() = default;
};
class OpKernelRegistrar {
public:
// Registers the given kernel factory with TensorFlow. TF will call the
// factory Create() method when it determines that a kernel matching the given
// KernelDef is required.
OpKernelRegistrar(const KernelDef* kernel_def, StringPiece kernel_class_name,
std::unique_ptr<OpKernelFactory> factory) {
// Perform the check in the header to allow compile-time optimization
// to a no-op, allowing the linker to remove the kernel symbols.
if (kernel_def != nullptr) {
InitInternal(kernel_def, kernel_class_name, std::move(factory));
}
}
// Registers the given factory function with TensorFlow. This is equivalent
// to registering a factory whose Create function invokes `create_fn`.
OpKernelRegistrar(const KernelDef* kernel_def, StringPiece kernel_class_name,
OpKernel* (*create_fn)(OpKernelConstruction*)) {
// Perform the check in the header to allow compile-time optimization
// to a no-op, allowing the linker to remove the kernel symbols.
if (kernel_def != nullptr) {
struct PtrOpKernelFactory : public OpKernelFactory {
explicit PtrOpKernelFactory(
OpKernel* (*create_func)(OpKernelConstruction*))
: create_func_(create_func) {}
OpKernel* Create(OpKernelConstruction* context) override {
return (*create_func_)(context);
}
OpKernel* (*create_func_)(OpKernelConstruction*);
};
InitInternal(kernel_def, kernel_class_name,
absl::make_unique<PtrOpKernelFactory>(create_fn));
}
}
private:
void InitInternal(const KernelDef* kernel_def, StringPiece kernel_class_name,
std::unique_ptr<OpKernelFactory> factory);
};
} // namespace kernel_factory
// -----------------------------------------------------------------------------
// Template and inline method implementations, please ignore
template <class T>
Status OpKernelConstruction::GetAttr(StringPiece attr_name, T* value) const {
return GetNodeAttr(def(), attr_name, value);
}
inline DataType OpKernelContext::input_dtype(int index) const {
DCHECK_GE(index, 0);
DCHECK_LT(index, num_inputs());
const TensorValue& value((*params_->inputs)[index]);
if (value.is_ref()) {
return MakeRefType(value->dtype());
} else {
return value->dtype();
}
}
inline MemoryType OpKernelContext::input_memory_type(int index) const {
DCHECK_GE(index, 0);
DCHECK_LT(index, num_inputs());
return op_kernel().input_memory_types()[index];
}
inline DataType OpKernelContext::expected_output_dtype(int index) const {
DCHECK_GE(index, 0);
DCHECK_LT(index, num_outputs());
return params_->op_kernel->output_type(index);
}
inline MemoryType OpKernelContext::output_memory_type(int index) const {
DCHECK_GE(index, 0);
DCHECK_LT(index, num_outputs());
return op_kernel().output_memory_types()[index];
}
inline bool OpKernelContext::input_is_ref(int index) const {
const TensorValue& value((*params_->inputs)[index]);
return value.is_ref();
}
inline void OpKernelContext::record_tensor_reference(const Tensor& tensor) {
DCHECK_EQ(params_->device->RequiresRecordingAccessedTensors(),
params_->record_tensor_accesses);
if (params_->record_tensor_accesses) {
really_record_tensor_reference(tensor);
}
}
inline void OpKernelContext::retrieve_accessed_tensors(
TensorReferenceVector* out_vector) {
if (params_->record_tensor_accesses) {
mutex_lock l(mu_);
referenced_tensors_->FreezeAndReturnReferences(out_vector);
}
}
// no input if tensor == nullptr.
inline bool OpKernelContext::has_input(int index) const {
DCHECK_GE(index, 0);
DCHECK_LT(index, num_inputs());
return (*params_->inputs)[index].tensor != nullptr;
}
inline mutex* OpKernelContext::input_ref_mutex(int index) {
DCHECK_GE(index, 0);
DCHECK_LT(index, num_inputs());
DCHECK(input_is_ref(index));
return (*params_->inputs)[index].mutex_if_ref;
}
inline void OpKernelContext::NotifyUseOfPersistentTensor(const Tensor& t) {
if (t.IsInitialized()) {
record_tensor_reference(t);
}
}
inline Tensor* OpKernelContext::mutable_output(int index) {
DCHECK_GE(index, 0);
DCHECK_LT(index, num_outputs());
// No need to record_tensor_reference since the output must already
// have been set by a call that did so.
return outputs_[index].tensor;
}
inline TensorValue OpKernelContext::release_output(int index) {
DCHECK_GE(index, 0);
DCHECK_LT(index, num_outputs());
TensorValue value = outputs_[index];
outputs_[index] = TensorValue();
return value;
}
inline Status OpKernelContext::forward_input_or_allocate_output(
gtl::ArraySlice<int> candidate_input_indices, int output_index,
const TensorShape& output_shape, Tensor** output) {
for (int input_index : candidate_input_indices) {
if (forward_input_to_output_with_shape(input_index, output_index,
output_shape, output)) {
return Status::OK();
}
}
return allocate_output(output_index, output_shape, output);
}
inline Status OpKernelContext::forward_input_or_allocate_output(
gtl::ArraySlice<StringPiece> candidate_input_names, StringPiece output_name,
const TensorShape& output_shape, Tensor** output) {
for (const StringPiece& input_name : candidate_input_names) {
if (forward_input_to_output_with_shape(input_name, output_name,
output_shape, output)
.ok()) {
return Status::OK();
}
}
return allocate_output(output_name, output_shape, output);
}
template <typename T>
T* OpKernelContext::op_device_context() {
static_assert(std::is_base_of<DeviceContext, T>::value,
"T is not a subclass of DeviceContext");
return static_cast<T*>(op_device_context());
}
template <typename T>
T* OpKernelContext::input_device_context(int index) {
DCHECK_NE(params_->input_device_contexts, nullptr);
DCHECK_GE(index, 0);
DCHECK_LT(index, params_->input_device_contexts->size());
static_assert(std::is_base_of<DeviceContext, T>::value,
"T is not a subclass of DeviceContext");
return static_cast<T*>((*params_->input_device_contexts)[index]);
}
inline DeviceContext* OpKernelContext::input_device_context(int index) {
DCHECK_NE(params_->input_device_contexts, nullptr);
DCHECK_GE(index, 0);
DCHECK_LT(index, params_->input_device_contexts->size());
return (*params_->input_device_contexts)[index];
}
inline const Tensor& OpInputList::operator[](int i) const {
DCHECK_GE(i, 0);
DCHECK_LT(i, stop_ - start_);
return ctx_->input(start_ + i);
}
inline mutex* OpMutableInputList::ref_mutex(int i) {
DCHECK_GE(i, 0);
DCHECK_LT(i, stop_ - start_);
return ctx_->input_ref_mutex(start_ + i);
}
inline Tensor OpMutableInputList::at(int i, bool lock_held) {
DCHECK_GE(i, 0);
DCHECK_LT(i, stop_ - start_);
return ctx_->mutable_input(start_ + i, lock_held);
}
inline Tensor* OpOutputList::operator[](int i) {
DCHECK_GE(i, 0);
DCHECK_LT(i, stop_ - start_);
return ctx_->mutable_output(start_ + i);
}
inline bool OpOutputList::required(int i) const {
DCHECK_GE(i, 0);
DCHECK_LT(i, stop_ - start_);
return ctx_->output_required(start_ + i);
}
inline DataType OpOutputList::expected_output_dtype(int i) const {
DCHECK_GE(i, 0);
DCHECK_LT(i, stop_ - start_);
return ctx_->expected_output_dtype(start_ + i);
}
inline Status OpOutputList::allocate(int i, const TensorShape& shape,
Tensor** output) {
DCHECK_GE(i, 0);
DCHECK_LT(i, stop_ - start_);
return ctx_->allocate_output(start_ + i, shape, output);
}
inline void OpOutputList::set(int i, const Tensor& tensor) {
DCHECK_GE(i, 0);
DCHECK_LT(i, stop_ - start_);
ctx_->set_output(start_ + i, tensor);
}
inline void OpOutputList::set_ref(int i, mutex* mu, Tensor* tensor_for_ref) {
DCHECK_GE(i, 0);
DCHECK_LT(i, stop_ - start_);
ctx_->set_output_ref(i, mu, tensor_for_ref);
}
// Convenience macros for asserting and handling exceptional conditions.
// Analogous to the CHECK* macros provided by logging.h.
//
// Example use:
// void Compute(OperationContext* context) {
// OP_REQUIRES(context, context->num_inputs() == 2,
// errors::InvalidArgument("FooOp requires 2 arguments"));
// ...
// Status status = SomeUncertainMethod();
// OP_REQUIRES_OK(context, status);
// ...
// }
// Generate a fatal error if OP_REQUIRES or OP_REQUIRES_OK are used in
// AsyncOpKernel implementations. If these macros are used and the condition
// does not hold, the `done` callback will never be called and the system will
// deadlock, so a crash failure is preferable. Since the OP_REQUIRES[_OK] macros
// are legal to use in AsyncOpKernel constructors, we use overload resolution
// to distinguish between OpKernelConstruction* and OpKernelContext* context
// types.
class XlaOpKernelContext;
inline void CheckNotInComputeAsync(XlaOpKernelContext*, const char*) {}
inline void CheckNotInComputeAsync(OpKernelConstruction*, const char*) {}
void CheckNotInComputeAsync(OpKernelContext* ctx,
const char* correct_macro_name);
#define OP_REQUIRES(CTX, EXP, STATUS) \
do { \
if (!TF_PREDICT_TRUE(EXP)) { \
CheckNotInComputeAsync((CTX), "OP_REQUIRES_ASYNC"); \
(CTX)->CtxFailure(__FILE__, __LINE__, (STATUS)); \
return; \
} \
} while (0)
#define OP_REQUIRES_OK(CTX, ...) \
do { \
::tensorflow::Status _s(__VA_ARGS__); \
if (!TF_PREDICT_TRUE(_s.ok())) { \
CheckNotInComputeAsync((CTX), "OP_REQUIRES_OK_ASYNC"); \
(CTX)->CtxFailureWithWarning(__FILE__, __LINE__, _s); \
return; \
} \
} while (0)
#define OP_REQUIRES_ASYNC(CTX, EXP, STATUS, CALLBACK) \
do { \
if (!TF_PREDICT_TRUE(EXP)) { \
(CTX)->CtxFailure(__FILE__, __LINE__, (STATUS)); \
(CALLBACK)(); \
return; \
} \
} while (0)
#define OP_REQUIRES_OK_ASYNC(CTX, STATUS, CALLBACK) \
do { \
::tensorflow::Status _s(STATUS); \
if (!TF_PREDICT_TRUE(_s.ok())) { \
(CTX)->CtxFailureWithWarning(__FILE__, __LINE__, _s); \
(CALLBACK)(); \
return; \
} \
} while (0)
} // namespace tensorflow
#endif // TENSORFLOW_CORE_FRAMEWORK_OP_KERNEL_H_
| [
"noreply@github.com"
] | noreply@github.com |
ea27e95939fb672df35953c8b5117b8a4142b84c | 7f7ebd4118d60a08e4988f95a846d6f1c5fd8eda | /wxWidgets-2.9.1/src/gtk1/brush.cpp | 7284b053cb272a957e3d63597b7c1fb9a481cae8 | [] | no_license | esrrhs/fuck-music-player | 58656fc49d5d3ea6c34459630c42072bceac9570 | 97f5c541a8295644837ad864f4f47419fce91e5d | refs/heads/master | 2021-05-16T02:34:59.827709 | 2021-05-10T09:48:22 | 2021-05-10T09:48:22 | 39,882,495 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,980 | cpp | /////////////////////////////////////////////////////////////////////////////
// Name: src/gtk1/brush.cpp
// Purpose:
// Author: Robert Roebling
// Id: $Id$
// Copyright: (c) 1998 Robert Roebling
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#include "wx/brush.h"
#ifndef WX_PRECOMP
#include "wx/colour.h"
#endif
#include <gdk/gdk.h>
//-----------------------------------------------------------------------------
// wxBrush
//-----------------------------------------------------------------------------
class wxBrushRefData: public wxGDIRefData
{
public:
wxBrushRefData()
{
m_style = wxBRUSHSTYLE_INVALID;
}
wxBrushRefData( const wxBrushRefData& data )
: wxGDIRefData()
{
m_style = data.m_style;
m_stipple = data.m_stipple;
m_colour = data.m_colour;
}
bool operator == (const wxBrushRefData& data) const
{
return (m_style == data.m_style &&
m_stipple.IsSameAs(data.m_stipple) &&
m_colour == data.m_colour);
}
wxBrushStyle m_style;
wxColour m_colour;
wxBitmap m_stipple;
};
//-----------------------------------------------------------------------------
#define M_BRUSHDATA ((wxBrushRefData *)m_refData)
IMPLEMENT_DYNAMIC_CLASS(wxBrush,wxGDIObject)
wxBrush::wxBrush( const wxColour &colour, wxBrushStyle style )
{
m_refData = new wxBrushRefData();
M_BRUSHDATA->m_style = style;
M_BRUSHDATA->m_colour = colour;
}
#if FUTURE_WXWIN_COMPATIBILITY_3_0
wxBrush::wxBrush(const wxColour& col, int style)
{
m_refData = new wxBrushRefData;
M_BRUSHDATA->m_style = (wxBrushStyle)style;
M_BRUSHDATA->m_colour = col;
}
#endif
wxBrush::wxBrush( const wxBitmap &stippleBitmap )
{
m_refData = new wxBrushRefData();
M_BRUSHDATA->m_colour = *wxBLACK;
M_BRUSHDATA->m_stipple = stippleBitmap;
if (M_BRUSHDATA->m_stipple.GetMask())
M_BRUSHDATA->m_style = wxBRUSHSTYLE_STIPPLE_MASK_OPAQUE;
else
M_BRUSHDATA->m_style = wxBRUSHSTYLE_STIPPLE_MASK;
}
wxBrush::~wxBrush()
{
// m_refData unrefed in ~wxObject
}
wxGDIRefData *wxBrush::CreateGDIRefData() const
{
return new wxBrushRefData;
}
wxGDIRefData *wxBrush::CloneGDIRefData(const wxGDIRefData *data) const
{
return new wxBrushRefData(*(wxBrushRefData *)data);
}
bool wxBrush::operator == ( const wxBrush& brush ) const
{
if (m_refData == brush.m_refData) return true;
if (!m_refData || !brush.m_refData) return false;
return ( *(wxBrushRefData*)m_refData == *(wxBrushRefData*)brush.m_refData );
}
wxBrushStyle wxBrush::GetStyle() const
{
wxCHECK_MSG( Ok(), wxBRUSHSTYLE_INVALID, wxT("invalid brush") );
return M_BRUSHDATA->m_style;
}
wxColour wxBrush::GetColour() const
{
wxCHECK_MSG( Ok(), wxNullColour, wxT("invalid brush") );
return M_BRUSHDATA->m_colour;
}
wxBitmap *wxBrush::GetStipple() const
{
wxCHECK_MSG( Ok(), NULL, wxT("invalid brush") );
return &M_BRUSHDATA->m_stipple;
}
void wxBrush::SetColour( const wxColour& col )
{
AllocExclusive();
M_BRUSHDATA->m_colour = col;
}
void wxBrush::SetColour( unsigned char r, unsigned char g, unsigned char b )
{
AllocExclusive();
M_BRUSHDATA->m_colour.Set( r, g, b );
}
void wxBrush::SetStyle( wxBrushStyle style )
{
AllocExclusive();
M_BRUSHDATA->m_style = style;
}
void wxBrush::SetStipple( const wxBitmap& stipple )
{
AllocExclusive();
M_BRUSHDATA->m_stipple = stipple;
if (M_BRUSHDATA->m_stipple.GetMask())
M_BRUSHDATA->m_style = wxBRUSHSTYLE_STIPPLE_MASK_OPAQUE;
else
M_BRUSHDATA->m_style = wxBRUSHSTYLE_STIPPLE_MASK;
}
| [
"esrrhs@esrrhs-PC"
] | esrrhs@esrrhs-PC |
e112246c000bf359609d4ab87afd6f1abbfe8649 | bd2be90780e8df714b4beebaa73f1b362d003c65 | /test/test.cpp | 815af40a008d611fa072b9fbe4e9a261e91f541c | [
"BSD-3-Clause"
] | permissive | devs-labs/rcpsp | f3a390c5ff20f7bccdea8bfb05a17ab3a6f9576d | 88b78cbae8d09a63971b1f274530e97b4745ab40 | refs/heads/master | 2020-12-24T15:58:12.924975 | 2014-03-12T19:33:58 | 2014-03-12T19:33:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,705 | cpp | /**
* @file test/test.cpp
* @author The VLE Development Team
* See the AUTHORS or Authors.txt file
*/
/*
* Copyright (C) 2012 ULCO http://www.univ-littoral.fr
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#define BOOST_TEST_MAIN
#define BOOST_AUTO_TEST_MAIN
#define BOOST_TEST_DYN_LINK
#define BOOST_TEST_MODULE package_test
#include <boost/test/unit_test.hpp>
#include <boost/test/auto_unit_test.hpp>
#include <boost/test/floating_point_comparison.hpp>
#include <data/Activity.hpp>
#include <data/ResourcePool.hpp>
using namespace rcpsp;
BOOST_AUTO_TEST_CASE(test_activity)
{
Activity activity("A1",
TemporalConstraints(TemporalConstraints::NONE,
vle::devs::negativeInfinity,
vle::devs::infinity,
vle::devs::negativeInfinity,
vle::devs::infinity));
}
BOOST_AUTO_TEST_CASE(test_step)
{
Location L1("L1");
Location L2("L2");
Location L3("L3");
ResourcePool Pool1("R1");
Pool1.add(new Resource("R1", "R1_1"));
Pool1.add(new Resource("R1", "R1_2"));
Pool1.add(new Resource("R1", "R1_3"));
ResourcePool Pool2("R2");
Pool2.add(new Resource("R2", "R2_1"));
Pool2.add(new Resource("R2", "R2_2"));
Pool2.add(new Resource("R2", "R2_3"));
ResourcePool Pool3("R3");
Pool3.add(new Resource("R3", "R3_1"));
Pool3.add(new Resource("R3", "R3_2"));
Pool3.add(new Resource("R3", "R3_3"));
ResourceConstraints resourceConstraints;
resourceConstraints.push_back(ResourceConstraint(Pool1.name(), 1, false));
resourceConstraints.push_back(ResourceConstraint(Pool2.name(), 1, false));
Step step("a1_1", 10, L1, resourceConstraints,
TemporalConstraints(TemporalConstraints::NONE,
vle::devs::negativeInfinity,
vle::devs::infinity,
vle::devs::negativeInfinity,
vle::devs::infinity));
}
| [
"eric.ramat@gmail.com"
] | eric.ramat@gmail.com |
4d4cdb9d621d0fc0d69de78e6da978cba1542b98 | 46f53e9a564192eed2f40dc927af6448f8608d13 | /chrome/browser/renderer_preferences_util.cc | 68b5f45627cc9b4b56cefd9a3534dabb86c84da7 | [
"BSD-3-Clause"
] | permissive | sgraham/nope | deb2d106a090d71ae882ac1e32e7c371f42eaca9 | f974e0c234388a330aab71a3e5bbf33c4dcfc33c | refs/heads/master | 2022-12-21T01:44:15.776329 | 2015-03-23T17:25:47 | 2015-03-23T17:25:47 | 32,344,868 | 2 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 5,572 | cc | // Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/renderer_preferences_util.h"
#include "base/macros.h"
#include "base/prefs/pref_service.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/common/pref_names.h"
#include "content/public/browser/host_zoom_map.h"
#include "content/public/browser/web_contents.h"
#include "content/public/common/renderer_preferences.h"
#include "third_party/skia/include/core/SkColor.h"
#if defined(OS_LINUX) || defined(OS_ANDROID)
#include "ui/gfx/font_render_params.h"
#endif
#if !defined(OS_ANDROID)
#include "components/ui/zoom/zoom_controller.h"
#endif
#if defined(TOOLKIT_VIEWS)
#include "ui/views/controls/textfield/textfield.h"
#endif
#if defined(USE_AURA) && defined(OS_LINUX) && !defined(OS_CHROMEOS)
#include "chrome/browser/themes/theme_service.h"
#include "chrome/browser/themes/theme_service_factory.h"
#include "ui/views/linux_ui/linux_ui.h"
#endif
#if defined(OS_WIN)
#include "base/win/win_util.h"
#include "ui/gfx/platform_font_win.h"
#endif
namespace renderer_preferences_util {
void UpdateFromSystemSettings(content::RendererPreferences* prefs,
Profile* profile,
content::WebContents* web_contents) {
const PrefService* pref_service = profile->GetPrefs();
prefs->accept_languages = pref_service->GetString(prefs::kAcceptLanguages);
prefs->enable_referrers = pref_service->GetBoolean(prefs::kEnableReferrers);
prefs->enable_do_not_track =
pref_service->GetBoolean(prefs::kEnableDoNotTrack);
#if defined(ENABLE_WEBRTC)
prefs->enable_webrtc_multiple_routes =
pref_service->GetBoolean(prefs::kWebRTCMultipleRoutesEnabled);
#endif
double default_zoom_level = 0;
bool default_zoom_level_set = false;
#if !defined(OS_ANDROID)
ui_zoom::ZoomController* zoom_controller =
ui_zoom::ZoomController::FromWebContents(web_contents);
if (zoom_controller) {
default_zoom_level = zoom_controller->GetDefaultZoomLevel();
default_zoom_level_set = true;
}
#endif
if (!default_zoom_level_set) {
default_zoom_level =
content::HostZoomMap::Get(web_contents->GetSiteInstance())
->GetDefaultZoomLevel();
}
prefs->default_zoom_level = default_zoom_level;
#if defined(USE_DEFAULT_RENDER_THEME)
prefs->focus_ring_color = SkColorSetRGB(0x4D, 0x90, 0xFE);
#if defined(OS_CHROMEOS)
// This color is 0x544d90fe modulated with 0xffffff.
prefs->active_selection_bg_color = SkColorSetRGB(0xCB, 0xE4, 0xFA);
prefs->active_selection_fg_color = SK_ColorBLACK;
prefs->inactive_selection_bg_color = SkColorSetRGB(0xEA, 0xEA, 0xEA);
prefs->inactive_selection_fg_color = SK_ColorBLACK;
#endif
#endif
#if defined(TOOLKIT_VIEWS)
prefs->caret_blink_interval = views::Textfield::GetCaretBlinkMs() / 1000.0;
#endif
#if defined(USE_AURA) && defined(OS_LINUX) && !defined(OS_CHROMEOS)
views::LinuxUI* linux_ui = views::LinuxUI::instance();
if (linux_ui) {
if (ThemeServiceFactory::GetForProfile(profile)->UsingSystemTheme()) {
prefs->focus_ring_color = linux_ui->GetFocusRingColor();
prefs->thumb_active_color = linux_ui->GetThumbActiveColor();
prefs->thumb_inactive_color = linux_ui->GetThumbInactiveColor();
prefs->track_color = linux_ui->GetTrackColor();
prefs->active_selection_bg_color = linux_ui->GetActiveSelectionBgColor();
prefs->active_selection_fg_color = linux_ui->GetActiveSelectionFgColor();
prefs->inactive_selection_bg_color =
linux_ui->GetInactiveSelectionBgColor();
prefs->inactive_selection_fg_color =
linux_ui->GetInactiveSelectionFgColor();
}
// If we have a linux_ui object, set the caret blink interval regardless of
// whether we're in native theme mode.
prefs->caret_blink_interval = linux_ui->GetCursorBlinkInterval();
}
#endif
#if defined(OS_LINUX) || defined(OS_ANDROID)
CR_DEFINE_STATIC_LOCAL(const gfx::FontRenderParams, params,
(gfx::GetFontRenderParams(gfx::FontRenderParamsQuery(true), NULL)));
prefs->should_antialias_text = params.antialiasing;
prefs->use_subpixel_positioning = params.subpixel_positioning;
prefs->hinting = params.hinting;
prefs->use_autohinter = params.autohinter;
prefs->use_bitmaps = params.use_bitmaps;
prefs->subpixel_rendering = params.subpixel_rendering;
#endif
#if !defined(OS_MACOSX)
prefs->plugin_fullscreen_allowed =
pref_service->GetBoolean(prefs::kFullscreenAllowed);
#endif
#if defined(OS_WIN)
NONCLIENTMETRICS_XP metrics = {0};
base::win::GetNonClientMetrics(&metrics);
prefs->caption_font_family_name = metrics.lfCaptionFont.lfFaceName;
prefs->caption_font_height = gfx::PlatformFontWin::GetFontSize(
metrics.lfCaptionFont);
prefs->small_caption_font_family_name = metrics.lfSmCaptionFont.lfFaceName;
prefs->small_caption_font_height = gfx::PlatformFontWin::GetFontSize(
metrics.lfSmCaptionFont);
prefs->menu_font_family_name = metrics.lfMenuFont.lfFaceName;
prefs->menu_font_height = gfx::PlatformFontWin::GetFontSize(
metrics.lfMenuFont);
prefs->status_font_family_name = metrics.lfStatusFont.lfFaceName;
prefs->status_font_height = gfx::PlatformFontWin::GetFontSize(
metrics.lfStatusFont);
prefs->message_font_family_name = metrics.lfMessageFont.lfFaceName;
prefs->message_font_height = gfx::PlatformFontWin::GetFontSize(
metrics.lfMessageFont);
#endif
}
} // namespace renderer_preferences_util
| [
"scottmg@chromium.org"
] | scottmg@chromium.org |
46a812efc09ae38cf128ed11c3af5e4fc32a9d04 | 85e50a5e068a800973d57be93d8edc15a580325d | /ServerManager.cpp | 691af521b5273ce51b1151e795e8d55b2c7a85c6 | [] | no_license | jjzhang166/markessien-p2p. | 9715a2b05bd129bce4798d2ad8b8d51684c05543 | a691f47fc198f76f7fd5e66cdab1be7f39c0fbf1 | refs/heads/master | 2021-08-12T01:36:01.851011 | 2010-10-23T12:26:52 | 2010-10-23T12:26:52 | 110,662,175 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,801 | cpp | // ServerManager.cpp : Implementation of CServerManager
#include "stdafx.h"
#include "P2P.h"
#include "NotifyWindow.h"
#include "ServerManager.h"
#include <wininet.h>
#include <sstream>
/////////////////////////////////////////////////////////////////////////////
// CServerManager
STDMETHODIMP CServerManager::AppInitialize()
{
InitializeCriticalSection(&m_critObj);
// Create our notification window
m_wndNotify.SetDrainFunction(NotifyFunc, (long)this);
RECT rect;
rect.left = 0; rect.top = 0; rect.right = 5; rect.bottom = 5;
m_wndNotify.Create(NULL, rect, _T("NotifyWnd"), WS_POPUP);
m_bCancelThreads = FALSE;
return S_OK;
}
STDMETHODIMP CServerManager::AppUninitialize()
{
// if (m_critObj.)
// DeleteCriticalSection(&m_critObj);
m_wndNotify.DestroyWindow();
m_bCancelThreads = TRUE;
m_syncRemoteServer.WaitForUnlock(20000);
m_syncLocalServer.WaitForUnlock(20000);
SerializeServerList();
return S_OK;
}
STDMETHODIMP CServerManager::LoadLocalServerList(VARIANT_BOOL *pbResult)
{
if (m_syncLocalServer.IsLocked())
return S_OK;
m_permanentList.clear();
DWORD dwThreadID = 0;
CreateThread(NULL, // Security attributes
(DWORD) 0, // Initial stack size
LoadLocalServerListThread, // Thread start address
(LPVOID) this, // Thread parameter
(DWORD) 0, // Creation flags
&dwThreadID); // Thread identifier
if (pbResult)
*pbResult = VARIANT_FALSE;
return S_OK;
}
STDMETHODIMP CServerManager::LoadRemoteServerList(VARIANT_BOOL *pbResult)
{
if (m_syncRemoteServer.IsLocked())
return S_OK;
m_recycledList.clear();
DWORD dwThreadID = 0;
CreateThread(NULL, // Security attributes
(DWORD) 0, // Initial stack size
LoadRemoteServerListThread, // Thread start address
(LPVOID) this, // Thread parameter
(DWORD) 0, // Creation flags
&dwThreadID); // Thread identifier
if (pbResult)
*pbResult = VARIANT_FALSE;
return S_OK;
}
STDMETHODIMP CServerManager::AddPermanentServer(BSTR Description, BSTR Address, long nPort, VARIANT_BOOL *pbResult)
{
USES_CONVERSION;
ServerInfo server;
server.bTried = false;
server.nFiles = 0;
server.nGigs = 0;
server.nPort = nPort;
server.nUsers = 0;
server.sAddr = W2A(Address);
server.sDesc = W2A(Description);
server.sNetw = "Unknown";
if (UpdateServerInList(server, true) == false)
{
// Server doesn't exist already
m_permanentList.push_back(server);
::SendMessage(m_wndNotify.m_hWnd, WM_SERVER_ADDED, 1, m_permanentList.size() - 1);
*pbResult = VARIANT_TRUE;
}
else
*pbResult = VARIANT_FALSE;
return S_OK;
}
//DEL STDMETHODIMP CServerManager::GetFirstServer(BSTR * Description, BSTR * Address, long * nPort, VARIANT_BOOL * bIsPermanent, VARIANT_BOOL * pResult)
//DEL {
//DEL // TODO: Add your implementation code here
//DEL
//DEL return S_OK;
//DEL }
STDMETHODIMP CServerManager::GetNextServer(BSTR * Description, BSTR * Address, long * nPort, VARIANT_BOOL * bIsPermanent, VARIANT_BOOL * pResult)
{
std::list<ServerInfo>::iterator iter;
for (iter=m_permanentList.begin(); iter != m_permanentList.end(); ++iter)
{
CComBSTR bstr;
ServerInfo srv;
srv = (*iter);
if (srv.bTried == false)
{
(*iter).bTried = true;
bstr = srv.sDesc.c_str();
bstr.CopyTo(Description);
bstr = srv.sAddr.c_str();
bstr.CopyTo(Address);
*nPort = srv.nPort;
*pResult = VARIANT_TRUE;
return S_OK;
}
}
for (iter=m_recycledList.begin(); iter != m_recycledList.end(); ++iter)
{
CComBSTR bstr;
ServerInfo srv;
srv = (*iter);
if (srv.bTried == false)
{
(*iter).bTried = true;
bstr = srv.sDesc.c_str();
bstr.CopyTo(Description);
bstr = srv.sAddr.c_str();
bstr.CopyTo(Address);
*nPort = srv.nPort;
*pResult = VARIANT_TRUE;
return S_OK;
}
}
*pResult = VARIANT_FALSE;
return S_OK;
}
STDMETHODIMP CServerManager::SetFileSavePath(BSTR sPath)
{
USES_CONVERSION;
m_sPath = W2T(sPath);
return S_OK;
}
STDMETHODIMP CServerManager::GetServer(int Index, BSTR *Description, BSTR *Address, long *nPort, long * nUsers, long * nGigas,long * nFiles, VARIANT_BOOL *bIsPermanent, VARIANT_BOOL *pResult)
{
list<ServerInfo>* pLst = &m_permanentList;
if ((*bIsPermanent) != VARIANT_TRUE)
{
pLst = &m_recycledList;
}
BOOL bFound = FALSE;
ServerInfo srv;
// permanent list
if (Index == pLst->size() - 1)
{
// We iterate from the back
// this case happens all the time
bFound = TRUE;
srv = pLst->back();
}
else if (Index > (pLst->size() / 2))
{
int nIndex = pLst->size();
std::list<ServerInfo>::const_iterator iter;
for (iter=pLst->end(); iter != pLst->begin(); iter--)
{
if (nIndex == Index)
{
bFound = TRUE;
srv = (*iter);
break;
}
nIndex--;
}
}
else
{
// We iterate from the front
int nIndex = 0;
std::list<ServerInfo>::const_iterator iter;
for (iter=pLst->begin(); iter != pLst->end(); ++iter)
{
if (nIndex == Index)
{
bFound = TRUE;
srv = (*iter);
break;
}
nIndex++;
}
}
if (bFound == TRUE)
{
CComBSTR bstr;
bstr = srv.sDesc.c_str();
bstr.CopyTo(Description);
bstr = srv.sAddr.c_str();
bstr.CopyTo(Address);
*nPort = srv.nPort;
*nUsers = srv.nUsers;
*nGigas = srv.nGigs;
*nFiles = srv.nFiles;
}
*pResult = bFound ? VARIANT_TRUE : VARIANT_FALSE;
return S_OK;
}
BOOL CServerManager::NotifyFunc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam, long pClass)
{
CServerManager* pThis = (CServerManager*)pClass;
switch (uMsg)
{
case WM_SERVER_ADDED:
pThis->Fire_OnServerAdded(lParam, wParam ? VARIANT_TRUE : VARIANT_FALSE);
break;
case WM_PERMSERVERS_LOADED:
pThis->Fire_OnPermanentServersLoaded();
break;
case WM_REMOTEFILES_LOADED:
pThis->Fire_OnRemoteServersLoaded(VARIANT_FALSE);
break;
case WM_REMOTEFILESCACHE_LOADED:
pThis->Fire_OnRemoteServersLoaded(VARIANT_TRUE);
break;
}
return FALSE;
}
#define CHECK_FOR_THREADCANCEL(x) pThis->x.Unlock(); if (pThis->m_bCancelThreads){ return 667;} else pThis->x.Lock();
#define CHECK_FOR_THREADCANCEL_REMOTE(x) pThis->x.Unlock(); if (pThis->m_bCancelThreads){ InternetCloseHandle(hNet); InternetCloseHandle(hFile); return 666;} else pThis->x.Lock();
DWORD __stdcall CServerManager::LoadRemoteServerListThread(LPVOID lpvThreadParm)
{
CServerManager* pThis = (CServerManager*)lpvThreadParm;
pThis->m_syncRemoteServer.Lock();
HINTERNET hNet = 0;
HINTERNET hFile = 0;
hNet = InternetOpen("InetURL/1.0", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0 );
if (hNet != 0)
{
CHECK_FOR_THREADCANCEL(m_syncRemoteServer);
//string sData = "";
string sUrl = "http://www.napigator.com/servers.php?version=112&client=SoulShare";
hFile = InternetOpenUrl( hNet, sUrl.c_str(), NULL, 0, 0, 0 ) ;
CHECK_FOR_THREADCANCEL_REMOTE(m_syncRemoteServer);
if ( hFile )
{
CHAR buffer[1024];
DWORD dwRead;
std::fstream file;
file.open(string(pThis->m_sPath + "servers_nap.txt").c_str(), ios::out);
if (file.is_open())
{
while ( InternetReadFile( hFile, buffer, 1023, &dwRead ) )
{
if ( dwRead == 0 )
break;
CHECK_FOR_THREADCANCEL_REMOTE(m_syncRemoteServer);
buffer[dwRead] = 0;
file.write(buffer, dwRead);
CHECK_FOR_THREADCANCEL_REMOTE(m_syncRemoteServer);
}
}
InternetCloseHandle( hFile );
file.close();
}
InternetCloseHandle( hNet );
CHECK_FOR_THREADCANCEL(m_syncRemoteServer);
pThis->LoadServerList(string(pThis->m_sPath + "servers_nap.txt").c_str(), FALSE, TRUE);
CHECK_FOR_THREADCANCEL(m_syncRemoteServer);
}
if (pThis->m_recycledList.size() < 2)
{
// We do not have enough items in our rec list. We
// load our backup copy, which is the last saved list
CHECK_FOR_THREADCANCEL(m_syncRemoteServer);
// _ASSERT(FALSE);
pThis->LoadServerList(string(pThis->m_sPath + "servers_rec.txt").c_str(), FALSE, TRUE);
CHECK_FOR_THREADCANCEL(m_syncRemoteServer);
::PostMessage(pThis->m_wndNotify.m_hWnd, WM_REMOTEFILESCACHE_LOADED, 0, 0);
}
else
{
// We have items in our list, meaning that we received a good list
// We save this to our servers_rec.txt file as backup for next time.
CopyFile(string(pThis->m_sPath + "servers_nap.txt").c_str(),
string(pThis->m_sPath + "servers_rec.txt").c_str(),
FALSE);
CHECK_FOR_THREADCANCEL(m_syncRemoteServer);
::PostMessage(pThis->m_wndNotify.m_hWnd, WM_REMOTEFILES_LOADED, 0, 0);
}
pThis->m_syncRemoteServer.Unlock();
OutputDebugString("Exiting remote server load thread");
return 0;
}
DWORD __stdcall CServerManager::LoadLocalServerListThread(LPVOID lpvThreadParm)
{
CServerManager* pThis = (CServerManager*)lpvThreadParm;
pThis->m_syncLocalServer.Lock();
// Load permanent
pThis->LoadServerList(string(pThis->m_sPath + "servers_per.txt").c_str(), TRUE, TRUE);
CHECK_FOR_THREADCANCEL(m_syncLocalServer);
::PostMessage(pThis->m_wndNotify.m_hWnd, WM_PERMSERVERS_LOADED, 0, 0);
pThis->m_syncLocalServer.Unlock();
OutputDebugString("Exiting local server load thread");
return 0;
}
void CServerManager::ParseAndAddServerLine(TCHAR* pszLine, BOOL bPermanent, BOOL bCheckIfInList)
{
// This function needs to be made thread safe!
// Make sure you only insert to the arrays in this
// function
ServerInfo server;
bool bTooManyChars = false;
int iIndex = 0;
TCHAR* pch = 0;
pch = strtok (pszLine," ");
while (pch != NULL && (iIndex < 8))
{
switch (iIndex)
{
case 0: // IP
server.sAddr = pch;
break;
case 1: // Port
server.nPort = atol(pch);
//server.nPort = 13409;
break;
case 2: // Network
server.sNetw = pch;
break;
case 3: // Users
server.nUsers = atol(pch);
break;
case 4: // Gigs
server.nGigs = atol(pch);
break;
case 5: // Files
server.nFiles = atol(pch);
break;
case 6:// Server Name
server.sDesc = pch;
// server.sDesc = server.sDesc.substr(1, server.sDesc.size() - 2);
break;
default:
bTooManyChars = true;
break;
}
iIndex++;
// read pch here
pch = strtok (NULL, " ");
}
if (server.sDesc == "" ||
server.sAddr == "" ||
// inet_addr(server.sAddr.c_str()) == INADDR_NONE ||
bTooManyChars == true)
{
return;
}
server.bTried = false;
if (bCheckIfInList)
{
if (UpdateServerInList(server, bPermanent ? 1 : 0))
{
// server updated
::SendMessage(m_wndNotify.m_hWnd, WM_SERVER_UPDATED, 0, m_recycledList.size() - 1);
return;
}
}
if (bPermanent)
{
m_permanentList.push_back(server);
::SendMessage(m_wndNotify.m_hWnd, WM_SERVER_ADDED, 1, m_permanentList.size() - 1);
}
else
{
m_recycledList.push_back(server);
::SendMessage(m_wndNotify.m_hWnd, WM_SERVER_ADDED, 0, m_recycledList.size() - 1);
}
}
STDMETHODIMP CServerManager::GetServerCount(long *plResult)
{
*plResult = m_permanentList.size() + m_recycledList.size();
return S_OK;
}
BOOL CServerManager::LoadServerList(const TCHAR *pszFile, BOOL bPermanent, BOOL bCheckIfInList)
{
// THIS FUNCTION MUST BE THREADSAFE
EnterCriticalSection(&m_critObj);
std::ifstream file;
// Temporary
file.open(pszFile);
if (file.is_open())
{
while (file.good())
{
TCHAR szLine[1024];
file.getline(szLine, 1024);
ParseAndAddServerLine(szLine, bPermanent, bCheckIfInList);
}
}
else
{
LeaveCriticalSection(&m_critObj);
return FALSE;
}
file.close();
LeaveCriticalSection(&m_critObj);
return TRUE;
}
BOOL CServerManager::UpdateServerInList(CServerManager::ServerInfo srv, BOOL bPermanent)
{
// Returns true if server in list, else false
for (int i=0;i<2;i++)
{
list<ServerInfo>* pLst = 0;
if (i == 0)
{
pLst = &m_permanentList;
}
else
{
pLst = &m_recycledList;
}
std::list<ServerInfo>::iterator iter;
for (iter=pLst->begin(); iter != pLst->end(); ++iter)
{
if (((*iter).sAddr == srv.sAddr) && ((*iter).nPort == srv.nPort))
{
// We update the item
(*iter).sAddr = srv.sAddr;
(*iter).nPort = srv.nPort;
(*iter).nGigs = srv.nGigs;
(*iter).nFiles = srv.nFiles;
(*iter).nUsers = srv.nUsers;
(*iter).sDesc = srv.sDesc;
(*iter).sNetw = srv.sNetw;
// This item is in list
return TRUE;
}
}
if (bPermanent)
break;
}
return FALSE;
}
STDMETHODIMP CServerManager::LoadAllServerLists()
{
LoadLocalServerList(0);
return S_OK;
}
STDMETHODIMP CServerManager::SortLists()
{
m_recycledList.sort();
return S_OK;
}
STDMETHODIMP CServerManager::get_State(ServerManagerState *pVal)
{
// TODO: Add your implementation code here
return S_OK;
}
void CServerManager::SerializeServerList()
{
// Write our permanent server file
std::fstream file;
file.open(string(m_sPath + "servers_per.txt").c_str(), ios::out);
if (file.is_open())
{
list<ServerInfo>* pLst = &m_permanentList;
std::list<ServerInfo>::iterator iter;
for (iter=pLst->begin(); iter != pLst->end(); ++iter)
{
ostringstream oss;
oss << (*iter).sAddr.c_str() << " " << (*iter).nPort
<< " " << (*iter).sNetw.c_str()
<< " " << (*iter).nGigs
<< " " << (*iter).nFiles
<< " " << (*iter).nUsers
<< " " << (*iter).sDesc.c_str()
<< "\n";
file.write(oss.str().c_str(), oss.str().size());
}
file.close();
}
else
_ASSERT(FALSE);
}
STDMETHODIMP CServerManager::SaveLocalFilesToDisk()
{
SerializeServerList();
return S_OK;
}
STDMETHODIMP CServerManager::ResetStatusOfAllServers()
{
// Returns true if server in list, else false
for (int i=0;i<2;i++)
{
list<ServerInfo>* pLst = 0;
if (i == 0)
{
pLst = &m_permanentList;
}
else
{
pLst = &m_recycledList;
}
std::list<ServerInfo>::iterator iter;
for (iter=pLst->begin(); iter != pLst->end(); ++iter)
{
// We update the item
(*iter).bTried = FALSE;
}
}
return S_OK;
}
STDMETHODIMP CServerManager::FindServer(BSTR ServerName, VARIANT_BOOL IsPermanent)
{
// TODO: Add your implementation code here
return S_OK;
}
| [
"mark@feathermoor.com"
] | mark@feathermoor.com |
bfd70cb6b857264ba6e5b058113d455e6590be98 | 0d506fd7fb335cd8b7f6e578951e8a75e8cf1626 | /ch04/exer4_19.cpp | 9c66952039eacf881caf7ef961d9e0c3caf60278 | [] | no_license | imshenzhuo/CppPrimer | 613b7a0a20076db599ad1f0f2187a954f7d79b84 | 87c74c0a36223e86571c2aedd9da428c06b04f4d | refs/heads/master | 2020-07-22T15:02:20.808936 | 2020-02-29T16:08:40 | 2020-02-29T16:08:40 | 207,240,474 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 506 | cpp | /*************************************************************************
> File Name: exer4_19.cpp
> Author: shenzhuo
> Mail: im.shenzhuo@gmail.com
> Created Time: 2019年08月28日 星期三 21时58分42秒
************************************************************************/
#include<iostream>
using namespace std;
int main() {
int *p;
cout << (p != 0) << endl;
// cout << (p != 1) << endl;
int a[] = {
1,2,3
};
int *p2a = a;
cout << (*p2a++) << endl;
return 0;
}
| [
"im.shenzhuo@gmail.com"
] | im.shenzhuo@gmail.com |
faf277dfef07f6af435d24fe482041697e086192 | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/CMake/CMake-gumtree/Kitware_CMake_old_new_new_log_509.cpp | ecbe4e3cb1eff9a7b198cfb666791c00081fa8c6 | [] | no_license | niuxu18/logTracker-old | 97543445ea7e414ed40bdc681239365d33418975 | f2b060f13a0295387fe02187543db124916eb446 | refs/heads/master | 2021-09-13T21:39:37.686481 | 2017-12-11T03:36:34 | 2017-12-11T03:36:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 97 | cpp | archive_set_error(&a->archive,
ARCHIVE_ERRNO_MISC,
"Failed to encrypt file"); | [
"993273596@qq.com"
] | 993273596@qq.com |
d22ff8fc1dd2c90362e7b7416655479009967a04 | c1c70168fe5ed0c9c81e08915a647961200d1766 | /Kattis/0_UNFINISHED_babynames.cpp | 32d77e69b60975c1e538ae900c1bc5573e40b547 | [] | no_license | cies96035/CPP_programs | 046fa81e1d7d6e5594daee671772dbfdbdfb2870 | 9877fb44c0cd6927c7bfe591bd595886b1531501 | refs/heads/master | 2023-08-30T15:53:57.064865 | 2023-08-27T10:01:12 | 2023-08-27T10:01:12 | 250,568,619 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,088 | cpp | #include<iostream>
#include<set>
#include<algorithm>
using namespace std;
int op;
int gender;
int cnt;
string name;
string S, E;
set<string> boybaby;
set<string> girlbaby;
int main()
{
cin.tie(0);
ios_base::sync_with_stdio(0);
while(cin >> op && op){
if(op == 1){
cin >> name >> gender;
if(gender == 1){
boybaby.insert(name);
}else{
girlbaby.insert(name);
}
}else if(op == 2){
cin >> name;
if(boybaby.find(name) != boybaby.end()){
boybaby.erase(name);
}else{
girlbaby.erase(name);
}
}else{
cnt = 0;
cin >> S >> E >> gender;
if(gender == 0 || gender == 1){
cnt += boybaby.upper_bound(E) - boybaby.begin();//.lower_bound(S);
}
if(gender == 0 || gender == 2){
cnt += girlbaby.upper_bound(E) = girlbaby.lower_bound(S);
}
cout << cnt << '\n';
}
}
return 0;
} | [
"39860649+cies96035@users.noreply.github.com"
] | 39860649+cies96035@users.noreply.github.com |
f666256b0525ab12388bbb6020b279ab4bb80ddb | 5e319fcc442378a8ff0f59d90243f2bb1dd6f652 | /litidVerk/vika1.3/main.cpp | 2cf01a1ae867a3b651fffad3f33da340f6cae3fa | [] | no_license | Jonnipolar/KickAssProject | 1533e02894faf8fb6aded6ff0b1fbbfe41fe7a7d | b945710481cf621ae737cb887a5ffa583d1dfb0a | refs/heads/master | 2021-05-06T20:39:54.694631 | 2017-12-01T23:12:11 | 2017-12-01T23:12:11 | 112,345,236 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,033 | cpp | #include <iostream>
#include "Superhero.h"
#include <fstream>
#include <sstream>
using namespace std;
int main()
{
Superhero hero;
char ans = '\0';
cout << "Enter w to write a hero:\nEnter r to read the list of heroes: ";
cin >> ans;
if (ans == 'w') {
ofstream fout;
fout.open("textFile.txt", ios::app);
fout << hero;
fout.close();
}
else if (ans == 'r') {
string str = "";
int age = 0;
string name = "";
char pow = '\0';
stringstream ss;
ifstream fin;
fin.open("textFile.txt");
if (fin.is_open()) {
while(!fin.eof()) {
getline(fin, str);
if (!str.empty()) {
ss << str;
ss >> name >> age >> pow;
hero.NewValues(age,name,pow);
fin >> hero;
}
}
fin.close();
}
}
else {
cout << "Illegal Operation!!!";
}
return 0;
}
| [
"svidakjammi@gmail.com"
] | svidakjammi@gmail.com |
8249fd76beff0caae39ae182ce5ea2e1e9a46082 | 30e4267e1a7fe172118bf26252aa2eb92b97a460 | /code/pkg_UnitTest/Modules/TestCore/TestPluginManager.cpp | 7a911bd0c01b190486f1ca89ec7596e458333520 | [
"Apache-2.0"
] | permissive | thinkhy/x3c_extension | f299103002715365160c274314f02171ca9d9d97 | 8a31deb466df5d487561db0fbacb753a0873a19c | refs/heads/master | 2020-04-22T22:02:44.934037 | 2011-01-07T06:20:28 | 2011-01-07T06:20:28 | 1,234,211 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,445 | cpp | // Copyright 2008-2011 Zhang Yun Gui, rhcad@hotmail.com
// https://sourceforge.net/projects/x3c/
//
// 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 "StdAfx.h"
#include "TestPluginManager.h"
#include "Log/Ix_LogManager.h"
CPPUNIT_TEST_SUITE_REGISTRATION( TestPluginManager );
TestPluginManager::TestPluginManager(void)
{
}
TestPluginManager::~TestPluginManager(void)
{
}
void TestPluginManager::setUp()
{
VERIFY(LoadPlugins(L"PluginManager.dll", false) == 0);
}
void TestPluginManager::tearDown()
{
UnloadPlugins();
}
void TestPluginManager::testLoadUnloadPlugin()
{
Ix_PluginLoader* pLoader = GetManagerLoader();
VERIFY(pLoader);
VERIFY(pLoader->LoadPlugin(L"../Plugins/LogManager.plugin.dll"));
VERIFY(NULL!=GetModuleHandleW(L"../Plugins/LogManager.plugin.dll"));
VERIFY(pLoader->UnloadPlugin(L"../Plugins/LogManager.plugin.dll"));
VERIFY(NULL==GetModuleHandleW(L"../Plugins/LogManager.plugin.dll"));
}
void TestPluginManager::testLoadUnloadPlugins()
{
long lPluginsNum = GetPluginsNum(L"../Plugins");
Ix_PluginLoader* pLoader = GetManagerLoader();
VERIFY(pLoader);
VERIFY(pLoader->LoadPlugins(L"../Plugins") == lPluginsNum);
VERIFY(pLoader->UnloadPlugins() == lPluginsNum);
}
void TestPluginManager::testLoadPluginFiles()
{
}
void TestPluginManager::testInitializePlugins()
{
}
void TestPluginManager::testRegisterPlugin()
{
}
void TestPluginManager::testCreateObject()
{
Ix_ObjectFactory* pFactory = GetManagerObjectFactory();
VERIFY(pFactory);
Ix_PluginLoader* pLoader = dynamic_cast<Ix_PluginLoader*>(pFactory);
VERIFY(pLoader);
VERIFY(pLoader->LoadPlugin(L"../Plugins/LogManager.plugin.dll"));
Ix_Object* ixObject=NULL;
VERIFY(S_OK==pFactory->CreateObject(CLSID_LogManager, &ixObject,NULL));
ixObject->Release(NULL);
VERIFY(pLoader->UnloadPlugin(L"../Plugins/LogManager.plugin.dll"));
}
void TestPluginManager::testIsCreatorRegister()
{
Ix_ObjectFactory* pFactory = GetManagerObjectFactory();
VERIFY(pFactory);
VERIFY(false == pFactory->IsCreatorRegister(CLSID_LogManager));
Ix_PluginLoader* pLoader = dynamic_cast<Ix_PluginLoader*>(pFactory);
VERIFY(pLoader);
VERIFY(pLoader->LoadPlugin(L"../Plugins/LogManager.plugin.dll"));
VERIFY(true == pFactory->IsCreatorRegister(CLSID_LogManager));
VERIFY(pLoader->UnloadPlugin(L"../Plugins/LogManager.plugin.dll"));
}
void TestPluginManager::testCreateSpecialInterfaceObjects()
{
Ix_ObjectFactory* pFactory = GetManagerObjectFactory();
VERIFY(pFactory);
VERIFY(false == pFactory->IsCreatorRegister(CLSID_LogManager));
Ix_PluginLoader* pLoader = dynamic_cast<Ix_PluginLoader*>(pFactory);
VERIFY(pLoader);
VERIFY(pLoader->LoadPlugin(L"../Plugins/LogManager.plugin.dll"));
//VERIFY(pFactory->CreateSpecialInterfaceObjects("testCreateSpecialInterfaceObjects")>0);
VERIFY(pLoader->UnloadPlugin(L"../Plugins/LogManager.plugin.dll"));
}
void TestPluginManager::testQuerySpecialInterfaceObject()
{
}
void TestPluginManager::testHasCreatorReplaced()
{
}
Ix_PluginLoader* TestPluginManager::GetManagerLoader(void)
{
Ix_ObjectFactory* pFactory = GetManagerObjectFactory();
VERIFY(pFactory);
Ix_PluginLoader* pLoader = dynamic_cast<Ix_PluginLoader*>(pFactory);
return pLoader;
}
Ix_ObjectFactory* TestPluginManager::GetManagerObjectFactory(void)
{
typedef Ix_ObjectFactory* (*FUNC_GETREGISTERBANK)();
FUNC_GETREGISTERBANK pfn = (FUNC_GETREGISTERBANK)GetProcAddress(GetModuleHandleW(L"PluginManager.dll"), "xGetRegisterBank");
VERIFY(pfn != NULL);
Ix_ObjectFactory* pFactory = (*pfn)();
return pFactory;
}
long TestPluginManager::GetPluginsNum(LPCWSTR path,
LPCWSTR ext, bool recursive)
{
WIN32_FIND_DATAW fd;
WCHAR szFileName[MAX_PATH];
std::vector<std::wstring> arrSubPath;
long nCount = 0;
long nExtLen = lstrlenW(ext);
StrCpyNW(szFileName, path, MAX_PATH);
PathAppendW(szFileName, L"*.*");
HANDLE hFind = ::FindFirstFileW(szFileName, &fd);
BOOL bContinue = (hFind != INVALID_HANDLE_VALUE);
while (bContinue)
{
if (fd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
{
if (fd.cFileName[0] != '.' && recursive)
{
StrCpyNW(szFileName, path, MAX_PATH);
PathAppendW(szFileName, fd.cFileName);
arrSubPath.push_back(szFileName);
}
}
else
{
long nFLen = lstrlenW(fd.cFileName);
if (StrCmpIW(&fd.cFileName[max(0, nFLen - nExtLen)], ext) == 0)
{
StrCpyNW(szFileName, path, MAX_PATH);
PathAppendW(szFileName, fd.cFileName);
if (lstrlen(szFileName) > 0)
{
nCount++;
}
}
}
bContinue = ::FindNextFileW(hFind, &fd);
}
::FindClose(hFind);
std::vector<std::wstring>::iterator it = arrSubPath.begin();
for (; it != arrSubPath.end(); ++it)
{
nCount += GetPluginsNum(it->c_str(), ext, recursive);
}
return nCount;
}
| [
"rhcad1@71899303-b18e-48b3-b26e-8aaddbe541a3"
] | rhcad1@71899303-b18e-48b3-b26e-8aaddbe541a3 |
f59d284e40c161c8cb44c90550c897b605dd9777 | 1942a0d16bd48962e72aa21fad8d034fa9521a6c | /aws-cpp-sdk-iam/include/aws/iam/model/GetUserResult.h | 0ea8612e081d809be8dd4b17002d88e07cfc9b87 | [
"Apache-2.0",
"JSON",
"MIT"
] | permissive | yecol/aws-sdk-cpp | 1aff09a21cfe618e272c2c06d358cfa0fb07cecf | 0b1ea31e593d23b5db49ee39d0a11e5b98ab991e | refs/heads/master | 2021-01-20T02:53:53.557861 | 2018-02-11T11:14:58 | 2018-02-11T11:14:58 | 83,822,910 | 0 | 1 | null | 2017-03-03T17:17:00 | 2017-03-03T17:17:00 | null | UTF-8 | C++ | false | false | 2,838 | h | /*
* Copyright 2010-2016 Amazon.com, Inc. or its affiliates. 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.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
#pragma once
#include <aws/iam/IAM_EXPORTS.h>
#include <aws/iam/model/User.h>
#include <aws/iam/model/ResponseMetadata.h>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Xml
{
class XmlDocument;
} // namespace Xml
} // namespace Utils
namespace IAM
{
namespace Model
{
/**
* <p>Contains the response to a successful <a>GetUser</a> request. </p><p><h3>See
* Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetUserResponse">AWS
* API Reference</a></p>
*/
class AWS_IAM_API GetUserResult
{
public:
GetUserResult();
GetUserResult(const AmazonWebServiceResult<Aws::Utils::Xml::XmlDocument>& result);
GetUserResult& operator=(const AmazonWebServiceResult<Aws::Utils::Xml::XmlDocument>& result);
/**
* <p>A structure containing details about the IAM user.</p>
*/
inline const User& GetUser() const{ return m_user; }
/**
* <p>A structure containing details about the IAM user.</p>
*/
inline void SetUser(const User& value) { m_user = value; }
/**
* <p>A structure containing details about the IAM user.</p>
*/
inline void SetUser(User&& value) { m_user = value; }
/**
* <p>A structure containing details about the IAM user.</p>
*/
inline GetUserResult& WithUser(const User& value) { SetUser(value); return *this;}
/**
* <p>A structure containing details about the IAM user.</p>
*/
inline GetUserResult& WithUser(User&& value) { SetUser(value); return *this;}
inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; }
inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; }
inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = value; }
inline GetUserResult& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;}
inline GetUserResult& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(value); return *this;}
private:
User m_user;
ResponseMetadata m_responseMetadata;
};
} // namespace Model
} // namespace IAM
} // namespace Aws | [
"henso@amazon.com"
] | henso@amazon.com |
3782c59be0c55826d3b0c64d6e4cbcff2252f926 | be0282afa8dd436619c71d6118c9db455eaf1a29 | /Intermediate/Build/Win64/Design3D/Inc/Serialization/StructSerializerTestTypes.generated.h | 4566ceb451ee20daf563d212b4d1b0edd4801ef5 | [] | no_license | Quant2017/Design3D | 0f915580b222af40ab911021cceef5c26375d7f9 | 94a22386be4aa37aa0f546354cc62958820a4bf6 | refs/heads/master | 2022-04-23T10:44:12.398772 | 2020-04-22T01:02:39 | 2020-04-22T01:02:39 | 262,966,755 | 1 | 0 | null | 2020-05-11T07:12:37 | 2020-05-11T07:12:36 | null | UTF-8 | C++ | false | false | 3,361 | h | // Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
===========================================================================*/
#include "UObject/ObjectMacros.h"
#include "UObject/ScriptMacros.h"
PRAGMA_DISABLE_DEPRECATION_WARNINGS
#ifdef SERIALIZATION_StructSerializerTestTypes_generated_h
#error "StructSerializerTestTypes.generated.h already included, missing '#pragma once' in StructSerializerTestTypes.h"
#endif
#define SERIALIZATION_StructSerializerTestTypes_generated_h
#define Engine_Source_Runtime_Serialization_Private_Tests_StructSerializerTestTypes_h_255_GENERATED_BODY \
friend struct Z_Construct_UScriptStruct_FStructSerializerTestStruct_Statics; \
SERIALIZATION_API static class UScriptStruct* StaticStruct();
template<> SERIALIZATION_API UScriptStruct* StaticStruct<struct FStructSerializerTestStruct>();
#define Engine_Source_Runtime_Serialization_Private_Tests_StructSerializerTestTypes_h_217_GENERATED_BODY \
friend struct Z_Construct_UScriptStruct_FStructSerializerMapTestStruct_Statics; \
SERIALIZATION_API static class UScriptStruct* StaticStruct();
template<> SERIALIZATION_API UScriptStruct* StaticStruct<struct FStructSerializerMapTestStruct>();
#define Engine_Source_Runtime_Serialization_Private_Tests_StructSerializerTestTypes_h_168_GENERATED_BODY \
friend struct Z_Construct_UScriptStruct_FStructSerializerArrayTestStruct_Statics; \
SERIALIZATION_API static class UScriptStruct* StaticStruct();
template<> SERIALIZATION_API UScriptStruct* StaticStruct<struct FStructSerializerArrayTestStruct>();
#define Engine_Source_Runtime_Serialization_Private_Tests_StructSerializerTestTypes_h_127_GENERATED_BODY \
friend struct Z_Construct_UScriptStruct_FStructSerializerBuiltinTestStruct_Statics; \
SERIALIZATION_API static class UScriptStruct* StaticStruct();
template<> SERIALIZATION_API UScriptStruct* StaticStruct<struct FStructSerializerBuiltinTestStruct>();
#define Engine_Source_Runtime_Serialization_Private_Tests_StructSerializerTestTypes_h_103_GENERATED_BODY \
friend struct Z_Construct_UScriptStruct_FStructSerializerObjectTestStruct_Statics; \
SERIALIZATION_API static class UScriptStruct* StaticStruct();
template<> SERIALIZATION_API UScriptStruct* StaticStruct<struct FStructSerializerObjectTestStruct>();
#define Engine_Source_Runtime_Serialization_Private_Tests_StructSerializerTestTypes_h_74_GENERATED_BODY \
friend struct Z_Construct_UScriptStruct_FStructSerializerBooleanTestStruct_Statics; \
SERIALIZATION_API static class UScriptStruct* StaticStruct();
template<> SERIALIZATION_API UScriptStruct* StaticStruct<struct FStructSerializerBooleanTestStruct>();
#define Engine_Source_Runtime_Serialization_Private_Tests_StructSerializerTestTypes_h_17_GENERATED_BODY \
friend struct Z_Construct_UScriptStruct_FStructSerializerNumericTestStruct_Statics; \
SERIALIZATION_API static class UScriptStruct* StaticStruct();
template<> SERIALIZATION_API UScriptStruct* StaticStruct<struct FStructSerializerNumericTestStruct>();
#undef CURRENT_FILE_ID
#define CURRENT_FILE_ID Engine_Source_Runtime_Serialization_Private_Tests_StructSerializerTestTypes_h
PRAGMA_ENABLE_DEPRECATION_WARNINGS
| [
"Snake_Jenny@126.com"
] | Snake_Jenny@126.com |
a69c416b2228bb7d840246a371ab81e0b867484d | af887c4b59fbbe42f547bc447fbaeb20a059511c | /AVCapture/ScreenCapture/ScreenCapture.cpp | a851aad4b173ee7eef32cf23f8d2bbe2b0326f7f | [] | no_license | kevin201353/FoldCloudTeacher | d5abbb374b1f2b133fa519ffc4dc53bb4a7accb3 | 22bc26df9e5973bd36bb4bb6c04589fab1dd9ce7 | refs/heads/master | 2021-01-19T10:37:13.885311 | 2017-05-02T01:38:47 | 2017-05-02T01:38:47 | 87,883,731 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 13,062 | cpp | #include "ScreenCapture.h"
mfxStatus Alloc_SysSurfaces(mfxFrameSurface1*& surf_pool, mfxFrameAllocRequest& request, mfxFrameAllocResponse& response)
{
try
{
surf_pool = new mfxFrameSurface1[request.NumFrameSuggested];
for (mfxU32 i = 0; i < (mfxU32)request.NumFrameSuggested; ++i)
{
memset(&surf_pool[i], 0, sizeof(surf_pool[i]));
surf_pool[i].Info = request.Info;
if (MFX_FOURCC_NV12 == surf_pool->Info.FourCC)
{
surf_pool[i].Data.Y = new mfxU8[surf_pool->Info.Width * request.Info.Height * 3 / 2];
surf_pool[i].Data.UV = surf_pool[i].Data.Y + request.Info.Width * request.Info.Height;
surf_pool[i].Data.Pitch = request.Info.Width;
}
else if (MFX_FOURCC_RGB4 == request.Info.FourCC || DXGI_FORMAT_AYUV == request.Info.FourCC)
{
surf_pool[i].Data.B = new mfxU8[request.Info.Width * request.Info.Height * 4];
surf_pool[i].Data.G = surf_pool[i].Data.B + 1;
surf_pool[i].Data.R = surf_pool[i].Data.B + 2;
surf_pool[i].Data.A = surf_pool[i].Data.B + 3;
surf_pool[i].Data.Pitch = 4 * request.Info.Width;
}
}
memset(&response, 0, sizeof(response));
response.NumFrameActual = request.NumFrameSuggested;
return MFX_ERR_NONE;
}
catch (...)
{
return MFX_ERR_MEMORY_ALLOC;
}
}
mfxStatus Free_SysSurfaces(mfxFrameSurface1*& surf_pool, mfxFrameAllocResponse& response)
{
try
{
if (surf_pool)
{
for (mfxU32 i = 0; i < (mfxU32)response.NumFrameActual; ++i)
{
if (surf_pool[i].Data.Y)
{
delete[] surf_pool[i].Data.Y;
surf_pool[i].Data.Y = 0;
}
}
delete[] surf_pool;
surf_pool = 0;
}
return MFX_ERR_NONE;
}
catch (...)
{
return MFX_ERR_MEMORY_ALLOC;
}
}
captureScreen::captureScreen()
{
memset(&m_param, 0, sizeof(m_param));
memset(&m_mfxAllocator, 0, sizeof(m_mfxAllocator));
memset(&m_depar, 0, sizeof(m_depar));
memset(&m_enpar, 0, sizeof(m_enpar));
memset(&m_decRequest, 0, sizeof(m_decRequest));
memset(&m_encRequest, 0, sizeof(m_encRequest));
memset(&m_bitstream, 0, sizeof(m_bitstream));
memset(&m_enCodectrl, 0, sizeof(m_enCodectrl));
m_mfxSes = NULL;
m_version.Major = MFX_VERSION_MAJOR;
m_version.Minor = MFX_VERSION_MINOR;
m_mfxStat = MFX_ERR_NONE;
m_device_hdl = NULL;
m_decSurfPool = NULL;
m_decsyncpoint = 0;
m_encsyncpoint = 0;
m_pFrame = NULL;
m_pOutFrame = NULL;
//m_param.width = 1920;
//m_param.height = 1080;
m_param.width = GetSystemMetrics(SM_CXSCREEN);
m_param.height = GetSystemMetrics(SM_CYSCREEN);
m_param.impl = MFX_IMPL_VIA_D3D9;
m_param.enc_codec = MFX_CODEC_AVC;
m_param.fourcc = MFX_FOURCC_NV12;
m_param.system_memory = false;
m_param.async_depth = 1;
m_param.chroma_format = MFX_CHROMAFORMAT_YUV420;
}
mfxI32 captureScreen::Init()
{
if (m_mfxSes)
{
std::cout << "Has been initialized" << std::endl;
return -1;
}
mfxIMPL impl = MFX_IMPL_HARDWARE_ANY | m_param.impl;
m_mfxStat = MFXInit(impl, &m_version, &m_mfxSes);
CHECKSTATUS(m_mfxStat, MFX_ERR_NONE, "MFXInit Error");
if (m_param.impl == MFX_IMPL_VIA_D3D9)
{
m_hdl_type = MFX_HANDLE_D3D9_DEVICE_MANAGER;
m_mfxStat = CreateDx9Device(m_mfxSes, &m_device_hdl, 0);
}
else if (m_param.impl == MFX_IMPL_VIA_D3D11)
{
m_hdl_type = MFX_HANDLE_D3D11_DEVICE;
m_mfxStat = CreateDx11Device(m_mfxSes, &m_device_hdl, 0);
}
CHECKSTATUS(m_mfxStat, MFX_ERR_NONE, "Create device Error");
m_mfxStat = MFXVideoCORE_SetHandle(m_mfxSes, m_hdl_type, m_device_hdl);
CHECKSTATUS(m_mfxStat, MFX_ERR_NONE, "SetHandle Error");
m_mfxAllocator.pthis = &m_mfxAllocator;
if (!m_param.system_memory)
{
if (MFX_IMPL_VIA_D3D9 == m_param.impl)
{
m_mfxAllocator.Alloc = dx9_simple_alloc;
m_mfxAllocator.Free = dx9_simple_free;
m_mfxAllocator.Lock = dx9_simple_lock;
m_mfxAllocator.Unlock = dx9_simple_unlock;
m_mfxAllocator.GetHDL = dx9_simple_gethdl;
}
else
{
m_mfxAllocator.Alloc = dx11_simple_alloc;
m_mfxAllocator.Free = dx11_simple_free;
m_mfxAllocator.Lock = dx11_simple_lock;
m_mfxAllocator.Unlock = dx11_simple_unlock;
m_mfxAllocator.GetHDL = dx11_simple_gethdl;
}
m_mfxStat = MFXVideoCORE_SetFrameAllocator(m_mfxSes, &m_mfxAllocator);
CHECKSTATUS(m_mfxStat, MFX_ERR_NONE, "SetFrameAllocator Error");
}
m_mfxStat = MFXVideoUSER_Load(m_mfxSes, &MFX_PLUGINID_CAPTURE_HW, 1);
CHECKSTATUS(m_mfxStat, MFX_ERR_NONE, "Load screen capture plug-in Error");
////////////////设置解码参数
m_depar.AsyncDepth = m_param.async_depth;
if (!m_param.system_memory)
{
m_depar.IOPattern = MFX_IOPATTERN_OUT_VIDEO_MEMORY;
}
else
{
m_depar.IOPattern = MFX_IOPATTERN_OUT_SYSTEM_MEMORY;
}
m_depar.mfx.FrameInfo.Width = MSDKALIGN16(m_param.width);
m_depar.mfx.FrameInfo.Height = MSDKALIGN16(m_param.height);
m_depar.mfx.FrameInfo.CropW = m_param.width;
m_depar.mfx.FrameInfo.CropH = m_param.height;
m_depar.mfx.FrameInfo.PicStruct = MFX_PICSTRUCT_PROGRESSIVE;
m_depar.mfx.FrameInfo.FrameRateExtN = 30;
m_depar.mfx.FrameInfo.FrameRateExtD = 1;
m_depar.mfx.FrameInfo.FourCC = m_param.fourcc;
m_depar.mfx.FrameInfo.ChromaFormat = m_param.chroma_format;
m_depar.mfx.CodecId = MFX_CODEC_CAPTURE;
////////////////////////设置编码参数
m_enpar.AsyncDepth = m_param.async_depth;
if (!m_param.system_memory)
{
m_enpar.IOPattern = MFX_IOPATTERN_IN_VIDEO_MEMORY;
}
else
{
m_enpar.IOPattern = MFX_IOPATTERN_IN_SYSTEM_MEMORY;
}
m_enpar.mfx.FrameInfo.PicStruct = MFX_PICSTRUCT_PROGRESSIVE;
if (MFX_PICSTRUCT_PROGRESSIVE == m_enpar.mfx.FrameInfo.PicStruct)
{
m_enpar.mfx.FrameInfo.Width = MSDKALIGN16(m_param.width);
m_enpar.mfx.FrameInfo.Height = MSDKALIGN16(m_param.height);
}
else
{
m_enpar.mfx.FrameInfo.Width = MSDKALIGN32(m_param.width);
m_enpar.mfx.FrameInfo.Height = MSDKALIGN32(m_param.height);
}
m_enpar.mfx.FrameInfo.CropW = m_param.width;
m_enpar.mfx.FrameInfo.CropH = m_param.height;
m_enpar.mfx.FrameInfo.FrameRateExtN = 30;
m_enpar.mfx.FrameInfo.FrameRateExtD = 1;
if (MFX_CODEC_JPEG == m_param.enc_codec && MFX_FOURCC_RGB4 == m_param.fourcc)
{
//JPEG encoder can encode from NV12, but for this tutorial, let's encode in JPEG from RGB4 without VPP
m_enpar.mfx.FrameInfo.FourCC = MFX_FOURCC_RGB4;
m_enpar.mfx.FrameInfo.ChromaFormat = MFX_CHROMAFORMAT_YUV444;
}
else {
m_enpar.mfx.FrameInfo.FourCC = MFX_FOURCC_NV12;
m_enpar.mfx.FrameInfo.ChromaFormat = MFX_CHROMAFORMAT_YUV420;
}
m_enpar.mfx.CodecId = m_param.enc_codec;
m_enpar.mfx.NumRefFrame = 1;
m_enpar.mfx.NumThread = 2;
if (MFX_CODEC_AVC == m_enpar.mfx.CodecId)
{
m_enpar.mfx.RateControlMethod = MFX_RATECONTROL_VBR;
m_enpar.mfx.TargetUsage = MFX_TARGETUSAGE_BALANCED;
m_enpar.mfx.TargetKbps = 5000;
m_enpar.mfx.GopRefDist = 1;
}
else
{
m_enpar.mfx.Quality = 75;
}
//////////////////查询解码参数
m_mfxStat = MFXVideoDECODE_Query(m_mfxSes, &m_depar, &m_depar);
CHECKSTATUS(m_mfxStat, MFX_ERR_NONE, "Query Decoder Error");
////////////////初始化解码器
m_mfxStat = MFXVideoDECODE_Init(m_mfxSes, &m_depar);
CHECKSTATUS(m_mfxStat,MFX_ERR_NONE, "Init DECODE Error");
///////////////查询编码参数
m_mfxStat = MFXVideoENCODE_Query(m_mfxSes, &m_enpar, &m_enpar);
if (m_mfxStat == MFX_WRN_PARTIAL_ACCELERATION)
m_mfxStat = MFX_ERR_NONE;
CHECKSTATUS(m_mfxStat, MFX_ERR_NONE, "Query Encoder Error");
//////////////初始化解码器
m_mfxStat = MFXVideoENCODE_Init(m_mfxSes, &m_enpar);
if (m_mfxStat == MFX_WRN_PARTIAL_ACCELERATION)
m_mfxStat = MFX_ERR_NONE;
CHECKSTATUS(m_mfxStat, MFX_ERR_NONE, "Init Encoder Error");
////////////////////////////////////////////////////
m_mfxStat = MFXVideoDECODE_QueryIOSurf(m_mfxSes, &m_depar, &m_decRequest);
CHECKSTATUS(m_mfxStat, MFX_ERR_NONE, "QueryIOSurf decode Error");
m_decRequest.NumFrameMin = m_decRequest.NumFrameSuggested = m_decRequest.NumFrameSuggested * 200;
m_mfxStat = MFXVideoENCODE_QueryIOSurf(m_mfxSes, &m_enpar, &m_encRequest);
if (m_mfxStat == MFX_WRN_PARTIAL_ACCELERATION)
m_mfxStat = MFX_ERR_NONE;
CHECKSTATUS(m_mfxStat, MFX_ERR_NONE, "QueryIOSurf encode Error");
m_sumRequest.Info = m_decRequest.Info;
m_sumRequest.Type = m_decRequest.Type | m_encRequest.Type;
m_sumRequest.NumFrameMin = m_decRequest.NumFrameMin + m_encRequest.NumFrameMin;
m_sumRequest.NumFrameSuggested = m_decRequest.NumFrameSuggested + m_encRequest.NumFrameSuggested;
if ((m_sumRequest.Type & MFX_MEMTYPE_DXVA2_PROCESSOR_TARGET) && ((m_sumRequest.Type & 0xf0) != MFX_MEMTYPE_DXVA2_PROCESSOR_TARGET))
m_sumRequest.Type = (mfxU16)(m_sumRequest.Type & (~MFX_MEMTYPE_DXVA2_PROCESSOR_TARGET));
////////////////分配帧内存
if (!m_param.system_memory)
{
m_mfxStat = m_mfxAllocator.Alloc(m_mfxAllocator.pthis, &m_sumRequest, &m_responce);
CHECKSTATUS(m_mfxStat, MFX_ERR_NONE, "Alloc frames Error");
m_decSurfPool = new mfxFrameSurface1[m_responce.NumFrameActual];
for (mfxU32 i = 0; i < (mfxU32)m_responce.NumFrameActual; i++)
{
memset(&m_decSurfPool[i], 0, sizeof(m_decSurfPool[i]));
m_decSurfPool[i].Info = m_sumRequest.Info;
m_decSurfPool[i].Data.MemId = m_responce.mids[i];
}
}
else
{
m_mfxStat = Alloc_SysSurfaces(m_decSurfPool, m_decRequest, m_responce);
CHECKSTATUS(m_mfxStat, MFX_ERR_NONE, "Alloc frames Error");
}
/////////////////////////设置分配视屏流的大小
m_mfxStat = MFXVideoENCODE_GetVideoParam(m_mfxSes,&m_enpar);
CHECKSTATUS(m_mfxStat, MFX_ERR_NONE, "GetVideoParam Encoder Error");
if (!m_enpar.mfx.BufferSizeInKB)
{
m_enpar.mfx.BufferSizeInKB = 10240;
}
m_bitstream.MaxLength = m_enpar.mfx.BufferSizeInKB * 1000 * max(1, m_enpar.mfx.BRCParamMultiplier)*m_param.async_depth;
m_bitstream.Data = new mfxU8[m_bitstream.MaxLength];
std::cout << "Init OK" << std::endl;
return MFX_ERR_NONE;
}
mfxI32 captureScreen::GetH264FrameData(void *data,mfxU32 size,bool Is_I_frame)
{
int iLen = 0;
m_pFrame = NULL;
m_pOutFrame = NULL;
m_decsyncpoint = 0;
m_encsyncpoint = 0;
while (1)
{
for (mfxU32 j = 0; j < 1000; j++)
{
for (mfxU32 i = 0; i < m_responce.NumFrameActual; i++)
{
if (!m_decSurfPool[i].Data.Locked)
{
m_pFrame = &m_decSurfPool[i];
break;
}
}
if (m_pFrame)
break;
Sleep(1);
}
if (!m_pFrame)
{
std::cout << "No Frame Data Get" << std::endl;
return 0;
}
m_mfxStat = MFXVideoDECODE_DecodeFrameAsync(m_mfxSes, 0, m_pFrame, &m_pOutFrame, &m_decsyncpoint);
//printf("decode video fram async m_mfxStart :%d.\n", m_mfxStat);
if (MFX_ERR_MORE_DATA == m_mfxStat)
continue;
if (MFX_ERR_MORE_SURFACE == m_mfxStat || m_mfxStat > 0
)
continue;
CHECKSTATUS(m_mfxStat, MFX_ERR_NONE, "DecodeFrameAsync Error");
m_mfxStat = MFXVideoCORE_SyncOperation(m_mfxSes, m_decsyncpoint, MFX_INFINITE);
CHECKSTATUS(m_mfxStat, MFX_ERR_NONE, "Decode SyncOperation Error");
m_decsyncpoint = 0;
if (Is_I_frame)
m_enCodectrl.FrameType = MFX_FRAMETYPE_I | MFX_FRAMETYPE_REF | MFX_FRAMETYPE_IDR;
else
m_enCodectrl.FrameType = 0;
m_mfxStat = MFXVideoENCODE_EncodeFrameAsync(m_mfxSes, &m_enCodectrl, m_pOutFrame, &m_bitstream, &m_encsyncpoint);
//printf("encode video fram async m_mfxStart :%d.\n", m_mfxStat);
if (MFX_ERR_MORE_DATA == m_mfxStat)
{
//printf("11111.\n");
continue;
}
if (MFX_ERR_MORE_SURFACE == m_mfxStat || m_mfxStat > 0)
{
//printf("2222.\n");
continue;
}
CHECKSTATUS(m_mfxStat, MFX_ERR_NONE, "EncodeFrameAsync Error");
m_mfxStat = MFXVideoCORE_SyncOperation(m_mfxSes, m_encsyncpoint, MFX_INFINITE);
printf("core sync Operation video fram async m_mfxStart :%d.\n", m_mfxStat);
CHECKSTATUS(m_mfxStat, MFX_ERR_NONE, "Decode SyncOperation Error");
m_encsyncpoint = 0;
memset(data, 0, size);
if (size >= m_bitstream.DataLength)
{
iLen = m_bitstream.DataLength;
memcpy(data, m_bitstream.Data + m_bitstream.DataOffset, m_bitstream.DataLength);
m_bitstream.DataOffset = 0;
m_bitstream.DataLength = 0;
//printf("return capture vido len:%d.\n", iLen);
return iLen;
}
else
{
m_bitstream.DataOffset = 0;
m_bitstream.DataLength = 0;
std::cout << "Run Out of Memory" << std::endl;
return 0;
}
}
return 0;
}
mfxI32 captureScreen::Destory()
{
m_mfxStat = MFXVideoDECODE_Close(m_mfxSes);
CHECKSTATUS(m_mfxStat, MFX_ERR_NONE, "Decode close failed");
m_mfxStat = MFXVideoENCODE_Close(m_mfxSes);
CHECKSTATUS(m_mfxStat, MFX_ERR_NONE, "Encode close failed");
if (m_bitstream.Data)
{
delete[] m_bitstream.Data;
m_bitstream.Data = NULL;
}
if (!m_param.system_memory)
{
m_mfxStat = m_mfxAllocator.Free(m_mfxAllocator.pthis, &m_responce);
}
else
{
m_mfxStat = Free_SysSurfaces(m_decSurfPool, m_responce);
}
CHECKSTATUS(m_mfxStat, MFX_ERR_NONE, "Free surface failed");
if (m_decSurfPool)
{
delete m_decSurfPool;
m_decSurfPool = NULL;
}
m_mfxStat = MFXVideoUSER_UnLoad(m_mfxSes, &MFX_PLUGINID_CAPTURE_HW);
CHECKSTATUS(m_mfxStat, MFX_ERR_NONE, "Free Plug-in failed");
m_mfxStat = MFXClose(m_mfxSes);
CHECKSTATUS(m_mfxStat, MFX_ERR_NONE, "Close Session Error");
if (m_param.impl == MFX_IMPL_VIA_D3D11)
{
CleanupDx11Device();
}
else if (m_param.impl == MFX_IMPL_VIA_D3D9)
{
CleanupDx9Device();
}
return 0;
} | [
"zhaosenhua@shencloudtech.com"
] | zhaosenhua@shencloudtech.com |
8001a1766179a15768c6d5f44b97df139ed4e87e | 54d6f7833eb54991c1217f0eaa4b0a95cdfa544f | /Zad6/Carlier.hh | 4d1a5eded25089d97cf50e6cb13f318dab910003 | [] | no_license | MrHowever/SPD | 56960af893a62bacd3adb5684b5408a14900d3c0 | e1d6b55c426be11c6d44165630491bbd9b9952bf | refs/heads/master | 2021-07-17T06:32:56.508056 | 2020-06-10T00:10:46 | 2020-06-10T00:10:46 | 173,346,518 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 472 | hh | //
// Created by mrhowever on 13.05.19.
//
#ifndef ZAD5_CARLIER_HH
#define ZAD5_CARLIER_HH
#include "Task.hh"
#include "FileReader.hh"
#include <mutex>
class Carlier {
public:
std::mutex permutation_lock;
std::mutex tasks_lock;
Tasks bestPermutation;
Carlier() {}
void order(unsigned int&,Tasks&);
int C_pi(Tasks,int);
int b(Tasks,int);
int a(Tasks,int,int);
int c(Tasks,int,int);
int Cmax(Tasks);
};
#endif //ZAD5_CARLIER_HH
| [
"matilabedzki@wp.pl"
] | matilabedzki@wp.pl |
fcca9c3ae9b423cbc735c12754c1bc87696e9fde | 1992f8fbd2ee5b3537f1106a6bdd81f692b161fa | /swarsim-3d/plugin/python_unicycle.h | 481627c0f76f54dc5745455c5825924d101802d1 | [
"MIT"
] | permissive | grohith327/MARL-Drones | 5e569794d0c7a2726a042c9501b974ebb3802c71 | ddaaff57266e7092b44a843ca671a4dc405fd7b8 | refs/heads/master | 2022-11-25T10:03:19.114297 | 2020-07-21T01:27:44 | 2020-07-21T01:27:44 | 256,265,495 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 390 | h | #ifndef _PYTHON_UNICYCLE_H
#define _PYTHON_UNICYCLE_H
#include <Python.h>
#include "core/unicycle.h"
#include "core/robot.h"
#include "display/window.h"
#include "util/registerer.h"
class PythonUnicycle : public Unicycle {
REGISTER("PythonUnicycle", Robot);
private:
bool Initialize() override;
void Execute(double t, double dt) override;
bool GoalBased() override;
};
#endif
| [
"grohith327@gmail.com"
] | grohith327@gmail.com |
d8c53a1a96a3467a61101733f8d6513f3de2931b | 06cd899e6abf9ba0a52428d7f8141d42b9b4d662 | /TuneFocus/PicViewDlg.cpp | 6309051827e003f470b20d0cf650881030afa005 | [] | no_license | rhwfy/jpg-refocus-tool | 429ddb9a0c46dba4d404b4c7d46d5c270d6f7f52 | 2c2418a4edb038f09089ce8b0ef3e7bb709f28a5 | refs/heads/master | 2023-03-17T16:58:24.058461 | 2017-04-25T09:42:31 | 2017-04-25T09:42:31 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 6,658 | cpp | // PicView.cpp : implementation file
//
#include "stdafx.h"
#include "TuneFocus.h"
#include "PicViewDlg.h"
#include "afxdialogex.h"
#include "TuneFocusDlg.h"
// CPicView dialog
CTuneFocusDlg* g_clsTuneDlg = NULL;
IMPLEMENT_DYNAMIC(CPicViewDlg, CDialogEx)
CPicViewDlg::CPicViewDlg(CWnd* pParent /*=NULL*/)
: CDialogEx(CPicViewDlg::IDD, pParent)
, m_strFileInfo(_T(""))
, m_strFileName(_T(""))
{
m_hIcon = AfxGetApp()->LoadIcon(IDI_ICON1);
g_nRectWW = -1;
g_nRectHH = -1;
g_nPicWidth1 = -1;
g_nPicHeight1 = -1;
memset(&g_stImgInfo1, 0, sizeof(ST_HuaImgInfo));
g_nCursorPosX = -1;
g_nCursorPosY = -1;
g_nMouseAllow = 0;
}
CPicViewDlg::~CPicViewDlg()
{
}
void CPicViewDlg::ChangePicViewPos(int* pos0, int width, int height)
{
CRect rect, imgRect, rect1;
int maxsize0, width1, height1;
int maxstdsize = 1000;
int width2, height2;
int width3, height3;
::GetWindowRect(GetSafeHwnd(), &rect);
m_ctrlPicA.GetWindowRect(&imgRect);
maxsize0 = width;
if (width < height){
maxsize0 = height;
}
width1 = width * maxstdsize / maxsize0;
height1 = height * maxstdsize / maxsize0;
width3 = imgRect.Width();
height3 = imgRect.Height();
if (g_nRectWW < 0 || g_nRectHH < 0){
g_nRectWW = rect.Width() - width3;
g_nRectHH = rect.Height() - height3;
}
rect1.top = rect.top;
rect1.bottom = rect.top + height1 + g_nRectHH;
rect1.left = rect.left;
rect1.right = rect.left + width1 + g_nRectWW;
MoveWindow(&rect1);
m_ctrlPicA.MoveWindow(g_nRectWW/3, g_nRectHH-40, width1, height1);
g_nPicWidth1 = width1;
g_nPicHeight1 = height1;
return;
}
int CPicViewDlg::ShowPreviewPic(int* pos0, const TCHAR* imgfile, int nFocalVal)
{
int ret = 0;
TCHAR szFile1[1024] = {0};
CRect rect, rect1;
int nImageValidity = 0;
int width1, height1;
int nJpegType = 0;
BYTE* img3 = NULL;
m_strFileInfo = _T("");
m_strFileName = _T("");
UpdateData(FALSE);
Sleep(10);
ret = GetCurHuaFileInfo(&g_stImgInfo1);
if (ret != 0 || _tcscmp(g_stImgInfo1.m_szCurImage, imgfile) != 0)
{
ret = OpenPhoneImageFile(imgfile);
if (ret != 0){
MessageBox(_T("It failed to open Image File!"), MB_OK);
return ret;
}
}
ret = GetFocusedImage(imgfile, nFocalVal);
if (ret != 0){
// MessageBox(_T("GetFocusedImage Failed!"), MB_OK);
// ret = REFOCUS_Err_CommonJPEG;
// return ret;
}
ret = GetCurHuaFileInfo(&g_stImgInfo1);
if (ret != 0){
MessageBox(_T("GetCurHuaFileInfo Failed!"), MB_OK);
return ret;
}
::GetWindowRect(GetSafeHwnd(), &rect);
rect1.left = pos0[0];
rect1.right = rect1.left + rect.Width();
rect1.top = pos0[1];
rect1.bottom = rect1.top + rect.Height();
MoveWindow(&rect1);
SetWindowText(g_stImgInfo1.m_szCurImage);
m_strFileInfo.Format(_T("Width : %d Height : %d"), g_stImgInfo1.m_nImgWidth, g_stImgInfo1.m_nImgHeight);
UpdateData(FALSE);
ChangePicViewPos(pos0, g_stImgInfo1.m_nImgWidth, g_stImgInfo1.m_nImgHeight);
ret = GetTmpJpgFileName(g_stImgInfo1.m_szCurImage, szFile1, &nImageValidity);
if (ret != 0){
MessageBox(_T("GetTmpJpgFileName failed!"), MB_OK);
return ret;
}
if (nImageValidity){
m_strFileName = _T("Huawei P9 Image");
ret = 0;
}
else{
m_strFileName = _T("Common Image");
ret = REFOCUS_Err_CommonJPEG;
}
UpdateData(FALSE);
//. show
m_ctrlPicA.Load(CString(szFile1));
return ret;
}
void CPicViewDlg::DrawCursorPosA(int posX, int posY, int mode)
{
int xx, yy;
CClientDC dc( this );
CPen pen;
pen.CreatePen( PS_DOT, 3, RGB(255,0,0) );
CPen* oldPen = dc.SelectObject( &pen );
int old_rop = SetROP2(dc.m_hDC, R2_XORPEN);
CBrush brush;
brush.CreateSolidBrush( RGB(255,255,255) );
CBrush* oldBrush = dc.SelectObject( &brush );
if (g_nCursorPosX >= 0 && g_nCursorPosY >= 0)
{
xx = g_nCursorPosX + 10;
yy = g_nCursorPosY + 50;
dc.Rectangle( xx-10, yy-10, xx+10, yy+10 );
}
xx = posX + 10;
yy = posY + 50;
dc.Rectangle( xx-10, yy-10, xx+10, yy+10 );
dc.SelectObject( oldBrush );
SetROP2(dc.m_hDC, old_rop);
g_nCursorPosX = posX;
g_nCursorPosY = posY;
return;
}
BOOL CPicViewDlg::PreTranslateMessage(MSG* pMsg)
{
int mx, my;
int mx1, my1;
int nFValPerc;
TCHAR szMsg[256] = {0};
if (pMsg->message == WM_MOUSEMOVE)
{
if (pMsg->hwnd == GetDlgItem(IDC_STATIC_PIC)->GetSafeHwnd())
{
if (g_nRectWW == -1 || g_nRectHH == -1 || g_nPicWidth1 < 1 || g_nPicHeight1 < 1 ||
g_stImgInfo1.m_szCurImage[0] == 0)
{
}
else
{
if (g_nMouseAllow != 0)
{
mx1 = LOWORD(pMsg->lParam);
my1 = HIWORD(pMsg->lParam);
DrawCursorPosA(mx1, my1, 0);
}
}
}
}
else if (pMsg->message == WM_LBUTTONDOWN)
{
if (pMsg->hwnd == GetDlgItem(IDC_STATIC_PIC)->GetSafeHwnd())
{
if (g_nRectWW == -1 || g_nRectHH == -1 || g_nPicWidth1 < 1 || g_nPicHeight1 < 1 ||
g_stImgInfo1.m_szCurImage[0] == 0)
{
}
else
{
mx1 = LOWORD(pMsg->lParam);
my1 = HIWORD(pMsg->lParam);
DrawCursorPosA(mx1, my1, 0);
g_nMouseAllow = 0;
g_nCursorPosX = -1;
g_nCursorPosY = -1;
mx = (mx1 - g_nRectWW/2) * g_stImgInfo1.m_nImgWidth / g_nPicWidth1;
my = (my1 - 0) * g_stImgInfo1.m_nImgHeight / g_nPicHeight1;
if (mx < 0)
mx = 0;
else if (mx >= g_stImgInfo1.m_nImgWidth)
mx = g_stImgInfo1.m_nImgWidth-1;
if (my < 0)
my = 0;
else if (my >= g_stImgInfo1.m_nImgHeight)
my = g_stImgInfo1.m_nImgHeight-1;
// swprintf_s(szMsg, 200, _T("POS = %d, %d"), mx, my);
// MessageBox(szMsg, MB_OK);
int ret = GetFValPerc(mx, my, &nFValPerc);
if (ret == 0)
{
g_clsTuneDlg->SetFValCtrl(nFValPerc);
g_clsTuneDlg->ShowSelectedImage(nFValPerc, g_stImgInfo1.m_szCurImage);
}
}
}
}
return CDialogEx::PreTranslateMessage(pMsg);
}
void CPicViewDlg::DoDataExchange(CDataExchange* pDX)
{
CDialogEx::DoDataExchange(pDX);
DDX_Text(pDX, IDC_STATIC_SIZE_INFO, m_strFileInfo);
DDX_Text(pDX, IDC_STATIC_PATH, m_strFileName);
DDX_Control(pDX, IDC_STATIC_PIC, m_ctrlPicA);
}
BOOL CPicViewDlg::OnInitDialog()
{
CDialogEx::OnInitDialog();
SetIcon(m_hIcon, TRUE); // 设置大图标
SetIcon(m_hIcon, FALSE); // 设置小图标
return TRUE;
}
BEGIN_MESSAGE_MAP(CPicViewDlg, CDialogEx)
ON_WM_NCDESTROY()
END_MESSAGE_MAP()
// CPicView message handlers
void CPicViewDlg::OnNcDestroy()
{
// ((CTuneFocusDlg*)GetActiveWindow())->m_nPreviewDlgCreated = 0;
CDialogEx::OnNcDestroy();
// TODO: Add your message handler code here
}
| [
"photomedia88@gmail.com"
] | photomedia88@gmail.com |
4c4d47603032c567172b0de31457b5a9a4d50e71 | f30ae3bfbdfacce7093fa787cc2607ca7122e329 | /src/rrt-viewer/MainWindow.cpp | ef7bca4f35df6ae25d4816d0080d469ba3043e2d | [
"Apache-2.0"
] | permissive | zychaoqun/rrt | a3d4a887d5aca86b976bb768e0b20526c82aa18f | c2fe35c5a9011759a57393e3885a7eb956a1dc7d | refs/heads/master | 2021-01-13T16:56:51.167527 | 2016-12-02T07:26:16 | 2016-12-02T07:26:16 | 77,569,710 | 2 | 2 | null | 2016-12-29T00:24:29 | 2016-12-29T00:24:28 | null | UTF-8 | C++ | false | false | 4,532 | cpp |
#include "MainWindow.hpp"
using namespace RRT;
MainWindow::MainWindow() {
_rrtWidget = new RRTWidget();
setWindowTitle("Interactive RRT");
_iterationCountLabel = new QLabel(this);
_iterationCountLabel->setText("Iterations: 0");
statusBar()->addPermanentWidget(_iterationCountLabel);
QPushButton* run = new QPushButton(this);
run->setText("Run");
run->setStyleSheet("background-color: green;");
QPushButton* stop = new QPushButton(this);
stop->setText("Stop");
QPushButton* step = new QPushButton(this);
step->setText("Step");
QPushButton* stepBig = new QPushButton(this);
stepBig->setText("Step 100");
QPushButton* reset = new QPushButton(this);
reset->setText("Reset");
QPushButton* clearObstacles = new QPushButton(this);
clearObstacles->setText("Clear Obstacles");
clearObstacles->setStyleSheet("background-color: red;");
QSlider* goalBias = new QSlider(Qt::Horizontal, this);
goalBias->setTickPosition(QSlider::TicksBelow);
goalBias->setMinimum(0);
goalBias->setMaximum(100);
goalBias->setTickInterval(10);
_goalBiasLabel = new QLabel("Goal Bias: 0", this);
QSlider* waypointBias = new QSlider(Qt::Horizontal, this);
waypointBias->setTickPosition(QSlider::TicksBelow);
waypointBias->setMinimum(0);
waypointBias->setMaximum(100);
waypointBias->setTickInterval(10);
_waypointBiasLabel = new QLabel("Waypoint Bias: 0", this);
QDoubleSpinBox* stepSizeBox = new QDoubleSpinBox(this);
stepSizeBox->setMinimum(0.1);
stepSizeBox->setMaximum(100);
stepSizeBox->setValue(10);
QLabel* stepSizeLabel = new QLabel("Step Size:");
QCheckBox* ascCheckbox = new QCheckBox("Adaptive Stepsize Control", this);
QGridLayout* layout = new QGridLayout();
layout->addWidget(run, 0, 0);
layout->addWidget(stop, 1, 0);
layout->addWidget(step, 0, 1);
layout->addWidget(stepBig, 1, 1);
layout->addWidget(reset, 0, 2);
layout->addWidget(clearObstacles, 1, 2);
layout->addWidget(goalBias, 1, 3);
layout->addWidget(_goalBiasLabel, 0, 3);
layout->addWidget(waypointBias, 1, 4);
layout->addWidget(_waypointBiasLabel, 0, 4);
layout->addWidget(stepSizeBox, 1, 5);
layout->addWidget(stepSizeLabel, 0, 5);
layout->addWidget(ascCheckbox, 0, 6);
layout->addWidget(_rrtWidget, 2, 0, 1, 7);
QWidget* centralWidget = new QWidget(this);
centralWidget->setLayout(layout);
this->setCentralWidget(centralWidget);
// prevent the window from being resized
setFixedSize(sizeHint());
// make the buttons do things
connect(run, SIGNAL(clicked()), _rrtWidget, SLOT(slot_run()));
connect(stop, SIGNAL(clicked()), _rrtWidget, SLOT(slot_stop()));
connect(step, SIGNAL(clicked()), _rrtWidget, SLOT(slot_step()));
connect(stepBig, SIGNAL(clicked()), _rrtWidget, SLOT(slot_stepBig()));
connect(reset, SIGNAL(clicked()), _rrtWidget, SLOT(slot_reset()));
connect(clearObstacles, SIGNAL(clicked()), _rrtWidget,
SLOT(slot_clearObstacles()));
connect(goalBias, SIGNAL(valueChanged(int)), _rrtWidget,
SLOT(slot_setGoalBias(int)));
connect(goalBias, SIGNAL(valueChanged(int)), this,
SLOT(slot_updateGoalBiasLabel(int)));
connect(waypointBias, SIGNAL(valueChanged(int)), _rrtWidget,
SLOT(slot_setWaypointBias(int)));
connect(waypointBias, SIGNAL(valueChanged(int)), this,
SLOT(slot_updateWaypointBiasLabel(int)));
connect(stepSizeBox, SIGNAL(valueChanged(double)), _rrtWidget,
SLOT(slot_setStepSize(double)));
connect(ascCheckbox, SIGNAL(stateChanged(int)), _rrtWidget,
SLOT(slot_setASC(int)));
connect(_rrtWidget, SIGNAL(signal_stepped(int)), this,
SLOT(slot_updateIterationCount(int)));
// keyboard shortcuts
new QShortcut(QKeySequence(Qt::Key_R), _rrtWidget, SLOT(slot_run()));
new QShortcut(QKeySequence(Qt::Key_S), _rrtWidget, SLOT(slot_stop()));
new QShortcut(QKeySequence(Qt::Key_C), _rrtWidget, SLOT(slot_reset()));
}
void MainWindow::slot_updateGoalBiasLabel(int value) {
_goalBiasLabel->setText(QString("Goal Bias: %1").arg(value / 100.0f));
}
void MainWindow::slot_updateWaypointBiasLabel(int value) {
_waypointBiasLabel->setText(
QString("Waypoint Bias: %1").arg(value / 100.0f));
}
void MainWindow::slot_updateIterationCount(int iterationCount) {
_iterationCountLabel->setText(
QString("Iterations: %1").arg(iterationCount));
}
| [
"justbuchanan@gmail.com"
] | justbuchanan@gmail.com |
3a62014c007b1a36a61862c33b7dacad7ec7002e | e6cd51943f682a006da8b1245e6585e453334687 | /Classes/Native/AssemblyU2DCSharp_WMG_Ring_Graph_BandColorsChanger1361187995.h | 623d62081fb253117aaf44037322f3cc302f464a | [] | no_license | JasonRy/Seer_0.9.1 | a7495d385a6c5bcec6040ce061410d9eea4d09eb | f727a9442015b2dc03fc19d2fa68dc88ca8bfac0 | refs/heads/master | 2021-07-23T06:23:40.432032 | 2017-11-03T07:57:23 | 2017-11-03T08:53:35 | 109,366,091 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 746 | h | #pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
// System.IAsyncResult
struct IAsyncResult_t2754620036;
// System.AsyncCallback
struct AsyncCallback_t1369114871;
// System.Object
struct Il2CppObject;
#include "mscorlib_System_MulticastDelegate3389745971.h"
#include "mscorlib_System_Void2863195528.h"
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// WMG_Ring_Graph/BandColorsChanger
struct BandColorsChanger_t1361187995 : public MulticastDelegate_t3389745971
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
| [
"renxiaoyi@me.com"
] | renxiaoyi@me.com |
9eda523abe3c6cc0cd8ae4cc01a96cd7e8d55698 | 9939aab9b0bd1dcf8f37d4ec315ded474076b322 | /libs/core/io_service/include/hpx/io_service/io_service_pool_fwd.hpp | 9d871fd96cd577bab130b579e8d7e0f64a88a289 | [
"BSL-1.0",
"LicenseRef-scancode-free-unknown"
] | permissive | STEllAR-GROUP/hpx | 1068d7c3c4a941c74d9c548d217fb82702053379 | c435525b4631c5028a9cb085fc0d27012adaab8c | refs/heads/master | 2023-08-30T00:46:26.910504 | 2023-08-29T14:59:39 | 2023-08-29T14:59:39 | 4,455,628 | 2,244 | 500 | BSL-1.0 | 2023-09-14T13:54:12 | 2012-05-26T15:02:39 | C++ | UTF-8 | C++ | false | false | 369 | hpp | // Copyright (c) 2023 Hartmut Kaiser
//
// SPDX-License-Identifier: BSL-1.0
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#pragma once
#include <hpx/config.hpp>
namespace hpx::util {
class HPX_CORE_EXPORT io_service_pool;
} // namespace hpx::util
| [
"hartmut.kaiser@gmail.com"
] | hartmut.kaiser@gmail.com |
2237c8c4f86815fb511e532eea9c1269fa3f58f5 | 6f4d953fe2199d867beb0760d5c13086e4abb9e8 | /example/esp32_slave_side.cpp | b7f4f56b83fe2bc5e7398fd78c212f57d4166824 | [] | no_license | MkLHX/Raspberry_Pi_Master_for_ESP32_I2C_SLAVE | c935ddf8cc796e6618888399a7ff11697927f32a | b5cda7b027d14602f183dff5c13200a6ef1d0874 | refs/heads/master | 2023-07-24T11:05:09.939197 | 2021-09-09T08:29:54 | 2021-09-09T08:29:54 | 299,265,345 | 11 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 2,075 | cpp | /**
* @file esp32_slave_side.cpp
* @author MkLHX https://github.com/MkLHX
* @brief
* @date 2021-04-20
*
* @copyright Copyright (c) 2021
* this is an example of esp32 slave side c++ code
*/
#include <Arduino.h>
#ifndef Wire
#include <Wire.h>
#endif
#ifndef WireSlave
#include <WireSlave.h>
#endif
void receiveEvent(int numBytes);
void requestEvent(void);
byte i2cAddr = 0x21 // or wathever
int howManyBytesReceived;
uint8_t registerCode;
void receiveEvent(int numBytes)
{
Serial.print(F("---> recieved "));
Serial.print(numBytes);
howManyBytesReceived = numBytes;
Serial.println(F(" events on i2c bus"));
registerCode = WireSlave.read();
}
void requestEvent(void)
{
Serial.print(F("---> request register value: "));
Serial.print(registerCode, DEC);
Serial.print(F(" / 0x0"));
Serial.println(registerCode, HEX);
// switch case for multiple i2c registers
switch (registerCode)
{
case 0x00:
{
Serial.print("case of register 0x00");
// return value about register 0x00 uint8_t format
const uint8_t device_type = 0x00;
WireSlave.write(device_type);
break;
}
case 0x01:
{
Serial.print("case of register 0x01");
// return value about register 0x01 uint8_t format
const uint8_t device_firmware = 10; // send 10 divide by 10 to get the real value
WireSlave.write(device_firmware);
break;
}
default {
Serial.print("UNKNOW REGISTER: ");
Serial.println(registerCode);
}
}
}
void setup()
{
Serial.begin(115200);
bool ready = WireSlave.begin(I2C_SDA_PIN, I2C_SCL_PIN, i2cAddr);
if (!ready)
{
Serial.println(F("I2C slave init failed"));
while (true)
delay(100);
}
WireSlave.onReceive(receiveEvent); // receive register value
WireSlave.onRequest(requestEvent); // send register value
}
void loop()
{
// your other logic than i2c here
WireSlave.update();
delay(5); // cadencing loop to allow other i2c device interrupt
}
| [
"mickael.lehoux@greenponik.com"
] | mickael.lehoux@greenponik.com |
3926b30945ff3daf68be4dce9f09f754ad3b456b | f81124e4a52878ceeb3e4b85afca44431ce68af2 | /re20_1/processor58/constant/polyMesh/neighbour | 06ac1c64381a456bd5d90831effb486eadb3e414 | [] | no_license | chaseguy15/coe-of2 | 7f47a72987638e60fd7491ee1310ee6a153a5c10 | dc09e8d5f172489eaa32610e08e1ee7fc665068c | refs/heads/master | 2023-03-29T16:59:14.421456 | 2021-04-06T23:26:52 | 2021-04-06T23:26:52 | 355,040,336 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 875 | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 7
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class labelList;
note "nPoints: 152 nCells: 36 nFaces: 183 nInternalFaces: 33";
location "constant/polyMesh";
object neighbour;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
33
(
1
35
2
3
4
5
6
7
9
10
11
12
13
14
15
16
17
18
19
21
22
23
24
25
26
27
29
30
31
32
33
34
35
)
// ************************************************************************* //
| [
"chaseguy15"
] | chaseguy15 | |
9da426e7c9b5e5748120e87fe0f6580a2086bb59 | f8b56b711317fcaeb0fb606fb716f6e1fe5e75df | /Internal/SDK/BP_ipg_con_shirt_01_s03_Desc_classes.h | 9c6912e852667e54e8ec40240d1f0cc90f1f4466 | [] | 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 | 792 | 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 BP_ipg_con_shirt_01_s03_Desc.BP_ipg_con_shirt_01_s03_Desc_C
// 0x0000 (FullSize[0x00E0] - InheritedSize[0x00E0])
class UBP_ipg_con_shirt_01_s03_Desc_C : public UClothingDesc
{
public:
static UClass* StaticClass()
{
static auto ptr = UObject::FindClass("BlueprintGeneratedClass BP_ipg_con_shirt_01_s03_Desc.BP_ipg_con_shirt_01_s03_Desc_C");
return ptr;
}
};
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
| [
"zp2kshield@gmail.com"
] | zp2kshield@gmail.com |
51276b1710244c6c7602c9892c70732a7bca3b41 | 0b7f6c3529486c736c288822a11db9d7efe42e33 | /examples/groveslide.cxx | acc959eef623be62a9f2953eb8213212eac2c004 | [
"MIT"
] | permissive | rzr/upm | 4e1bfb614613226a49322dc55604d9496f7fcba2 | 8e45998984e62cb477a2e762d93e7949d5c6590f | refs/heads/master | 2020-12-28T21:51:18.204579 | 2015-01-15T17:24:52 | 2015-01-29T08:34:22 | 29,309,334 | 0 | 0 | MIT | 2019-08-07T21:54:05 | 2015-01-15T17:36:42 | C++ | UTF-8 | C++ | false | false | 1,827 | cxx | /*
* Author: Mihai Tudor Panu <mihai.t.panu@intel.com>
* Copyright (c) 2014 Intel Corporation.
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include <unistd.h>
#include <iostream>
#include <iomanip>
#include "grove.h"
using namespace std;
int main ()
{
//! [Interesting]
upm::GroveSlide* slide = new upm::GroveSlide(0); // Instantiate new grove slide potentiometer on analog pin A0
cout << slide->name() << endl;
while(true) {
float adc_value = slide->raw_value(); // Read raw value
float volts = slide->voltage_value(); // Read voltage, board reference set at 5.0V
fprintf(stdout, "%4d = %.2f V\n", (uint16_t)adc_value, volts);
usleep(2500000); // Sleep for 2.5s
}
//! [Interesting]
delete slide;
return 0;
}
| [
"brendan.le.foll@intel.com"
] | brendan.le.foll@intel.com |
6e0eb531496c0c7a77e20e20a75c78436cac7021 | 83220a9e4c64babd163da3e8d345de3b597a8707 | /1612/demo/moocast_gold.cpp | 8ec3d6bef80661b8103cf19bd2efd58d3becff6e | [] | no_license | hzhou/usaco | bd9dfa8be88206ad9f152edce81ea63b0f119ba7 | 928777159d8243fc0f6e0bdb26ec0b094a0ec30f | refs/heads/master | 2021-12-23T05:27:38.817952 | 2021-12-12T16:23:44 | 2021-12-12T16:23:44 | 177,450,503 | 1 | 13 | null | null | null | null | UTF-8 | C++ | false | false | 1,826 | cpp | #include <cstdio>
#include <queue>
#include <cstdio>
#include <algorithm>
int main(int argc, char** argv)
{
int n;
int i;
FILE* In = fopen("moocast.in", "r");
if (!In) {
fprintf(stderr, "Can't open In\n");
exit(-1);
}
int N;
fscanf(In, " %d" ,&N);
int x_list[N];
int y_list[N];
for (int i = 0; i<N; i++) {
fscanf(In, " %d %d" ,&x_list[i],&y_list[i]);
}
fclose(In);
int M[N*N];
for (int i = 0; i<N; i++) {
for (int j = i+1; j<N; j++) {
n = (x_list[i] - x_list[j]) * (x_list[i] - x_list[j]) + (y_list[i] - y_list[j]) * (y_list[i] - y_list[j]);
M[i*N+j] = n;
M[j*N+i] = n;
}
}
int L[N] = {0};
int visited[N] = {0};
auto cmp_fn = [&](int a, int b) {
if (L[b] == 0) {
return false;
} else if (L[a] == 0) {
return true;
} else {
return L[a] > L[b];
}
};
std::priority_queue<int, std::vector<int>, decltype(cmp_fn)> stack(cmp_fn);
stack.push(0);
while (stack.size() > 0) {
i = stack.top();
stack.pop();
if (visited[i]) {
continue;
} else {
visited[i] = 1;
}
for (int j = 0; j<N; j++) {
if (j != i) {
int t = L[i];
if (t < M[i*N+j]) {
t = M[i*N+j];
}
if (L[j] == 0 || L[j] > t) {
L[j] = t;
stack.push(j);
}
}
}
}
int n_max = 0;
for (int i = 0; i<N; i++) {
if (n_max < L[i]) {
n_max = L[i];
}
}
FILE* Out = fopen("moocast.out", "w");
fprintf(Out, "%d\n", n_max);
fclose(Out);
return 0;
}
| [
"hzhou@hzsolutions.net"
] | hzhou@hzsolutions.net |
6d8dfff3e482ef3189e2de5b8d6cc1e33bff70e1 | 91418a63d96ae2f5099b5714f50ca7443f4268e9 | /data_door/market_monitor/MarketHandler.h | 8a6ba176d61bd66c713a4209b32d73c644c4fbe8 | [] | no_license | taotao6688/future_pharaoh | 2c9dd44598fa7c5e350052636c10a0c876b81b46 | a6f49ad0c5a23e912a2cc7ed8939b606b1937137 | refs/heads/master | 2016-09-06T20:06:45.716953 | 2014-09-01T17:25:29 | 2014-09-01T17:25:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,634 | h | #ifndef __MARKET_HANDLER_H__
#define __MARKET_HANDLER_H__
#include <string>
#include "event.h"
#include "../KSMarketDataAPI/KSMarketDataAPI.h"
using namespace std;
using namespace KingstarAPI;
class MarketHandler : public CThostFtdcMdSpi
{
public:
// constructor£¬which need a valid pointer to a CThostFtdcMduserApi instance
MarketHandler(CThostFtdcMdApi *pUserApi);
~MarketHandler();
virtual void OnFrontConnected();
virtual void OnFrontDisconnected(int nReason);
virtual void OnRspUserLogin(CThostFtdcRspUserLoginField *pRspUserLogin, CThostFtdcRspInfoField *pRspInfo, int nRequestID, bool bIsLast);
virtual void OnRspSubMarketData(CThostFtdcSpecificInstrumentField *pSpecificInstrument, CThostFtdcRspInfoField *pRspInfo, int nRequestID, bool bIsLast);
virtual void OnRspUnSubMarketData(CThostFtdcSpecificInstrumentField *pSpecificInstrument, CThostFtdcRspInfoField *pRspInfo, int nRequestID, bool bIsLast);
virtual void OnRtnDepthMarketData(CThostFtdcDepthMarketDataField *pDepthMarketData);
virtual void OnRspUserLogout(CThostFtdcUserLogoutField *pUserLogout, CThostFtdcRspInfoField *pRspInfo, int nRequestID, bool bIsLast);
public:
// participant ID
TThostFtdcBrokerIDType m_chBrokerID;
// user id
TThostFtdcUserIDType m_chUserID;
// user password
TThostFtdcPasswordType m_chPassword;
// contract
char m_chContract[80];
// request id
int m_nRequestID;
// finish event
event_handle m_hEvent;
private:
// a pointer of CThostFtdcMduserApi instance
CThostFtdcMdApi *m_pUserApi;
};
#endif
| [
"root@zy-chef.(none)"
] | root@zy-chef.(none) |
4fcdebb80b11e5a61dae26fdfa27b98a7c7554b6 | 2b9d1cda1fc7633cea759388ec90450e2243cc3f | /hh07/PP06.Image_Sprite/InputHandler.cpp | 91ed7c266834ac795ade16fe648678995bd6369d | [] | no_license | hyeyoon156/20171278 | d4b9cada6e824b28c4cdb9f787a3f0651d92ce26 | dbf7c7c5e4befdd3fd888c411935ce47fdd874ba | refs/heads/master | 2020-03-28T16:43:11.096791 | 2018-11-26T17:11:43 | 2018-11-26T17:11:43 | 148,721,796 | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 2,094 | cpp | #include "InputHandler.h"
#include "Game.h"
#include <iostream>
InputHandler* InputHandler::s_pInstance = 0;
InputHandler::InputHandler()
{
m_mousePosition = new Vector2D(0, 0);
for (int i = 0; i < 3; i++)
{
m_mouseButtonStates.push_back(false);
}
// 생성자
}
void InputHandler::clean()
{
// 향후 추가
}
bool InputHandler::isKeyDown(SDL_Scancode key)
{
if (m_keystates != 0) {
if (m_keystates[key] == 1)
{
return true;
}
else {
return false;
}
}
return false;
}
void InputHandler::update()
{
SDL_Event event;
while (SDL_PollEvent(&event))
{
switch (event.type)
{
case SDL_QUIT:
TheGame::Instance()->quit();
break;
case SDL_MOUSEMOTION:
onMouseMove(event);
break;
case SDL_MOUSEBUTTONDOWN:
onMouseButtonDown(event);
break;
case SDL_MOUSEBUTTONUP:
onMouseButtonUp(event);
break;
case SDL_KEYDOWN:
onKeyDown();
break;
case SDL_KEYUP:
onKeyUp();
break;
default:
break;
}
}
}bool InputHandler::getMouseButtonState(int buttonNumber)
{
return m_mouseButtonStates[buttonNumber];
}
Vector2D* InputHandler::getMousePosition()
{
return m_mousePosition;
}
void InputHandler::onKeyUp() {
m_keystates = SDL_GetKeyboardState(0);
}
void InputHandler::onKeyDown() {
m_keystates = SDL_GetKeyboardState(0);
}
void InputHandler::onMouseMove(SDL_Event &event) {
m_mousePosition->setX(event.motion.x);
m_mousePosition->setY(event.motion.y);
}
void InputHandler::onMouseButtonDown(SDL_Event &event) {
if (event.button.button == SDL_BUTTON_LEFT)
{
m_mouseButtonStates[LEFT] = true;
}
if (event.button.button == SDL_BUTTON_MIDDLE)
{
m_mouseButtonStates[MIDDLE] = true;
}
if (event.button.button == SDL_BUTTON_RIGHT)
{
m_mouseButtonStates[RIGHT] = true;
}
}
void InputHandler::onMouseButtonUp(SDL_Event &event) {
if (event.button.button == SDL_BUTTON_LEFT)
{
m_mouseButtonStates[LEFT] = false;
}
if (event.button.button == SDL_BUTTON_MIDDLE)
{
m_mouseButtonStates[MIDDLE] = false;
}
if (event.button.button == SDL_BUTTON_RIGHT)
{
m_mouseButtonStates[RIGHT] = false;
}
}
| [
"hyeyoon156@gmail.com"
] | hyeyoon156@gmail.com |
b70393cdddef463f0ac38def10b5e95c2c221efd | 888ff1ff4f76c61e0a2cff281f3fae2c9a4dcb7b | /C/C300/C310/C318/2.cpp | 10882a95e4f5c0d4ab08a45e271dd9078913e596 | [] | no_license | sanjusss/leetcode-cpp | 59e243fa41cd5a1e59fc1f0c6ec13161fae9a85b | 8bdf45a26f343b221caaf5be9d052c9819f29258 | refs/heads/master | 2023-08-18T01:02:47.798498 | 2023-08-15T00:30:51 | 2023-08-15T00:30:51 | 179,413,256 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 868 | cpp | /*
* @Author: sanjusss
* @Date: 2022-11-06 10:35:03
* @LastEditors: sanjusss
* @LastEditTime: 2022-11-06 10:38:38
* @FilePath: \C\C300\C310\C318\2.cpp
*/
#include "leetcode.h"
class Solution {
public:
long long maximumSubarraySum(vector<int>& nums, int k) {
int n = nums.size();
long long sum = 0;
unordered_map<int, int> cnt;
long long ans = 0;
for (int i = 0; i < n; ++i) {
++cnt[nums[i]];
sum += nums[i];
if (i + 1 < k) {
continue;
}
else if (i >= k) {
sum -= nums[i - k];
if (--cnt[nums[i - k]] == 0) {
cnt.erase(nums[i - k]);
}
}
if (cnt.size() == k) {
ans = max(ans, sum);
}
}
return ans;
}
}; | [
"sanjusss@qq.com"
] | sanjusss@qq.com |
06590d2b7a8215ebc0767c2b5115c109a874816c | 4c23be1a0ca76f68e7146f7d098e26c2bbfb2650 | /ic8h18/0.0085/CC6H12OOH-EO2 | 83063cddff5ab951bda43b30eafb0323409d0241 | [] | no_license | labsandy/OpenFOAM_workspace | a74b473903ddbd34b31dc93917e3719bc051e379 | 6e0193ad9dabd613acf40d6b3ec4c0536c90aed4 | refs/heads/master | 2022-02-25T02:36:04.164324 | 2019-08-23T02:27:16 | 2019-08-23T02:27:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 846 | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 6
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "0.0085";
object CC6H12OOH-EO2;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 0 0 0 0 0 0];
internalField uniform 1.96576e-40;
boundaryField
{
boundary
{
type empty;
}
}
// ************************************************************************* //
| [
"jfeatherstone123@gmail.com"
] | jfeatherstone123@gmail.com | |
97003b8901183a60f131b14775c784ed17161c96 | f55f34c95fc3d28b818565bf8f20f5ee99ebf97f | /MaxwellEngine/VecRenderObject.hpp | e3905f7e26155b090bc29bff9244250989ff9377 | [] | no_license | gtier/VoxwellEngine | 2ac5c8d54f332d16e8780e89f5749a05f1f66c6f | 551de7b04cbd35fa29cecdb632a7d46c93c0157e | refs/heads/master | 2023-08-22T11:51:53.341222 | 2021-09-09T19:22:06 | 2021-09-09T19:22:06 | 404,835,601 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 740 | hpp | //
// VecRenderObject.hpp
// MaxwellEngine
//
// Created by Griffin Dunaif on 11/5/20.
// Copyright © 2020 Griffin Dunaif. All rights reserved.
//
#ifndef VecRenderObject_hpp
#define VecRenderObject_hpp
#include <stdio.h>
#include <mutex>
#include "mes.h"
#include "RenderObject.hpp"
class mes::VecRenderObject
{
private:
typedef std::unique_ptr<mes::RenderObject> RenderObject_uptr;
std::vector<std::unique_ptr<mes::RenderObject>> renderObjects;
std::mutex m;
public:
VecRenderObject()
{
}
void push_back(RenderObject_uptr&& ro_uptr);
size_t size();
// Overrides [] operator
std::unique_ptr<mes::RenderObject>& operator[](size_t i);
};
#endif /* VecRenderObject_hpp */
| [
"30325272+gtier@users.noreply.github.com"
] | 30325272+gtier@users.noreply.github.com |
a036c6bb10eb68caf2365ab893e10413f57cefe6 | 523760f2e486e71b8037d1510cdfcac8444a5e33 | /src/bigint/util.h | 3c1f1cf9f5c20fcacad54b4f0b63046b338d5c16 | [
"BSD-3-Clause",
"SunPro",
"Apache-2.0"
] | permissive | Durian2022/v8 | b18bc3421259902421ba851d642e8e5fe5b7c2aa | f1acce32c5fca5d89402e5c204773c9085639ddd | refs/heads/main | 2023-05-27T21:22:58.029272 | 2021-06-10T14:40:32 | 2021-06-10T15:33:17 | 375,771,789 | 0 | 0 | NOASSERTION | 2021-06-10T17:03:08 | 2021-06-10T17:03:07 | null | UTF-8 | C++ | false | false | 1,673 | h | // Copyright 2021 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// "Generic" helper functions (not specific to BigInts).
#include <stdint.h>
#include <type_traits>
#ifdef _MSC_VER
#include <intrin.h> // For _BitScanReverse.
#endif
#ifndef V8_BIGINT_UTIL_H_
#define V8_BIGINT_UTIL_H_
// Integer division, rounding up.
#define DIV_CEIL(x, y) (((x)-1) / (y) + 1)
namespace v8 {
namespace bigint {
// Rounds up x to a multiple of y.
inline constexpr int RoundUp(int x, int y) { return (x + y - 1) & -y; }
// Different environments disagree on how 64-bit uintptr_t and uint64_t are
// defined, so we have to use templates to be generic.
template <typename T, typename = typename std::enable_if<
std::is_unsigned<T>::value && sizeof(T) == 8>::type>
constexpr int CountLeadingZeros(T value) {
#if __GNUC__ || __clang__
return value == 0 ? 64 : __builtin_clzll(value);
#elif _MSC_VER
unsigned long index = 0; // NOLINT(runtime/int). MSVC insists.
return _BitScanReverse64(&index, value) ? 63 - index : 64;
#else
#error Unsupported compiler.
#endif
}
constexpr int CountLeadingZeros(uint32_t value) {
#if __GNUC__ || __clang__
return value == 0 ? 32 : __builtin_clz(value);
#elif _MSC_VER
unsigned long index = 0; // NOLINT(runtime/int). MSVC insists.
return _BitScanReverse(&index, value) ? 31 - index : 32;
#else
#error Unsupported compiler.
#endif
}
inline constexpr int BitLength(int n) {
return 32 - CountLeadingZeros(static_cast<uint32_t>(n));
}
} // namespace bigint
} // namespace v8
#endif // V8_BIGINT_UTIL_H_
| [
"v8-scoped@luci-project-accounts.iam.gserviceaccount.com"
] | v8-scoped@luci-project-accounts.iam.gserviceaccount.com |
b5f9ebb4be2e9d4bb594e9d38df6a6a2ca893f21 | feff5dadc85629c0947abf87a79f86ace8c84539 | /codeforces/edu123/D.cpp | d99f4b469378c1a4a614a1c58402f0685da7d7d5 | [] | no_license | Redleaf23477/ojcodes | af7582d9de8619509fa4ffa5338b2a59d9176608 | 7ee3053a88a78f74764bc473b3bd4887ceac6734 | refs/heads/master | 2023-08-13T22:34:58.000532 | 2023-08-10T15:54:05 | 2023-08-10T15:54:05 | 107,507,680 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,075 | cpp | #include <bits/stdc++.h>
using namespace std;
using LL = long long int;
constexpr LL MOD = 998244353;
LL fastpw(LL a, LL p) {
LL ans = 1;
while (p > 0) {
if (p % 2 == 1) ans = ans * a % MOD;
a = a * a % MOD;
p /= 2;
}
return ans;
}
void solve() {
LL R, C, K, q; cin >> R >> C >> K >> q;
vector<tuple<int,int>> arr(q);
for (auto &[r, c] : arr) {
cin >> r >> c; r--, c--;
}
LL cnt = 0;
set<int> zero_row, zero_col;
int minus_row = 0, minus_col = 0;
for (int i = q-1; i >= 0; i--) {
auto [r, c] = arr[i];
int rn = (zero_row.count(r) == 0? C : 0);
int cn = (zero_col.count(c) == 0? R : 0);
if (rn - minus_row > 0 || cn - minus_col > 0) cnt++;
if (zero_row.count(r) == 0) minus_col++;
if (zero_col.count(c) == 0) minus_row++;
zero_row.insert(r);
zero_col.insert(c);
}
cout << fastpw(K, cnt) << "\n";
}
int main() {
ios::sync_with_stdio(false); cin.tie();
int T; cin >> T;
while (T--) {
solve();
}
}
| [
"schpokeool@gmail.com"
] | schpokeool@gmail.com |
3aa2fdfcc6bdf00065523dc6ccacc1f5800e10bf | 24be8cefdf3134c6b860bfbacec2ede5daf7ccef | /knight_rider_led_stream/knight_rider_led_stream.ino | b97da5614cc463dfb319eb3445388b418cb2e1ac | [] | no_license | morlandi/arduino | 091ac86b644481457ada52049117a1bcfef1e5fc | 9e0306041adfa57dfb3851fbb9ecad94a51c112a | refs/heads/master | 2021-01-16T21:43:29.171757 | 2016-08-14T11:17:00 | 2016-08-14T11:17:00 | 63,811,220 | 0 | 1 | null | 2016-07-20T20:11:10 | 2016-07-20T20:11:10 | null | UTF-8 | C++ | false | false | 3,911 | ino | #include <stdarg.h>
void debug_print(char *fmt, ... ){
char buf[128]; // resulting string limited to 128 chars
va_list args;
va_start (args, fmt );
vsnprintf(buf, 128, fmt, args);
va_end (args);
Serial.print(buf);
}
class KnightRiderLedStream {
public:
int _start_index;
int _end_index;
int _deltat_min;
int _deltat_max;
int _dt;
long _t;
int _index; // current led
int _direction; // 1 = forward, 0 = backward
int _deltat_direction = 1; // 1 = faster, 0 = slower
float _deltat_factor = 0.75;
KnightRiderLedStream() {
_start_index = 0;
_end_index = 0;
_dt = 0;
_deltat_min = 0;
_deltat_max = 0;
_t = 0;
_index = 0;
}
void initialize(int start_index, int end_index, int deltat_min, int deltat_max) {
_start_index = start_index;
_end_index = end_index;
_deltat_min = deltat_min;
_deltat_max = deltat_max;
_dt = _deltat_max;
for (int i=start_index; i <= end_index; i++) {
pinMode(i, OUTPUT);
}
_index = start_index;
_direction = 1;
}
/*
void toggleLed(int index) {
if (digitalRead(index) == HIGH) {
digitalWrite(index, LOW);
}
else {
digitalWrite(index, HIGH);
}
}
*/
void update_current_index() {
if (_direction == 1) {
// move index forward
if (_index < _end_index) {
_index++;
}
else {
_index--;
_direction = 0;
}
}
else {
// move index backward
if (_index > _start_index) {
_index--;
}
else {
_index++;
_direction = 1;
}
}
return;
}
void update_deltat() {
if (_deltat_direction == 1) {
_dt = _dt * _deltat_factor;
}
else {
_dt = _dt / _deltat_factor;
}
if (_dt < _deltat_min) {
_dt = _deltat_min;
_deltat_direction = 0;
}
else if (_dt > _deltat_max) {
_dt = _deltat_max;
_deltat_direction = 1;
}
}
void tick(long t) {
// verifichiamo se e' passato abbastanza tempo
// da dover aggiornare lo stato del led
if (t - _t > _dt) {
_t = t;
update_current_index();
// Test index change
/*
for (int i=_start_index; i<=_end_index; i++) {
digitalWrite(i, (i == _index) ? HIGH : LOW);
}
*/
// scansione dei led per assegnare la luminosita' opportuna
for (int i=_start_index; i<=_end_index; i++ ) {
int intensity = LOW;
int displacement = (i - _index);
if (displacement == 0) {
intensity = HIGH;
}
// TODO: ricalcolare le soglie in funzione di deltat_min/max
if (_dt < 65 && displacement == 1) {
intensity = HIGH;
}
if (_dt < 40 && abs(displacement) == 1) {
intensity = HIGH;
}
digitalWrite(i, intensity);
}
// If starting to scan the led stream once again,
// also update deltat
if (_index == _start_index) {
update_deltat();
}
}
}
};
KnightRiderLedStream stream1 = KnightRiderLedStream();
KnightRiderLedStream stream2 = KnightRiderLedStream();
void setup() {
Serial.begin(9600);
stream1.initialize(2, 10, 30, 120);
}
void loop() {
long now = millis();
Serial.print(now);
Serial.print("\n");
stream1.tick(now);
stream2.tick(now);
delay(10);
}
| [
"morlandi@brainstorm.it"
] | morlandi@brainstorm.it |
cf6aa8173abd658d0062e2fda2b26173d3020c2f | d439909a41a1fcce6c859d1022c145d736d06f73 | /torch/csrc/lazy/core/view_ops/select_view_update.h | 6d33e1b45b2db43c66d567bbba0c9639d4898b9f | [
"BSD-3-Clause",
"LicenseRef-scancode-generic-cla",
"BSL-1.0",
"Apache-2.0",
"BSD-2-Clause"
] | permissive | MarcelRaschke/pytorch-2 | f19f41f8dc072bd3c387b9fada8a998f10cb235a | a346a18150866dd62c9bacbca817d2d44148b74d | refs/heads/master | 2023-05-12T02:48:04.840889 | 2022-03-16T15:19:41 | 2022-03-16T15:19:41 | 159,927,967 | 1 | 1 | NOASSERTION | 2023-04-04T00:54:40 | 2018-12-01T09:16:04 | C++ | UTF-8 | C++ | false | false | 676 | h | #pragma once
#include <torch/csrc/lazy/ts_backend/ts_node.h>
namespace torch {
namespace lazy {
class TORCH_API SelectViewUpdate : public TsNode {
public:
SelectViewUpdate(
const Value& target,
const Value& source,
int64_t dim,
int64_t start,
int64_t end,
int64_t stride);
std::string ToString() const override;
int64_t dim() const {
return dim_;
}
int64_t start() const {
return start_;
}
int64_t end() const {
return end_;
}
int64_t stride() const {
return stride_;
}
private:
int64_t dim_;
int64_t start_;
int64_t end_;
int64_t stride_;
};
} // namespace lazy
} // namespace torch
| [
"facebook-github-bot@users.noreply.github.com"
] | facebook-github-bot@users.noreply.github.com |
866e44ab1bdff0b32d96133e8e499d7725df449c | 5f2f9dcb47bb810cf55291825ab2be3028a201a5 | /SPOJ/137 - Partition.cpp | b83d2fa4a5d6e785debbc23a5cdde5ea1b723eec | [] | no_license | Linfanty/ACM-ICPC | 19480155d6e461b728147cfd299e8bce8930f303 | 2d23ef8013df4eb55dc27aa8f7149420a1b5d3a7 | refs/heads/master | 2021-01-24T00:24:39.585748 | 2017-08-27T08:27:32 | 2017-08-27T08:27:32 | 122,764,304 | 1 | 0 | null | 2018-02-24T17:48:03 | 2018-02-24T17:48:03 | null | UTF-8 | C++ | false | false | 1,268 | cpp | // Memory Time
// 1347K 0MS
// by : Snarl_jsb
// 2015-03-17-10.20
#include<algorithm>
#include<cstdio>
#include<cstring>
#include<cstdlib>
#include<iostream>
#include<vector>
#include<queue>
#include<stack>
#include<map>
#include<string>
#include<climits>
#include<cmath>
#define LL long long
using namespace std;
long long memo[9][221][221];
long long solve(int n, int m, int last){
if(n==0){
if(m>=last) return 1;
return 0;
}
long long &ret = memo[n][m][last];
if(ret == -1){
ret = 0;
for(int i = last;(n+1) * i <= m;++i)
ret += solve(n-1,m-i,i);
}
return ret;
}
int main(){
int T,M,N,K;
scanf("%d",&T);
while(T--){
scanf("%d %d %d",&M,&N,&K);
memset(memo,-1,sizeof(memo));
int last = 1;
for(int i = N-1;i>0;--i){
int tmp = 0,j = last;
while(true){
if(tmp + solve(i-1,M-j,j) >= K){
printf("%d ",j);
K -= tmp;
last = j;
M -= j;
break;
}
tmp += solve(i-1,M-j,j);
++j;
}
}
printf("%d\n",M);
}
return 0;
}
| [
"11301655@qq.com"
] | 11301655@qq.com |
92d26659573235903327ca88fb84c89dc5e520ab | 00a050f2c32b680f15c02d42181bab19046a2a10 | /Challenges/pc19/SLNode.cpp | 01714c656176f8fe9836f648b838cde333362f95 | [] | no_license | xmansyis/CSCI-21-Spring-2014 | d565271841001634bec0bf40e85f7ade40415971 | 67f2b07912a40a8b3fa876f6254fa4bcedf11700 | refs/heads/master | 2020-03-28T19:18:41.791655 | 2014-05-28T18:19:05 | 2014-05-28T18:19:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 461 | cpp | #include "SLNode.h"
#include <cstdlib>
SLNode::~SLNode(){
next = NULL;
}
SLNode::SLNode(){
content = 0;
next = NULL;
}
SLNode::SLNode(int newContent){
content = newContent;
next = NULL;
}
void SLNode::setContents(int newContent){
content = newContent;
}
int SLNode::getContents() const{
return content;
}
void SLNode::setNextNode(SLNode* newNode){
next = newNode;
}
SLNode* SLNode::getNextNode () const{
return next;
} | [
"syis@live.com"
] | syis@live.com |
543420f0a21f1dd9ee200f1c4fd7ec8d0d648794 | 6c0b9af709e06a5d404a1622be95788f381fbd3d | /src/protocol.h | 9f0f37f31aaff895a34c069d78de178e25a6815d | [
"MIT"
] | permissive | coinoak/tongxingpoints | 5ed08719830b60449a482bc97783ae3b1da839bf | c8e4609503fa9f6a20bc0686bc23acfab3df9f7e | refs/heads/master | 2021-06-22T13:06:23.006640 | 2017-07-19T07:01:53 | 2017-07-19T07:01:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,543 | h | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2013 The Dacrs developers
// Copyright (c) 2016 The Tongxingpoints developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef __cplusplus
# error This header can only be compiled as C++.
#endif
#ifndef __INCLUDED_PROTOCOL_H__
#define __INCLUDED_PROTOCOL_H__
#include "chainparams.h"
#include "netbase.h"
#include "serialize.h"
#include "uint256.h"
#include <stdint.h>
#include <string>
/** Message header.
* (4) message start.
* (12) command.
* (4) size.
* (4) checksum.
*/
class CMessageHeader
{
public:
CMessageHeader();
CMessageHeader(const char* pszCommand, unsigned int nMessageSizeIn);
std::string GetCommand() const;
bool IsValid() const;
IMPLEMENT_SERIALIZE
(
READWRITE(FLATDATA(pchMessageStart));
READWRITE(FLATDATA(pchCommand));
READWRITE(nMessageSize);
READWRITE(nChecksum);
)
// TODO: make private (improves encapsulation)
public:
enum {
COMMAND_SIZE=12,
MESSAGE_SIZE_SIZE=sizeof(int),
CHECKSUM_SIZE=sizeof(int),
MESSAGE_SIZE_OFFSET=MESSAGE_START_SIZE+COMMAND_SIZE,
CHECKSUM_OFFSET=MESSAGE_SIZE_OFFSET+MESSAGE_SIZE_SIZE,
HEADER_SIZE=MESSAGE_START_SIZE+COMMAND_SIZE+MESSAGE_SIZE_SIZE+CHECKSUM_SIZE
};
char pchMessageStart[MESSAGE_START_SIZE];
char pchCommand[COMMAND_SIZE];
unsigned int nMessageSize;
unsigned int nChecksum;
};
/** nServices flags */
enum
{
NODE_NETWORK = (1 << 0),
};
/** A CService with information about it as peer */
class CAddress : public CService
{
public:
CAddress();
explicit CAddress(CService ipIn, uint64_t nServicesIn=NODE_NETWORK);
void Init();
IMPLEMENT_SERIALIZE
(
CAddress* pthis = const_cast<CAddress*>(this);
CService* pip = (CService*)pthis;
if (fRead)
pthis->Init();
if (nType & SER_DISK)
READWRITE(nVersion);
if ((nType & SER_DISK) /*|| (nVersion >= CADDR_TIME_VERSION && !(nType & SER_GETHASH))*/)
READWRITE(nTime);
READWRITE(nServices);
READWRITE(*pip);
)
void print() const;
// TODO: make private (improves encapsulation)
public:
uint64_t nServices;
// disk and network only
unsigned int nTime;
// memory only
int64_t nLastTry;
};
/** inv message data */
class CInv
{
public:
CInv();
CInv(int typeIn, const uint256& hashIn);
CInv(const std::string& strType, const uint256& hashIn);
IMPLEMENT_SERIALIZE
(
READWRITE(type);
READWRITE(hash);
)
friend bool operator<(const CInv& a, const CInv& b);
bool IsKnownType() const;
const char* GetCommand() const;
std::string ToString() const;
void print() const;
// TODO: make private (improves encapsulation)
public:
int type;
uint256 hash;
};
enum
{
MSG_TX = 1,
MSG_BLOCK,
// Nodes may always request a MSG_FILTERED_BLOCK in a getdata, however,
// MSG_FILTERED_BLOCK should not appear in any invs except as a part of getdata.
MSG_FILTERED_BLOCK,
};
#endif // __INCLUDED_PROTOCOL_H__
| [
"junjie.taojj@alibaba-inc.com"
] | junjie.taojj@alibaba-inc.com |
063a2e456748dda1669c78835f3e423e2dd783aa | a5d686667ad7ecff2bbaa6c604e9a3e4a53ef23c | /src/chp06/6_2.cpp | 63bd0caefec2ade837566aad327dbf2c590708ab | [
"MIT"
] | permissive | gianscarpe/cpp_primer | df6c270555dee3b82b2e2dc1cf16329fa46fc86c | f09c645449d9b79e7c77dde13381513dee25519a | refs/heads/master | 2023-01-01T14:30:47.551972 | 2020-10-29T16:50:28 | 2020-10-29T16:50:28 | 260,462,730 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,524 | cpp | #include <iostream>
#include <string>
#include <cctype>
#include <vector>
#include <initializer_list>
using std::cin; using std::cout; using std::endl;
using std::string; using std::vector;
using std::initializer_list;
void reset(int& v1){
v1 = 0;
}
void refToConstExample(const int& l){
cout << l << endl;
}
void swap(int& v1, int& v2){
int tmp = v1;
v1 = v2;
v2 = tmp;
}
bool isShorter(const string &s1, const string &s2){
return s1.size() < s2.size();
}
bool is_empty(const string &s1){
return s1.size() > 0;
}
bool containes_capital(const string &s1){
for(auto c : s1){
if (isupper(c))
return true;
}
return false;
}
void to_lower(string &s1){
for(auto &c : s1)
c = tolower(c);
}
void ex6_10(){
cout << "Begin ex 6.10" << endl;
int v1 = 10, v2 = 20;
swap(v1, v2);
assert(v2 == 10);
assert(v1 == 20);
}
string::size_type find_char(const string &s, char c, string::size_type &occ){
decltype(s.size()) ret = s.size();
int count = 0;
for (decltype(s.size()) i = 0; i != s.size(); ++i){
if (s[i] == c) {
if (ret == s.size())
ret = i;
++occ;
}
}
return ret;
}
void sec6_2_2(){
cout << "Begin sec 6.2.2" << endl;
string s1 = "hi";
string s2 = "hello";
assert(isShorter(s1, s2));
string::size_type occ = 0;
auto t = find_char(s2, 'l', occ);
cout << "Occurrance: " << occ << " first occ: " << t << endl;
assert(occ == 2);
assert(s2[t] == 'l');
}
void sec6_2_3(){
cout << "Begin sec 6.2.3" << endl;
int i = 42;
reset(i);
assert(i == 0);
int j = 42;
const int& c= j;
unsigned cnt = 13;
/* Would lose const qualifier
reset(c);
*/
/* Cannot convert from unsigned to int
reset(cnt);
*/
refToConstExample(42); // We can pass literals IF reference argument is CONST
}
class matrix {};
vector<int> change_val(const int v, vector<int>::iterator vector);
bool compare(const matrix &m1, const matrix &m2);
void ex6_17(){
cout << "Begin ex 6.17" << endl;
assert(containes_capital("Hi my dear"));
string s1 = "HELLO";
to_lower(s1);
assert(s1 == "hello");
string * const p1 = &s1; // const pointer to string
const string * p2 = &s1; // pointer to const string
to_lower(*p1); // legal
// to_lower(*p2); // unlegal
}
/*
bool calc(double);
int sum(vector<int>::iterator, vector<int>::iterator, int);
void ex6_19(){
calc(66); // legal
vector<int> v1 { 10, 10 };
sum(v1.begin(), v1.end(), 42); // legal BUT you can use reference to const (?)
}
*/
void f1(const int v1){
// ...
}
/* Compile error: redefinition of f1
void f1(int v1){
// ...
}
*/
void print_array(const int* beg, const int* end){
while(beg < end)
cout << *beg++ << " ";
cout << endl;
}
// using references
void print_array(const int (&arr)[5]){
for(auto i : arr)
cout << i << " ";
cout << endl;
}
// REMEMBER: size of an array is PART of the declaration -> if you want to print
// multidimensional array you have to specify all the dimensions (except the
// first one, because is a pointer to array)
void print_matrix(const int matrix[][5], int n_rows){
for(int i = 0; i != n_rows; ++i){
cout << "Row n. " << i+1 << endl;
print_array(matrix[i]);
}
}
void sec6_2_4(){
cout << "Begin sec 6.2.4" << endl;
int arr[5] = { 1, 2, 3, 4, 5 };
print_array(std::begin(arr), std::end(arr) );
print_array(arr);
int matrix[2][5] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
print_matrix(matrix, 2);
}
int max(int v1, const int *v2){
return (v1 > *v2) ? v1 : *v2;
}
void ex6_21(){
cout << "Begin ex 6.21" << endl;
int v1 = 15;
int tmp = 42;
int *v2 = &tmp;
assert(max(v1, v2) == *v2);
}
void print(const int ia[10]){ // It works, but it's better to write it as print_array
for(size_t i = 0; i != 10; ++i){
cout << ia[i] << endl;
}
}
// Better alternative to print
void print(const int* ia, int n){
for(size_t i = 0; i != n; ++i){
cout << *(ia + i) << endl;
}
}
void ex6_24(){
cout << "Begin ex 6.24" << endl;
int ia[10] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
print(ia);
print(ia, 10);
}
void print_parameters(int n, char *args[]){
for (int i = 0; i != n; ++i) {
// cout << *args[i];
while (*args[i])
cout << *(args[i]++);
cout << endl;
}
cout << "END parameters" << endl;
}
void concatenate(int n, char *args[], string* result){
for (int i = 0; i != n; ++i) {
string tmp = "";
while (*args[i])
tmp += *(args[i]++);
cout << tmp;
*result += " " + tmp;
}
}
void print_messages(initializer_list<string> msgs){
for(auto s : msgs)
cout << s << " ";
cout << endl;
}
void sec6_2_6(){
cout << "Begin sec 6.2.6" << endl;
string s1 = "hi", s2 = "how";
print_messages({s1, s2});
print_messages({
"Note that", "do not use reference", "litterals are allowd"});
}
int sum(initializer_list<int> values){
int result = 0;
for(initializer_list<int>::iterator it = values.begin(); it != values.end(); ++it){
result+=*it;
}
return result;
}
void ex6_26(){
cout << "Ex 6.26" << endl;
cout << sum({
1, 2, 3, 4, 5, 6}) << endl;;
assert(sum({
1, 2, 3, 4, 5, 6}) == (6 * 7 / 2 ));
}
int main(int argc, char* argv[]){
cout << "parameters:" << argc << endl;
//print_parameters(argc, argv);
string s = "Our parameters: ";
concatenate(argc, argv, &s);
cout << s << endl;
ex6_10();
sec6_2_2();
sec6_2_3();
ex6_17();
sec6_2_4();
ex6_21();
ex6_24();
sec6_2_6();
ex6_26();
return EXIT_SUCCESS;
}
| [
"g.scarpellini1@campus.unimib.it"
] | g.scarpellini1@campus.unimib.it |
9fc44b5b4f27a01da411a9e9d5defce20d07d9d0 | 02edddd8300883abb2e3d12af0f67684eadea649 | /hisExampls/SM_APP03_CLASS_/spatialMedia02/smImage.h | d82dee4d0c93df2d0cdc6b4c473d961f8732ee79 | [] | no_license | gabriella/spatial-media | ef5a52a6b4147e3af6f8ac381cf7a8917c93bf91 | bfd95cb6310c3f51e2144d6ec6a9dcf19b7c032a | refs/heads/master | 2021-01-01T20:41:14.015987 | 2012-03-01T19:20:00 | 2012-03-01T19:20:00 | 3,294,621 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 677 | h |
// smImage.h
// spatialMedia
#ifndef spatialMedia_smImage_h
#define spatialMedia_smImage_h
#include "poTexture.h"
class smImage
{
public:
// the image constructor
smImage( const char* fileName, int W, int H );
smImage( int W, int H );
// draw image methods
void draw();
void fastDraw( float x, float y );
// get and set pixel methods
int getPixel( int x, int y );
void setPixel( int x, int y, int grayValue );
// image data variables
int width, height;
unsigned char* imageData;
// this poTexture is used for the fastDraw method
poTexture* imageAsTexture;
};
#endif
| [
"gabriella.levine@gmail.com"
] | gabriella.levine@gmail.com |
37483a1da8606f345e1cc6d2aac5289ab4d392cb | dd864fd2de808fb34f8cf871fd49985374720ea2 | /leetcode/src/LongestCommonString.hpp | 354aa6e8ca6fe4d9ab5c36878850bcc8e1777d30 | [] | no_license | AndyJelly/leetcode | 3e7ef46e97836e5edb6e1a2fafc9bd601ba2898b | 16094f16e6c753fd385f9a49ba46ccfe3f7f5455 | refs/heads/master | 2023-07-28T10:53:27.085894 | 2021-09-12T16:22:20 | 2021-09-12T16:22:20 | 405,689,197 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 766 | hpp | #pragma once
#include <string>
std::string LCS(std::string str1, std::string str2)
{
// write code here
if (str1.empty() || str2.empty())
{
return "-1";
}
int len1 = str1.size();
int len2 = str2.size();
int* dp = new int[len2 + 1]();
memset(dp, 0, sizeof(dp));
int max_len = 0, start = 0;
for (int i = 1; i <= len1; ++i)
{
int last = 0; //每次都要重新设置数组的初始值
for (int j = 1; j <= len2; ++j)
{
int tmp = dp[j];
if (str1[i - 1] == str2[j - 1])
{
dp[j] = last + 1;
}
else
{
dp[j] = 0;
}
last = tmp;
if (dp[j] > max_len)
{
max_len = dp[j];
start = i;
}
}
}
delete[len2 + 1] dp;
if (max_len == 0)
{
return "-1";
}
return str1.substr(start - max_len, max_len);
} | [
"i986980615@126.com"
] | i986980615@126.com |
5892da23312d576593d2ebd59e35199146f25de3 | a29313249388619306c617d3cacde60a61b440cf | /src/games/Domino.hpp | 8ca1dbe9f27b720b278587a9adabcef9edc03aa6 | [] | no_license | rubmary/cfr | 476862c1229edeafd16bd4ebf999b103b2748909 | e4cd8ee9249a151827fa124627c1c3c8f4465760 | refs/heads/master | 2020-05-26T16:54:36.883605 | 2019-12-20T15:21:00 | 2019-12-20T15:21:00 | 188,307,480 | 0 | 0 | null | 2019-12-20T03:37:52 | 2019-05-23T21:13:43 | C++ | UTF-8 | C++ | false | false | 2,522 | hpp | /**
* Interfaz del juego
* Dudo
*/
#include <vector>
#include <set>
#include <algorithm>
#include <random>
#include <ctime>
#include <unordered_map>
#include <chrono>
#include <boost/functional/hash.hpp>
#include <iostream>
#include <utility>
#include "Game.hpp"
using namespace std;
#ifndef DOMINO
#define DOMINO
namespace domino
{
typedef pair<short int, short int> Piece;
struct Action {
Piece taken;
Piece placed;
char side;
bool operator == (Action const& action) const {
return taken == action.taken &&
placed == action.placed &&
side == action.side;
}
};
typedef vector<Action>History;
struct Properties {
int max_point;
int initial_hand;
};
struct State {
vector<Piece> pack;
vector<Piece> permutation;
vector<set<Piece>> hands;
int left, right;
History history;
int player;
};
struct InformationSet {
vector<short int> history;
vector<byte> hand;
byte taken_piece;
bool operator == (InformationSet const& inf_set) const {
return history == inf_set.history &&
hand == inf_set.hand &&
taken_piece == inf_set.taken_piece;
}
};
struct Hash {
size_t operator()(InformationSet const& inf_set) const noexcept {
size_t hash = 0;
boost::hash_range(hash, inf_set.history.begin(), inf_set.history.end());
boost::hash_range(hash, inf_set.hand.begin(), inf_set.hand.end());
boost::hash_combine(hash, inf_set.taken_piece);
return hash;
}
};
class Domino : public Game<State, Action, Properties, InformationSet, Hash>
{
bool place_to_left(const Piece& piece);
bool place_to_right(const Piece& piece);
bool will_take();
int opposite(int number, const Piece& piece);
int count_points(const set<Piece> &hand);
void deal_cards();
void create_pack();
public:
Domino(int max_point, int initial_hand);
int player();
void change_player();
void initial_state();
void first_state();
bool next_state();
virtual InformationSet information_set();
vector<Action> actions();
void update_state(const Action &action);
void revert_state();
bool terminal_state();
double utility(int i);
void print();
};
}
ostream& operator<<(ostream& os, const byte& b);
ostream& operator<<(ostream& os, const domino::InformationSet& I);
istream& operator>>(istream& is, byte& b);
istream& operator>>(istream& is, domino::InformationSet& I);
#endif
| [
"rubmaryrojas@gmail.com"
] | rubmaryrojas@gmail.com |
c68e56a47ea4bcd7e575a5377be894beb771f5f1 | bf9b2a5b68b6f97af49fd8542a99a95542404557 | /examples/ObjectAnalytics/objectJsonifyExecDaemon.cpp | 9ead7007e39e9dc4cff71203d2486f8dcc7fb853 | [] | no_license | viv92/video-analytics | 7d6f2b4bddac7d981fe9cbbf8aae9cdba11d8e62 | c0d1b431ceb42c6734460ae4933f7df96f0666f9 | refs/heads/master | 2020-07-10T12:34:41.344895 | 2019-08-25T07:56:58 | 2019-08-25T07:56:58 | 204,263,798 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 9,843 | cpp | /*
Copyright 2016 AITOE
*/
#include <cv.h>
#include <opencv2/highgui.hpp>
#include <iostream>
#include <thread>
#include <mutex>
#include <vector>
#include "../../tools/videoSources/fileStreamer.h"
#include "../../tools/videoSources/aiVideoStreamer.h"
#include "../../tools/logging.h"
#include "../../src/aiSaac.h"
#include "../../tools/daemon.h"
#include "../../src/utils/caffeClassifier.h"
#include "../../src/utils/darknetClassifier.h"
#ifdef USE_MONGO
#include "../../tools/mongoLink/mongoLink.h"
#else
#include "../../tools/mongoLink/serialLink.h"
#endif //USE_MONGO
const int max_length = 1024;
std::string delimiter = "*@*";
aiSaac::CaffeClassifier *caffeClassifier;
aiSaac::DarknetClassifier *darknetClassifier;
int port;
// bool annotateVideo = false;
int performObjectAnalytics(std::string file, std::string aiSaacSettingsPath, std::string resultTableId, socket_ptr sock) {
aiSaac::AiSaacSettings aiSaacSettings = aiSaac::AiSaacSettings(aiSaacSettingsPath);
aiSaac::ObjectAnalytics objectAnalytics = aiSaac::ObjectAnalytics(aiSaacSettings, *caffeClassifier, *darknetClassifier);
try {
if ( file.find("mp4") < file.length() ) {
FileStreamer *fileStreamer = new FileStreamer(file);
if(!fileStreamer->isStreaming()) {
debugMsg("Unable to open file for reading");
return -1;
} else {
std::cout << "Found file for reading" << std::endl;
}
cv::Mat currentFrame, annotatedFrame;
cv::VideoWriter annotatedVideo;
int frameNumber = 0;
int totalProcessedFrameNumber = fileStreamer->getNumberOfFrames();
int FPS = fileStreamer->getFileFPS();
int procFPS = aiSaacSettings.getProcFPS();
int height, width;
mongoLink *mongoObject = new mongoLink(FPS);
cv::Size S;
if ( annotateVideo ) {
S = fileStreamer->getFileFrameSize();
annotatedVideo.open(filePath + "annotated_video.avi", CV_FOURCC('M','J','P','G'), FPS, S, true);
}
if ( procFPS < 1 ) {
procFPS = 1;
} else if ( procFPS > FPS ) {
procFPS = FPS;
}
std::string log_msg;
char data[max_length];
memset(data, '\0', max_length);
while (true) {
currentFrame = fileStreamer->getFrame();
if( currentFrame.data == NULL || currentFrame.empty() || !fileStreamer->isStreaming()) {
break;
}
height = currentFrame.rows;
width = currentFrame.cols;
if (frameNumber % (FPS / procFPS) == 0) {
objectAnalytics.track(currentFrame, frameNumber);
// jsonify(objectAnalytics, frameNumber, FPS);
mongoObject->objectAnalyticsMONGO(objectAnalytics.blobContainer, frameNumber, resultTableId);
}
if (frameNumber == floor(totalProcessedFrameNumber*0.25)) {
log_msg = "AISAAC_LOG: Your video is 25% processed.";
strcpy(data, log_msg.c_str());
boost::asio::write(*sock, boost::asio::buffer(data, max_length));
memset(data, '\0', max_length);
std::cout << log_msg << std::endl;
} else if (frameNumber == floor(totalProcessedFrameNumber*0.50)) {
log_msg = "AISAAC_LOG: Your video is 50% processed.";
strcpy(data, log_msg.c_str());
boost::asio::write(*sock, boost::asio::buffer(data, max_length));
memset(data, '\0', max_length);
std::cout << log_msg << std::endl;
} else if (frameNumber == floor(totalProcessedFrameNumber*0.75)) {
log_msg = "AISAAC_LOG: Your video is 75% processed.";
strcpy(data, log_msg.c_str());
boost::asio::write(*sock, boost::asio::buffer(data, max_length));
memset(data, '\0', max_length);
std::cout << log_msg << std::endl;
}
if ( annotateVideo ) {
annotatedFrame = currentFrame;
objectAnalytics.annotate(annotatedFrame);
if (annotatedFrame.data != NULL) {
cv::imshow("Annotated Scene", annotatedFrame);
cv::waitKey(10);
annotatedVideo.write(annotatedFrame);
}
}
frameNumber++;
}
std::string videoLength = std::to_string(FPS * totalProcessedFrameNumber);
std::cout << "Length of video: " << videoLength << std::endl;
std::cout << "Height: " << height << " Width: " << width << std::endl;
mongoObject->pushvideoLengthAndFrameSize(videoLength, height, width, resultTableId);
if ( annotateVideo ) {
annotatedVideo.release();
}
log_msg = "AISAAC_LOG: Your video is 100% processed.";
strcpy(data, log_msg.c_str());
boost::asio::write(*sock, boost::asio::buffer(data, max_length));
memset(data, '\0', max_length);
std::cout << log_msg << std::endl;
delete mongoObject;
delete fileStreamer;
} else {
cv::Mat image = cv::imread(file, CV_LOAD_IMAGE_COLOR);
if( !image.data ) {
debugMsg("Unable to open file for reading");
return -1;
}
mongoLink *mongoObject = new mongoLink(1);
objectAnalytics.track(image, 1);
std::string log_msg;
char data[max_length];
memset(data, '\0', max_length);
if ( !objectAnalytics.blobContainer.size() ) {
log_msg = "AISAAC_LOG: No objects were detected in the input.";
strcpy(data, log_msg.c_str());
boost::asio::write(*sock, boost::asio::buffer(data, max_length));
memset(data, '\0', max_length);
std::cout << log_msg << std::endl;
} else {
mongoObject->objectAnalyticsMONGO(objectAnalytics.blobContainer, 1, resultTableId);
log_msg = "AISAAC_LOG: Your image has been processed.";
strcpy(data, log_msg.c_str());
boost::asio::write(*sock, boost::asio::buffer(data, max_length));
memset(data, '\0', max_length);
std::cout << log_msg << std::endl;
}
delete mongoObject;
}
std::cout << "About to exit...\n";
return 0;
} catch(...) {
std::cout << "There was an exception" << std::endl;
return -1;
}
}
void session(socket_ptr sock) {
try {
char data[max_length];
memset(data, '\0', max_length);
boost::system::error_code error;
size_t length = sock->read_some(boost::asio::buffer(data), error);
std::string message(data);
if( !message.empty() ) {
std::cout << "Message: " << message << std::endl;
int aiSaacSettingsPos = message.find(delimiter);
int resultTableIdPos = message.find(delimiter, aiSaacSettingsPos + 1);
std::string filename = message.substr(0, aiSaacSettingsPos);
std::string aiSaacSettingsPath = message.substr(aiSaacSettingsPos + delimiter.length(), resultTableIdPos - aiSaacSettingsPos - delimiter.length());
std::string resultTableId = message.substr(resultTableIdPos + delimiter.length());
std::cout << "Performing object analytics...\n";
std::cout << "Filename: " << filename << std::endl;
std::cout << "aiSaacSettingsPath: " << aiSaacSettingsPath << std::endl;
std::cout << "resultTableId: " << resultTableId << std::endl;
performObjectAnalytics(filename, aiSaacSettingsPath, resultTableId, sock);
}
if (error) {
throw boost::system::system_error(error); // Some other error.
}
std::string log_message = "Object analytics finished";
memset(data, '\0', max_length);
std::cout << log_message << std::endl;
strcpy(data, log_message.c_str());
boost::asio::write(*sock, boost::asio::buffer(data, max_length));
} catch (std::exception& e) {
std::cerr << "Exception in thread: " << e.what() << "\n";
}
}
int main( int argc, char *argv[]) {
if ( argc < 2 ) {
std::cout << "Usage: ./objectJsonifyExec [aiSaacSettingsPath] [port]" << std::endl;
return -1;
}
std::string aiSaacSettingsPath = argv[1];
port = std::atoi(argv[2]);
boost::asio::io_service io_service;
// aiSaac::Daemon::daemonize(io_service);
aiSaac::AiSaacSettings globalAiSaacSettings = aiSaac::AiSaacSettings(aiSaacSettingsPath);
std::cout << "Creating caffe classifier" << std::endl;
caffeClassifier = new aiSaac::CaffeClassifier(
globalAiSaacSettings.getObjectCaffePrototxtPath(),
globalAiSaacSettings.getObjectCaffeCaffemodelPath(),
globalAiSaacSettings.getObjectCaffeMeanFilePath(),
globalAiSaacSettings.getObjectCaffeLabelFilePath());
std::cout << "Creating darknet classifier" << std::endl;
darknetClassifier = new aiSaac::DarknetClassifier(
globalAiSaacSettings.getObjectDarknetConfigFilePath(),
globalAiSaacSettings.getObjectDarknetWeightFilePath(),
globalAiSaacSettings.getObjectDarknetLabelFilePath(),
globalAiSaacSettings.getObjectAnalyticsConfidenceThreshold());
aiSaac::Daemon::server(session, io_service, port);
}
| [
"vivs2904@gmail.com"
] | vivs2904@gmail.com |
577732cb02e4a19d7de2e35bcffa6d8499250ef4 | da930cdc1776f67bb68e8675b308fdd0b6f869aa | /codeforces/58A.cpp | ce8782c327a3451b58cb1c1efdea8de9badcc10e | [] | no_license | exspeed/PSC | c0e7ce51e7d81634d20ef19bbaeb3c4ddb6fa099 | 465593717795b0f9ae3ce28ba8622c92bd544b2d | refs/heads/master | 2021-05-04T11:44:30.386459 | 2017-01-28T19:21:03 | 2017-01-28T19:21:03 | 43,104,326 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 310 | cpp | #include<iostream>
using namespace std;
int main(){
string hi = "hello";
string message; cin >> message;
int i = 0, j =0;
while(message[i]){
if(message[i] == hi[j]){
j++;
}
if(hi[j] == '\0'){
cout << "YES\n";
return 0;
}
i++;
}
cout << "NO\n";
return 0;
}
| [
"andrewheng2@gmail.com"
] | andrewheng2@gmail.com |
8df17eb5ea228fa4fb439d46852b1e107e8985e4 | fab281b7526a77a609b1b8509d11e910827b0c74 | /src/HttpLruCacheStrategy.cpp | 0d998bfb1b72fa2eab31b38de40f2dd3a271eaaf | [
"LicenseRef-scancode-openssl",
"LicenseRef-scancode-ssleay-windows",
"Zlib",
"OpenSSL",
"BSD-3-Clause",
"BSL-1.0",
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | commshare/easyhttpcpp | 2ec8ce2c4b8ae3df50f2e0c1b76c302fd499872f | 757ec75679c1cbc5f04c81a30133f4bcd3e780f4 | refs/heads/master | 2022-03-15T08:21:52.589570 | 2019-07-20T19:54:58 | 2019-07-20T19:54:58 | 197,877,597 | 0 | 0 | MIT | 2019-07-20T04:06:06 | 2019-07-20T04:06:05 | null | UTF-8 | C++ | false | false | 4,071 | cpp | /*
* Copyright 2017 Sony Corporation
*/
#include "easyhttpcpp/common/CoreLogger.h"
#include "HttpCacheInfo.h"
#include "HttpLruCacheStrategy.h"
using easyhttpcpp::common::CacheInfoWithDataSize;
using easyhttpcpp::common::LruCacheByDataSizeStrategy;
namespace easyhttpcpp {
static const std::string Tag = "HttpLruCacheStrategy";
HttpLruCacheStrategy::HttpLruCacheStrategy(size_t maxSize) :
LruCacheByDataSizeStrategy(maxSize)
{
}
HttpLruCacheStrategy::~HttpLruCacheStrategy()
{
}
bool HttpLruCacheStrategy::update(const std::string& key, CacheInfoWithDataSize::Ptr pCacheInfo)
{
bool ret = LruCacheByDataSizeStrategy::update(key, pCacheInfo);
if (ret) {
// check reserved remove.
HttpCacheInfo* pHttpCacheInfo = static_cast<HttpCacheInfo*> (pCacheInfo.get());
if (pHttpCacheInfo->getDataRefCount() == 0 && pHttpCacheInfo->isReservedRemove()) {
EASYHTTPCPP_LOG_D(Tag, "update: remove reserved cache. key=[%s]", key.c_str());
ret = LruCacheByDataSizeStrategy::remove(key);
}
}
return ret;
}
bool HttpLruCacheStrategy::remove(const std::string& key)
{
LruListMap::Iterator it = m_lruListMap.find(key);
if (it != m_lruListMap.end()) {
// check dataRefCount.
CacheInfoWithDataSize::Ptr pCacheInfo = *(it->second);
HttpCacheInfo* pHttpCacheInfo = static_cast<HttpCacheInfo*> (pCacheInfo.get());
if (pHttpCacheInfo->getDataRefCount() > 0) {
if (!pHttpCacheInfo->isReservedRemove()) {
// reserving remove.
pHttpCacheInfo->setReservedRemove(true);
EASYHTTPCPP_LOG_D(Tag, "remove: reserve remove. key=[%s]", key.c_str());
LruCacheByDataSizeStrategy::update(key, pCacheInfo);
}
return true;
}
return LruCacheByDataSizeStrategy::remove(key);
} else {
return false;
}
}
bool HttpLruCacheStrategy::clear(bool mayDeleteIfBusy)
{
LruKeyList keys;
bool ret = createRemoveList(keys, mayDeleteIfBusy);
for (LruKeyList::const_iterator it = keys.begin(); it != keys.end(); it++) {
if (!LruCacheByDataSizeStrategy::remove(*it)) {
EASYHTTPCPP_LOG_D(Tag, "clear: Failed to remove. key=[%s]", it->c_str());
ret = false;
}
}
return ret;
}
bool HttpLruCacheStrategy::createRemoveList(LruKeyList& keys, bool mayDeleteIfBusy)
{
bool ret = true;
for (LruList::const_iterator it = m_lruList.begin(); it != m_lruList.end(); it++) {
CacheInfoWithDataSize::Ptr pCacheInfo = *it;
if (mayDeleteIfBusy) {
keys.push_back(pCacheInfo->getKey());
} else {
HttpCacheInfo* pHttpCacheInfo = static_cast<HttpCacheInfo*> (pCacheInfo.get());
if (pHttpCacheInfo->getDataRefCount() == 0) {
keys.push_back(pCacheInfo->getKey());
} else {
ret = false;
}
}
}
return ret;
}
bool HttpLruCacheStrategy::createRemoveLruDataList(LruKeyList& keys, size_t removeSize)
{
size_t targetSize = 0;
LruList::reverse_iterator it = m_lruList.rbegin();
while (targetSize < removeSize) {
if (it == m_lruList.rend()) {
return false;
}
CacheInfoWithDataSize::Ptr pCacheInfo = *it;
HttpCacheInfo* pHttpCacheInfo = static_cast<HttpCacheInfo*> (pCacheInfo.get());
if (pHttpCacheInfo->getDataRefCount() == 0) {
keys.push_front(pCacheInfo->getKey());
targetSize += pCacheInfo->getDataSize();
EASYHTTPCPP_LOG_D(Tag, "createRemoveLruDataList: dataDize=%zu key=%s", pCacheInfo->getDataSize(),
pCacheInfo->getKey().c_str());
}
++it;
}
return true;
}
CacheInfoWithDataSize::Ptr HttpLruCacheStrategy::newCacheInfo(CacheInfoWithDataSize::Ptr pCacheInfo)
{
CacheInfoWithDataSize::Ptr pNewCacheInfo =
new HttpCacheInfo(*(static_cast<HttpCacheInfo*>(pCacheInfo.get())));
return pNewCacheInfo;
}
} /* namespace easyhttpcpp */
| [
"Himanshu.Shekhar@jp.sony.com"
] | Himanshu.Shekhar@jp.sony.com |
4ed35663722be5facca4ef8d130fb141cfbda4af | ab5a9880486ac6cd8fc2e4deb9a6d726fba9ba95 | /simplekvsvr_v2/recordoffset.h | e5ea6eaf1985b45349ac8e90b9e4a88b65e8af3f | [] | no_license | Gordon-Deng/simpleKvSvr | 81c8d0481f88cf5f845aeb1c137753723b63e165 | cff635624ce38c598d0f0adcc409b420bd9ec4d2 | refs/heads/master | 2020-09-19T01:52:09.126752 | 2019-11-26T12:38:55 | 2019-11-26T12:38:55 | 224,187,202 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 152 | h | #ifndef RECORD_OFFSET_H
#define RECORD_OFFSET_H
#include "datanode.h"
class RecordOffset
{
public:
DataNode* dataNode;
int offset;
};
#endif
| [
"gordondeng@foxmail.com"
] | gordondeng@foxmail.com |
2ea89588f56f3c41b030e3bfdfe86abeafacfbb6 | fca572f470db337349d9c34a0bd1b02709538f1c | /src/main.cpp | 8221bab04b1bcd7d9555eca35e9f34b085551058 | [] | no_license | ychleo102615/KinectSkeletonHandler | d4d5f6444e3a196b1ea8733e5c1a5abd13cee11c | 3f56f4f7f8f9486b52313c133a049092d217d2b1 | refs/heads/master | 2020-03-28T09:21:49.002665 | 2018-09-14T14:05:37 | 2018-09-14T14:05:37 | 148,031,268 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 382 | cpp | #include "ofMain.h"
#include "ofApp.h"
//========================================================================
int main( ){
//ofSetupOpenGL(960,540,OF_WINDOW); // <-------- setup the GL context
ofSetupOpenGL(1920,1080,OF_WINDOW);
// this kicks off the running of my app
// can be OF_WINDOW or OF_FULLSCREEN
// pass in width and height too:
ofRunApp(new ofApp());
}
| [
"leo102615@gmail.com"
] | leo102615@gmail.com |
a243f36ff29cd8b0e92a27f36499f031fd91824a | ba7d6989b8a7fadfe8a35dfa6cb3f1b5a69821a0 | /C++笔记/第3章/3-8/3-8/3-7/Men.h | 1622736f372d68f1d0e0e7a13a4e27f0b8f71512 | [] | no_license | GJP1106/C-_Study | 4e14116db6a3927d32541609f657ae92cf0b49d2 | 465bcbcef412e9ee85394d0a40b042df38a72ce1 | refs/heads/master | 2020-10-01T06:49:19.092299 | 2020-04-20T23:57:04 | 2020-04-20T23:57:04 | 227,479,151 | 2 | 0 | null | null | null | null | GB18030 | C++ | false | false | 303 | h | #ifndef __MEN__
#define __MEN__
#include <iostream>
#include "Human.h"
//类的定义
class Men : public Human{ //表示Men是Human的子类
public:
Men();
~Men();
void samenamefunc(int);
void funcmen() {
}
public:
using Human::samenamefunc;
void eat();
virtual void eat1() {
}
};
#endif | [
"gjp1106@outlook.com"
] | gjp1106@outlook.com |
e37affd966c16cba0e7a6bd25b6ddee62c428cf2 | ac4ca0a2c6b41832a84853c58c619940e15ed779 | /include/marnav/nmea/zta.hpp | e131c0957aaf674ba3e50d29f9ba22a223251a76 | [
"BSD-3-Clause",
"BSD-4-Clause"
] | permissive | mariokonrad/marnav | 12c2fff7117dfee356b8318e8e964ee8d6e81459 | 01c55205736fcc8157891b84e3efe387a221ff3a | refs/heads/master | 2023-06-08T13:53:39.701103 | 2023-04-28T15:15:06 | 2023-05-04T15:50:15 | 37,308,245 | 84 | 48 | NOASSERTION | 2023-06-05T14:16:36 | 2015-06-12T07:26:41 | C++ | UTF-8 | C++ | false | false | 1,466 | hpp | #ifndef MARNAV_NMEA_ZTA_HPP
#define MARNAV_NMEA_ZTA_HPP
#include <marnav/nmea/sentence.hpp>
#include <marnav/nmea/time.hpp>
#include <marnav/nmea/waypoint.hpp>
namespace marnav::nmea
{
/// @brief ZTA - Estimated arrival time at point of interest
///
/// @code
/// 1 2 3
/// | | |
/// $--ZTA,hhmmss.ss,hhmmss.ss,c--c*hh<CR><LF>
/// @endcode
///
/// Field Number:
/// 1. Universal Time Coordinated (UTC)
/// 2. Arrival time
/// 3. Destination Waypoint ID
///
class zta : public sentence
{
friend class detail::factory;
public:
constexpr static sentence_id ID = sentence_id::ZTA;
constexpr static const char * TAG = "ZTA";
zta();
zta(const zta &) = default;
zta & operator=(const zta &) = default;
zta(zta &&) = default;
zta & operator=(zta &&) = default;
protected:
zta(talker talk, fields::const_iterator first, fields::const_iterator last);
void append_data_to(std::string &, const version &) const override;
private:
nmea::time time_utc_;
nmea::time time_arrival_;
waypoint waypoint_id_;
public:
nmea::time get_time_utc() const { return time_utc_; }
nmea::time get_time_arrival() const { return time_arrival_; }
waypoint get_waypoint_id() const { return waypoint_id_; }
void set_time_utc(const nmea::time & t) noexcept { time_utc_ = t; }
void set_time_arrival(const nmea::time & t) noexcept { time_arrival_ = t; }
void set_waypoint_id(const waypoint & id) { waypoint_id_ = id; }
};
}
#endif
| [
"mario.konrad@gmx.net"
] | mario.konrad@gmx.net |
44242aeb785e5c5c2307baa4657941257e7115f9 | 2c148e207664a55a5809a3436cbbd23b447bf7fb | /src/components/data_reduction_proxy/content/browser/data_reduction_proxy_pingback_client_impl_unittest.cc | 2c07ef863384b8928bc6b7ed7bd8b8f2acb99582 | [
"BSD-3-Clause"
] | permissive | nuzumglobal/Elastos.Trinity.Alpha.Android | 2bae061d281ba764d544990f2e1b2419b8e1e6b2 | 4c6dad6b1f24d43cadb162fb1dbec4798a8c05f3 | refs/heads/master | 2020-05-21T17:30:46.563321 | 2018-09-03T05:16:16 | 2018-09-03T05:16:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 37,220 | cc | // Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/data_reduction_proxy/content/browser/data_reduction_proxy_pingback_client_impl.h"
#include <stdint.h>
#include <list>
#include <memory>
#include <string>
#include "base/command_line.h"
#include "base/metrics/field_trial.h"
#include "base/optional.h"
#include "base/run_loop.h"
#include "base/single_thread_task_runner.h"
#include "base/sys_info.h"
#include "base/test/histogram_tester.h"
#include "base/test/scoped_task_environment.h"
#include "base/time/time.h"
#include "build/build_config.h"
#include "components/data_reduction_proxy/core/browser/data_reduction_proxy_data.h"
#include "components/data_reduction_proxy/core/browser/data_reduction_proxy_util.h"
#include "components/data_reduction_proxy/core/common/data_reduction_proxy_page_load_timing.h"
#include "components/data_reduction_proxy/core/common/data_reduction_proxy_switches.h"
#include "components/data_reduction_proxy/proto/client_config.pb.h"
#include "components/data_reduction_proxy/proto/pageload_metrics.pb.h"
#include "content/public/common/child_process_host.h"
#include "net/base/net_errors.h"
#include "net/nqe/effective_connection_type.h"
#include "net/url_request/test_url_fetcher_factory.h"
#include "net/url_request/url_request_context_getter.h"
#include "net/url_request/url_request_test_util.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "url/gurl.h"
namespace data_reduction_proxy {
namespace {
static const char kHistogramSucceeded[] =
"DataReductionProxy.Pingback.Succeeded";
static const char kHistogramAttempted[] =
"DataReductionProxy.Pingback.Attempted";
static const char kSessionKey[] = "fake-session";
static const char kFakeURL[] = "http://www.google.com/";
static const int64_t kBytes = 10000;
static const int64_t kBytesOriginal = 1000000;
static const int kCrashProcessId = 1;
static const int64_t kRendererMemory = 1024;
} // namespace
// Controls whether a pingback is sent or not.
class TestDataReductionProxyPingbackClientImpl
: public DataReductionProxyPingbackClientImpl {
public:
TestDataReductionProxyPingbackClientImpl(
net::URLRequestContextGetter* url_request_context_getter,
scoped_refptr<base::SingleThreadTaskRunner> thread_task_runner)
: DataReductionProxyPingbackClientImpl(url_request_context_getter,
std::move(thread_task_runner)),
should_override_random_(false),
override_value_(0.0f),
current_time_(base::Time::Now()) {}
// Overrides the bahvior of the random float generator in
// DataReductionProxyPingbackClientImpl.
// If |should_override_random| is true, the typically random value that is
// compared with reporting fraction will deterministically be
// |override_value|.
void OverrideRandom(bool should_override_random, float override_value) {
should_override_random_ = should_override_random;
override_value_ = override_value;
}
// Sets the time used for the metrics reporting time.
void set_current_time(base::Time current_time) {
current_time_ = current_time;
}
private:
float GenerateRandomFloat() const override {
if (should_override_random_)
return override_value_;
return DataReductionProxyPingbackClientImpl::GenerateRandomFloat();
}
base::Time CurrentTime() const override { return current_time_; }
bool should_override_random_;
float override_value_;
base::Time current_time_;
};
class DataReductionProxyPingbackClientImplTest : public testing::Test {
public:
DataReductionProxyPingbackClientImplTest()
: scoped_task_environment_(
base::test::ScopedTaskEnvironment::MainThreadType::MOCK_TIME,
base::test::ScopedTaskEnvironment::ExecutionMode::ASYNC) {}
TestDataReductionProxyPingbackClientImpl* pingback_client() const {
return pingback_client_.get();
}
void Init() {
request_context_getter_ = new net::TestURLRequestContextGetter(
scoped_task_environment_.GetMainThreadTaskRunner());
pingback_client_ =
std::make_unique<TestDataReductionProxyPingbackClientImpl>(
request_context_getter_.get(),
scoped_task_environment_.GetMainThreadTaskRunner());
page_id_ = 0u;
}
void CreateAndSendPingback(bool lofi_received,
bool client_lofi_requested,
bool lite_page_received,
bool app_background_occurred,
bool opt_out_occurred,
bool crash) {
timing_ = std::make_unique<DataReductionProxyPageLoadTiming>(
base::Time::FromJsTime(1500) /* navigation_start */,
base::Optional<base::TimeDelta>(
base::TimeDelta::FromMilliseconds(1600)) /* response_start */,
base::Optional<base::TimeDelta>(
base::TimeDelta::FromMilliseconds(1700)) /* load_event_start */,
base::Optional<base::TimeDelta>(
base::TimeDelta::FromMilliseconds(1800)) /* first_image_paint */,
base::Optional<base::TimeDelta>(base::TimeDelta::FromMilliseconds(
1900)) /* first_contentful_paint */,
base::Optional<base::TimeDelta>(base::TimeDelta::FromMilliseconds(
2000)) /* experimental_first_meaningful_paint */,
base::Optional<base::TimeDelta>(base::TimeDelta::FromMilliseconds(
100)) /* parse_blocked_on_script_load_duration */,
base::Optional<base::TimeDelta>(
base::TimeDelta::FromMilliseconds(2000)) /* parse_stop */,
kBytes /* network_bytes */, kBytesOriginal /* original_network_bytes */,
app_background_occurred, opt_out_occurred, kRendererMemory,
crash ? kCrashProcessId : content::ChildProcessHost::kInvalidUniqueID);
DataReductionProxyData request_data;
request_data.set_session_key(kSessionKey);
request_data.set_request_url(GURL(kFakeURL));
request_data.set_effective_connection_type(
net::EFFECTIVE_CONNECTION_TYPE_OFFLINE);
request_data.set_lofi_received(lofi_received);
request_data.set_client_lofi_requested(client_lofi_requested);
request_data.set_lite_page_received(lite_page_received);
request_data.set_page_id(page_id_);
factory()->set_remove_fetcher_on_delete(true);
static_cast<DataReductionProxyPingbackClient*>(pingback_client())
->SendPingback(request_data, *timing_);
page_id_++;
}
// Send a fake crash report frome breakpad.
void ReportCrash(bool oom) {
#if defined(OS_ANDROID)
breakpad::CrashDumpManager::CrashDumpDetails details = {
kCrashProcessId, content::PROCESS_TYPE_RENDERER, oom,
base::android::APPLICATION_STATE_HAS_RUNNING_ACTIVITIES};
details.file_size = oom ? 0 : 1;
static_cast<breakpad::CrashDumpManager::Observer*>(pingback_client_.get())
->OnCrashDumpProcessed(details);
#endif
}
net::TestURLFetcherFactory* factory() { return &factory_; }
const DataReductionProxyPageLoadTiming& timing() { return *timing_; }
const base::HistogramTester& histogram_tester() { return histogram_tester_; }
uint64_t page_id() const { return page_id_; }
protected:
base::test::ScopedTaskEnvironment scoped_task_environment_;
private:
scoped_refptr<net::URLRequestContextGetter> request_context_getter_;
std::unique_ptr<TestDataReductionProxyPingbackClientImpl> pingback_client_;
net::TestURLFetcherFactory factory_;
std::unique_ptr<DataReductionProxyPageLoadTiming> timing_;
base::HistogramTester histogram_tester_;
uint64_t page_id_;
};
TEST_F(DataReductionProxyPingbackClientImplTest, VerifyPingbackContent) {
Init();
EXPECT_FALSE(factory()->GetFetcherByID(0));
pingback_client()->OverrideRandom(true, 0.5f);
static_cast<DataReductionProxyPingbackClient*>(pingback_client())
->SetPingbackReportingFraction(1.0f);
base::Time current_time = base::Time::UnixEpoch();
pingback_client()->set_current_time(current_time);
uint64_t data_page_id = page_id();
CreateAndSendPingback(
false /* lofi_received */, false /* client_lofi_requested */,
false /* lite_page_received */, false /* app_background_occurred */,
false /* opt_out_occurred */, false /* renderer_crash */);
histogram_tester().ExpectUniqueSample(kHistogramAttempted, true, 1);
net::TestURLFetcher* test_fetcher = factory()->GetFetcherByID(0);
EXPECT_TRUE(test_fetcher);
EXPECT_EQ(test_fetcher->upload_content_type(), "application/x-protobuf");
RecordPageloadMetricsRequest batched_request;
batched_request.ParseFromString(test_fetcher->upload_data());
EXPECT_EQ(batched_request.pageloads_size(), 1);
EXPECT_EQ(current_time, protobuf_parser::TimestampToTime(
batched_request.metrics_sent_time()));
PageloadMetrics pageload_metrics = batched_request.pageloads(0);
EXPECT_EQ(
timing().navigation_start,
protobuf_parser::TimestampToTime(pageload_metrics.first_request_time()));
EXPECT_EQ(timing().response_start.value(),
protobuf_parser::DurationToTimeDelta(
pageload_metrics.time_to_first_byte()));
EXPECT_EQ(
timing().load_event_start.value(),
protobuf_parser::DurationToTimeDelta(pageload_metrics.page_load_time()));
EXPECT_EQ(timing().first_image_paint.value(),
protobuf_parser::DurationToTimeDelta(
pageload_metrics.time_to_first_image_paint()));
EXPECT_EQ(timing().first_contentful_paint.value(),
protobuf_parser::DurationToTimeDelta(
pageload_metrics.time_to_first_contentful_paint()));
EXPECT_EQ(
timing().experimental_first_meaningful_paint.value(),
protobuf_parser::DurationToTimeDelta(
pageload_metrics.experimental_time_to_first_meaningful_paint()));
EXPECT_EQ(timing().parse_blocked_on_script_load_duration.value(),
protobuf_parser::DurationToTimeDelta(
pageload_metrics.parse_blocked_on_script_load_duration()));
EXPECT_EQ(timing().parse_stop.value(), protobuf_parser::DurationToTimeDelta(
pageload_metrics.parse_stop()));
EXPECT_EQ(kSessionKey, pageload_metrics.session_key());
EXPECT_EQ(kFakeURL, pageload_metrics.first_request_url());
EXPECT_EQ(kBytes, pageload_metrics.compressed_page_size_bytes());
EXPECT_EQ(kBytesOriginal, pageload_metrics.original_page_size_bytes());
EXPECT_EQ(data_page_id, pageload_metrics.page_id());
EXPECT_EQ(PageloadMetrics_PreviewsType_NONE,
pageload_metrics.previews_type());
EXPECT_EQ(PageloadMetrics_PreviewsOptOut_UNKNOWN,
pageload_metrics.previews_opt_out());
EXPECT_EQ(
PageloadMetrics_EffectiveConnectionType_EFFECTIVE_CONNECTION_TYPE_OFFLINE,
pageload_metrics.effective_connection_type());
EXPECT_EQ(kRendererMemory, pageload_metrics.renderer_memory_usage_kb());
EXPECT_EQ(std::string(), pageload_metrics.holdback_group());
EXPECT_EQ(PageloadMetrics_RendererCrashType_NO_CRASH,
pageload_metrics.renderer_crash_type());
EXPECT_EQ(base::SysInfo::AmountOfPhysicalMemory() / 1024,
batched_request.device_info().total_device_memory_kb());
test_fetcher->delegate()->OnURLFetchComplete(test_fetcher);
histogram_tester().ExpectUniqueSample(kHistogramSucceeded, true, 1);
EXPECT_FALSE(factory()->GetFetcherByID(0));
}
TEST_F(DataReductionProxyPingbackClientImplTest, VerifyHoldback) {
base::FieldTrialList field_trial_list(nullptr);
ASSERT_TRUE(base::FieldTrialList::CreateFieldTrial(
"DataCompressionProxyHoldback", "Enabled"));
Init();
EXPECT_FALSE(factory()->GetFetcherByID(0));
pingback_client()->OverrideRandom(true, 0.5f);
static_cast<DataReductionProxyPingbackClient*>(pingback_client())
->SetPingbackReportingFraction(1.0f);
CreateAndSendPingback(
false /* lofi_received */, false /* client_lofi_requested */,
false /* lite_page_received */, false /* app_background_occurred */,
false /* opt_out_occurred */, false /* renderer_crash */);
histogram_tester().ExpectUniqueSample(kHistogramAttempted, true, 1);
net::TestURLFetcher* test_fetcher = factory()->GetFetcherByID(0);
EXPECT_TRUE(test_fetcher);
EXPECT_EQ(test_fetcher->upload_content_type(), "application/x-protobuf");
RecordPageloadMetricsRequest batched_request;
batched_request.ParseFromString(test_fetcher->upload_data());
EXPECT_EQ(batched_request.pageloads_size(), 1);
PageloadMetrics pageload_metrics = batched_request.pageloads(0);
EXPECT_EQ("Enabled", pageload_metrics.holdback_group());
test_fetcher->delegate()->OnURLFetchComplete(test_fetcher);
histogram_tester().ExpectUniqueSample(kHistogramSucceeded, true, 1);
EXPECT_FALSE(factory()->GetFetcherByID(0));
}
TEST_F(DataReductionProxyPingbackClientImplTest,
VerifyTwoPingbacksBatchedContent) {
Init();
EXPECT_FALSE(factory()->GetFetcherByID(0));
pingback_client()->OverrideRandom(true, 0.5f);
static_cast<DataReductionProxyPingbackClient*>(pingback_client())
->SetPingbackReportingFraction(1.0f);
base::Time current_time = base::Time::UnixEpoch();
pingback_client()->set_current_time(current_time);
// First pingback
CreateAndSendPingback(
false /* lofi_received */, false /* client_lofi_requested */,
false /* lite_page_received */, false /* app_background_occurred */,
false /* opt_out_occurred */, false /* renderer_crash */);
histogram_tester().ExpectUniqueSample(kHistogramAttempted, true, 1);
// Two more pingbacks batched together.
std::list<uint64_t> page_ids;
page_ids.push_back(page_id());
CreateAndSendPingback(
false /* lofi_received */, false /* client_lofi_requested */,
false /* lite_page_received */, false /* app_background_occurred */,
false /* opt_out_occurred */, false /* renderer_crash */);
histogram_tester().ExpectUniqueSample(kHistogramAttempted, true, 2);
page_ids.push_back(page_id());
CreateAndSendPingback(
false /* lofi_received */, false /* client_lofi_requested */,
false /* lite_page_received */, false /* app_background_occurred */,
false /* opt_out_occurred */, false /* renderer_crash */);
histogram_tester().ExpectUniqueSample(kHistogramAttempted, true, 3);
// Ignore the first pingback.
net::TestURLFetcher* test_fetcher = factory()->GetFetcherByID(0);
test_fetcher->delegate()->OnURLFetchComplete(test_fetcher);
histogram_tester().ExpectUniqueSample(kHistogramSucceeded, true, 1);
// Check the state of the second pingback.
test_fetcher = factory()->GetFetcherByID(0);
EXPECT_TRUE(test_fetcher);
EXPECT_EQ(test_fetcher->upload_content_type(), "application/x-protobuf");
RecordPageloadMetricsRequest batched_request;
batched_request.ParseFromString(test_fetcher->upload_data());
EXPECT_EQ(batched_request.pageloads_size(), 2);
EXPECT_EQ(current_time, protobuf_parser::TimestampToTime(
batched_request.metrics_sent_time()));
EXPECT_EQ(base::SysInfo::AmountOfPhysicalMemory() / 1024,
batched_request.device_info().total_device_memory_kb());
// Verify the content of both pingbacks.
for (size_t i = 0; i < 2; ++i) {
PageloadMetrics pageload_metrics = batched_request.pageloads(i);
EXPECT_EQ(timing().navigation_start,
protobuf_parser::TimestampToTime(
pageload_metrics.first_request_time()));
EXPECT_EQ(timing().response_start.value(),
protobuf_parser::DurationToTimeDelta(
pageload_metrics.time_to_first_byte()));
EXPECT_EQ(timing().load_event_start.value(),
protobuf_parser::DurationToTimeDelta(
pageload_metrics.page_load_time()));
EXPECT_EQ(timing().first_image_paint.value(),
protobuf_parser::DurationToTimeDelta(
pageload_metrics.time_to_first_image_paint()));
EXPECT_EQ(timing().first_contentful_paint.value(),
protobuf_parser::DurationToTimeDelta(
pageload_metrics.time_to_first_contentful_paint()));
EXPECT_EQ(
timing().experimental_first_meaningful_paint.value(),
protobuf_parser::DurationToTimeDelta(
pageload_metrics.experimental_time_to_first_meaningful_paint()));
EXPECT_EQ(timing().parse_blocked_on_script_load_duration.value(),
protobuf_parser::DurationToTimeDelta(
pageload_metrics.parse_blocked_on_script_load_duration()));
EXPECT_EQ(timing().parse_stop.value(), protobuf_parser::DurationToTimeDelta(
pageload_metrics.parse_stop()));
EXPECT_EQ(kSessionKey, pageload_metrics.session_key());
EXPECT_EQ(kFakeURL, pageload_metrics.first_request_url());
EXPECT_EQ(kBytes, pageload_metrics.compressed_page_size_bytes());
EXPECT_EQ(kBytesOriginal, pageload_metrics.original_page_size_bytes());
EXPECT_EQ(page_ids.front(), pageload_metrics.page_id());
page_ids.pop_front();
EXPECT_EQ(
PageloadMetrics_EffectiveConnectionType_EFFECTIVE_CONNECTION_TYPE_OFFLINE,
pageload_metrics.effective_connection_type());
EXPECT_EQ(kRendererMemory, pageload_metrics.renderer_memory_usage_kb());
}
test_fetcher->delegate()->OnURLFetchComplete(test_fetcher);
histogram_tester().ExpectUniqueSample(kHistogramSucceeded, true, 3);
EXPECT_FALSE(factory()->GetFetcherByID(0));
}
TEST_F(DataReductionProxyPingbackClientImplTest, SendTwoPingbacks) {
Init();
EXPECT_FALSE(factory()->GetFetcherByID(0));
pingback_client()->OverrideRandom(true, 0.5f);
static_cast<DataReductionProxyPingbackClient*>(pingback_client())
->SetPingbackReportingFraction(1.0f);
CreateAndSendPingback(
false /* lofi_received */, false /* client_lofi_requested */,
false /* lite_page_received */, false /* app_background_occurred */,
false /* opt_out_occurred */, false /* renderer_crash */);
histogram_tester().ExpectUniqueSample(kHistogramAttempted, true, 1);
CreateAndSendPingback(
false /* lofi_received */, false /* client_lofi_requested */,
false /* lite_page_received */, false /* app_background_occurred */,
false /* opt_out_occurred */, false /* renderer_crash */);
histogram_tester().ExpectUniqueSample(kHistogramAttempted, true, 2);
net::TestURLFetcher* test_fetcher = factory()->GetFetcherByID(0);
test_fetcher->delegate()->OnURLFetchComplete(test_fetcher);
histogram_tester().ExpectUniqueSample(kHistogramSucceeded, true, 1);
EXPECT_TRUE(factory()->GetFetcherByID(0));
test_fetcher = factory()->GetFetcherByID(0);
test_fetcher->delegate()->OnURLFetchComplete(test_fetcher);
histogram_tester().ExpectUniqueSample(kHistogramSucceeded, true, 2);
EXPECT_FALSE(factory()->GetFetcherByID(0));
histogram_tester().ExpectTotalCount(kHistogramAttempted, 2);
}
TEST_F(DataReductionProxyPingbackClientImplTest, NoPingbackSent) {
Init();
EXPECT_FALSE(factory()->GetFetcherByID(0));
pingback_client()->OverrideRandom(true, 0.5f);
static_cast<DataReductionProxyPingbackClient*>(pingback_client())
->SetPingbackReportingFraction(0.0f);
CreateAndSendPingback(
false /* lofi_received */, false /* client_lofi_requested */,
false /* lite_page_received */, false /* app_background_occurred */,
false /* opt_out_occurred */, false /* renderer_crash */);
histogram_tester().ExpectUniqueSample(kHistogramAttempted, false, 1);
histogram_tester().ExpectTotalCount(kHistogramSucceeded, 0);
EXPECT_FALSE(factory()->GetFetcherByID(0));
}
TEST_F(DataReductionProxyPingbackClientImplTest, VerifyReportingBehvaior) {
Init();
EXPECT_FALSE(factory()->GetFetcherByID(0));
// Verify that if the random number is less than the reporting fraction, the
// pingback is created.
static_cast<DataReductionProxyPingbackClient*>(pingback_client())
->SetPingbackReportingFraction(0.5f);
pingback_client()->OverrideRandom(true, 0.4f);
CreateAndSendPingback(
false /* lofi_received */, false /* client_lofi_requested */,
false /* lite_page_received */, false /* app_background_occurred */,
false /* opt_out_occurred */, false /* renderer_crash */);
histogram_tester().ExpectUniqueSample(kHistogramAttempted, true, 1);
net::TestURLFetcher* test_fetcher = factory()->GetFetcherByID(0);
EXPECT_TRUE(test_fetcher);
test_fetcher->delegate()->OnURLFetchComplete(test_fetcher);
histogram_tester().ExpectUniqueSample(kHistogramSucceeded, true, 1);
// Verify that if the random number is greater than the reporting fraction,
// the pingback is not created.
pingback_client()->OverrideRandom(true, 0.6f);
CreateAndSendPingback(
false /* lofi_received */, false /* client_lofi_requested */,
false /* lite_page_received */, false /* app_background_occurred */,
false /* opt_out_occurred */, false /* renderer_crash */);
histogram_tester().ExpectBucketCount(kHistogramAttempted, false, 1);
test_fetcher = factory()->GetFetcherByID(0);
EXPECT_FALSE(test_fetcher);
// Verify that if the random number is equal to the reporting fraction, the
// pingback is not created. Specifically, if the reporting fraction is zero,
// and the random number is zero, no pingback is sent.
static_cast<DataReductionProxyPingbackClient*>(pingback_client())
->SetPingbackReportingFraction(0.0f);
pingback_client()->OverrideRandom(true, 0.0f);
CreateAndSendPingback(
false /* lofi_received */, false /* client_lofi_requested */,
false /* lite_page_received */, false /* app_background_occurred */,
false /* opt_out_occurred */, false /* renderer_crash */);
histogram_tester().ExpectBucketCount(kHistogramAttempted, false, 2);
test_fetcher = factory()->GetFetcherByID(0);
EXPECT_FALSE(test_fetcher);
// Verify that the command line flag forces a pingback.
base::CommandLine::ForCurrentProcess()->AppendSwitch(
data_reduction_proxy::switches::kEnableDataReductionProxyForcePingback);
static_cast<DataReductionProxyPingbackClient*>(pingback_client())
->SetPingbackReportingFraction(0.0f);
pingback_client()->OverrideRandom(true, 1.0f);
CreateAndSendPingback(
false /* lofi_received */, false /* client_lofi_requested */,
false /* lite_page_received */, false /* app_background_occurred */,
false /* opt_out_occurred */, false /* renderer_crash */);
histogram_tester().ExpectBucketCount(kHistogramAttempted, true, 2);
test_fetcher = factory()->GetFetcherByID(0);
EXPECT_TRUE(test_fetcher);
test_fetcher->delegate()->OnURLFetchComplete(test_fetcher);
histogram_tester().ExpectUniqueSample(kHistogramSucceeded, true, 2);
}
TEST_F(DataReductionProxyPingbackClientImplTest, FailedPingback) {
Init();
EXPECT_FALSE(factory()->GetFetcherByID(0));
pingback_client()->OverrideRandom(true, 0.5f);
static_cast<DataReductionProxyPingbackClient*>(pingback_client())
->SetPingbackReportingFraction(1.0f);
CreateAndSendPingback(
false /* lofi_received */, false /* client_lofi_requested */,
false /* lite_page_received */, false /* app_background_occurred */,
false /* opt_out_occurred */, false /* renderer_crash */);
histogram_tester().ExpectUniqueSample(kHistogramAttempted, true, 1);
net::TestURLFetcher* test_fetcher = factory()->GetFetcherByID(0);
EXPECT_TRUE(test_fetcher);
// Simulate a network error.
test_fetcher->set_status(net::URLRequestStatus(
net::URLRequestStatus::FAILED, net::ERR_INVALID_AUTH_CREDENTIALS));
test_fetcher->delegate()->OnURLFetchComplete(test_fetcher);
histogram_tester().ExpectUniqueSample(kHistogramSucceeded, false, 1);
}
TEST_F(DataReductionProxyPingbackClientImplTest, VerifyLoFiContentNoOptOut) {
Init();
EXPECT_FALSE(factory()->GetFetcherByID(0));
pingback_client()->OverrideRandom(true, 0.5f);
static_cast<DataReductionProxyPingbackClient*>(pingback_client())
->SetPingbackReportingFraction(1.0f);
base::Time current_time = base::Time::UnixEpoch();
pingback_client()->set_current_time(current_time);
CreateAndSendPingback(
true /* lofi_received */, false /* client_lofi_requested */,
false /* lite_page_received */, false /* app_background_occurred */,
false /* opt_out_occurred */, false /* renderer_crash */);
histogram_tester().ExpectUniqueSample(kHistogramAttempted, true, 1);
net::TestURLFetcher* test_fetcher = factory()->GetFetcherByID(0);
EXPECT_TRUE(test_fetcher);
EXPECT_EQ(test_fetcher->upload_content_type(), "application/x-protobuf");
RecordPageloadMetricsRequest batched_request;
batched_request.ParseFromString(test_fetcher->upload_data());
EXPECT_EQ(batched_request.pageloads_size(), 1);
PageloadMetrics pageload_metrics = batched_request.pageloads(0);
EXPECT_EQ(PageloadMetrics_PreviewsType_LOFI,
pageload_metrics.previews_type());
EXPECT_EQ(PageloadMetrics_PreviewsOptOut_NON_OPT_OUT,
pageload_metrics.previews_opt_out());
test_fetcher->delegate()->OnURLFetchComplete(test_fetcher);
EXPECT_FALSE(factory()->GetFetcherByID(0));
}
TEST_F(DataReductionProxyPingbackClientImplTest, VerifyLoFiContentOptOut) {
Init();
EXPECT_FALSE(factory()->GetFetcherByID(0));
pingback_client()->OverrideRandom(true, 0.5f);
static_cast<DataReductionProxyPingbackClient*>(pingback_client())
->SetPingbackReportingFraction(1.0f);
base::Time current_time = base::Time::UnixEpoch();
pingback_client()->set_current_time(current_time);
CreateAndSendPingback(
true /* lofi_received */, false /* client_lofi_requested */,
false /* lite_page_received */, false /* app_background_occurred */,
true /* opt_out_occurred */, false /* renderer_crash */);
histogram_tester().ExpectUniqueSample(kHistogramAttempted, true, 1);
net::TestURLFetcher* test_fetcher = factory()->GetFetcherByID(0);
EXPECT_TRUE(test_fetcher);
EXPECT_EQ(test_fetcher->upload_content_type(), "application/x-protobuf");
RecordPageloadMetricsRequest batched_request;
batched_request.ParseFromString(test_fetcher->upload_data());
EXPECT_EQ(batched_request.pageloads_size(), 1);
PageloadMetrics pageload_metrics = batched_request.pageloads(0);
EXPECT_EQ(PageloadMetrics_PreviewsType_LOFI,
pageload_metrics.previews_type());
EXPECT_EQ(PageloadMetrics_PreviewsOptOut_OPT_OUT,
pageload_metrics.previews_opt_out());
test_fetcher->delegate()->OnURLFetchComplete(test_fetcher);
EXPECT_FALSE(factory()->GetFetcherByID(0));
}
TEST_F(DataReductionProxyPingbackClientImplTest,
VerifyClientLoFiContentOptOut) {
Init();
EXPECT_FALSE(factory()->GetFetcherByID(0));
pingback_client()->OverrideRandom(true, 0.5f);
static_cast<DataReductionProxyPingbackClient*>(pingback_client())
->SetPingbackReportingFraction(1.0f);
base::Time current_time = base::Time::UnixEpoch();
pingback_client()->set_current_time(current_time);
CreateAndSendPingback(
false /* lofi_received */, true /* client_lofi_requested */,
false /* lite_page_received */, false /* app_background_occurred */,
true /* opt_out_occurred */, false /* renderer_crash */);
histogram_tester().ExpectUniqueSample(kHistogramAttempted, true, 1);
net::TestURLFetcher* test_fetcher = factory()->GetFetcherByID(0);
EXPECT_TRUE(test_fetcher);
EXPECT_EQ(test_fetcher->upload_content_type(), "application/x-protobuf");
RecordPageloadMetricsRequest batched_request;
batched_request.ParseFromString(test_fetcher->upload_data());
EXPECT_EQ(batched_request.pageloads_size(), 1);
PageloadMetrics pageload_metrics = batched_request.pageloads(0);
EXPECT_EQ(PageloadMetrics_PreviewsType_LOFI,
pageload_metrics.previews_type());
EXPECT_EQ(PageloadMetrics_PreviewsOptOut_OPT_OUT,
pageload_metrics.previews_opt_out());
test_fetcher->delegate()->OnURLFetchComplete(test_fetcher);
EXPECT_FALSE(factory()->GetFetcherByID(0));
}
TEST_F(DataReductionProxyPingbackClientImplTest, VerifyLoFiContentBackground) {
Init();
EXPECT_FALSE(factory()->GetFetcherByID(0));
pingback_client()->OverrideRandom(true, 0.5f);
static_cast<DataReductionProxyPingbackClient*>(pingback_client())
->SetPingbackReportingFraction(1.0f);
base::Time current_time = base::Time::UnixEpoch();
pingback_client()->set_current_time(current_time);
CreateAndSendPingback(
true /* lofi_received */, false /* client_lofi_requested */,
false /* lite_page_received */, true /* app_background_occurred */,
true /* opt_out_occurred */, false /* renderer_crash */);
histogram_tester().ExpectUniqueSample(kHistogramAttempted, true, 1);
net::TestURLFetcher* test_fetcher = factory()->GetFetcherByID(0);
EXPECT_TRUE(test_fetcher);
EXPECT_EQ(test_fetcher->upload_content_type(), "application/x-protobuf");
RecordPageloadMetricsRequest batched_request;
batched_request.ParseFromString(test_fetcher->upload_data());
EXPECT_EQ(batched_request.pageloads_size(), 1);
PageloadMetrics pageload_metrics = batched_request.pageloads(0);
EXPECT_EQ(PageloadMetrics_PreviewsType_LOFI,
pageload_metrics.previews_type());
EXPECT_EQ(PageloadMetrics_PreviewsOptOut_UNKNOWN,
pageload_metrics.previews_opt_out());
test_fetcher->delegate()->OnURLFetchComplete(test_fetcher);
EXPECT_FALSE(factory()->GetFetcherByID(0));
}
TEST_F(DataReductionProxyPingbackClientImplTest, VerifyLitePageContent) {
Init();
EXPECT_FALSE(factory()->GetFetcherByID(0));
pingback_client()->OverrideRandom(true, 0.5f);
static_cast<DataReductionProxyPingbackClient*>(pingback_client())
->SetPingbackReportingFraction(1.0f);
base::Time current_time = base::Time::UnixEpoch();
pingback_client()->set_current_time(current_time);
CreateAndSendPingback(
false /* lofi_received */, false /* client_lofi_requested */,
true /* lite_page_received */, false /* app_background_occurred */,
true /* opt_out_occurred */, false /* renderer_crash */);
histogram_tester().ExpectUniqueSample(kHistogramAttempted, true, 1);
net::TestURLFetcher* test_fetcher = factory()->GetFetcherByID(0);
EXPECT_TRUE(test_fetcher);
EXPECT_EQ(test_fetcher->upload_content_type(), "application/x-protobuf");
RecordPageloadMetricsRequest batched_request;
batched_request.ParseFromString(test_fetcher->upload_data());
EXPECT_EQ(batched_request.pageloads_size(), 1);
PageloadMetrics pageload_metrics = batched_request.pageloads(0);
EXPECT_EQ(PageloadMetrics_PreviewsType_LITE_PAGE,
pageload_metrics.previews_type());
EXPECT_EQ(PageloadMetrics_PreviewsOptOut_OPT_OUT,
pageload_metrics.previews_opt_out());
test_fetcher->delegate()->OnURLFetchComplete(test_fetcher);
EXPECT_FALSE(factory()->GetFetcherByID(0));
}
TEST_F(DataReductionProxyPingbackClientImplTest, VerifyTwoLitePagePingbacks) {
Init();
EXPECT_FALSE(factory()->GetFetcherByID(0));
pingback_client()->OverrideRandom(true, 0.5f);
static_cast<DataReductionProxyPingbackClient*>(pingback_client())
->SetPingbackReportingFraction(1.0f);
base::Time current_time = base::Time::UnixEpoch();
pingback_client()->set_current_time(current_time);
CreateAndSendPingback(
false /* lofi_received */, false /* client_lofi_requested */,
true /* lite_page_received */, false /* app_background_occurred */,
true /* opt_out_occurred */, false /* renderer_crash */);
CreateAndSendPingback(
false /* lofi_received */, false /* client_lofi_requested */,
true /* lite_page_received */, false /* app_background_occurred */,
true /* opt_out_occurred */, false /* renderer_crash */);
histogram_tester().ExpectUniqueSample(kHistogramAttempted, true, 2);
net::TestURLFetcher* test_fetcher = factory()->GetFetcherByID(0);
EXPECT_TRUE(test_fetcher);
EXPECT_EQ(test_fetcher->upload_content_type(), "application/x-protobuf");
RecordPageloadMetricsRequest batched_request;
batched_request.ParseFromString(test_fetcher->upload_data());
EXPECT_EQ(batched_request.pageloads_size(), 1);
PageloadMetrics pageload_metrics = batched_request.pageloads(0);
EXPECT_EQ(PageloadMetrics_PreviewsType_LITE_PAGE,
pageload_metrics.previews_type());
EXPECT_EQ(PageloadMetrics_PreviewsOptOut_OPT_OUT,
pageload_metrics.previews_opt_out());
test_fetcher->delegate()->OnURLFetchComplete(test_fetcher);
test_fetcher = factory()->GetFetcherByID(0);
EXPECT_TRUE(test_fetcher);
EXPECT_EQ(test_fetcher->upload_content_type(), "application/x-protobuf");
batched_request.ParseFromString(test_fetcher->upload_data());
EXPECT_EQ(batched_request.pageloads_size(), 1);
pageload_metrics = batched_request.pageloads(0);
EXPECT_EQ(PageloadMetrics_PreviewsType_LITE_PAGE,
pageload_metrics.previews_type());
EXPECT_EQ(PageloadMetrics_PreviewsOptOut_OPT_OUT,
pageload_metrics.previews_opt_out());
test_fetcher->delegate()->OnURLFetchComplete(test_fetcher);
EXPECT_FALSE(factory()->GetFetcherByID(0));
}
TEST_F(DataReductionProxyPingbackClientImplTest, VerifyCrashOomBehavior) {
Init();
EXPECT_FALSE(factory()->GetFetcherByID(0));
pingback_client()->OverrideRandom(true, 0.5f);
static_cast<DataReductionProxyPingbackClient*>(pingback_client())
->SetPingbackReportingFraction(1.0f);
CreateAndSendPingback(
false /* lofi_received */, false /* client_lofi_requested */,
false /* lite_page_received */, false /* app_background_occurred */,
false /* opt_out_occurred */, true /* renderer_crash */);
ReportCrash(true /* oom */);
net::TestURLFetcher* test_fetcher = factory()->GetFetcherByID(0);
EXPECT_TRUE(test_fetcher);
EXPECT_EQ(test_fetcher->upload_content_type(), "application/x-protobuf");
RecordPageloadMetricsRequest batched_request;
batched_request.ParseFromString(test_fetcher->upload_data());
EXPECT_EQ(batched_request.pageloads_size(), 1);
PageloadMetrics pageload_metrics = batched_request.pageloads(0);
#if defined(OS_ANDROID)
EXPECT_EQ(PageloadMetrics_RendererCrashType_ANDROID_FOREGROUND_OOM,
pageload_metrics.renderer_crash_type());
#else
EXPECT_EQ(PageloadMetrics_RendererCrashType_NOT_ANALYZED,
pageload_metrics.renderer_crash_type());
#endif
test_fetcher->delegate()->OnURLFetchComplete(test_fetcher);
histogram_tester().ExpectUniqueSample(kHistogramSucceeded, true, 1);
EXPECT_FALSE(factory()->GetFetcherByID(0));
}
TEST_F(DataReductionProxyPingbackClientImplTest, VerifyCrashNotOomBehavior) {
Init();
EXPECT_FALSE(factory()->GetFetcherByID(0));
pingback_client()->OverrideRandom(true, 0.5f);
static_cast<DataReductionProxyPingbackClient*>(pingback_client())
->SetPingbackReportingFraction(1.0f);
CreateAndSendPingback(
false /* lofi_received */, false /* client_lofi_requested */,
false /* lite_page_received */, false /* app_background_occurred */,
false /* opt_out_occurred */, true /* renderer_crash */);
ReportCrash(false /* oom */);
net::TestURLFetcher* test_fetcher = factory()->GetFetcherByID(0);
EXPECT_TRUE(test_fetcher);
EXPECT_EQ(test_fetcher->upload_content_type(), "application/x-protobuf");
RecordPageloadMetricsRequest batched_request;
batched_request.ParseFromString(test_fetcher->upload_data());
EXPECT_EQ(batched_request.pageloads_size(), 1);
PageloadMetrics pageload_metrics = batched_request.pageloads(0);
#if defined(OS_ANDROID)
EXPECT_EQ(PageloadMetrics_RendererCrashType_OTHER_CRASH,
pageload_metrics.renderer_crash_type());
#else
EXPECT_EQ(PageloadMetrics_RendererCrashType_NOT_ANALYZED,
pageload_metrics.renderer_crash_type());
#endif
test_fetcher->delegate()->OnURLFetchComplete(test_fetcher);
histogram_tester().ExpectUniqueSample(kHistogramSucceeded, true, 1);
EXPECT_FALSE(factory()->GetFetcherByID(0));
}
TEST_F(DataReductionProxyPingbackClientImplTest,
VerifyCrashNotAnalyzedBehavior) {
Init();
EXPECT_FALSE(factory()->GetFetcherByID(0));
pingback_client()->OverrideRandom(true, 0.5f);
static_cast<DataReductionProxyPingbackClient*>(pingback_client())
->SetPingbackReportingFraction(1.0f);
CreateAndSendPingback(
false /* lofi_received */, false /* client_lofi_requested */,
false /* lite_page_received */, false /* app_background_occurred */,
false /* opt_out_occurred */, true /* renderer_crash */);
// Don't report the crash dump details.
scoped_task_environment_.FastForwardBy(base::TimeDelta::FromSeconds(5));
net::TestURLFetcher* test_fetcher = factory()->GetFetcherByID(0);
EXPECT_TRUE(test_fetcher);
EXPECT_EQ(test_fetcher->upload_content_type(), "application/x-protobuf");
RecordPageloadMetricsRequest batched_request;
batched_request.ParseFromString(test_fetcher->upload_data());
EXPECT_EQ(batched_request.pageloads_size(), 1);
PageloadMetrics pageload_metrics = batched_request.pageloads(0);
EXPECT_EQ(PageloadMetrics_RendererCrashType_NOT_ANALYZED,
pageload_metrics.renderer_crash_type());
test_fetcher->delegate()->OnURLFetchComplete(test_fetcher);
histogram_tester().ExpectUniqueSample(kHistogramSucceeded, true, 1);
EXPECT_FALSE(factory()->GetFetcherByID(0));
}
} // namespace data_reduction_proxy
| [
"jiawang.yu@spreadtrum.com"
] | jiawang.yu@spreadtrum.com |
1f0d82a847315661cd2a608e5734316cfae9544c | 10ecd7454a082e341eb60817341efa91d0c7fd0b | /SDK/BP_Campaign005_CursedSails_WeapondealerWinnie_PreCursedSails_parameters.h | 6d74cbf46b0e62c03207df223500e4a0cc960e0e | [] | no_license | Blackstate/Sot-SDK | 1dba56354524572894f09ed27d653ae5f367d95b | cd73724ce9b46e3eb5b075c468427aa5040daf45 | refs/heads/main | 2023-04-10T07:26:10.255489 | 2021-04-23T01:39:08 | 2021-04-23T01:39:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 673 | h | #pragma once
// Name: SoT, Version: 2.1.0.1
#include "../SDK.h"
/*!!DEFINE!!*/
/*!!HELPER_DEF!!*/
/*!!HELPER_INC!!*/
#ifdef _MSC_VER
#pragma pack(push, 0x01)
#endif
namespace CG
{
//---------------------------------------------------------------------------
// Parameters
//---------------------------------------------------------------------------
// Function BP_Campaign005_CursedSails_WeapondealerWinnie_PreCursedSails.BP_Campaign005_CursedSails_WeapondealerWinnie_PreCursedSails_C.UserConstructionScript
struct ABP_Campaign005_CursedSails_WeapondealerWinnie_PreCursedSails_C_UserConstructionScript_Params
{
};
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
| [
"ploszjanos9844@gmail.com"
] | ploszjanos9844@gmail.com |
61dc192852d54eb232706678ab683aa6e523484c | 964207e1aedd34c703bba4354c3eb0a4716bbf8b | /Bai 3.cpp | c134b04dc60a4fe737b8d1515bcde8ab766f8fa9 | [] | no_license | ruatieuthien/Bai_Tap_Buoi_10 | efa49098dbea4f578a5332b2465bcd75ec7245a7 | cffe017f72a535746e8da3e989482ced5bd7c209 | refs/heads/main | 2023-06-02T00:22:29.884396 | 2021-06-21T14:17:51 | 2021-06-21T14:17:51 | 378,954,566 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 480 | cpp | # include <iostream>
using namespace std;
int main(){
int n;
int arr[100]; int S = 0;
cout << "Nhap so phan cua mang n = \n";
cin >> n;
int *ptr;
ptr = arr;
for(int i = 0; i < n; i++){
cout << " Nhap a[i] = ";
cin >> arr[i];
}
cout << " Mang sau khi nhap :\n ";
for (int i = 0; i < n;i++){
cout << arr[i] <<" ";
}
for (int i = 0;i < n; i++){
S = S + *ptr;
ptr++;
}
cout << "\nTong cac phan tu cua mang la:" << S;
return 0;
}
| [
"noreply@github.com"
] | noreply@github.com |
cce2f1351d4d4ce56dadc2be9feea35782f95fd6 | f3f589aa2267d6708d696598ce6d19d0d5e45373 | /sources/creatureevent.h | b0350d7d080bf8c539181714e77c41adcac13b3e | [] | no_license | otservme/erondino17 | 3e6ac8d319ba11b9f33bee6dd48c4d3e254763f2 | f1a9058bec01a7cd9dd31653f2f54f8c483822d6 | refs/heads/master | 2021-01-21T14:48:01.649036 | 2016-06-20T16:33:30 | 2016-06-20T16:33:30 | 58,568,770 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,606 | h | ////////////////////////////////////////////////////////////////////////
// OpenTibia - an opensource roleplaying game
////////////////////////////////////////////////////////////////////////
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
////////////////////////////////////////////////////////////////////////
#ifndef __CREATUREEVENT__
#define __CREATUREEVENT__
#include "enums.h"
#include "baseevents.h"
#include "tile.h"
enum CreatureEventType_t
{
CREATURE_EVENT_NONE,
CREATURE_EVENT_LOGIN,
CREATURE_EVENT_LOGOUT,
CREATURE_EVENT_CHANNEL_JOIN,
CREATURE_EVENT_CHANNEL_LEAVE,
CREATURE_EVENT_ADVANCE,
CREATURE_EVENT_LOOK,
CREATURE_EVENT_DIRECTION,
CREATURE_EVENT_OUTFIT,
CREATURE_EVENT_MAIL_SEND,
CREATURE_EVENT_MAIL_RECEIVE,
CREATURE_EVENT_TRADE_REQUEST,
CREATURE_EVENT_TRADE_ACCEPT,
CREATURE_EVENT_TEXTEDIT,
CREATURE_EVENT_REPORTBUG,
CREATURE_EVENT_THINK,
CREATURE_EVENT_STATSCHANGE,
CREATURE_EVENT_COMBAT_AREA,
CREATURE_EVENT_PUSH,
CREATURE_EVENT_TARGET,
CREATURE_EVENT_FOLLOW,
CREATURE_EVENT_COMBAT,
CREATURE_EVENT_ATTACK,
CREATURE_EVENT_CAST,
CREATURE_EVENT_KILL,
CREATURE_EVENT_DEATH,
CREATURE_EVENT_PREPAREDEATH,
CREATURE_EVENT_EXTENDED_OPCODE // otclient additional network opcodes
};
enum StatsChange_t
{
STATSCHANGE_HEALTHGAIN,
STATSCHANGE_HEALTHLOSS,
STATSCHANGE_MANAGAIN,
STATSCHANGE_MANALOSS
};
class CreatureEvent;
class CreatureEvents : public BaseEvents
{
public:
CreatureEvents();
virtual ~CreatureEvents();
// global events
bool playerLogin(Player* player);
bool playerLogout(Player* player, bool forceLogout);
CreatureEvent* getEventByName(const std::string& name, bool forceLoaded = true);
protected:
virtual std::string getScriptBaseName() const {return "creaturescripts";}
virtual void clear();
virtual Event* getEvent(const std::string& nodeName);
virtual bool registerEvent(Event* event, xmlNodePtr p, bool override);
virtual LuaScriptInterface& getInterface() {return m_interface;}
LuaScriptInterface m_interface;
//creature events
typedef std::map<std::string, CreatureEvent*> CreatureEventList;
CreatureEventList m_creatureEvents;
};
struct DeathEntry;
typedef std::vector<DeathEntry> DeathList;
typedef std::map<uint32_t, Player*> UsersMap;
class CreatureEvent : public Event
{
public:
CreatureEvent(LuaScriptInterface* _interface);
virtual ~CreatureEvent() {}
virtual bool configureEvent(xmlNodePtr p);
bool isLoaded() const {return m_isLoaded;}
const std::string& getName() const {return m_eventName;}
CreatureEventType_t getEventType() const {return m_type;}
void copyEvent(CreatureEvent* creatureEvent);
void clearEvent();
//scripting
uint32_t executeLogin(Player* player);
uint32_t executeLogout(Player* player, bool forceLogout);
uint32_t executeChannelJoin(Player* player, uint16_t channelId, UsersMap usersMap);
uint32_t executeChannelLeave(Player* player, uint16_t channelId, UsersMap usersMap);
uint32_t executeAdvance(Player* player, skills_t skill, uint32_t oldLevel, uint32_t newLevel);
uint32_t executeLook(Player* player, Thing* thing, const Position& position, int16_t stackpos, int32_t lookDistance);
uint32_t executeMailSend(Player* player, Player* receiver, Item* item, bool openBox);
uint32_t executeMailReceive(Player* player, Player* sender, Item* item, bool openBox);
uint32_t executeTradeRequest(Player* player, Player* target, Item* item);
uint32_t executeTradeAccept(Player* player, Player* target, Item* item, Item* targetItem);
uint32_t executeTextEdit(Player* player, Item* item, std::string newText);
uint32_t executeReportBug(Player* player, std::string comment);
uint32_t executeThink(Creature* creature, uint32_t interval);
uint32_t executeDirection(Creature* creature, Direction old, Direction current);
uint32_t executeOutfit(Creature* creature, const Outfit_t& old, const Outfit_t& current);
uint32_t executeStatsChange(Creature* creature, Creature* attacker, StatsChange_t type, CombatType_t combat, int32_t value);
uint32_t executeCombatArea(Creature* creature, Tile* tile, bool isAggressive);
uint32_t executePush(Player* player, Creature* target);
uint32_t executeTarget(Creature* creature, Creature* target);
uint32_t executeFollow(Creature* creature, Creature* target);
uint32_t executeCombat(Creature* creature, Creature* target);
uint32_t executeAttack(Creature* creature, Creature* target);
uint32_t executeCast(Creature* creature, Creature* target = NULL);
uint32_t executeKill(Creature* creature, Creature* target, bool lastHit);
uint32_t executeDeath(Creature* creature, Item* corpse, DeathList deathList);
uint32_t executePrepareDeath(Creature* creature, DeathList deathList);
uint32_t executeExtendedOpcode(Creature* creature, uint8_t opcode, const std::string& buffer);
//
protected:
virtual std::string getScriptEventName() const;
virtual std::string getScriptEventParams() const;
bool m_isLoaded;
std::string m_eventName;
CreatureEventType_t m_type;
};
#endif
| [
"root@poketeste.otpanel.com"
] | root@poketeste.otpanel.com |
c2b26157a02f02dc7d71363eba94d923cbe203d0 | 6b660cb96baa003de9e18e332b048c0f1fa67ab9 | /External/SDK/PirateLegendSpawnContext_functions.cpp | 902637f331d340c0126524d6a605389926470b87 | [] | no_license | zanzo420/zSoT-SDK | 1edbff62b3e12695ecf3969537a6d2631a0ff36f | 5e581eb0400061f6e5f93b3affd95001f62d4f7c | refs/heads/main | 2022-07-30T03:35:51.225374 | 2021-07-07T01:07:20 | 2021-07-07T01:07:20 | 383,634,601 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 568 | cpp | // Name: SoT, Version: 2.2.0.2
#include "../pch.h"
/*!!DEFINE!!*/
/*!!HELPER_DEF!!*/
/*!!HELPER_INC!!*/
#ifdef _MSC_VER
#pragma pack(push, 0x01)
#endif
namespace CG
{
//---------------------------------------------------------------------------
// Functions
//---------------------------------------------------------------------------
void UPirateLegendSpawnContext_C::AfterRead()
{
UAISpawnContextId::AfterRead();
}
void UPirateLegendSpawnContext_C::BeforeDelete()
{
UAISpawnContextId::BeforeDelete();
}
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
| [
"Massimo.linker@gmail.com"
] | Massimo.linker@gmail.com |
2543de25297a5e33773c34b04ea9bc072a25e9a0 | c9cf0586ace11aa32fa67606d237a130a06364ee | /circular-cylinder-10-1/OldData/23.485/p | 039fa7efd69669e5253b1546681c4833a2c7fafa | [] | no_license | jezvonek/CFD-Final-Project | c74cfa21f22545c27d97d85cf30eb6dc8c824dc1 | 7c9a7fb032d74f20888effa0a0b75b212bf899f4 | refs/heads/master | 2022-07-05T14:43:52.967657 | 2020-05-14T03:40:56 | 2020-05-14T03:40:56 | 262,370,756 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 26,190 | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 6.0
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "23.485";
object p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 2 -2 0 0 0 0];
internalField nonuniform List<scalar>
2400
(
-0.389483
-0.376331
-0.36809
-0.361449
-0.354913
-0.348483
-0.342237
-0.336142
-0.330276
-0.325726
-0.402556
-0.388557
-0.379358
-0.371588
-0.363822
-0.356157
-0.34873
-0.341517
-0.334599
-0.3295
-0.419627
-0.404167
-0.393522
-0.384212
-0.374841
-0.36559
-0.356658
-0.348008
-0.339718
-0.333976
-0.440963
-0.423416
-0.410816
-0.399533
-0.388158
-0.376954
-0.366166
-0.355721
-0.345688
-0.339157
-0.466875
-0.44655
-0.431452
-0.417748
-0.403969
-0.390438
-0.377427
-0.364794
-0.352569
-0.345018
-0.497647
-0.473788
-0.455627
-0.439059
-0.422491
-0.40628
-0.39069
-0.375448
-0.360494
-0.351538
-0.533502
-0.505299
-0.48351
-0.463668
-0.443974
-0.424787
-0.406325
-0.388104
-0.369819
-0.358812
-0.574549
-0.54117
-0.515216
-0.49174
-0.468639
-0.446228
-0.424641
-0.403066
-0.380595
-0.366274
-0.620704
-0.581355
-0.55079
-0.523428
-0.496745
-0.470931
-0.445867
-0.420031
-0.391156
-0.370346
-0.671414
-0.625562
-0.590155
-0.558922
-0.528935
-0.500324
-0.472678
-0.443626
-0.40924
-0.38005
-1.14092
-1.1243
-1.09517
-1.05588
-1.00866
-0.955709
-0.899119
-0.840772
-0.782312
-0.725282
-1.04436
-1.02948
-1.00323
-0.967775
-0.925221
-0.877652
-0.827017
-0.775069
-0.723327
-0.673109
-0.961614
-0.950485
-0.92846
-0.897532
-0.859738
-0.817091
-0.771488
-0.724638
-0.678021
-0.632861
-0.88393
-0.877703
-0.860834
-0.835113
-0.80244
-0.764738
-0.723849
-0.681466
-0.639078
-0.597906
-0.808051
-0.806979
-0.795617
-0.775494
-0.7483
-0.71579
-0.679687
-0.641605
-0.60303
-0.56518
-0.736213
-0.739941
-0.733908
-0.719363
-0.697743
-0.670568
-0.639345
-0.605499
-0.570414
-0.535225
-0.66986
-0.677685
-0.676439
-0.667124
-0.650927
-0.629106
-0.60288
-0.573327
-0.541548
-0.508394
-0.609429
-0.620584
-0.623453
-0.618863
-0.607808
-0.591327
-0.570338
-0.545425
-0.517003
-0.484864
-0.55474
-0.568587
-0.574997
-0.57471
-0.568634
-0.557717
-0.542716
-0.523758
-0.500029
-0.467815
-0.505761
-0.520943
-0.52966
-0.532625
-0.530765
-0.525125
-0.516674
-0.505808
-0.491722
-0.467778
-0.428348
-0.562777
-0.687655
-0.800753
-0.899808
-0.983027
-1.0492
-1.0977
-1.12854
-1.14242
-0.379288
-0.504551
-0.621114
-0.726685
-0.819135
-0.896793
-0.958534
-1.00382
-1.03268
-1.04575
-0.313305
-0.431226
-0.541792
-0.642676
-0.731787
-0.807445
-0.868468
-0.914209
-0.944572
-0.960011
-0.244709
-0.355215
-0.459866
-0.556369
-0.642663
-0.717068
-0.77833
-0.825668
-0.858802
-0.877951
-0.182021
-0.284662
-0.382871
-0.474384
-0.557203
-0.629707
-0.690639
-0.739138
-0.774777
-0.797569
-0.128524
-0.223443
-0.315151
-0.401336
-0.480119
-0.550007
-0.6098
-0.658628
-0.695988
-0.721746
-0.0842552
-0.172041
-0.257653
-0.338543
-0.413028
-0.479815
-0.537803
-0.586162
-0.624373
-0.652221
-0.0475082
-0.128427
-0.208589
-0.284582
-0.354913
-0.418517
-0.474402
-0.5218
-0.560215
-0.589405
-0.0171245
-0.0909942
-0.166276
-0.237896
-0.304418
-0.36496
-0.418646
-0.464801
-0.502981
-0.532954
-0.000370497
-0.0695442
-0.140047
-0.206473
-0.268105
-0.324353
-0.374467
-0.417918
-0.454372
-0.483648
0.542721
0.563743
0.586194
0.609216
0.632326
0.654865
0.675858
0.694716
0.716813
0.755884
0.516174
0.534447
0.554416
0.57454
0.594143
0.612497
0.62855
0.641742
0.657793
0.691623
0.482144
0.496696
0.513365
0.529674
0.544698
0.557668
0.5675
0.573767
0.58261
0.61
0.440933
0.450903
0.463543
0.475191
0.48465
0.49114
0.493596
0.491818
0.492418
0.512245
0.392935
0.397619
0.405618
0.411865
0.414896
0.413959
0.408058
0.397315
0.388843
0.400158
0.338622
0.33752
0.340427
0.340669
0.336567
0.327446
0.312429
0.292047
0.273913
0.27596
0.278553
0.271412
0.268976
0.262776
0.251021
0.233179
0.208547
0.178131
0.150015
0.142243
0.213464
0.200306
0.192495
0.179576
0.159837
0.132979
0.0985093
0.057967
0.0198296
0.00190961
0.14416
0.12573
0.112722
0.0928114
0.0648692
0.0289058
-0.0153564
-0.0658185
-0.113734
-0.141901
0.0691231
0.0483092
0.030579
0.00370959
-0.0321715
-0.0769402
-0.130618
-0.190478
-0.247695
-0.286125
0.395425
0.398809
0.409262
0.417511
0.423964
0.430353
0.438281
0.450127
0.468773
0.491303
0.444124
0.448798
0.46049
0.471817
0.482167
0.492721
0.504737
0.520271
0.542824
0.571707
0.483246
0.491658
0.505881
0.520661
0.535062
0.549822
0.565896
0.584999
0.611104
0.64562
0.51553
0.528001
0.545087
0.563158
0.581328
0.600021
0.619873
0.642221
0.671354
0.710617
0.541224
0.557387
0.577172
0.598175
0.619655
0.641787
0.664901
0.689935
0.721385
0.764395
0.56005
0.579302
0.601364
0.624758
0.648901
0.67377
0.699398
0.726335
0.759213
0.804849
0.571738
0.593303
0.617036
0.64212
0.668113
0.694819
0.722003
0.749857
0.78311
0.830152
0.57602
0.59899
0.623664
0.649621
0.676514
0.704002
0.731609
0.75922
0.791667
0.838821
0.572677
0.596053
0.620856
0.646787
0.673534
0.70063
0.727394
0.753471
0.783837
0.829771
0.561582
0.584313
0.608379
0.633338
0.658831
0.684285
0.708854
0.732024
0.758961
0.802286
0.350269
0.305364
0.254105
0.202292
0.15095
0.100838
0.0527879
0.0073212
-0.0352392
-0.0746906
0.354824
0.307099
0.254038
0.199426
0.145284
0.092665
0.0424096
-0.00484978
-0.0486807
-0.0888201
0.358395
0.304957
0.248307
0.190884
0.134404
0.0799223
0.0283168
-0.0197206
-0.0637226
-0.103428
0.361046
0.302561
0.242273
0.181938
0.123075
0.0668037
0.0140446
-0.0345033
-0.0783934
-0.117419
0.362854
0.29996
0.236121
0.172888
0.111738
0.0538526
0.000164421
-0.0486599
-0.0922365
-0.130456
0.364787
0.297714
0.230401
0.164391
0.101153
0.0418749
-0.0125415
-0.0615012
-0.104718
-0.142209
0.368506
0.297554
0.226968
0.158345
0.0931409
0.0325169
-0.0226909
-0.0719807
-0.115175
-0.152412
0.376556
0.302076
0.228371
0.157097
0.0897073
0.0273279
-0.0292642
-0.0796402
-0.123696
-0.161648
0.391037
0.31236
0.234568
0.159397
0.0883376
0.0225419
-0.0371946
-0.0904299
-0.137052
-0.177268
0.406954
0.321148
0.236157
0.153879
0.0759311
0.00361865
-0.062107
-0.120672
-0.171882
-0.215864
-0.110996
-0.144213
-0.17458
-0.202438
-0.228182
-0.252214
-0.274831
-0.296034
-0.316326
-0.326501
-0.125218
-0.157902
-0.187119
-0.213204
-0.236538
-0.257478
-0.276216
-0.292572
-0.306194
-0.310381
-0.138831
-0.16999
-0.197231
-0.220971
-0.241674
-0.259789
-0.275619
-0.289228
-0.300568
-0.306327
-0.151675
-0.181294
-0.206727
-0.228509
-0.247211
-0.26339
-0.277483
-0.289743
-0.300209
-0.307019
-0.16355
-0.191741
-0.215623
-0.235843
-0.253067
-0.267927
-0.280937
-0.292415
-0.302358
-0.309612
-0.174354
-0.201456
-0.224235
-0.243417
-0.259719
-0.273797
-0.286171
-0.297146
-0.306687
-0.314089
-0.184203
-0.210886
-0.233264
-0.252095
-0.268091
-0.281883
-0.293949
-0.304551
-0.31365
-0.320839
-0.194081
-0.221313
-0.244175
-0.263408
-0.279687
-0.29359
-0.305542
-0.315766
-0.324254
-0.330808
-0.211628
-0.240469
-0.264593
-0.284725
-0.301519
-0.315529
-0.327147
-0.336588
-0.343902
-0.349038
-0.252905
-0.283743
-0.309046
-0.329606
-0.346173
-0.359352
-0.369552
-0.377004
-0.381829
-0.384038
-0.383433
-0.352084
-0.335437
-0.325912
-0.318764
-0.312712
-0.306612
-0.297934
-0.282827
-0.269398
-0.381611
-0.353552
-0.338498
-0.329638
-0.322692
-0.316531
-0.310323
-0.302374
-0.290555
-0.282845
-0.378838
-0.35392
-0.340461
-0.332397
-0.325954
-0.320207
-0.314571
-0.308021
-0.29973
-0.295858
-0.375666
-0.353662
-0.341721
-0.334453
-0.328555
-0.323265
-0.318141
-0.312495
-0.305999
-0.303244
-0.372703
-0.353287
-0.342716
-0.336181
-0.330793
-0.325937
-0.321284
-0.316367
-0.311037
-0.308526
-0.370516
-0.353307
-0.3439
-0.337963
-0.332968
-0.328422
-0.324084
-0.319633
-0.315004
-0.312399
-0.369656
-0.354226
-0.345722
-0.340191
-0.335403
-0.330976
-0.326736
-0.322465
-0.318148
-0.315276
-0.370669
-0.356539
-0.348633
-0.343267
-0.33846
-0.333925
-0.329554
-0.325199
-0.320885
-0.31766
-0.374086
-0.360721
-0.353062
-0.347588
-0.342502
-0.337614
-0.332874
-0.32819
-0.323613
-0.319987
-0.380318
-0.367192
-0.359415
-0.353528
-0.347878
-0.342368
-0.33701
-0.331751
-0.32666
-0.322596
-0.317184
-0.264052
-0.232348
-0.189875
-0.157056
-0.126754
-0.102481
-0.0823268
-0.0660483
-0.0528792
-0.0420663
-0.033341
-0.026512
-0.0208852
-0.0172313
-0.0133245
-0.0114006
-0.00666872
-0.00312352
0.000588541
-0.322611
-0.265468
-0.233622
-0.190815
-0.157867
-0.127578
-0.103285
-0.0830896
-0.0666739
-0.0533063
-0.0422139
-0.0332361
-0.0262409
-0.0206117
-0.0172586
-0.0136607
-0.01203
-0.00712978
-0.00295452
0.000774314
-0.33002
-0.267643
-0.235549
-0.192353
-0.159137
-0.128782
-0.104372
-0.0840637
-0.067458
-0.0538601
-0.042473
-0.0332337
-0.0260602
-0.0204117
-0.0173239
-0.0140046
-0.0126317
-0.00756594
-0.00279497
0.000942
-0.339268
-0.270611
-0.23807
-0.194472
-0.160859
-0.13036
-0.105738
-0.0852478
-0.0684014
-0.0545438
-0.04285
-0.0333422
-0.0259789
-0.0202918
-0.0174273
-0.0143515
-0.0131986
-0.00797343
-0.0026478
0.00109009
-0.350104
-0.274433
-0.241109
-0.197142
-0.163017
-0.132301
-0.107379
-0.0866388
-0.0695039
-0.0553593
-0.0433491
-0.0335666
-0.0260021
-0.0202548
-0.0175674
-0.0146977
-0.0137269
-0.00835133
-0.00251516
0.00121855
-0.362129
-0.279192
-0.244578
-0.200303
-0.165574
-0.134577
-0.109277
-0.0882248
-0.070759
-0.0563034
-0.0439694
-0.0339075
-0.0261309
-0.020301
-0.0177421
-0.0150392
-0.0142132
-0.00869891
-0.00239912
0.00132713
-0.374937
-0.285194
-0.24854
-0.203962
-0.168541
-0.137191
-0.111439
-0.0900127
-0.072174
-0.0573832
-0.0447181
-0.0343708
-0.0263699
-0.0204319
-0.0179492
-0.0153723
-0.0146546
-0.00901652
-0.00230225
0.00141596
-0.388271
-0.293382
-0.253558
-0.208468
-0.172183
-0.14034
-0.114013
-0.0921123
-0.0738313
-0.058661
-0.0456431
-0.0349922
-0.0267449
-0.0206618
-0.0181923
-0.0156935
-0.0150469
-0.00930501
-0.00222921
0.00148452
-0.399615
-0.303929
-0.259987
-0.214068
-0.176682
-0.144169
-0.117118
-0.0946152
-0.0757966
-0.0601797
-0.0467678
-0.0357812
-0.0272577
-0.0209907
-0.0184754
-0.0160092
-0.015399
-0.00957074
-0.002179
0.00153538
-0.39777
-0.310827
-0.264565
-0.218315
-0.180163
-0.14726
-0.119706
-0.0967512
-0.0774937
-0.0614902
-0.0477216
-0.0364364
-0.0276704
-0.0212685
-0.0187513
-0.0163447
-0.0157659
-0.00983265
-0.00211794
0.00158448
-0.371982
-0.308657
-0.264324
-0.219068
-0.181001
-0.148421
-0.12094
-0.0979579
-0.0785502
-0.06233
-0.0482778
-0.0367378
-0.027761
-0.0213324
-0.019005
-0.0168426
-0.0163668
-0.0102328
-0.0019784
0.00166495
-0.355566
-0.303421
-0.260008
-0.217165
-0.180543
-0.149136
-0.122237
-0.0994794
-0.0800664
-0.0637032
-0.0494696
-0.0377412
-0.0285835
-0.0220689
-0.0196333
-0.0174395
-0.0167765
-0.0104596
-0.00190201
0.00164011
-0.336507
-0.292047
-0.250593
-0.211882
-0.178207
-0.148775
-0.122994
-0.100791
-0.0815935
-0.0652307
-0.0509346
-0.0390933
-0.0297906
-0.0231569
-0.0204393
-0.0180495
-0.0170224
-0.0105661
-0.00191036
0.00152251
-0.307006
-0.273387
-0.23682
-0.203652
-0.174206
-0.147538
-0.123394
-0.102066
-0.0832903
-0.0670501
-0.0527704
-0.0408436
-0.0313835
-0.0245615
-0.0213996
-0.0186822
-0.0171421
-0.010611
-0.00203556
0.00130803
-0.268351
-0.247942
-0.219421
-0.192686
-0.168292
-0.145163
-0.123257
-0.103205
-0.0851159
-0.0691648
-0.0550037
-0.0430298
-0.0333949
-0.0262971
-0.0225115
-0.019319
-0.0171192
-0.0106102
-0.00231477
0.000988748
-0.226975
-0.218442
-0.19955
-0.1797
-0.160587
-0.141469
-0.122338
-0.103998
-0.0868993
-0.0714424
-0.0575249
-0.0455635
-0.0357466
-0.0282958
-0.0237376
-0.0199411
-0.0169758
-0.0105963
-0.00276534
0.00057923
-0.188981
-0.188721
-0.178891
-0.165839
-0.151783
-0.136671
-0.120572
-0.104269
-0.088428
-0.0736605
-0.0601048
-0.0482256
-0.0382379
-0.0303991
-0.0250074
-0.0205444
-0.0167881
-0.0106112
-0.00336215
0.000122808
-0.157802
-0.162329
-0.159521
-0.152457
-0.142909
-0.131388
-0.118178
-0.103984
-0.0895288
-0.0755681
-0.062447
-0.0507074
-0.0405815
-0.0323812
-0.0262176
-0.0211237
-0.0166534
-0.0106799
-0.0040227
-0.000314845
-0.135181
-0.142048
-0.1438
-0.141228
-0.135251
-0.12657
-0.115706
-0.103339
-0.0901564
-0.0769699
-0.06427
-0.052685
-0.0424662
-0.0339839
-0.0272262
-0.0216341
-0.0166277
-0.0107938
-0.00461609
-0.000661689
-0.122492
-0.130267
-0.134304
-0.134256
-0.130414
-0.123438
-0.113989
-0.102766
-0.0904173
-0.0777521
-0.0653392
-0.0538602
-0.0435948
-0.0349428
-0.0278493
-0.021964
-0.0166692
-0.0108999
-0.00499602
-0.000859441
-0.436432
-0.449047
-0.456315
-0.45876
-0.457243
-0.453066
-0.448101
-0.444965
-0.448719
-0.471222
-0.357145
-0.370529
-0.380949
-0.388912
-0.395107
-0.400374
-0.405604
-0.411518
-0.418251
-0.431274
-0.292257
-0.305277
-0.316752
-0.326872
-0.335788
-0.343582
-0.35028
-0.356022
-0.360851
-0.370465
-0.237195
-0.248755
-0.259257
-0.268747
-0.277281
-0.284956
-0.291946
-0.298562
-0.304857
-0.313293
-0.191352
-0.201373
-0.21071
-0.219401
-0.227496
-0.235053
-0.242123
-0.248757
-0.254884
-0.261229
-0.154178
-0.162769
-0.170885
-0.178532
-0.18572
-0.192456
-0.198752
-0.204627
-0.210095
-0.215257
-0.124758
-0.132056
-0.138995
-0.14557
-0.15178
-0.157627
-0.163115
-0.168252
-0.17304
-0.177435
-0.102541
-0.108788
-0.114751
-0.120418
-0.125781
-0.130836
-0.135582
-0.140018
-0.144145
-0.147936
-0.0870992
-0.0925703
-0.0978021
-0.102782
-0.1075
-0.11195
-0.116129
-0.120034
-0.123665
-0.127018
-0.0787183
-0.083699
-0.0884674
-0.0930139
-0.0973312
-0.101414
-0.10526
-0.108867
-0.112235
-0.115366
-0.0121887
-0.0762736
-0.138937
-0.193604
-0.24339
-0.28889
-0.32943
-0.364606
-0.394235
-0.418194
-0.0298594
-0.079435
-0.126961
-0.167426
-0.204039
-0.238085
-0.26904
-0.296458
-0.320253
-0.340453
-0.040845
-0.0804555
-0.115533
-0.145298
-0.172363
-0.197681
-0.220981
-0.242009
-0.260797
-0.277493
-0.0457613
-0.0764816
-0.101312
-0.122482
-0.142383
-0.161384
-0.179176
-0.195597
-0.210684
-0.224526
-0.0451627
-0.0679175
-0.0854311
-0.100643
-0.115501
-0.130043
-0.143897
-0.156925
-0.169152
-0.18062
-0.0404416
-0.0568503
-0.069622
-0.0811036
-0.0925829
-0.103991
-0.115015
-0.125536
-0.135562
-0.145109
-0.0341672
-0.0460804
-0.0558494
-0.0649554
-0.0741213
-0.083273
-0.0922034
-0.100826
-0.10913
-0.117111
-0.0281652
-0.0371211
-0.0449708
-0.0524991
-0.0600649
-0.0676158
-0.0750311
-0.0822504
-0.0892529
-0.0960228
-0.0234229
-0.0305943
-0.0372719
-0.0437889
-0.0503041
-0.0567885
-0.0631753
-0.0694224
-0.0755056
-0.0814047
-0.0206308
-0.0270055
-0.0331711
-0.039214
-0.0452019
-0.0511241
-0.0569446
-0.0626337
-0.0681705
-0.0735374
0.219916
0.220884
0.223307
0.226615
0.231128
0.234483
0.237027
0.227305
0.203672
0.0989842
0.211631
0.212153
0.21352
0.215096
0.216782
0.21608
0.21218
0.19417
0.15752
0.0591833
0.201748
0.201802
0.202033
0.201749
0.200534
0.195931
0.186455
0.163249
0.121804
0.0403429
0.190139
0.18968
0.188694
0.186485
0.182385
0.17426
0.160198
0.13438
0.0918789
0.0237638
0.176859
0.175882
0.173705
0.169682
0.16301
0.152075
0.134852
0.108223
0.0671937
0.00981539
0.162219
0.160773
0.157552
0.152007
0.14335
0.130515
0.11172
0.0856404
0.0483176
0.000852786
0.146902
0.145081
0.141072
0.134437
0.124538
0.110758
0.0918259
0.0673807
0.0350146
-0.00355241
0.132067
0.130001
0.125516
0.118281
0.107871
0.0939852
0.0759179
0.0537188
0.0262714
-0.00505019
0.119449
0.117266
0.112593
0.10518
0.0947911
0.0813293
0.0645092
0.0445109
0.0209883
-0.00511722
0.111476
0.109261
0.104567
0.0971903
0.0870082
0.0740204
0.0581596
0.0396302
0.0184238
-0.00477884
0.255432
0.257514
0.263121
0.271856
0.285518
0.303664
0.330801
0.3658
0.41838
0.485748
0.252928
0.254937
0.260356
0.268768
0.281938
0.299279
0.325206
0.358123
0.407101
0.468413
0.250193
0.252125
0.257335
0.265385
0.277996
0.294396
0.318899
0.349198
0.393698
0.446808
0.247238
0.249091
0.254074
0.261728
0.273716
0.289047
0.311924
0.339079
0.378313
0.421042
0.244077
0.24585
0.250591
0.257819
0.269123
0.283268
0.304328
0.327831
0.361113
0.391216
0.240725
0.242419
0.246906
0.253682
0.264242
0.277099
0.296153
0.315528
0.34228
0.3574
0.237199
0.23882
0.243047
0.249356
0.259123
0.270613
0.287482
0.302311
0.322039
0.319677
0.233518
0.235083
0.23906
0.244908
0.253866
0.263963
0.278508
0.288463
0.300707
0.278052
0.229697
0.231218
0.23495
0.240341
0.248463
0.257146
0.2692
0.273981
0.278076
0.23141
0.225722
0.227129
0.23049
0.235249
0.242237
0.249159
0.258063
0.257223
0.251737
0.178052
0.266748
0.269193
0.275302
0.284976
0.299505
0.318385
0.344765
0.373359
0.411145
0.421101
0.266715
0.26917
0.275397
0.285236
0.30015
0.319667
0.347528
0.379024
0.422823
0.449201
0.266448
0.268878
0.275114
0.284943
0.299933
0.31964
0.348166
0.381549
0.429382
0.469333
0.265948
0.268353
0.274587
0.284399
0.299444
0.319323
0.348406
0.383486
0.434791
0.485641
0.265207
0.267586
0.273807
0.283588
0.298657
0.318668
0.348175
0.38468
0.43883
0.498283
0.264216
0.266563
0.272747
0.282461
0.297486
0.317522
0.34723
0.384731
0.440922
0.506874
0.26297
0.265278
0.271399
0.281004
0.295907
0.31584
0.345508
0.383528
0.440893
0.511294
0.261467
0.26373
0.269761
0.279214
0.293918
0.313616
0.343006
0.38105
0.438673
0.511462
0.259708
0.261917
0.267832
0.277089
0.29152
0.310844
0.339719
0.377275
0.434199
0.507291
0.257695
0.259843
0.265616
0.274634
0.288717
0.307524
0.335646
0.372191
0.427431
0.498722
0.221011
0.219591
0.216564
0.211747
0.204926
0.195879
0.184304
0.170018
0.152689
0.13247
0.226015
0.224788
0.222143
0.217848
0.211603
0.203072
0.191781
0.177391
0.159299
0.137565
0.233504
0.232626
0.230688
0.227404
0.222356
0.215005
0.204603
0.190448
0.171445
0.14735
0.241598
0.241194
0.240256
0.238456
0.235286
0.229955
0.221419
0.208337
0.188952
0.162174
0.249084
0.249233
0.249501
0.249553
0.248876
0.246427
0.240975
0.230226
0.21176
0.182537
0.255313
0.256031
0.25759
0.259691
0.261926
0.263069
0.261934
0.255018
0.239551
0.208804
0.260055
0.261306
0.264126
0.26828
0.273586
0.278758
0.282951
0.281369
0.271439
0.24072
0.263355
0.265068
0.269027
0.275083
0.283359
0.292677
0.302816
0.307926
0.305975
0.276607
0.265405
0.267485
0.272407
0.280092
0.291017
0.304252
0.320418
0.333343
0.341706
0.314726
0.266465
0.268795
0.274455
0.283392
0.296476
0.313057
0.334887
0.356261
0.378659
0.361549
0.117864
0.111714
0.10541
0.0990583
0.0926428
0.0861534
0.0796065
0.0730276
0.0664404
0.0598663
0.121389
0.114529
0.107491
0.100466
0.0933803
0.0861866
0.0789018
0.0715632
0.0642039
0.0568518
0.128493
0.120118
0.111433
0.102966
0.0945436
0.0860144
0.0773761
0.0686826
0.0599798
0.0512983
0.139772
0.129052
0.117707
0.106981
0.0965456
0.086034
0.0753965
0.0647148
0.0540542
0.0434453
0.156029
0.142067
0.126833
0.112889
0.0996822
0.086466
0.0731053
0.0597306
0.0464376
0.0332505
0.178195
0.160056
0.13945
0.121144
0.104287
0.0875327
0.0706233
0.0537761
0.0371269
0.0206808
0.207188
0.184077
0.156412
0.13242
0.110852
0.089512
0.0680501
0.0468322
0.0260256
0.00559446
0.243029
0.214283
0.177956
0.147081
0.119596
0.0923784
0.0652215
0.0386834
0.0129105
-0.0121941
0.285594
0.250194
0.204542
0.16614
0.131245
0.0965581
0.062417
0.0294918
-0.00207635
-0.0323069
0.333331
0.289393
0.235803
0.18861
0.143708
0.0996521
0.0572755
0.0171009
-0.0206665
-0.0558522
0.0533254
0.0468371
0.0404194
0.0340892
0.0278619
0.0217514
0.0157702
0.00992933
0.00423865
-0.00129239
0.0495327
0.0422719
0.0350942
0.0280223
0.0210774
0.0142785
0.00764216
0.001183
-0.00508652
-0.011132
0.0426641
0.0341026
0.0256393
0.0172978
0.00909916
0.00106254
-0.00679546
-0.0144608
-0.0219229
-0.0290942
0.032908
0.022463
0.0121324
0.0019363
-0.00810814
-0.0179864
-0.0276865
-0.0371983
-0.0465214
-0.0555236
0.0201734
0.00721491
-0.0056121
-0.0182959
-0.0308275
-0.0432013
-0.0554166
-0.0674782
-0.07942
-0.0912843
0.00441413
-0.0116853
-0.0276253
-0.0434203
-0.059093
-0.0746699
-0.0901761
-0.10562
-0.121064
-0.137207
-0.0145183
-0.0343418
-0.0538951
-0.073206
-0.0923245
-0.111337
-0.130372
-0.149551
-0.169249
-0.191085
-0.0367342
-0.0607899
-0.0844354
-0.107729
-0.130702
-0.15337
-0.175775
-0.198013
-0.221357
-0.247997
-0.0612328
-0.0889384
-0.115611
-0.141533
-0.16706
-0.192578
-0.21844
-0.244978
-0.274412
-0.305866
-0.0883341
-0.118094
-0.14531
-0.170396
-0.19403
-0.21716
-0.24089
-0.266709
-0.300261
-0.343572
-0.0144092
-0.0331194
-0.0493559
-0.0620305
-0.0704734
-0.0745764
-0.0747121
-0.0716096
-0.0661909
-0.0593608
-0.0519032
-0.0442791
-0.0366262
-0.0290522
-0.0212684
-0.0141855
-0.00801273
-0.00480708
-0.00465216
-0.0033314
-0.025812
-0.0452436
-0.0608214
-0.0720051
-0.0785375
-0.0805817
-0.0787566
-0.0739914
-0.0673372
-0.059715
-0.051867
-0.0441128
-0.0364421
-0.0288438
-0.0208551
-0.0135599
-0.00715153
-0.00418445
-0.00487184
-0.00359024
-0.0465725
-0.0667715
-0.0806789
-0.0888896
-0.0918404
-0.0901968
-0.0850099
-0.0774948
-0.0688664
-0.060036
-0.0516527
-0.0437796
-0.0361667
-0.0285856
-0.0202997
-0.0126445
-0.00582811
-0.00317061
-0.00519323
-0.00392104
-0.0761099
-0.0961932
-0.107009
-0.110536
-0.108185
-0.101474
-0.0919538
-0.0810692
-0.0701454
-0.0600103
-0.051148
-0.0432726
-0.0358538
-0.0283756
-0.0198013
-0.011734
-0.00444257
-0.00204519
-0.00549248
-0.00413715
-0.11296
-0.1313
-0.137661
-0.134648
-0.125407
-0.112707
-0.0984091
-0.084015
-0.0708511
-0.0595516
-0.050363
-0.0426127
-0.0355048
-0.0282217
-0.0194642
-0.011049
-0.00336123
-0.00107427
-0.00566734
-0.00414008
-0.15324
-0.168418
-0.169488
-0.158263
-0.141276
-0.122478
-0.103594
-0.0860296
-0.0709776
-0.058774
-0.0494009
-0.0418374
-0.035084
-0.0280624
-0.0192883
-0.0106774
-0.00278938
-0.000431651
-0.00568569
-0.00393625
-0.190864
-0.203166
-0.198521
-0.178313
-0.154079
-0.129947
-0.107231
-0.0871771
-0.0707277
-0.0578857
-0.0484033
-0.041005
-0.0345698
-0.0278298
-0.0192114
-0.0105879
-0.00274696
-0.000179729
-0.00557762
-0.00358636
-0.221567
-0.232437
-0.221623
-0.193216
-0.163353
-0.135096
-0.109554
-0.0877653
-0.0703726
-0.0570901
-0.0475058
-0.0401955
-0.0339903
-0.0275041
-0.0191697
-0.010692
-0.00312088
-0.00027698
-0.00539404
-0.00315925
-0.247747
-0.255352
-0.237856
-0.203286
-0.169605
-0.138381
-0.110953
-0.0880519
-0.0700541
-0.0564635
-0.0467595
-0.0394542
-0.0333832
-0.0270997
-0.0191214
-0.0108974
-0.00374873
-0.000620684
-0.00517576
-0.0027088
-0.276667
-0.27127
-0.246889
-0.20852
-0.172718
-0.139715
-0.111335
-0.0879164
-0.0696525
-0.0559021
-0.0460709
-0.038688
-0.0326529
-0.0265161
-0.0189793
-0.0111363
-0.0045594
-0.00117301
-0.0049449
-0.00225085
-0.305183
-0.275432
-0.247435
-0.208244
-0.172417
-0.139222
-0.11094
-0.0876298
-0.0694185
-0.0556098
-0.045565
-0.0379403
-0.0317707
-0.0256783
-0.018683
-0.0113793
-0.00551209
-0.00192444
-0.00474371
-0.00183745
-0.318879
-0.275966
-0.246008
-0.205728
-0.169935
-0.136863
-0.109033
-0.0861711
-0.0683364
-0.0547826
-0.0448393
-0.0372462
-0.0311073
-0.0251
-0.0184286
-0.0114447
-0.00600975
-0.00235612
-0.00461122
-0.00157123
-0.322421
-0.274112
-0.243333
-0.202164
-0.166664
-0.133977
-0.106802
-0.0845347
-0.0671808
-0.0539511
-0.0441576
-0.0366201
-0.0305146
-0.0245752
-0.0181831
-0.0114908
-0.00645713
-0.00276237
-0.00447828
-0.00131792
-0.321642
-0.271738
-0.240736
-0.199069
-0.163985
-0.131701
-0.105117
-0.0833451
-0.0663632
-0.0533531
-0.0436166
-0.0360637
-0.0299487
-0.0240641
-0.0179713
-0.011591
-0.00696569
-0.00320306
-0.00433333
-0.00106254
-0.319484
-0.26945
-0.238313
-0.196394
-0.161786
-0.129899
-0.103844
-0.0824875
-0.06579
-0.0529159
-0.0431604
-0.0355365
-0.0293804
-0.0235481
-0.0177838
-0.0117414
-0.00753325
-0.0036758
-0.00417637
-0.000805832
-0.316819
-0.267341
-0.236074
-0.194049
-0.159933
-0.128436
-0.102865
-0.0818702
-0.0653964
-0.0526001
-0.0427717
-0.0350372
-0.0288169
-0.0230347
-0.0176184
-0.011931
-0.00814008
-0.00416831
-0.00401013
-0.000551716
-0.314313
-0.265533
-0.234161
-0.192116
-0.158461
-0.127325
-0.102182
-0.0814901
-0.0651796
-0.0524067
-0.0424574
-0.0345774
-0.0282713
-0.0225353
-0.0174784
-0.0121553
-0.00877454
-0.00467244
-0.00383692
-0.000303111
-0.31264
-0.264188
-0.232732
-0.190687
-0.157418
-0.126597
-0.101805
-0.0813523
-0.0651419
-0.0523389
-0.0422245
-0.0341674
-0.0277556
-0.0220601
-0.0173671
-0.0124114
-0.00942788
-0.00518167
-0.00365884
-6.22832e-05
-0.312339
-0.263442
-0.231911
-0.189818
-0.156831
-0.126259
-0.101734
-0.0814514
-0.0652781
-0.0523958
-0.042078
-0.0338175
-0.0272819
-0.0216195
-0.0172873
-0.0126948
-0.0100899
-0.00568852
-0.00347876
0.000168037
-0.313783
-0.263382
-0.231773
-0.189543
-0.15671
-0.126312
-0.101962
-0.0817788
-0.065582
-0.052576
-0.0420232
-0.0335383
-0.026863
-0.0212243
-0.0172414
-0.0130009
-0.0107509
-0.0061864
-0.00329924
0.000385786
)
;
boundaryField
{
inlet
{
type freestreamPressure;
freestreamValue uniform 0;
supersonic false;
value nonuniform List<scalar>
40
(
0.219916
0.211631
0.201748
0.190139
0.176859
0.162219
0.146902
0.132067
0.119449
0.111476
0.255432
0.252928
0.250193
0.247238
0.244077
0.240725
0.237199
0.233518
0.229697
0.225722
0.266748
0.266715
0.266448
0.265948
0.265207
0.264216
0.26297
0.261467
0.259708
0.257695
0.221011
0.226015
0.233504
0.241598
0.249084
0.255313
0.260055
0.263355
0.265405
0.266465
)
;
}
outlet
{
type freestreamPressure;
freestreamValue uniform 0;
supersonic false;
value nonuniform List<scalar>
40
(
1.05495e-07
9.28583e-08
7.11852e-08
4.55366e-08
2.22481e-08
6.92645e-09
5.90403e-10
-4.02018e-10
-1.16969e-10
-5.43735e-12
1.61541e-08
2.69837e-08
3.95932e-08
5.30384e-08
6.63071e-08
7.84299e-08
8.85986e-08
9.61964e-08
1.01043e-07
1.03908e-07
-1.93568e-08
-9.60477e-09
-3.57684e-09
-6.40327e-10
-1.26377e-11
-5.96963e-10
-1.15463e-09
-5.0341e-10
2.29713e-09
7.81622e-09
-3.74393e-09
-3.58851e-08
-1.02631e-07
-1.85458e-07
-2.42856e-07
-2.47019e-07
-2.04586e-07
-1.42032e-07
-8.34991e-08
-4.10062e-08
)
;
}
top
{
type symmetryPlane;
}
bottom
{
type symmetryPlane;
}
cylinder
{
type zeroGradient;
}
frontandback
{
type empty;
}
}
// ************************************************************************* //
| [
"danieler@login2.stampede2.tacc.utexas.edu"
] | danieler@login2.stampede2.tacc.utexas.edu | |
616614c55ac6fd4ecf6f3e76b4c5ef001c6416ed | 91a882547e393d4c4946a6c2c99186b5f72122dd | /Source/XPSP1/NT/admin/netui/admin/common/src/adminapp/colwidth/colwidth.cxx | 938db2e480a52ab07adf13c34dfd1314dab17e3c | [] | no_license | IAmAnubhavSaini/cryptoAlgorithm-nt5src | 94f9b46f101b983954ac6e453d0cf8d02aa76fc7 | d9e1cdeec650b9d6d3ce63f9f0abe50dabfaf9e2 | refs/heads/master | 2023-09-02T10:14:14.795579 | 2021-11-20T13:47:06 | 2021-11-20T13:47:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,860 | cxx | /**********************************************************************/
/** Microsoft Windows/NT **/
/** Copyright(c) Microsoft Corp., 1991 **/
/**********************************************************************/
/*
headcolw.cxx
Head column width class.
FILE HISTORY:
CongpaY 12-Jan-93 Created
*/
#define INCL_WINDOWS_GDI
#define INCL_WINDOWS
#define INCL_DOSERRORS
#define INCL_NETERRORS
#include <lmui.hxx>
#if defined(DEBUG)
static const CHAR szFileName[] = __FILE__;
#define _FILENAME_DEFINED_ONCE szFileName
#endif
#include <uiassert.hxx>
#define INCL_BLT_DIALOG
#define INCL_BLT_CONTROL
#define INCL_BLT_MSGPOPUP
#include <blt.hxx>
#include <string.hxx>
#include <uitrace.hxx>
#include <colwidth.hxx>
/*******************************************************************
NAME: ADMIN_COL_WIDTHS::ADMIN_COL_WIDTHS
SYNOPSIS: Constructor
ENTRY:
RETURN:
HISTORY:
congpay 12-Jan-93 Created
********************************************************************/
ADMIN_COL_WIDTHS::ADMIN_COL_WIDTHS (HWND hWnd,
HINSTANCE hmod,
const IDRESOURCE & idres,
UINT cColumns)
: LB_COL_WIDTHS (hWnd,
hmod,
idres,
cColumns),
_pdxHeaderWidth( NULL )
{
APIERR err = NERR_Success;
do //error break out.
{
if ((err = QueryError()) != NERR_Success)
{
break;
}
_pdxHeaderWidth = new UINT[(cColumns-1)];
if (_pdxHeaderWidth == NULL)
{
ReportError (ERROR_NOT_ENOUGH_MEMORY);
break;
}
CopyColumnWidths();
} while (FALSE);
}
/*******************************************************************
NAME: ADMIN_COL_WIDTHS::~ADMIN_COL_WIDTHS
SYNOPSIS: destructor
ENTRY:
RETURN:
HISTORY:
congpay 12-Jan-93 Created
********************************************************************/
ADMIN_COL_WIDTHS::~ADMIN_COL_WIDTHS (void)
{
delete (_pdxHeaderWidth);
_pdxHeaderWidth = NULL;
}
/*******************************************************************
NAME: ADMIN_COL_WIDTHS::CopyColumnWidths
SYNOPSIS: Copies root column widths into new table
ENTRY:
RETURN:
HISTORY:
JonN 23-Sep-1993 Added virtual ReloadColumnWidths
********************************************************************/
VOID ADMIN_COL_WIDTHS::CopyColumnWidths()
{
UINT * pdxWidth = QueryColumnWidth();
UIASSERT (pdxWidth != NULL);
_pdxHeaderWidth[0] = pdxWidth[0] + pdxWidth[1];
for (INT i=1; i<((INT)QueryCount()-1); i++)
{
_pdxHeaderWidth[i] = pdxWidth[i+1];
}
}
/*******************************************************************
NAME: ADMIN_COL_WIDTHS::ReloadColumnWidths
SYNOPSIS: Reloads column widths. Use this after changing fonts.
ENTRY: hmod - Hinstance.
idres - Resource id.
cColumns - Number of columns.
HISTORY:
JonN 23-Sep-1993 Added virtual ReloadColumnWidths
********************************************************************/
APIERR ADMIN_COL_WIDTHS::ReloadColumnWidths( HWND hWnd,
HINSTANCE hmod,
const IDRESOURCE & idres )
{
ASSERT( QueryError() == NERR_Success );
APIERR err = LB_COL_WIDTHS::ReloadColumnWidths( hWnd, hmod, idres );
if (err == NERR_Success)
{
CopyColumnWidths();
}
return err;
}
| [
"support@cryptoalgo.cf"
] | support@cryptoalgo.cf |
e668c7b0dbd6a788b936fc07d1158cec539f5bed | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/CMake/CMake-gumtree/Kitware_CMake_repos_basic_block_block_8291.cpp | 82e585f14a6fceedd0282c2f7279db5ebf31ab1a | [] | no_license | niuxu18/logTracker-old | 97543445ea7e414ed40bdc681239365d33418975 | f2b060f13a0295387fe02187543db124916eb446 | refs/heads/master | 2021-09-13T21:39:37.686481 | 2017-12-11T03:36:34 | 2017-12-11T03:36:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 97 | cpp | (current_ != end_) {
Char c = getNextChar();
if (c == '\r' || c == '\n')
break;
} | [
"993273596@qq.com"
] | 993273596@qq.com |
66adf82be8d8a6278a63af1dec29a458e35f9f76 | 13f5d35958639cabaeab272cbbe612b4ea891fea | /Sources/Core/matrix.cpp | 5f23dfe3edf77a892e80a46ae32c16db5be7638b | [] | no_license | RubisetCie/mario-constructor-master | f329f78d871959d09b76c8aefdae1c8199e68adc | 737c8c581f409cb2370038cfdad5b49ceeb67539 | refs/heads/master | 2021-07-18T15:13:33.507595 | 2020-08-10T17:06:26 | 2020-08-10T17:06:26 | 201,226,239 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,660 | cpp | /* Creator : Matthieu (Rubisetcie) Carteron
Language: C++
*/
#include "../../Headers/Core/matrix.hpp"
#ifdef DEBUGMODE
#include <iostream>
#endif
#include <vector>
using namespace std;
Matrix::Matrix(unsigned int startWidth, unsigned int startHeight, unsigned char value)
{
for (register unsigned int i = 0; i < startWidth; i++)
{
m_matrix.push_back(NULL);
m_matrix[i] = new vector<unsigned char>;
for (register unsigned int j = 0; j < startHeight; j++)
m_matrix[i]->emplace_back(value);
}
}
Matrix::~Matrix()
{
unsigned int size = m_matrix.size();
for (register unsigned int i = 0; i < size; i++)
{
m_matrix[i]->clear();
delete m_matrix[i];
}
m_matrix.clear();
}
void Matrix::resize(unsigned int width, unsigned int height, unsigned char value)
{
if (width < m_matrix.size())
{
for (register unsigned int i = m_matrix.size()-1; i >= width; i--)
{
m_matrix[i]->clear();
m_matrix.pop_back();
}
}
else if (width > m_matrix.size())
{
for (register unsigned int i = m_matrix.size(); i < width; i++)
{
unsigned int currentHeight = m_matrix[0]->size();
m_matrix.push_back(NULL);
m_matrix[i] = new vector<unsigned char>;
for (register unsigned int j = 0; j < currentHeight; j++)
m_matrix[i]->emplace_back(value);
}
}
if (height < m_matrix[0]->size())
{
for (register unsigned int i = 0; i < m_matrix.size(); i++)
{
for (register unsigned int j = m_matrix[i]->size()-1; j >= height; j--)
m_matrix[i]->pop_back();
}
}
else if (height > m_matrix[0]->size())
{
for (register unsigned int i = 0; i < m_matrix.size(); i++)
{
for (register unsigned int j = m_matrix[i]->size(); j < height; j++)
m_matrix[i]->emplace_back(value);
}
}
#ifdef DEBUGMODE
cout << "New Width : " << m_matrix.size() << endl;
cout << "New Height : " << m_matrix[0]->size() << endl;
cout << "First Value : " << static_cast<int>((*m_matrix[0])[0]) << endl;
cout << "Last Value : " << static_cast<int>((*m_matrix[m_matrix.size()-1])[m_matrix[0]->size()-1]) << endl;
#endif
}
void Matrix::setValue(unsigned int x, unsigned int y, unsigned char value)
{
(*m_matrix[x])[y] = value;
}
unsigned char Matrix::getValue(unsigned int x, unsigned int y)
{
return (*m_matrix[x])[y];
}
unsigned char* Matrix::getReference(unsigned int x, unsigned int y)
{
return &((*m_matrix[x])[y]);
}
| [
"rubisetcie@gmail.com"
] | rubisetcie@gmail.com |
ed5458c22b56c82005e734bcfbe922ccb6d554ca | ac8e27210d8ae1c79e7d0d9db1bcf4e31c737718 | /tools/lldb/scripts/interface/SBFunction.i | 3acb0057cc3c48a36c6f2463176c94168285fb14 | [
"NCSA",
"Apache-2.0",
"LLVM-exception"
] | permissive | steleman/flang9 | d583d619bfb67d27a995274e30c8c1a642696ec1 | 4ad7c213b30422e1e0fcb3ac826640d576977d04 | refs/heads/master | 2020-11-27T09:50:18.644313 | 2020-03-07T14:37:32 | 2020-03-07T14:37:32 | 229,387,867 | 0 | 0 | Apache-2.0 | 2019-12-21T06:35:35 | 2019-12-21T06:35:34 | null | UTF-8 | C++ | false | false | 4,859 | i | //===-- SWIG Interface for SBFunction ---------------------------*- C++ -*-===//
//
// 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
//
//===----------------------------------------------------------------------===//
namespace lldb {
%feature("docstring",
"Represents a generic function, which can be inlined or not.
For example (from test/lldbutil.py, but slightly modified for doc purpose),
...
frame = thread.GetFrameAtIndex(i)
addr = frame.GetPCAddress()
load_addr = addr.GetLoadAddress(target)
function = frame.GetFunction()
mod_name = frame.GetModule().GetFileSpec().GetFilename()
if not function:
# No debug info for 'function'.
symbol = frame.GetSymbol()
file_addr = addr.GetFileAddress()
start_addr = symbol.GetStartAddress().GetFileAddress()
symbol_name = symbol.GetName()
symbol_offset = file_addr - start_addr
print >> output, ' frame #{num}: {addr:#016x} {mod}`{symbol} + {offset}'.format(
num=i, addr=load_addr, mod=mod_name, symbol=symbol_name, offset=symbol_offset)
else:
# Debug info is available for 'function'.
func_name = frame.GetFunctionName()
file_name = frame.GetLineEntry().GetFileSpec().GetFilename()
line_num = frame.GetLineEntry().GetLine()
print >> output, ' frame #{num}: {addr:#016x} {mod}`{func} at {file}:{line} {args}'.format(
num=i, addr=load_addr, mod=mod_name,
func='%s [inlined]' % func_name] if frame.IsInlined() else func_name,
file=file_name, line=line_num, args=get_args_as_string(frame, showFuncName=False))
...") SBFunction;
class SBFunction
{
public:
SBFunction ();
SBFunction (const lldb::SBFunction &rhs);
~SBFunction ();
bool
IsValid () const;
explicit operator bool() const;
const char *
GetName() const;
const char *
GetDisplayName() const;
const char *
GetMangledName () const;
lldb::SBInstructionList
GetInstructions (lldb::SBTarget target);
lldb::SBInstructionList
GetInstructions (lldb::SBTarget target, const char *flavor);
lldb::SBAddress
GetStartAddress ();
lldb::SBAddress
GetEndAddress ();
const char *
GetArgumentName (uint32_t arg_idx);
uint32_t
GetPrologueByteSize ();
lldb::SBType
GetType ();
lldb::SBBlock
GetBlock ();
lldb::LanguageType
GetLanguage ();
%feature("docstring", "
Returns true if the function was compiled with optimization.
Optimization, in this case, is meant to indicate that the debugger
experience may be confusing for the user -- variables optimized away,
stepping jumping between source lines -- and the driver may want to
provide some guidance to the user about this.
Returns false if unoptimized, or unknown.") GetIsOptimized;
bool
GetIsOptimized();
bool
GetDescription (lldb::SBStream &description);
bool
operator == (const lldb::SBFunction &rhs) const;
bool
operator != (const lldb::SBFunction &rhs) const;
%pythoncode %{
def get_instructions_from_current_target (self):
return self.GetInstructions (target)
addr = property(GetStartAddress, None, doc='''A read only property that returns an lldb object that represents the start address (lldb.SBAddress) for this function.''')
end_addr = property(GetEndAddress, None, doc='''A read only property that returns an lldb object that represents the end address (lldb.SBAddress) for this function.''')
block = property(GetBlock, None, doc='''A read only property that returns an lldb object that represents the top level lexical block (lldb.SBBlock) for this function.''')
instructions = property(get_instructions_from_current_target, None, doc='''A read only property that returns an lldb object that represents the instructions (lldb.SBInstructionList) for this function.''')
mangled = property(GetMangledName, None, doc='''A read only property that returns the mangled (linkage) name for this function as a string.''')
name = property(GetName, None, doc='''A read only property that returns the name for this function as a string.''')
prologue_size = property(GetPrologueByteSize, None, doc='''A read only property that returns the size in bytes of the prologue instructions as an unsigned integer.''')
type = property(GetType, None, doc='''A read only property that returns an lldb object that represents the return type (lldb.SBType) for this function.''')
%}
};
} // namespace lldb
| [
"stefan.teleman@cavium.com"
] | stefan.teleman@cavium.com |
05a36c78ec8d2af05a3dae76a3982ecbbddd85e2 | 112793ff22802e70fca638637cf09462fce2f636 | /TDA Multidictionar/MD.h | 7408fba33a6608ad38d8eefd51e85871b2a51439 | [] | no_license | Lorena-Arc/SDA | 2daf868412c3014caab6d7c221b674f6f7b96475 | ccd912a0f8b28c871e3e11c822fd10d081c646fe | refs/heads/main | 2023-07-09T12:43:55.402565 | 2021-08-11T15:06:24 | 2021-08-11T15:06:24 | 395,027,235 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,309 | h | #pragma once
#include<vector>
#include<utility>
#define MAX 23
using namespace std;
typedef int TCheie;
typedef int TValoare;
typedef std::pair<TCheie, TValoare> TElem;
class IteratorMD;
class Nod;
typedef Nod* PNod;
class Nod {
private:
TElem e;
PNod urm;
public:
friend class MD;
friend class IteratorMd;
Nod(TElem e, PNod urm) : e{ e }, urm{ urm }{};
TElem element();
PNod urmator();
};
class MD
{
friend class IteratorMD;
private:
/* aici e reprezentarea */
int m;
int dimensiune;
PNod lista[MAX]; //listele independente
int dispersie(TCheie c) const;
public:
// constructorul implicit al MultiDictionarului
MD();
// adauga o pereche (cheie, valoare) in MD
void adauga(TCheie c, TValoare v);
//cauta o cheie si returneaza vectorul de valori asociate
vector<TValoare> cauta(TCheie c) const;
//sterge o cheie si o valoare
//returneaza adevarat daca s-a gasit cheia si valoarea de sters
bool sterge(TCheie c, TValoare v);
//returneaza numarul de perechi (cheie, valoare) din MD
int dim() const;
//verifica daca MultiDictionarul e vid
bool vid() const;
// se returneaza iterator pe MD
IteratorMD iterator() const;
// destructorul MultiDictionarului
~MD();
void goleste();
};
| [
"noreply@github.com"
] | noreply@github.com |
7be328493acf2d39dd3fa853ca10e789fc260ddc | b9432d03b21d6e72e34d4697b58c240210d2d4a0 | /service_apis/youtube/google/youtube_api/sponsor.h | e6ce0f7d830649d0c49b5a2373412bb371ee417f | [
"Apache-2.0"
] | permissive | harshapat/google-api-cpp-client | f5edbf7674459c30e894430cda199d4a3b9788fb | 7fb12b4bbb9db27fffede054149cf77c8e1c307f | refs/heads/master | 2021-01-19T13:19:36.475387 | 2017-02-18T12:25:02 | 2017-02-18T12:25:02 | 82,384,775 | 0 | 0 | null | 2017-02-18T12:21:54 | 2017-02-18T12:21:54 | null | UTF-8 | C++ | false | false | 5,911 | h | // Copyright 2010 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.
// This code was generated by google-apis-code-generator 1.5.1
// C++ generator version: 0.1.3
// ----------------------------------------------------------------------------
// NOTE: This file is generated from Google APIs Discovery Service.
// Service:
// YouTube Data API (youtube/v3)
// Generated from:
// Version: v3
// Generated by:
// Tool: google-apis-code-generator 1.5.1
// C++: 0.1.3
#ifndef GOOGLE_YOUTUBE_API_SPONSOR_H_
#define GOOGLE_YOUTUBE_API_SPONSOR_H_
#include <string>
#include "googleapis/base/macros.h"
#include "googleapis/client/data/jsoncpp_data.h"
#include "googleapis/strings/stringpiece.h"
#include "google/youtube_api/sponsor_snippet.h"
namespace Json {
class Value;
} // namespace Json
namespace google_youtube_api {
using namespace googleapis;
/**
* A sponsor resource represents a sponsor for a YouTube channel. A sponsor
* provides recurring monetary support to a creator and receives special
* benefits.
*
* @ingroup DataObject
*/
class Sponsor : public client::JsonCppData {
public:
/**
* Creates a new default instance.
*
* @return Ownership is passed back to the caller.
*/
static Sponsor* New();
/**
* Standard constructor for an immutable data object instance.
*
* @param[in] storage The underlying data storage for this instance.
*/
explicit Sponsor(const Json::Value& storage);
/**
* Standard constructor for a mutable data object instance.
*
* @param[in] storage The underlying data storage for this instance.
*/
explicit Sponsor(Json::Value* storage);
/**
* Standard destructor.
*/
virtual ~Sponsor();
/**
* Returns a string denoting the type of this data object.
*
* @return <code>google_youtube_api::Sponsor</code>
*/
const StringPiece GetTypeName() const {
return StringPiece("google_youtube_api::Sponsor");
}
/**
* Determine if the '<code>etag</code>' attribute was set.
*
* @return true if the '<code>etag</code>' attribute was set.
*/
bool has_etag() const {
return Storage().isMember("etag");
}
/**
* Clears the '<code>etag</code>' attribute.
*/
void clear_etag() {
MutableStorage()->removeMember("etag");
}
/**
* Get the value of the '<code>etag</code>' attribute.
*/
const StringPiece get_etag() const {
const Json::Value& v = Storage("etag");
if (v == Json::Value::null) return StringPiece("");
return StringPiece(v.asCString());
}
/**
* Change the '<code>etag</code>' attribute.
*
* Etag of this resource.
*
* @param[in] value The new value.
*/
void set_etag(const StringPiece& value) {
*MutableStorage("etag") = value.data();
}
/**
* Determine if the '<code>id</code>' attribute was set.
*
* @return true if the '<code>id</code>' attribute was set.
*/
bool has_id() const {
return Storage().isMember("id");
}
/**
* Clears the '<code>id</code>' attribute.
*/
void clear_id() {
MutableStorage()->removeMember("id");
}
/**
* Get the value of the '<code>id</code>' attribute.
*/
const StringPiece get_id() const {
const Json::Value& v = Storage("id");
if (v == Json::Value::null) return StringPiece("");
return StringPiece(v.asCString());
}
/**
* Change the '<code>id</code>' attribute.
*
* The ID that YouTube assigns to uniquely identify the sponsor.
*
* @param[in] value The new value.
*/
void set_id(const StringPiece& value) {
*MutableStorage("id") = value.data();
}
/**
* Determine if the '<code>kind</code>' attribute was set.
*
* @return true if the '<code>kind</code>' attribute was set.
*/
bool has_kind() const {
return Storage().isMember("kind");
}
/**
* Clears the '<code>kind</code>' attribute.
*/
void clear_kind() {
MutableStorage()->removeMember("kind");
}
/**
* Get the value of the '<code>kind</code>' attribute.
*/
const StringPiece get_kind() const {
const Json::Value& v = Storage("kind");
if (v == Json::Value::null) return StringPiece("");
return StringPiece(v.asCString());
}
/**
* Change the '<code>kind</code>' attribute.
*
* Identifies what kind of resource this is. Value: the fixed string
* "youtube#sponsor".
*
* @param[in] value The new value.
*/
void set_kind(const StringPiece& value) {
*MutableStorage("kind") = value.data();
}
/**
* Determine if the '<code>snippet</code>' attribute was set.
*
* @return true if the '<code>snippet</code>' attribute was set.
*/
bool has_snippet() const {
return Storage().isMember("snippet");
}
/**
* Clears the '<code>snippet</code>' attribute.
*/
void clear_snippet() {
MutableStorage()->removeMember("snippet");
}
/**
* Get a reference to the value of the '<code>snippet</code>' attribute.
*/
const SponsorSnippet get_snippet() const;
/**
* Gets a reference to a mutable value of the '<code>snippet</code>' property.
*
* The snippet object contains basic details about the sponsor.
*
* @return The result can be modified to change the attribute value.
*/
SponsorSnippet mutable_snippet();
private:
void operator=(const Sponsor&);
}; // Sponsor
} // namespace google_youtube_api
#endif // GOOGLE_YOUTUBE_API_SPONSOR_H_
| [
"aiuto@google.com"
] | aiuto@google.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.