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
6713f930e7f8382cf226b80e8a184c0348c93be6
7d73cf652a375a363884bdff5a4b206a16bec0a9
/src/qt/kevanewnamespacedialog.cpp
7a54df96873203f574da2c97451f37cafd591c51
[ "MIT" ]
permissive
kevacoin-project/kevacoin
44e08bd6220c28ce3ef88ee08aac3980ea662415
603a38a9742e5a1d06912be012e070794246b377
refs/heads/master
2022-04-29T06:30:45.305827
2022-03-20T01:25:28
2022-03-20T01:25:28
161,680,230
35
13
MIT
2020-04-13T05:30:12
2018-12-13T18:37:54
C++
UTF-8
C++
false
false
1,659
cpp
// Copyright (c) 2011-2017 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <qt/kevanewnamespacedialog.h> #include <qt/forms/ui_kevanewnamespacedialog.h> #include <qt/kevatablemodel.h> #include <qt/kevadialog.h> #include <QPushButton> #include <QModelIndex> KevaNewNamespaceDialog::KevaNewNamespaceDialog(QWidget *parent) : QDialog(parent), ui(new Ui::KevaNewNamespaceDialog) { ui->setupUi(this); connect(ui->buttonBox->button(QDialogButtonBox::Cancel), SIGNAL(clicked()), this, SLOT(close())); connect(ui->buttonBox->button(QDialogButtonBox::Save), SIGNAL(clicked()), this, SLOT(create())); connect(ui->namespaceText, SIGNAL(textChanged(const QString &)), this, SLOT(onNamespaceChanged(const QString &))); ui->buttonBox->button(QDialogButtonBox::Save)->setEnabled(false); } void KevaNewNamespaceDialog::onNamespaceChanged(const QString & ns) { int length = ns.length(); bool enabled = length > 0; ui->buttonBox->button(QDialogButtonBox::Save)->setEnabled(enabled); } void KevaNewNamespaceDialog::create() { KevaDialog* dialog = (KevaDialog*)this->parentWidget(); QString nsText = ui->namespaceText->text(); std::string namespaceId; if (!dialog->createNamespace(nsText.toStdString(), namespaceId)) { QDialog::close(); return; } dialog->showNamespace(QString::fromStdString(namespaceId)); QDialog::close(); } void KevaNewNamespaceDialog::close() { QDialog::close(); } KevaNewNamespaceDialog::~KevaNewNamespaceDialog() { delete ui; }
[ "jianpingw@gmail.com" ]
jianpingw@gmail.com
2e39bbb16b7c95b0fdc837fd3b6683d15358db57
3efc50ba20499cc9948473ee9ed2ccfce257d79a
/data/crypto-competitions/files/MultiBase.cpp
fabf3a4e1ee3946345c4ce501ebda67f3425651d
[]
no_license
arthurherbout/crypto_code_detection
7e10ed03238278690d2d9acaa90fab73e52bab86
3c9ff8a4b2e4d341a069956a6259bf9f731adfc0
refs/heads/master
2020-07-29T15:34:31.380731
2019-12-20T13:52:39
2019-12-20T13:52:39
209,857,592
9
4
null
2019-12-20T13:52:42
2019-09-20T18:35:35
C
UTF-8
C++
false
false
7,221
cpp
/////////////////////////////////////////////// // // ************************** // ** ENGLISH - 10/Jul/2017 ** // // Project: libObfuscate v2.00 // // This software is released under: // * LGPL 3.0: "www.gnu.org/licenses/lgpl.html" // // You're free to copy, distribute and make commercial use // of this software under the following conditions: // * You cite the author and copyright owner: "www.embeddedsw.net" // * You provide a link to the Homepage: "www.embeddedsw.net/libobfuscate.html" // /////////////////////////////////////////////// #include "stdafx.h" #include "CommonDef.h" #include "Anubis.h" #include "Camellia.h" #include "Cast256.h" #include "Clefia.h" #include "Frog.h" #include "Hierocrypt3.h" #include "Idea_nxt128.h" #include "Mars.h" #include "Rc6.h" #include "Rijndael.h" #include "Saferp.h" #include "Sc2000.h" #include "Serpent.h" #include "Sha512.h" #include "Speed.h" #include "Twofish.h" #include "Unicorn-A.h" #include "MultiBase_data.h" void Multi_single_setkey(MULTI_STATIC_DATA *pMsd,const ENUM_ALG curAlg,const BYTE *passw) { switch(curAlg) { case ANUBIS_ALG: memset(&pMsd->anubis,0,sizeof(ANUBIS_STATIC_DATA)); Anubis_set_key(&pMsd->anubis.key,passw); break; case CAMELLIA_ALG: memset(&pMsd->camellia,0,sizeof(CAMELLIA_STATIC_DATA)); Camellia_set_key(pMsd->camellia.key,MAX_PASSW_SIZE<<3,passw); break; case CAST256_ALG: memset(&pMsd->cast256,0,sizeof(CAST256_STATIC_DATA)); Cast256_set_key(pMsd->cast256.key,(DWORD *) passw,MAX_PASSW_SIZE<<3); break; case CLEFIA_ALG: memset(&pMsd->clefia,0,sizeof(CLEFIA_STATIC_DATA)); Clefia_set_key(&pMsd->clefia.key,passw,MAX_PASSW_SIZE<<3); break; case FROG_ALG: memset(&pMsd->frog,0,sizeof(FROG_STATIC_DATA)); Frog_set_key(&pMsd->frog.key,(DWORD *) passw,MAX_PASSW_SIZE<<3); break; case HIEROCRYPT3_ALG: memset(&pMsd->hc3,0,sizeof(HIEROCRYPT3_STATIC_DATA)); Hierocrypt3_set_key(&pMsd->hc3.key,passw); break; case IDEANXT128_ALG: memset(&pMsd->ideanxt128,0,sizeof(IDEANXT128_STATIC_DATA)); Ideanxt128_set_key(&pMsd->ideanxt128.key,passw,MAX_PASSW_SIZE<<3); break; case MARS_ALG: memset(&pMsd->mars,0,sizeof(MARS_STATIC_DATA)); pMsd->mars.vk[0]=0x09d0c479; pMsd->mars.vk[1]=0x28c8ffe0; pMsd->mars.vk[2]=0x84aa6c39; pMsd->mars.vk[3]=0x9dad7287; pMsd->mars.vk[4]=0x7dff9be3; pMsd->mars.vk[5]=0xd4268361; pMsd->mars.vk[6]=0xc96da1d4; Mars_set_key(pMsd->mars.key,pMsd->mars.vk,(DWORD *) passw,MAX_PASSW_SIZE<<3); break; case RC6_ALG: memset(&pMsd->rc6,0,sizeof(RC6_STATIC_DATA)); Rc6_set_key(pMsd->rc6.key,(DWORD *) passw,MAX_PASSW_SIZE<<3); break; case RIJNDAEL_ALG: memset(&pMsd->rijndael_enc,0,sizeof(RIJNDAEL_STATIC_DATA)); memset(&pMsd->rijndael_dec,0,sizeof(RIJNDAEL_STATIC_DATA)); pMsd->rijndael_enc.nrounds=Rijndael_set_key_encrypt(pMsd->rijndael_enc.key,passw,MAX_PASSW_SIZE<<3); pMsd->rijndael_dec.nrounds=Rijndael_set_key_decrypt(pMsd->rijndael_dec.key,passw,MAX_PASSW_SIZE<<3); break; case SAFERP_ALG: memset(&pMsd->saferp,0,sizeof(SAFERP_STATIC_DATA)); Saferp_set_key(&pMsd->saferp.key,(DWORD *) passw,MAX_PASSW_SIZE<<3); break; case SC2000_ALG: memset(&pMsd->sc2000,0,sizeof(SC2000_STATIC_DATA)); Sc2000_set_key(pMsd->sc2000.key,(DWORD *) passw); break; case SERPENT_ALG: memset(&pMsd->serpent,0,sizeof(SERPENT_STATIC_DATA)); Serpent_set_key(pMsd->serpent.key,(DWORD *) passw,MAX_PASSW_SIZE<<3); break; case SPEED_ALG: memset(&pMsd->speed,0,sizeof(SPEED_STATIC_DATA)); Speed_set_key(pMsd->speed.key,passw); break; case TWOFISH_ALG: memset(&pMsd->twofish,0,sizeof(TWOFISH_STATIC_DATA)); Twofish_set_key(&pMsd->twofish.key,(DWORD *) passw,MAX_PASSW_SIZE<<3); break; case UNICORNA_ALG: memset(&pMsd->unicorn,0,sizeof(UNICORNA_STATIC_DATA)); Unicorn_set_key(pMsd->unicorn.key,passw); break; } } void Multi_ECB_single_encrypt(const MULTI_STATIC_DATA *pMsd,const ENUM_ALG curAlg,const BYTE *inBuf,BYTE *outBuf) { switch(curAlg) { case ANUBIS_ALG: Anubis_encrypt(&pMsd->anubis.key,inBuf,outBuf); break; case CAMELLIA_ALG: Camellia_encrypt(pMsd->camellia.key,MAX_PASSW_SIZE<<3,inBuf,outBuf); break; case CAST256_ALG: Cast256_encrypt(pMsd->cast256.key,(DWORD *) inBuf,(DWORD *) outBuf); break; case CLEFIA_ALG: Clefia_encrypt(&pMsd->clefia.key,inBuf,outBuf); break; case FROG_ALG: Frog_encrypt(&pMsd->frog.key,(DWORD *) inBuf,(DWORD *) outBuf); break; case HIEROCRYPT3_ALG: Hierocrypt3_encrypt(&pMsd->hc3.key,inBuf,outBuf); break; case IDEANXT128_ALG: Ideanxt128_encrypt(&pMsd->ideanxt128.key,inBuf,outBuf); break; case MARS_ALG: Mars_encrypt(pMsd->mars.key,(DWORD *) inBuf,(DWORD *) outBuf); break; case RC6_ALG: Rc6_encrypt(pMsd->rc6.key,(DWORD *) inBuf,(DWORD *) outBuf); break; case RIJNDAEL_ALG: Rijndael_encrypt(pMsd->rijndael_enc.key,pMsd->rijndael_enc.nrounds,inBuf,outBuf); break; case SAFERP_ALG: Saferp_encrypt(&pMsd->saferp.key,(DWORD *) inBuf,(DWORD *) outBuf); break; case SC2000_ALG: Sc2000_encrypt(pMsd->sc2000.key,(DWORD *) inBuf,(DWORD *) outBuf); break; case SERPENT_ALG: Serpent_encrypt(pMsd->serpent.key,(DWORD *) inBuf,(DWORD *) outBuf); break; case SPEED_ALG: Speed_encrypt(pMsd->speed.key,inBuf,outBuf); break; case TWOFISH_ALG: Twofish_encrypt(&pMsd->twofish.key,(DWORD *) inBuf,(DWORD *) outBuf); break; case UNICORNA_ALG: Unicorn_encrypt(pMsd->unicorn.key,inBuf,outBuf); break; } } void Multi_ECB_single_decrypt(const MULTI_STATIC_DATA *pMsd,const ENUM_ALG curAlg,const BYTE *inBuf,BYTE *outBuf) { switch(curAlg) { case ANUBIS_ALG: Anubis_decrypt(&pMsd->anubis.key,inBuf,outBuf); break; case CAMELLIA_ALG: Camellia_decrypt(pMsd->camellia.key,MAX_PASSW_SIZE<<3,inBuf,outBuf); break; case CAST256_ALG: Cast256_decrypt(pMsd->cast256.key,(DWORD *) inBuf,(DWORD *) outBuf); break; case CLEFIA_ALG: Clefia_decrypt(&pMsd->clefia.key,inBuf,outBuf); break; case FROG_ALG: Frog_decrypt(&pMsd->frog.key,(DWORD *) inBuf,(DWORD *) outBuf); break; case HIEROCRYPT3_ALG: Hierocrypt3_decrypt(&pMsd->hc3.key,inBuf,outBuf); break; case IDEANXT128_ALG: Ideanxt128_decrypt(&pMsd->ideanxt128.key,inBuf,outBuf); break; case MARS_ALG: Mars_decrypt(pMsd->mars.key,(DWORD *) inBuf,(DWORD *) outBuf); break; case RC6_ALG: Rc6_decrypt(pMsd->rc6.key,(DWORD *) inBuf,(DWORD *) outBuf); break; case RIJNDAEL_ALG: Rijndael_decrypt(pMsd->rijndael_dec.key,pMsd->rijndael_dec.nrounds,inBuf,outBuf); break; case SAFERP_ALG: Saferp_decrypt(&pMsd->saferp.key,(DWORD *) inBuf,(DWORD *) outBuf); break; case SC2000_ALG: Sc2000_decrypt(pMsd->sc2000.key,(DWORD *) inBuf,(DWORD *) outBuf); break; case SERPENT_ALG: Serpent_decrypt(pMsd->serpent.key,(DWORD *) inBuf,(DWORD *) outBuf); break; case SPEED_ALG: Speed_decrypt(pMsd->speed.key,inBuf,outBuf); break; case TWOFISH_ALG: Twofish_decrypt(&pMsd->twofish.key,(DWORD *) inBuf,(DWORD *) outBuf); break; case UNICORNA_ALG: Unicorn_decrypt(pMsd->unicorn.key,inBuf,outBuf); break; } }
[ "noreply@github.com" ]
noreply@github.com
20fca3d1c42c11fd9b836b51a9f85258f0c8fe9b
fbe826bd69cf531b9b54be2e633de3d46c690b82
/BestFS.h
725ca81f4d40a67c74f9e281bf9fa6744b8cd74f
[]
no_license
4yonatan4/Problem-Solver
0359d151f7f1287e5a5dca55f743ce9818eb238c
de04a7e2580e50c44e4bdbf916a7e3ef1e4fb041
refs/heads/master
2023-03-04T07:43:11.405506
2021-02-18T09:54:31
2021-02-18T09:54:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,693
h
// // Created by yonatan on 21/01/2020. // #ifndef EX4_BESTFS_H #define EX4_BESTFS_H #include "State.h" #include "AbstractSearcher.h" #include "PriorityQueue.h" #include <functional> #include <queue> #include <vector> #include <iostream> #include <set> template<class T> class BestFS : public AbstractSearcher<T> { private: PriorityQueue<T> *open; set<State<T>*> *closed; int numOfNodesEvaluated = 0; public: BestFS<T>() { open = new PriorityQueue<T>(&this->numOfNodesEvaluated); closed = new set<State<T>*>(); } virtual Solution<T>* search(Searchable<T> *searchable); Solution<T>* backTrace(State<T> *goalState, State<T> *initState); string checkDirection(State<Point*> *s1, State<Point*> *cameFrom1) { Point* s = s1->state; Point* cameFrom = cameFrom1->state; // x values equals if (s->getX() == cameFrom->getX()) { // Left if (s->getY() < cameFrom->getY()) { return "Left"; } else { // Right return "Right"; } } // y values equals if (s->getY() == cameFrom->getY()) { // Down if (s->getX() < cameFrom->getX()) { return "Up"; } else { // Up return "Down"; } } return "undefined move"; } }; template<class T> Solution<T>* BestFS<T>::search(Searchable<T> *searchable) { open->push(searchable->getInitialState()); // while open queue isn't empty while (!open->empty()) { State<T>* n = open->top(); open->pop(); closed->insert(n); // if (searchable->isGoalState(n)) { // backtrace, return the solution - path, according to the output text that we get Solution<T> *solution = backTrace(n, searchable->getInitialState()); solution->setnumOfNodesEvaluated(this->numOfNodesEvaluated); return solution; } vector<State<T>*> *successors = searchable->getAllPossibleStates(n); int size = successors->size(); for (int i = 0; i < size; ++i) { State<T> *s = successors->at(i); // if s is not in OPEN and not in CLOSED if (!(open->contain(s)) && (closed->find(s) == closed->end())) { s->cameFrom = n; s->cost += n->getCost(); open->push(s); } // s in the open queue // relax else if (n->getCost() + s->value < s->cost) { s->cost = n->getCost() + s->value; s->cameFrom = n; // update key open->updateKey(s); } } } } template<class T> Solution<T>* BestFS<T>::backTrace(State<T> *goalState, State<T> *initState) { // create empty Solution - vector of states auto *solution = new Solution<Point*>(); // start from the goal, and check his cameFrom State<T> *s = goalState; // go back until the beginning // calculate for every node is next Move // insert to the solution from the end to beginning while (!(s->equals(initState))) { // insert the state to the beginning of the vector solution->getVectorOfStates()->insert(solution->getVectorOfStates()->begin(), s); // calculate for every node is next Move string direction = checkDirection(s, s->cameFrom); s->cameFrom->nextMove = direction; // go back in the trace s = s->cameFrom; } solution->getVectorOfStates()->insert(solution->getVectorOfStates()->begin(), s); return solution; } #endif //EX4_BESTFS_H
[ "4yonatan4@gmail.com" ]
4yonatan4@gmail.com
6d19e0f998901691e04e9b373e2aa595dc233fd1
33346bb87eb4cd0dee35b8110d0df3f30fc60d4c
/model.h
10d7599849aebce602f3ccf8a6bdfe40613d3581
[]
no_license
Starvotoitov/3DModel
062ccfcaaddacc3eba69df2a1b0959771d212214
220eecf40d087abed2ca5bb8d82be6cb8468af6f
refs/heads/master
2023-02-23T17:54:28.641811
2020-11-05T12:39:59
2020-11-05T12:39:59
304,577,464
0
0
null
null
null
null
UTF-8
C++
false
false
2,167
h
#ifndef MODEL_H #define MODEL_H #include "vertex.h" #include "texturecoordinates.h" #include "vertexnormal.h" #include "polygonalface.h" #include "camera.h" #include "modelparameters.h" #include <vector> #include <memory> class Model { public: Model(); Model(QString name); void addVertex(const Vertex &newVertex); void addVertex(Vertex &&newVertex); void addTextureCoordinates(const TextureCoordinates &newCoordinates); void addTextureCoordinates(TextureCoordinates &&newCoordinates); void addVertexNormal(const VertexNormal &newVertexNormal); void addVertexNormal(VertexNormal &&newVertexNormal); void addPolygonalFace(const PolygonalFace &newFace); void addPolygonalFace(PolygonalFace &&newFace); Model& translate(float x, float y, float z); Model& rotateX(float angle); Model& rotateY(float angle); Model& rotateZ(float angle); Model& scale(float x, float y, float z); void resetModelMatrix(); Model& setCamera(const std::shared_ptr<const Camera> camera); void resetViewMatrix(); Model& setOrthographicProjectionMatrix(const Camera& camera); Model& setPerspectiveProjectionMatrix(const Camera& camera); void resetProjectionMatrix(); Model& setViewportMatrix(float x, float y, float width, float height); void resetViewportMatrix(); void translateCoordinates(); void reset(); std::vector<Vertex> getVertexes() const; std::vector<PolygonalFace> getPolygons() const; std::shared_ptr<const ModelParameters> getParameters() const; private: std::shared_ptr<const Camera> camera; std::vector<Vertex> originalVertexList; std::vector<TextureCoordinates> textureCoordinatesList; std::vector<VertexNormal> vertexNormalList; std::vector<PolygonalFace> polygonalFaceList; std::vector<Vertex> transformedVertexList; QMatrix4x4 translateMatrix; QMatrix4x4 rotateXMatrix; QMatrix4x4 rotateYMatrix; QMatrix4x4 rotateZMatrix; QMatrix4x4 scaleMatrix; QMatrix4x4 normalizeViewMatrix; QMatrix4x4 viewMatrix; QMatrix4x4 projectionMatrix; QMatrix4x4 viewportMatrix; bool isPerspective; std::shared_ptr<ModelParameters> parameters; float curWidth; float curHeight; void updateNormalizeViewMatrix(); }; #endif // MODEL_H
[ "vitalii.starovoitov@mail.ru" ]
vitalii.starovoitov@mail.ru
66e03dc8af8300c0350a0450d467049ad7cdce41
c8fa202c120e1e4ab9740d4b9355d646c8b32144
/RaptorStackedHorizDrawable.h
cd6d88468837f50bcc4c7259add458215e66e882
[]
no_license
Roman-Port/EagleSDR
2ebe31a1c0f2ae654e0ada375a7bf2bfc0e0c6bb
8568272b3686b2b6013226dc7e1867a6df1ec0e6
refs/heads/master
2023-07-10T14:50:24.621738
2021-08-08T22:06:17
2021-08-08T22:06:17
394,103,551
1
1
null
null
null
null
UTF-8
C++
false
false
490
h
#pragma once #include "RaptorStackedDrawable.h" class RaptorStackedHorizDrawable : public RaptorStackedDrawable { // Inherited via RaptorStackedDrawable virtual int get_requested_height() override; virtual int get_requested_width() override; virtual int stacked_container_size() override; virtual void stacked_query(RaptorDrawable* drawable, int* requestedSize, bool* resizeAllowed) override; virtual void stacked_apply(RaptorDrawable* drawable, int size, int offset) override; };
[ "rvporterfield@gmail.com" ]
rvporterfield@gmail.com
3ca7c4337668a328ef2edab3d7bac4a7c5e5998f
7d79c5492bb44872622b11abbbb6e955f29516c0
/Code/Client/ClientUI/Source/TeamDlg.cpp
6d1a11321885e0660dd1ad55654f89cdaa30c8bd
[ "MIT" ]
permissive
asdlei99/TinyIM
7ffe5c7d0314118c12e0e8c8495d304393d5d1bd
48c0328cc114bc5f05a5a687d56f1513cdb630b8
refs/heads/master
2021-01-02T14:55:42.932510
2020-02-10T04:07:41
2020-02-10T04:07:41
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,449
cpp
/** * @file TeamDlg.cpp * @author DennisMi (https://www.dennisthink.com/) * @brief 好友分组对话框 * @version 0.1 * @date 2019-08-04 * * @copyright Copyright (c) 2019 * */ #include "stdafx.h" #include "TeamDlg.h" //#include "FlamingoClient.h" #include "UIText.h" #include "Proto.h" #include "EncodingUtil.h" CTeamDlg::CTeamDlg() { //m_pFMGClient = NULL; m_nOperationType = TEAM_OPERATION_ADD_TEAM; m_nTeamIndex = -1; } CTeamDlg::~CTeamDlg() { } /** * @brief 设置分组操作类型 * * @param nType */ void CTeamDlg::SetType(TEAM_OPERATION_TYPE nType) { m_nOperationType = nType; } /** * @brief 响应初始化对话框 * * @param wndFocus * @param lInitParam * @return BOOL */ BOOL CTeamDlg::OnInitDialog(CWindow wndFocus, LPARAM lInitParam) { InitUI(); CenterWindow(::GetDesktopWindow()); return TRUE; } /** * @brief 初始化UI * * @return BOOL */ BOOL CTeamDlg::InitUI() { m_SkinDlg.SetBgPic(_T("DlgBg\\AddFriendDlgBg.png")); m_SkinDlg.SetCloseSysBtnPic(_T("SysBtn\\btn_close_normal.png"), _T("SysBtn\\btn_close_highlight.png"), _T("SysBtn\\btn_close_down.png")); m_SkinDlg.SubclassWindow(m_hWnd); if(m_nOperationType == TEAM_OPERATION_ADD_TEAM) { m_SkinDlg.SetTitleText(_T("新建分组")); } else if(m_nOperationType == TEAM_OPERATION_MODIFY_TEAM_NAME) { m_SkinDlg.SetTitleText(_T("修改分组名称")); } m_SkinDlg.MoveWindow(0, 0, 250, 135, TRUE); HDC hDlgBgDC = m_SkinDlg.GetBgDC(); m_staTeamName.SetTransparent(TRUE, hDlgBgDC); m_staTeamName.SubclassWindow(GetDlgItem(IDC_STATIC_TEAM_NAME)); if(m_nOperationType == TEAM_OPERATION_ADD_TEAM) { m_staTeamName.SetWindowText(_T("新分组名称")); } else if(m_nOperationType == TEAM_OPERATION_MODIFY_TEAM_NAME) { m_SkinDlg.SetTitleText(_T("分组新名称")); } m_edtTeamName.SetBgNormalPic(_T("frameBorderEffect_normalDraw.png"), CRect(2,2,2,2)); m_edtTeamName.SetBgHotPic(_T("frameBorderEffect_mouseDownDraw.png"), CRect(2,2,2,2)); m_edtTeamName.SetTransparent(TRUE, hDlgBgDC); m_edtTeamName.SubclassWindow(GetDlgItem(IDC_EDIT_TEAM_NAME)); if(m_nOperationType == TEAM_OPERATION_MODIFY_TEAM_NAME) { /*C_UI_BuddyTeamInfo* pBuddyTeamInfo = m_pFMGClient->m_UserMgr.m_BuddyList.GetBuddyTeamByIndex(m_nTeamIndex); if(pBuddyTeamInfo != NULL) { m_edtTeamName.SetWindowText(pBuddyTeamInfo->m_strName.c_str()); m_edtTeamName.SetSel(0, pBuddyTeamInfo->m_strName.length()-1); }*/ } m_btnOK.SetButtonType(SKIN_PUSH_BUTTON); m_btnOK.SetTransparent(TRUE, hDlgBgDC); m_btnOK.SetBgPic(_T("Button\\btn_normal.png"), _T("Button\\btn_focus.png"),_T("Button\\btn_focus.png"), _T("Button\\btn_focus.png")); m_btnOK.SetRound(4, 4); m_btnOK.SubclassWindow(GetDlgItem(IDOK)); m_btnCancel.SetButtonType(SKIN_PUSH_BUTTON); m_btnCancel.SetTransparent(TRUE, hDlgBgDC); m_btnCancel.SetBgPic(_T("Button\\btn_normal.png"), _T("Button\\btn_focus.png"),_T("Button\\btn_focus.png"), _T("Button\\btn_focus.png")); m_btnCancel.SetRound(4, 4); m_btnCancel.SubclassWindow(GetDlgItem(IDCANCEL)); return TRUE; } /** * @brief 反初始化UI * */ void CTeamDlg::UninitUI() { if(m_staTeamName.IsWindow()) m_staTeamName.DestroyWindow(); if(m_edtTeamName.IsWindow()) m_edtTeamName.DestroyWindow(); if(m_btnOK.IsWindow()) m_btnOK.DestroyWindow(); if(m_btnCancel.IsWindow()) m_btnCancel.DestroyWindow(); } /** * @brief 关闭对话框 * */ void CTeamDlg::OnClose() { EndDialog(IDCANCEL); } /** * @brief 销毁对话框 * */ void CTeamDlg::OnDestroy() { UninitUI(); } /** * @brief 响应OK按钮 * * @param uNotifyCode * @param nID * @param wndCtl */ void CTeamDlg::OnOK(UINT uNotifyCode, int nID, CWindow wndCtl) { CString strTeamName; m_edtTeamName.GetWindowText(strTeamName); strTeamName.Trim(); if (strTeamName == DEFAULT_TEAMNAME) { ::MessageBox(m_hWnd, _T("[My Friends]是默认分组,不能修改。"), g_strAppTitle.c_str(), MB_OK | MB_ICONINFORMATION); return; } if(strTeamName.IsEmpty()) { ::MessageBox(m_hWnd, _T("分组名不能为空。"), g_strAppTitle.c_str(), MB_OK|MB_ICONINFORMATION); return; } else if(strTeamName.GetLength() >= 16) { ::MessageBox(m_hWnd, _T("分组名不能超过15个字符。"), g_strAppTitle.c_str(), MB_OK|MB_ICONINFORMATION); return; } if(m_netProto && m_netProto->m_BuddyList.IsTeamNameExist(strTeamName)) { ::MessageBox(m_hWnd, _T("分组名已经存在!"), g_strAppTitle.c_str(), MB_OK|MB_ICONINFORMATION); return; } //添加分组 if(m_nOperationType == TEAM_OPERATION_ADD_TEAM) { { auto pProto = CMsgProto::GetInstance(); std::string strNewTeamName = EncodeUtil::UnicodeToUtf8(strTeamName.GetBuffer()); strTeamName.ReleaseBuffer(); pProto->SendAddTeamReq(strNewTeamName); } //m_pFMGClient->AddNewTeam(strTeamName); } else if(m_nOperationType == TEAM_OPERATION_MODIFY_TEAM_NAME) { if(m_nTeamIndex >= 0) { C_UI_BuddyTeamInfo* pTeamInfo = NULL;// m_pFMGClient->m_UserMgr.m_BuddyList.GetBuddyTeamByIndex(m_nTeamIndex); if(pTeamInfo != NULL) { // m_pFMGClient->ModifyTeamName(strTeamName, pTeamInfo->m_strName.c_str()); //pTeamInfo->m_strName = strTeamName; } } } EndDialog(IDOK); } /** * @brief 响应取消按钮 * * @param uNotifyCode * @param nID * @param wndCtl */ void CTeamDlg::OnCancel(UINT uNotifyCode, int nID, CWindow wndCtl) { EndDialog(IDCANCEL); }
[ "dennismi1024@gmail.com" ]
dennismi1024@gmail.com
d7e9261160da2b2d488c746e383bf772fb2c83b6
905fb4f295e7e56e8719d9555e6ff2c7251b5f42
/6DSDKUnitySampleApp/Classes/Native/Generics12.cpp
12e56484ef403bcce6b4ab2f26d9c578ca8f400e
[]
no_license
jinczing/6dunitytest
e7941bc67b5b1fa0ba5879e72dbc9f24efe23a65
44959db1f90e8e877504998543bded84e64a4c0d
refs/heads/master
2020-07-21T11:07:28.120418
2019-09-07T05:41:52
2019-09-07T05:41:52
206,843,194
1
0
null
null
null
null
UTF-8
C++
false
false
1,452,599
cpp
#include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <cstring> #include <string.h> #include <stdio.h> #include <cmath> #include <limits> #include <assert.h> #include <stdint.h> #include "codegen/il2cpp-codegen.h" #include "il2cpp-object-internals.h" template <typename R, typename T1, typename T2> struct VirtFuncInvoker2 { typedef R (*Func)(void*, T1, T2, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template <typename R> struct InterfaceFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; struct InterfaceActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename R, typename T1> struct InterfaceFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename R, typename T1, typename T2> struct InterfaceFuncInvoker2 { typedef R (*Func)(void*, T1, T2, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; // System.ArgumentException struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1; // System.ArgumentNullException struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD; // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA; // System.Byte[] struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821; // System.Char[] struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>[] struct EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int64>[] struct EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>[] struct EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>[] struct EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.UInt64>[] struct EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F; // System.Collections.Generic.Dictionary`2/Entry<System.Object,UnityEngine.Networking.NetworkBroadcastResult>[] struct EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88; // System.Collections.Generic.Dictionary`2/Entry<System.UInt16,System.Object>[] struct EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9; // System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Object>[] struct EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Int32Enum> struct KeyCollection_t16EDFEDFE6B46AE31E251DC5F71DDA39573C0A96; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Int64> struct KeyCollection_t094529A3BCF7C6FDAC957A8B3DBA4182A2915D15; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Object> struct KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Resources.ResourceLocator> struct KeyCollection_tB62DC24DEF9A9DC0EE67965814F53091651CAE92; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.UInt64> struct KeyCollection_t5CCFEFE4D2B769236D5FE27DD98BD4C6CA1635DE; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,UnityEngine.Networking.NetworkBroadcastResult> struct KeyCollection_t5EC5AE8701559CAD8D6FE2C0D5EA5AF33617F16D; // System.Collections.Generic.Dictionary`2/KeyCollection<System.UInt16,System.Object> struct KeyCollection_tA0E3081654BAAA7B8AA71F9DD07C233A9F9D75B4; // System.Collections.Generic.Dictionary`2/KeyCollection<System.UInt32,System.Object> struct KeyCollection_tDB0CE6550164FA6B9F36F406E71DA592D0B03C55; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32Enum> struct ValueCollection_t74015A8B75054E8C8947DAA50BD4DD43F895BECE; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int64> struct ValueCollection_tF4024A6BA9CF9684EE2E87153E84B91B1FEF68C3; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object> struct ValueCollection_t0816666499CBD11E58E1E7C79A4EFC2AA47E08A2; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Resources.ResourceLocator> struct ValueCollection_t32E4BA93A6E2E9AC038396EC46CDBA2BAE42AF4B; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.UInt64> struct ValueCollection_t0FD9940EACD4156D2E752000E6E2B514E45212D2; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,UnityEngine.Networking.NetworkBroadcastResult> struct ValueCollection_tC94120C5B491DF84E829416B86156893C29B845F; // System.Collections.Generic.Dictionary`2/ValueCollection<System.UInt16,System.Object> struct ValueCollection_tCEB02848E807536415449852101F0B4CEAB130B2; // System.Collections.Generic.Dictionary`2/ValueCollection<System.UInt32,System.Object> struct ValueCollection_tA886702655DCF8ABB2A963CDEE146B3CE24FCF4A; // System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum> struct Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57; // System.Collections.Generic.Dictionary`2<System.Object,System.Int64> struct Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526; // System.Collections.Generic.Dictionary`2<System.Object,System.Object> struct Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA; // System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator> struct Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6; // System.Collections.Generic.Dictionary`2<System.Object,System.UInt64> struct Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712; // System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult> struct Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C; // System.Collections.Generic.Dictionary`2<System.String,System.Int32> struct Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB; // System.Collections.Generic.Dictionary`2<System.UInt16,System.Object> struct Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A; // System.Collections.Generic.Dictionary`2<System.UInt32,System.Object> struct Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F; // System.Collections.Generic.EqualityComparer`1<System.Int32Enum> struct EqualityComparer_1_tD1E45FFD2812F3A647E425E6427770FF0DA20DD4; // System.Collections.Generic.EqualityComparer`1<System.Int64> struct EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E; // System.Collections.Generic.EqualityComparer`1<System.Object> struct EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA; // System.Collections.Generic.EqualityComparer`1<System.Resources.ResourceLocator> struct EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D; // System.Collections.Generic.EqualityComparer`1<System.String> struct EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137; // System.Collections.Generic.EqualityComparer`1<System.UInt16> struct EqualityComparer_1_t5A44736F4237D4F477AE641C097FBDC592BEA03E; // System.Collections.Generic.EqualityComparer`1<System.UInt32> struct EqualityComparer_1_tDDD15C1EE67655D8910B42D856F52279F5E62114; // System.Collections.Generic.EqualityComparer`1<System.UInt64> struct EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13; // System.Collections.Generic.EqualityComparer`1<UnityEngine.Networking.NetworkBroadcastResult> struct EqualityComparer_1_tEECFCAB1869EEE7F99E976A8E87C8CEC607C8AC5; // System.Collections.Generic.IDictionary`2<System.Object,System.Int32Enum> struct IDictionary_2_tC4F9FF320852CC816ABBC4656D0792D22B1F72E3; // System.Collections.Generic.IDictionary`2<System.Object,System.Int64> struct IDictionary_2_t34807C235DCCA673FB4C8F1E3F16AB2EE5F72F33; // System.Collections.Generic.IDictionary`2<System.Object,System.Object> struct IDictionary_2_tF77278125F2C7A401884F0168E974ADB442020AF; // System.Collections.Generic.IDictionary`2<System.Object,System.Resources.ResourceLocator> struct IDictionary_2_tB7692E4BC602058D71218AAACD5EABDA30473B98; // System.Collections.Generic.IDictionary`2<System.Object,System.UInt64> struct IDictionary_2_tCA10B9FC590A4C6CCB8615632FA65014BD1827A0; // System.Collections.Generic.IDictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult> struct IDictionary_2_t3443164BAE034F2708B5D47A576DF6EB900B60ED; // System.Collections.Generic.IDictionary`2<System.UInt16,System.Object> struct IDictionary_2_t7E68B3D8F5CB7DB3F1DA858F04E9B0DEB06A499E; // System.Collections.Generic.IDictionary`2<System.UInt32,System.Object> struct IDictionary_2_tC52DC9BE57FF519B489028F71A5AF75D0A222736; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>> struct IEnumerator_1_t978EBBC32767AB904800D8C6262E3E4299FCC5FD; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int64>> struct IEnumerator_1_t8DAE32F136A2B43775D644D9E9D991B833856BEA; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>> struct IEnumerator_1_t0D0CED86DAC255BACC0E644D39E1AB3D51FB121F; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>> struct IEnumerator_1_t7E666347A94599911838107E49A669BAB7CF699F; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt64>> struct IEnumerator_1_t1B6F90DF93DA3FE8D16686AB0F0111A0B270AB0D; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>> struct IEnumerator_1_t45DAD2189950A0408F284586980E9FF8407D34E5; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt16,System.Object>> struct IEnumerator_1_tF1BC84765DE5608D42D738945BA4871CC4BA73E5; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>> struct IEnumerator_1_t1DB496493D2AAAFC97BE2BE67D8ADC00BAD59D2B; // System.Collections.Generic.IEqualityComparer`1<System.Object> struct IEqualityComparer_1_tAE7A8756D8CF0882DD348DC328FB36FEE0FB7DD0; // System.Collections.Generic.IEqualityComparer`1<System.UInt16> struct IEqualityComparer_1_t2264E7071E33F5D2BA6043126890F48B0007C295; // System.Collections.Generic.IEqualityComparer`1<System.UInt32> struct IEqualityComparer_1_t666366B838E9C80B34EC9FF26AB5244EDDA804B7; // System.Collections.Generic.KeyNotFoundException struct KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>[] struct KeyValuePair_2U5BU5D_tC63FC57B68C58FE775C0A228C5DB05C042B6285E; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Int64>[] struct KeyValuePair_2U5BU5D_t03ACDE20158B31A492B18DAAEB19BCCAB1AFA9D5; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>[] struct KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>[] struct KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB; // System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt64>[] struct KeyValuePair_2U5BU5D_t6405A1D453F0ABF336D2B7B434910B1778715C78; // System.Collections.Generic.KeyValuePair`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>[] struct KeyValuePair_2U5BU5D_tE9E64782D397CFFA60C8BDDFA88D4647AD8932C5; // System.Collections.Generic.KeyValuePair`2<System.UInt16,System.Object>[] struct KeyValuePair_2U5BU5D_t973017D6141F6D8AD9DCE8E35F9369C5A391F9F3; // System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>[] struct KeyValuePair_2U5BU5D_tE5534F12D5421E2FFAE5C6743851D7EF64257399; // System.Collections.ICollection struct ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54; // System.Collections.IDictionary struct IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7; // System.Collections.IDictionaryEnumerator struct IDictionaryEnumerator_t456EB67407D2045A257B66A3A25A825E883FD027; // System.Collections.IEnumerator struct IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A; // System.Diagnostics.StackTrace[] struct StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196; // System.Int32[] struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83; // System.IntPtr[] struct IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD; // System.Object[] struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A; // System.Reflection.Binder struct Binder_t4D5CB06963501D32847C057B57157D6DC49CA759; // System.Reflection.MemberFilter struct MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381; // System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object> struct ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3; // System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo> struct ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98; // System.Runtime.CompilerServices.Ephemeron[] struct EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10; // System.Runtime.Serialization.IFormatterConverter struct IFormatterConverter_tC3280D64D358F47EA4DAF1A65609BA0FC081888A; // System.Runtime.Serialization.SafeSerializationManager struct SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770; // System.Runtime.Serialization.SerializationException struct SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210; // System.Runtime.Serialization.SerializationInfo struct SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26; // System.String struct String_t; // System.String[] struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E; // System.Type struct Type_t; // System.Type[] struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F; // System.Void struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017; IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArrayTypeMismatchException_tE34C1032B089C37399200997F079C640D23D9499_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NonRandomizedStringEqualityComparer_t92C20503D9C5060A557792ABCCC06EF2DD77E5D9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C String_t* _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25; IL2CPP_EXTERN_C String_t* _stringLiteral1D89254A2BC78C1FF41C2F6767A0E00EE126B3BF; IL2CPP_EXTERN_C String_t* _stringLiteral1EB7E67EA75FFC3FCB05A9685FA4F1578DCACCF6; IL2CPP_EXTERN_C String_t* _stringLiteral2D77BE6D598A0A9376398980E66D10E319F1B52A; IL2CPP_EXTERN_C String_t* _stringLiteral2DA600BF9404843107A9531694F654E5662959E0; IL2CPP_EXTERN_C String_t* _stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D; IL2CPP_EXTERN_C String_t* _stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60; IL2CPP_EXTERN_C String_t* _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889; IL2CPP_EXTERN_C String_t* _stringLiteral6FD577FD3A1BDC4DA28CD51D7A55EB397CEA3926; IL2CPP_EXTERN_C String_t* _stringLiteral7CB1F56D3FBE09E809244FC8E13671CD876E3860; IL2CPP_EXTERN_C String_t* _stringLiteral8FC94E4F5B71CECE2565D72417AACC804EE27A0D; IL2CPP_EXTERN_C String_t* _stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA; IL2CPP_EXTERN_C String_t* _stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE; IL2CPP_EXTERN_C String_t* _stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8; IL2CPP_EXTERN_C String_t* _stringLiteralC363992023785AF013BBCF2E20C19D9835184F82; IL2CPP_EXTERN_C String_t* _stringLiteralC44D4E6C6AF3517A1CC72EDF7D1A5FFD7E3368F1; IL2CPP_EXTERN_C String_t* _stringLiteralD6D1BC79DD62E9F1FB9A49A8F76F4BA8AB71AECD; IL2CPP_EXTERN_C String_t* _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346; IL2CPP_EXTERN_C String_t* _stringLiteralF18BFB74E613AFB11F36BDD80CF05CD5DFAD98D6; IL2CPP_EXTERN_C String_t* _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5; IL2CPP_EXTERN_C String_t* _stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6; IL2CPP_EXTERN_C const RuntimeMethod* ConditionalWeakTable_2_Add_mCC3585BE91A7BDFC49EEFDE4C11173A36D1FB5FE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConditionalWeakTable_2_Remove_mD69606977A8C793DEA91E373F7D886E4865D7FBD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConditionalWeakTable_2_TryGetValue_mDFCB6C303807E3F8998D196F4573870680E81F8B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_CopyTo_m0532DFD20D13C815D8095B3615B8B5B6BC4C8A7E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_CopyTo_m864F8B875F42B6B97A8DE9D0587511163F6DAD7A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_CopyTo_m88949A91494196528145F6A5EF40E5E52B2942D4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_CopyTo_m8E87BB364C418ED42AF31F882AB3FE18437393DA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_CopyTo_mA0FFCCD54E213325146C71FBE0921ED03206B7AE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_CopyTo_mD417B7E942D0854711D2C851375A5D36EE666583_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_CopyTo_mDB78948770252D4C02930B666567476DFFED1759_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_CopyTo_mE6861F93BC9F2B8249D859D96A4342E0199FF2EA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_FindEntry_m30648D6674306ABD1063776C8ABAB2D4E53B35EA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_FindEntry_m5BB000ABA37B0920476F4062799D056EA47EF04F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_FindEntry_m7CDCCE2CE74F95943A73150DD4DDABFBD0D3543D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_FindEntry_m7F388E90F7A6EB0002D84E433DA2DD7B72445C38_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_FindEntry_m7FD085D0F4556908286645CB9B230FB555595EDA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_FindEntry_m85531CCD613626B0C21B5181F9EFE5914EB754D1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_FindEntry_mEF0AC9C8BE6FC0AAF3E2C40902E7885B4BB46EF6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_FindEntry_mFDF9D228127FB25281E0A80AA968857CC42D0069_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_GetObjectData_m24D6623031D22FD2F0088E2B08BC68DCCC3419A1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_GetObjectData_m477C4452638D485A46D896846B7FA4E7F00DA31F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_GetObjectData_m64D252EF211FE9FDE02E45E2DC5E78022338FB9F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_GetObjectData_m8039434A0B4F33C9AB7DEEC34D2FC002287C64E6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_GetObjectData_m8597240B3C52C2AFFBA62596E72D982DEDF9D413_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_GetObjectData_mAFFB6C7E9F3E826ECA1CFF5E3CF26BC20468C466_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_GetObjectData_mD3BE8CA8EEA44C1B845B8317BA1B6BF461E0805B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_GetObjectData_mFB7A6018D1085693F25E29266E97D618B2068DD0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_IsCompatibleKey_m6C3739FC4C462F3F5C0AA12BD9C3291F5A2CEEC9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_IsCompatibleKey_m7E43A77A3EC2C76193BEE3EDDDAD146A892D19F7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_IsCompatibleKey_mA9F8666A3451963003ACFAC718CC230E88D6C412_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_IsCompatibleKey_mB0EFB56206C113B0800BACC3020DEEB530BCFF44_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_IsCompatibleKey_mB61AFA5259CDAEA60F830AF4C2283AA803E76648_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_IsCompatibleKey_mC5A4A93416D8CE91F60E1620D903D728DCFE32F5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_IsCompatibleKey_mC661C5FB0536EBEF169B249AD6F5B06A3C9C8480_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_IsCompatibleKey_mE704BFB33E9A85EEFD6FB15FD7DF71ED3B240ED2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_OnDeserialization_m02597AA473E216CF5531646FE7D8F2C8A2FCD8C5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_OnDeserialization_m2DFD0E9044A0DF3545435127F3CA928F249D996B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_OnDeserialization_m63903F75E863748E0BA65E8FC9A1B45155BE00EA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_OnDeserialization_m85E3F3207B84D073B94EAD6D5B2A33BBD711D2C0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_OnDeserialization_m967C18291BF9DFEF8D9AA60323D01408BB421AB4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_OnDeserialization_mB8DCE02B77C584485486186EC1E4401A48E41B09_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_OnDeserialization_mF7C59B04C34719EB338FD3389DEA16188E0EEF6D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_OnDeserialization_mFEF4109F2F0976459EE65126CBE7F99D6277A4C4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Remove_m0FCCD33CE2C6A7589E52A2AB0872FE361BF5EF60_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Remove_m1ED1A8C4E97713FE1117C92E7ACCAB9458825C22_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Remove_m50AF86E05FB664C11FE12CBDA65164C5C5BC878D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Remove_m6B46E19570DE9C473750683155789F7ADCFF24DE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Remove_m8AAC7BEA6C1AAB40410697CF37B10161FCD622F1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Remove_m95FAFE3C4D9927C1525B62FE9E27363D1DACB372_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Remove_mBBF21C84D264E876D572E4BC4E48A9A02BE96E6E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Remove_mDA53A01E63EFD9F3D4A2695D41B10D981E15ACD4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_System_Collections_ICollection_CopyTo_m2A04B7A42F924F8497A06C101712AF467E6C057C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_System_Collections_ICollection_CopyTo_m9E0A3CE877AE8809E19111C8D07C4D823B95D308_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_System_Collections_ICollection_CopyTo_m9FF8CB83DCCF60C20B939B5C14633CA6CB23E7A6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_System_Collections_ICollection_CopyTo_mA7AE7785CE0F04673211E514F558A1B5A47FAFA0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_System_Collections_ICollection_CopyTo_mAEB91880DCBD52840A58742DA1C838B7D180D2A5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_System_Collections_ICollection_CopyTo_mD47FC355959333671A550C1BA2E4D55BBC6CEE0C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_System_Collections_ICollection_CopyTo_mE4CA5150D495BBC4E0252D620694D9A3001B1AAA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_System_Collections_ICollection_CopyTo_mFED6F7DEA4CAFDC1D3DA34E37084797453E24BB6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_System_Collections_IDictionary_Add_m019E55F1DB5592DA1F0A9DB58C7E4BE0A20C1ADB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_System_Collections_IDictionary_Add_m281E28101146E6648B75AD52FF821EA28021227D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_System_Collections_IDictionary_Add_m2F0040800EF78AE1004704EC359A3BB82FC8AC07_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_System_Collections_IDictionary_Add_m4167369826C8E4440CCAE69EB051358B9C1A36A0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_System_Collections_IDictionary_Add_m6A9E23190AB240F7A2282B6137FEC875544BC188_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_System_Collections_IDictionary_Add_mBD404C39C8112FA541E066AECE257606B490FD9F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_System_Collections_IDictionary_Add_mC402A2D90FBB2980AE2A19E44FFE57D976221F42_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_System_Collections_IDictionary_Add_mD60409181D12CDB4602818461FA124AC78A109BB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_System_Collections_IDictionary_set_Item_m3A2E48BB4D4447BEDEBD25E8BB702AEF849B93AF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_System_Collections_IDictionary_set_Item_m51A6B9B2D9AFC065F0D45F5DE544A6718048FB00_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_System_Collections_IDictionary_set_Item_m752CA04F6A7E64A7E050B4A9C914B69874401EDF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_System_Collections_IDictionary_set_Item_m9D769A596FC26A0BDBFCE76DE2DC47961E4438A6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_System_Collections_IDictionary_set_Item_m9ED7C4B62DC351902D9E4E6FF30FC8C21E9813E7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_System_Collections_IDictionary_set_Item_mA353C1581B0E6DB004E93A38305B92FECACABD63_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_System_Collections_IDictionary_set_Item_mCE2F1DB4842905A261DDF806361A7D8F38B0FA9A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_System_Collections_IDictionary_set_Item_mE870470B83F6D8EA0B2E7603625C0CC35F63D3A3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryInsert_m1F4BBB04AA0101F9FF592196A0C52FF29906C8CE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryInsert_m246BD73AB4DAEB4BE395BF8476ECB9EB482B6EE1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryInsert_m4BFED1FA0B4FBDB8E839F6FE9D514D98C2227E41_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryInsert_m785617CD4F8C51BB17E08B6DD1CFA5C9D88868CE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryInsert_mA123B572AE3884B0C5A98E56BE8A550F632104D7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryInsert_mA3CAB92DBD7AF67DCC3EFA3F728A89E34362688F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryInsert_mBC4B9C25BC643F5EA9E0C288F0F5D02E1D30492C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryInsert_mED1C552AB4DDD3CC9789DEC21407767B9803F005_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m005E7E17A2E27952BC4C20BA2995AC18A338EE78_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m01D40DEC3055F010D2E297DF8C52A2BCAFCECF7E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m082713C7E6584F723EB973BD9CE25AF634381A09_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m0F5805773DA24602490A61918467B23A0C415372_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m12E3FD08C16C918AA4F473FE1E8F25026ABCDF83_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m1E8388061AF7756EA023607ED4A17F624220AC40_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m23B99696F0973EC02C18FF3BF2E9DD4779285050_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m30A9E6851931D3AC18BAB22DF7F8D851833D1BA6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m499028E85929789637749F7847C5EA53E99B51A0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m5C8837FCE0A6A7FBDD5BAD9EC29AC1025EF4469C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m9DCF474875A60FEE4C0C4A5231AA4B3A4F82ADEC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m9E826F9D5AF09D486580476C9EE99E09B614C165_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mC0476015F9A6CB834F15DEA10E6AFCC3D0DA8266_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mEF5ECB3C38051BBBB2C30719CA6AFE1478CE56D8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mF16C1C893CC8156C41EF3DC2715D73E58726BEDC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mFE05D6497178A10A9FEFFE992EEFFD1A6087398E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Item_m0F77D41503815D1D209EBEE278FCCAE0A075C228_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Item_m1C4EA73C8B70AEC8E69C0E3247FE69E9F78DB1D0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Item_m6625C3BA931A6EE5D6DB46B9E743B40AAA30010B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Item_m762CB847133E2354776C0BB968D07190DC136A22_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Item_m9265E34215AF52E3DF2AEA649C0B2893D95277D1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Item_mD6B3AA9C53F2917F8E40CAD37B995C327DFB751B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Item_mD765FEF0BB3D9628BB736FCDEFA4F3C655AE7D58_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Item_mF410E9D589217CA977DCD104077E273FE3AAF8BB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EqualityComparer_1_get_Default_m85F378D7298050D5DF422363D5EB30A218B769B7_RuntimeMethod_var; IL2CPP_EXTERN_C const uint32_t DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05CGenerics12_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_CopyTo_m0532DFD20D13C815D8095B3615B8B5B6BC4C8A7E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_CopyTo_m864F8B875F42B6B97A8DE9D0587511163F6DAD7A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_CopyTo_m88949A91494196528145F6A5EF40E5E52B2942D4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_CopyTo_m8E87BB364C418ED42AF31F882AB3FE18437393DA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_CopyTo_mA0FFCCD54E213325146C71FBE0921ED03206B7AE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_CopyTo_mD417B7E942D0854711D2C851375A5D36EE666583_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_CopyTo_mDB78948770252D4C02930B666567476DFFED1759_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_CopyTo_mE6861F93BC9F2B8249D859D96A4342E0199FF2EA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_FindEntry_m30648D6674306ABD1063776C8ABAB2D4E53B35EA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_FindEntry_m5BB000ABA37B0920476F4062799D056EA47EF04F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_FindEntry_m7CDCCE2CE74F95943A73150DD4DDABFBD0D3543D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_FindEntry_m7F388E90F7A6EB0002D84E433DA2DD7B72445C38_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_FindEntry_m7FD085D0F4556908286645CB9B230FB555595EDA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_FindEntry_m85531CCD613626B0C21B5181F9EFE5914EB754D1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_FindEntry_mEF0AC9C8BE6FC0AAF3E2C40902E7885B4BB46EF6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_FindEntry_mFDF9D228127FB25281E0A80AA968857CC42D0069_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_GetObjectData_m24D6623031D22FD2F0088E2B08BC68DCCC3419A1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_GetObjectData_m477C4452638D485A46D896846B7FA4E7F00DA31F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_GetObjectData_m64D252EF211FE9FDE02E45E2DC5E78022338FB9F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_GetObjectData_m8039434A0B4F33C9AB7DEEC34D2FC002287C64E6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_GetObjectData_m8597240B3C52C2AFFBA62596E72D982DEDF9D413_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_GetObjectData_mAFFB6C7E9F3E826ECA1CFF5E3CF26BC20468C466_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_GetObjectData_mD3BE8CA8EEA44C1B845B8317BA1B6BF461E0805B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_GetObjectData_mFB7A6018D1085693F25E29266E97D618B2068DD0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_Initialize_m137C6A84336C70E5077C95E80128AFF290268BED_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_Initialize_m19CD536ADD67E21320D7367CB14B9559CF0535F3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_Initialize_m729150DA59824C6BAB4BED131E69B6EEF5036195_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_Initialize_m8CDFA6766E6EE68D4C5FF858923CF332E58B5A01_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_Initialize_mBA741BEB822AAA5CB9672151CAB6DA91CD5A8BBD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_Initialize_mC63B04F988FC29B61DE6BA8FF4B2D6DB3C54EE55_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_Initialize_mEFF43FA447EAC4F63AE14770493D8758E6279194_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_Initialize_mF7D42C77254CEC29BA9D805608E31F501AFB5F64_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_IsCompatibleKey_m6C3739FC4C462F3F5C0AA12BD9C3291F5A2CEEC9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_IsCompatibleKey_m7E43A77A3EC2C76193BEE3EDDDAD146A892D19F7_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_IsCompatibleKey_mA9F8666A3451963003ACFAC718CC230E88D6C412_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_IsCompatibleKey_mB0EFB56206C113B0800BACC3020DEEB530BCFF44_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_IsCompatibleKey_mB61AFA5259CDAEA60F830AF4C2283AA803E76648_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_IsCompatibleKey_mC5A4A93416D8CE91F60E1620D903D728DCFE32F5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_IsCompatibleKey_mC661C5FB0536EBEF169B249AD6F5B06A3C9C8480_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_IsCompatibleKey_mE704BFB33E9A85EEFD6FB15FD7DF71ED3B240ED2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_OnDeserialization_m02597AA473E216CF5531646FE7D8F2C8A2FCD8C5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_OnDeserialization_m2DFD0E9044A0DF3545435127F3CA928F249D996B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_OnDeserialization_m63903F75E863748E0BA65E8FC9A1B45155BE00EA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_OnDeserialization_m85E3F3207B84D073B94EAD6D5B2A33BBD711D2C0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_OnDeserialization_m967C18291BF9DFEF8D9AA60323D01408BB421AB4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_OnDeserialization_mB8DCE02B77C584485486186EC1E4401A48E41B09_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_OnDeserialization_mF7C59B04C34719EB338FD3389DEA16188E0EEF6D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_OnDeserialization_mFEF4109F2F0976459EE65126CBE7F99D6277A4C4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_Remove_m0FCCD33CE2C6A7589E52A2AB0872FE361BF5EF60_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_Remove_m1ED1A8C4E97713FE1117C92E7ACCAB9458825C22_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_Remove_m50AF86E05FB664C11FE12CBDA65164C5C5BC878D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_Remove_m6B46E19570DE9C473750683155789F7ADCFF24DE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_Remove_m8AAC7BEA6C1AAB40410697CF37B10161FCD622F1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_Remove_m95FAFE3C4D9927C1525B62FE9E27363D1DACB372_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_Remove_mBBF21C84D264E876D572E4BC4E48A9A02BE96E6E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_Remove_mDA53A01E63EFD9F3D4A2695D41B10D981E15ACD4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_Resize_m26C88D986740EF24D60F7AA7E90DDBD6A7748D50_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_Resize_m2B3705208DD6C357A4BD75FD977CD665ADF7AAB7_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_Resize_m37AD61EE82E8CEC71D3A0F583E4592666D6BA58B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_Resize_m45B007ADE44A69A6B4AA23028D3642BA5AA66061_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_Resize_m4D9B4ABDE3485ADBF1453E64B7969121FD16FA4A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_Resize_m51C9067FC9296946D07550559F7087648D976FED_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_Resize_m5B3FA7BD726CAC73DB274759C7AC6B37304C3BC9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_Resize_m70730CC590EF0364362F2C8C1B9CDFE9E8FE40E3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_Resize_m8AA5BC868AE4B09099EC4ED2E21DEB4AB0FA8315_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_Resize_m8C05107CC02D5E293D0C078D6E770696F1AE4731_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_Resize_mA34DD099BDA2F1633617FD97EF0B12953A7C9CA2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_Resize_mD73094B2065B3C50BDD2138C1065AD28666FAC18_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_Resize_mDC7F20443FB983309AB571268EE5A097F222D149_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_Resize_mDEEA8CA4E3A0F37622013856B653423B8EC6AB11_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_Resize_mED41817D6F25447E50D9578901F75636120C1440_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_Resize_mFAA9AE955EADBD9A2CD0F57AFAD770FB095ACE09_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_System_Collections_ICollection_CopyTo_m2A04B7A42F924F8497A06C101712AF467E6C057C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_System_Collections_ICollection_CopyTo_m9E0A3CE877AE8809E19111C8D07C4D823B95D308_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_System_Collections_ICollection_CopyTo_m9FF8CB83DCCF60C20B939B5C14633CA6CB23E7A6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_System_Collections_ICollection_CopyTo_mA7AE7785CE0F04673211E514F558A1B5A47FAFA0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_System_Collections_ICollection_CopyTo_mAEB91880DCBD52840A58742DA1C838B7D180D2A5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_System_Collections_ICollection_CopyTo_mD47FC355959333671A550C1BA2E4D55BBC6CEE0C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_System_Collections_ICollection_CopyTo_mE4CA5150D495BBC4E0252D620694D9A3001B1AAA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_System_Collections_ICollection_CopyTo_mFED6F7DEA4CAFDC1D3DA34E37084797453E24BB6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_System_Collections_ICollection_get_SyncRoot_m414EF9CB571B534885C323CDD56D5C26D21B93E6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_System_Collections_ICollection_get_SyncRoot_m769E44673458A7E9F4BB9D8904F3A6EAEFD38E2F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_System_Collections_ICollection_get_SyncRoot_m97A4EC206BF4D92DD53389B7D32F56DAAFE15A05_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_System_Collections_ICollection_get_SyncRoot_mA421BC558ECB5116A75AAA3D670614F71D19BF85_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_System_Collections_ICollection_get_SyncRoot_mA7D2E1D66F065B017EBA7275D6927CFFA3B90E26_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_System_Collections_ICollection_get_SyncRoot_mC12D71595BEF6B74E2EA3DC1DE8E13484BBE7882_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_System_Collections_ICollection_get_SyncRoot_mDDCECDA24B1F73C343BC83CB7EF2CEB7600CFD1F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_System_Collections_ICollection_get_SyncRoot_mE589050CE4E82475F1096526C6ED4CE5384C30F5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_System_Collections_IDictionary_Add_m019E55F1DB5592DA1F0A9DB58C7E4BE0A20C1ADB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_System_Collections_IDictionary_Add_m281E28101146E6648B75AD52FF821EA28021227D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_System_Collections_IDictionary_Add_m2F0040800EF78AE1004704EC359A3BB82FC8AC07_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_System_Collections_IDictionary_Add_m4167369826C8E4440CCAE69EB051358B9C1A36A0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_System_Collections_IDictionary_Add_m6A9E23190AB240F7A2282B6137FEC875544BC188_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_System_Collections_IDictionary_Add_mBD404C39C8112FA541E066AECE257606B490FD9F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_System_Collections_IDictionary_Add_mC402A2D90FBB2980AE2A19E44FFE57D976221F42_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_System_Collections_IDictionary_Add_mD60409181D12CDB4602818461FA124AC78A109BB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_System_Collections_IDictionary_set_Item_m3A2E48BB4D4447BEDEBD25E8BB702AEF849B93AF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_System_Collections_IDictionary_set_Item_m51A6B9B2D9AFC065F0D45F5DE544A6718048FB00_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_System_Collections_IDictionary_set_Item_m752CA04F6A7E64A7E050B4A9C914B69874401EDF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_System_Collections_IDictionary_set_Item_m9D769A596FC26A0BDBFCE76DE2DC47961E4438A6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_System_Collections_IDictionary_set_Item_m9ED7C4B62DC351902D9E4E6FF30FC8C21E9813E7_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_System_Collections_IDictionary_set_Item_mA353C1581B0E6DB004E93A38305B92FECACABD63_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_System_Collections_IDictionary_set_Item_mCE2F1DB4842905A261DDF806361A7D8F38B0FA9A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_System_Collections_IDictionary_set_Item_mE870470B83F6D8EA0B2E7603625C0CC35F63D3A3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_TryInsert_m1F4BBB04AA0101F9FF592196A0C52FF29906C8CE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_TryInsert_m246BD73AB4DAEB4BE395BF8476ECB9EB482B6EE1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_TryInsert_m4BFED1FA0B4FBDB8E839F6FE9D514D98C2227E41_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_TryInsert_m785617CD4F8C51BB17E08B6DD1CFA5C9D88868CE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_TryInsert_mA123B572AE3884B0C5A98E56BE8A550F632104D7_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_TryInsert_mA3CAB92DBD7AF67DCC3EFA3F728A89E34362688F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_TryInsert_mBC4B9C25BC643F5EA9E0C288F0F5D02E1D30492C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_TryInsert_mED1C552AB4DDD3CC9789DEC21407767B9803F005_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2__ctor_m005E7E17A2E27952BC4C20BA2995AC18A338EE78_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2__ctor_m01D40DEC3055F010D2E297DF8C52A2BCAFCECF7E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2__ctor_m082713C7E6584F723EB973BD9CE25AF634381A09_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2__ctor_m0F5805773DA24602490A61918467B23A0C415372_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2__ctor_m12E3FD08C16C918AA4F473FE1E8F25026ABCDF83_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2__ctor_m1349AC7001410F92CA7F2F0A2245F564950594D2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2__ctor_m1E8388061AF7756EA023607ED4A17F624220AC40_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2__ctor_m23B99696F0973EC02C18FF3BF2E9DD4779285050_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2__ctor_m30A9E6851931D3AC18BAB22DF7F8D851833D1BA6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2__ctor_m499028E85929789637749F7847C5EA53E99B51A0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2__ctor_m4E2B3B3F2A7FA7FE66E336C00A043CC8D813A1BA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2__ctor_m51ED019A699CB2314427FF6FA0F0403C0B0DC489_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2__ctor_m5C8837FCE0A6A7FBDD5BAD9EC29AC1025EF4469C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2__ctor_m5D1E5B243085CE0E75B69BFAAA45DBA8966494E1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2__ctor_m61621F7A1471FFD1440B317FD421AC492D9073E9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2__ctor_m8476D07C57BB3953797855B1F78400A999FE51FC_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2__ctor_m9228B6B598897711D01E10AB8EC12D5EA46A06AA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2__ctor_m9DCF474875A60FEE4C0C4A5231AA4B3A4F82ADEC_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2__ctor_m9E826F9D5AF09D486580476C9EE99E09B614C165_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2__ctor_mC0476015F9A6CB834F15DEA10E6AFCC3D0DA8266_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2__ctor_mC842245117A02DB91EBECF2585B27D2A8F1B284E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2__ctor_mEF5ECB3C38051BBBB2C30719CA6AFE1478CE56D8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2__ctor_mF16C1C893CC8156C41EF3DC2715D73E58726BEDC_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2__ctor_mFE05D6497178A10A9FEFFE992EEFFD1A6087398E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_get_Item_m0F77D41503815D1D209EBEE278FCCAE0A075C228_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_get_Item_m1C4EA73C8B70AEC8E69C0E3247FE69E9F78DB1D0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_get_Item_m6625C3BA931A6EE5D6DB46B9E743B40AAA30010B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_get_Item_m762CB847133E2354776C0BB968D07190DC136A22_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_get_Item_m9265E34215AF52E3DF2AEA649C0B2893D95277D1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_get_Item_mD6B3AA9C53F2917F8E40CAD37B995C327DFB751B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_get_Item_mD765FEF0BB3D9628BB736FCDEFA4F3C655AE7D58_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Dictionary_2_get_Item_mF410E9D589217CA977DCD104077E273FE3AAF8BB_MetadataUsageId; struct Exception_t_marshaled_com; struct Exception_t_marshaled_pinvoke; struct DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56; struct EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6; struct EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF; struct EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE; struct EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4; struct EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F; struct EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88; struct EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9; struct EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A; struct KeyValuePair_2U5BU5D_tC63FC57B68C58FE775C0A228C5DB05C042B6285E; struct KeyValuePair_2U5BU5D_t03ACDE20158B31A492B18DAAEB19BCCAB1AFA9D5; struct KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262; struct KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB; struct KeyValuePair_2U5BU5D_t6405A1D453F0ABF336D2B7B434910B1778715C78; struct KeyValuePair_2U5BU5D_tE9E64782D397CFFA60C8BDDFA88D4647AD8932C5; struct KeyValuePair_2U5BU5D_t973017D6141F6D8AD9DCE8E35F9369C5A391F9F3; struct KeyValuePair_2U5BU5D_tE5534F12D5421E2FFAE5C6743851D7EF64257399; struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83; struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A; IL2CPP_EXTERN_C_BEGIN IL2CPP_EXTERN_C_END #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Object struct Il2CppArrayBounds; // System.Array // System.Collections.Generic.DictionaryHashHelpers struct DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00 : public RuntimeObject { public: public: }; struct DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_StaticFields { public: // System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo> System.Collections.Generic.DictionaryHashHelpers::<SerializationInfoTable>k__BackingField ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * ___U3CSerializationInfoTableU3Ek__BackingField_0; public: inline static int32_t get_offset_of_U3CSerializationInfoTableU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_StaticFields, ___U3CSerializationInfoTableU3Ek__BackingField_0)); } inline ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * get_U3CSerializationInfoTableU3Ek__BackingField_0() const { return ___U3CSerializationInfoTableU3Ek__BackingField_0; } inline ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 ** get_address_of_U3CSerializationInfoTableU3Ek__BackingField_0() { return &___U3CSerializationInfoTableU3Ek__BackingField_0; } inline void set_U3CSerializationInfoTableU3Ek__BackingField_0(ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * value) { ___U3CSerializationInfoTableU3Ek__BackingField_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CSerializationInfoTableU3Ek__BackingField_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2_KeyCollection<System.Object,System.Int32Enum> struct KeyCollection_t16EDFEDFE6B46AE31E251DC5F71DDA39573C0A96 : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection::dictionary Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(KeyCollection_t16EDFEDFE6B46AE31E251DC5F71DDA39573C0A96, ___dictionary_0)); } inline Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2_KeyCollection<System.Object,System.Int64> struct KeyCollection_t094529A3BCF7C6FDAC957A8B3DBA4182A2915D15 : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection::dictionary Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(KeyCollection_t094529A3BCF7C6FDAC957A8B3DBA4182A2915D15, ___dictionary_0)); } inline Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2_KeyCollection<System.Object,System.Object> struct KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection::dictionary Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C, ___dictionary_0)); } inline Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2_KeyCollection<System.Object,System.Resources.ResourceLocator> struct KeyCollection_tB62DC24DEF9A9DC0EE67965814F53091651CAE92 : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection::dictionary Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(KeyCollection_tB62DC24DEF9A9DC0EE67965814F53091651CAE92, ___dictionary_0)); } inline Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2_KeyCollection<System.Object,System.UInt64> struct KeyCollection_t5CCFEFE4D2B769236D5FE27DD98BD4C6CA1635DE : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection::dictionary Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(KeyCollection_t5CCFEFE4D2B769236D5FE27DD98BD4C6CA1635DE, ___dictionary_0)); } inline Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2_KeyCollection<System.Object,UnityEngine.Networking.NetworkBroadcastResult> struct KeyCollection_t5EC5AE8701559CAD8D6FE2C0D5EA5AF33617F16D : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection::dictionary Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(KeyCollection_t5EC5AE8701559CAD8D6FE2C0D5EA5AF33617F16D, ___dictionary_0)); } inline Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2_KeyCollection<System.UInt16,System.Object> struct KeyCollection_tA0E3081654BAAA7B8AA71F9DD07C233A9F9D75B4 : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection::dictionary Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(KeyCollection_tA0E3081654BAAA7B8AA71F9DD07C233A9F9D75B4, ___dictionary_0)); } inline Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2_KeyCollection<System.UInt32,System.Object> struct KeyCollection_tDB0CE6550164FA6B9F36F406E71DA592D0B03C55 : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection::dictionary Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(KeyCollection_tDB0CE6550164FA6B9F36F406E71DA592D0B03C55, ___dictionary_0)); } inline Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Int32Enum> struct ValueCollection_t74015A8B75054E8C8947DAA50BD4DD43F895BECE : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_t74015A8B75054E8C8947DAA50BD4DD43F895BECE, ___dictionary_0)); } inline Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Int64> struct ValueCollection_tF4024A6BA9CF9684EE2E87153E84B91B1FEF68C3 : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_tF4024A6BA9CF9684EE2E87153E84B91B1FEF68C3, ___dictionary_0)); } inline Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Object> struct ValueCollection_t0816666499CBD11E58E1E7C79A4EFC2AA47E08A2 : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_t0816666499CBD11E58E1E7C79A4EFC2AA47E08A2, ___dictionary_0)); } inline Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Resources.ResourceLocator> struct ValueCollection_t32E4BA93A6E2E9AC038396EC46CDBA2BAE42AF4B : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_t32E4BA93A6E2E9AC038396EC46CDBA2BAE42AF4B, ___dictionary_0)); } inline Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.UInt64> struct ValueCollection_t0FD9940EACD4156D2E752000E6E2B514E45212D2 : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_t0FD9940EACD4156D2E752000E6E2B514E45212D2, ___dictionary_0)); } inline Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,UnityEngine.Networking.NetworkBroadcastResult> struct ValueCollection_tC94120C5B491DF84E829416B86156893C29B845F : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_tC94120C5B491DF84E829416B86156893C29B845F, ___dictionary_0)); } inline Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2_ValueCollection<System.UInt16,System.Object> struct ValueCollection_tCEB02848E807536415449852101F0B4CEAB130B2 : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_tCEB02848E807536415449852101F0B4CEAB130B2, ___dictionary_0)); } inline Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2_ValueCollection<System.UInt32,System.Object> struct ValueCollection_tA886702655DCF8ABB2A963CDEE146B3CE24FCF4A : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_tA886702655DCF8ABB2A963CDEE146B3CE24FCF4A, ___dictionary_0)); } inline Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum> struct Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t16EDFEDFE6B46AE31E251DC5F71DDA39573C0A96 * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t74015A8B75054E8C8947DAA50BD4DD43F895BECE * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57, ___buckets_0)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57, ___entries_1)); } inline EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57, ___keys_7)); } inline KeyCollection_t16EDFEDFE6B46AE31E251DC5F71DDA39573C0A96 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t16EDFEDFE6B46AE31E251DC5F71DDA39573C0A96 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t16EDFEDFE6B46AE31E251DC5F71DDA39573C0A96 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57, ___values_8)); } inline ValueCollection_t74015A8B75054E8C8947DAA50BD4DD43F895BECE * get_values_8() const { return ___values_8; } inline ValueCollection_t74015A8B75054E8C8947DAA50BD4DD43F895BECE ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t74015A8B75054E8C8947DAA50BD4DD43F895BECE * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Object,System.Int64> struct Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t094529A3BCF7C6FDAC957A8B3DBA4182A2915D15 * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tF4024A6BA9CF9684EE2E87153E84B91B1FEF68C3 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526, ___buckets_0)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526, ___entries_1)); } inline EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526, ___keys_7)); } inline KeyCollection_t094529A3BCF7C6FDAC957A8B3DBA4182A2915D15 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t094529A3BCF7C6FDAC957A8B3DBA4182A2915D15 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t094529A3BCF7C6FDAC957A8B3DBA4182A2915D15 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526, ___values_8)); } inline ValueCollection_tF4024A6BA9CF9684EE2E87153E84B91B1FEF68C3 * get_values_8() const { return ___values_8; } inline ValueCollection_tF4024A6BA9CF9684EE2E87153E84B91B1FEF68C3 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tF4024A6BA9CF9684EE2E87153E84B91B1FEF68C3 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Object,System.Object> struct Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t0816666499CBD11E58E1E7C79A4EFC2AA47E08A2 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA, ___buckets_0)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA, ___entries_1)); } inline EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA, ___keys_7)); } inline KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C * get_keys_7() const { return ___keys_7; } inline KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA, ___values_8)); } inline ValueCollection_t0816666499CBD11E58E1E7C79A4EFC2AA47E08A2 * get_values_8() const { return ___values_8; } inline ValueCollection_t0816666499CBD11E58E1E7C79A4EFC2AA47E08A2 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t0816666499CBD11E58E1E7C79A4EFC2AA47E08A2 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator> struct Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_tB62DC24DEF9A9DC0EE67965814F53091651CAE92 * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t32E4BA93A6E2E9AC038396EC46CDBA2BAE42AF4B * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6, ___buckets_0)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6, ___entries_1)); } inline EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6, ___keys_7)); } inline KeyCollection_tB62DC24DEF9A9DC0EE67965814F53091651CAE92 * get_keys_7() const { return ___keys_7; } inline KeyCollection_tB62DC24DEF9A9DC0EE67965814F53091651CAE92 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tB62DC24DEF9A9DC0EE67965814F53091651CAE92 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6, ___values_8)); } inline ValueCollection_t32E4BA93A6E2E9AC038396EC46CDBA2BAE42AF4B * get_values_8() const { return ___values_8; } inline ValueCollection_t32E4BA93A6E2E9AC038396EC46CDBA2BAE42AF4B ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t32E4BA93A6E2E9AC038396EC46CDBA2BAE42AF4B * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Object,System.UInt64> struct Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t5CCFEFE4D2B769236D5FE27DD98BD4C6CA1635DE * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t0FD9940EACD4156D2E752000E6E2B514E45212D2 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712, ___buckets_0)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712, ___entries_1)); } inline EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712, ___keys_7)); } inline KeyCollection_t5CCFEFE4D2B769236D5FE27DD98BD4C6CA1635DE * get_keys_7() const { return ___keys_7; } inline KeyCollection_t5CCFEFE4D2B769236D5FE27DD98BD4C6CA1635DE ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t5CCFEFE4D2B769236D5FE27DD98BD4C6CA1635DE * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712, ___values_8)); } inline ValueCollection_t0FD9940EACD4156D2E752000E6E2B514E45212D2 * get_values_8() const { return ___values_8; } inline ValueCollection_t0FD9940EACD4156D2E752000E6E2B514E45212D2 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t0FD9940EACD4156D2E752000E6E2B514E45212D2 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult> struct Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t5EC5AE8701559CAD8D6FE2C0D5EA5AF33617F16D * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tC94120C5B491DF84E829416B86156893C29B845F * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C, ___buckets_0)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C, ___entries_1)); } inline EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C, ___keys_7)); } inline KeyCollection_t5EC5AE8701559CAD8D6FE2C0D5EA5AF33617F16D * get_keys_7() const { return ___keys_7; } inline KeyCollection_t5EC5AE8701559CAD8D6FE2C0D5EA5AF33617F16D ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t5EC5AE8701559CAD8D6FE2C0D5EA5AF33617F16D * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C, ___values_8)); } inline ValueCollection_tC94120C5B491DF84E829416B86156893C29B845F * get_values_8() const { return ___values_8; } inline ValueCollection_tC94120C5B491DF84E829416B86156893C29B845F ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tC94120C5B491DF84E829416B86156893C29B845F * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.UInt16,System.Object> struct Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_tA0E3081654BAAA7B8AA71F9DD07C233A9F9D75B4 * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tCEB02848E807536415449852101F0B4CEAB130B2 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A, ___buckets_0)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A, ___entries_1)); } inline EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A, ___keys_7)); } inline KeyCollection_tA0E3081654BAAA7B8AA71F9DD07C233A9F9D75B4 * get_keys_7() const { return ___keys_7; } inline KeyCollection_tA0E3081654BAAA7B8AA71F9DD07C233A9F9D75B4 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tA0E3081654BAAA7B8AA71F9DD07C233A9F9D75B4 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A, ___values_8)); } inline ValueCollection_tCEB02848E807536415449852101F0B4CEAB130B2 * get_values_8() const { return ___values_8; } inline ValueCollection_tCEB02848E807536415449852101F0B4CEAB130B2 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tCEB02848E807536415449852101F0B4CEAB130B2 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.UInt32,System.Object> struct Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_tDB0CE6550164FA6B9F36F406E71DA592D0B03C55 * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tA886702655DCF8ABB2A963CDEE146B3CE24FCF4A * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F, ___buckets_0)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F, ___entries_1)); } inline EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F, ___keys_7)); } inline KeyCollection_tDB0CE6550164FA6B9F36F406E71DA592D0B03C55 * get_keys_7() const { return ___keys_7; } inline KeyCollection_tDB0CE6550164FA6B9F36F406E71DA592D0B03C55 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tDB0CE6550164FA6B9F36F406E71DA592D0B03C55 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F, ___values_8)); } inline ValueCollection_tA886702655DCF8ABB2A963CDEE146B3CE24FCF4A * get_values_8() const { return ___values_8; } inline ValueCollection_tA886702655DCF8ABB2A963CDEE146B3CE24FCF4A ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tA886702655DCF8ABB2A963CDEE146B3CE24FCF4A * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.EqualityComparer`1<System.Int32Enum> struct EqualityComparer_1_tD1E45FFD2812F3A647E425E6427770FF0DA20DD4 : public RuntimeObject { public: public: }; struct EqualityComparer_1_tD1E45FFD2812F3A647E425E6427770FF0DA20DD4_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_tD1E45FFD2812F3A647E425E6427770FF0DA20DD4 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tD1E45FFD2812F3A647E425E6427770FF0DA20DD4_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_tD1E45FFD2812F3A647E425E6427770FF0DA20DD4 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_tD1E45FFD2812F3A647E425E6427770FF0DA20DD4 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_tD1E45FFD2812F3A647E425E6427770FF0DA20DD4 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value); } }; // System.Collections.Generic.EqualityComparer`1<System.Int64> struct EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E : public RuntimeObject { public: public: }; struct EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value); } }; // System.Collections.Generic.EqualityComparer`1<System.Object> struct EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA : public RuntimeObject { public: public: }; struct EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value); } }; // System.Collections.Generic.EqualityComparer`1<System.Resources.ResourceLocator> struct EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D : public RuntimeObject { public: public: }; struct EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value); } }; // System.Collections.Generic.EqualityComparer`1<System.String> struct EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137 : public RuntimeObject { public: public: }; struct EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value); } }; // System.Collections.Generic.EqualityComparer`1<System.UInt16> struct EqualityComparer_1_t5A44736F4237D4F477AE641C097FBDC592BEA03E : public RuntimeObject { public: public: }; struct EqualityComparer_1_t5A44736F4237D4F477AE641C097FBDC592BEA03E_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t5A44736F4237D4F477AE641C097FBDC592BEA03E * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t5A44736F4237D4F477AE641C097FBDC592BEA03E_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t5A44736F4237D4F477AE641C097FBDC592BEA03E * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t5A44736F4237D4F477AE641C097FBDC592BEA03E ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t5A44736F4237D4F477AE641C097FBDC592BEA03E * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value); } }; // System.Collections.Generic.EqualityComparer`1<System.UInt32> struct EqualityComparer_1_tDDD15C1EE67655D8910B42D856F52279F5E62114 : public RuntimeObject { public: public: }; struct EqualityComparer_1_tDDD15C1EE67655D8910B42D856F52279F5E62114_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_tDDD15C1EE67655D8910B42D856F52279F5E62114 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tDDD15C1EE67655D8910B42D856F52279F5E62114_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_tDDD15C1EE67655D8910B42D856F52279F5E62114 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_tDDD15C1EE67655D8910B42D856F52279F5E62114 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_tDDD15C1EE67655D8910B42D856F52279F5E62114 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value); } }; // System.Collections.Generic.EqualityComparer`1<System.UInt64> struct EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value); } }; // System.Collections.Generic.EqualityComparer`1<UnityEngine.Networking.NetworkBroadcastResult> struct EqualityComparer_1_tEECFCAB1869EEE7F99E976A8E87C8CEC607C8AC5 : public RuntimeObject { public: public: }; struct EqualityComparer_1_tEECFCAB1869EEE7F99E976A8E87C8CEC607C8AC5_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_tEECFCAB1869EEE7F99E976A8E87C8CEC607C8AC5 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tEECFCAB1869EEE7F99E976A8E87C8CEC607C8AC5_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_tEECFCAB1869EEE7F99E976A8E87C8CEC607C8AC5 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_tEECFCAB1869EEE7F99E976A8E87C8CEC607C8AC5 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_tEECFCAB1869EEE7F99E976A8E87C8CEC607C8AC5 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value); } }; // System.Reflection.MemberInfo struct MemberInfo_t : public RuntimeObject { public: public: }; // System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo> struct ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 : public RuntimeObject { public: // System.Runtime.CompilerServices.Ephemeron[] System.Runtime.CompilerServices.ConditionalWeakTable`2::data EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* ___data_4; // System.Object System.Runtime.CompilerServices.ConditionalWeakTable`2::_lock RuntimeObject * ____lock_5; // System.Int32 System.Runtime.CompilerServices.ConditionalWeakTable`2::size int32_t ___size_6; public: inline static int32_t get_offset_of_data_4() { return static_cast<int32_t>(offsetof(ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98, ___data_4)); } inline EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* get_data_4() const { return ___data_4; } inline EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10** get_address_of_data_4() { return &___data_4; } inline void set_data_4(EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* value) { ___data_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___data_4), (void*)value); } inline static int32_t get_offset_of__lock_5() { return static_cast<int32_t>(offsetof(ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98, ____lock_5)); } inline RuntimeObject * get__lock_5() const { return ____lock_5; } inline RuntimeObject ** get_address_of__lock_5() { return &____lock_5; } inline void set__lock_5(RuntimeObject * value) { ____lock_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____lock_5), (void*)value); } inline static int32_t get_offset_of_size_6() { return static_cast<int32_t>(offsetof(ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98, ___size_6)); } inline int32_t get_size_6() const { return ___size_6; } inline int32_t* get_address_of_size_6() { return &___size_6; } inline void set_size_6(int32_t value) { ___size_6 = value; } }; // System.Runtime.Serialization.SerializationInfo struct SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 : public RuntimeObject { public: // System.String[] System.Runtime.Serialization.SerializationInfo::m_members StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___m_members_3; // System.Object[] System.Runtime.Serialization.SerializationInfo::m_data ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___m_data_4; // System.Type[] System.Runtime.Serialization.SerializationInfo::m_types TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___m_types_5; // System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Runtime.Serialization.SerializationInfo::m_nameToIndex Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB * ___m_nameToIndex_6; // System.Int32 System.Runtime.Serialization.SerializationInfo::m_currMember int32_t ___m_currMember_7; // System.Runtime.Serialization.IFormatterConverter System.Runtime.Serialization.SerializationInfo::m_converter RuntimeObject* ___m_converter_8; // System.String System.Runtime.Serialization.SerializationInfo::m_fullTypeName String_t* ___m_fullTypeName_9; // System.String System.Runtime.Serialization.SerializationInfo::m_assemName String_t* ___m_assemName_10; // System.Type System.Runtime.Serialization.SerializationInfo::objectType Type_t * ___objectType_11; // System.Boolean System.Runtime.Serialization.SerializationInfo::isFullTypeNameSetExplicit bool ___isFullTypeNameSetExplicit_12; // System.Boolean System.Runtime.Serialization.SerializationInfo::isAssemblyNameSetExplicit bool ___isAssemblyNameSetExplicit_13; // System.Boolean System.Runtime.Serialization.SerializationInfo::requireSameTokenInPartialTrust bool ___requireSameTokenInPartialTrust_14; public: inline static int32_t get_offset_of_m_members_3() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_members_3)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_m_members_3() const { return ___m_members_3; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_m_members_3() { return &___m_members_3; } inline void set_m_members_3(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___m_members_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_members_3), (void*)value); } inline static int32_t get_offset_of_m_data_4() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_data_4)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_m_data_4() const { return ___m_data_4; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_m_data_4() { return &___m_data_4; } inline void set_m_data_4(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ___m_data_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_data_4), (void*)value); } inline static int32_t get_offset_of_m_types_5() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_types_5)); } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_m_types_5() const { return ___m_types_5; } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_m_types_5() { return &___m_types_5; } inline void set_m_types_5(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value) { ___m_types_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_types_5), (void*)value); } inline static int32_t get_offset_of_m_nameToIndex_6() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_nameToIndex_6)); } inline Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB * get_m_nameToIndex_6() const { return ___m_nameToIndex_6; } inline Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB ** get_address_of_m_nameToIndex_6() { return &___m_nameToIndex_6; } inline void set_m_nameToIndex_6(Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB * value) { ___m_nameToIndex_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_nameToIndex_6), (void*)value); } inline static int32_t get_offset_of_m_currMember_7() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_currMember_7)); } inline int32_t get_m_currMember_7() const { return ___m_currMember_7; } inline int32_t* get_address_of_m_currMember_7() { return &___m_currMember_7; } inline void set_m_currMember_7(int32_t value) { ___m_currMember_7 = value; } inline static int32_t get_offset_of_m_converter_8() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_converter_8)); } inline RuntimeObject* get_m_converter_8() const { return ___m_converter_8; } inline RuntimeObject** get_address_of_m_converter_8() { return &___m_converter_8; } inline void set_m_converter_8(RuntimeObject* value) { ___m_converter_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_converter_8), (void*)value); } inline static int32_t get_offset_of_m_fullTypeName_9() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_fullTypeName_9)); } inline String_t* get_m_fullTypeName_9() const { return ___m_fullTypeName_9; } inline String_t** get_address_of_m_fullTypeName_9() { return &___m_fullTypeName_9; } inline void set_m_fullTypeName_9(String_t* value) { ___m_fullTypeName_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_fullTypeName_9), (void*)value); } inline static int32_t get_offset_of_m_assemName_10() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_assemName_10)); } inline String_t* get_m_assemName_10() const { return ___m_assemName_10; } inline String_t** get_address_of_m_assemName_10() { return &___m_assemName_10; } inline void set_m_assemName_10(String_t* value) { ___m_assemName_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_assemName_10), (void*)value); } inline static int32_t get_offset_of_objectType_11() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___objectType_11)); } inline Type_t * get_objectType_11() const { return ___objectType_11; } inline Type_t ** get_address_of_objectType_11() { return &___objectType_11; } inline void set_objectType_11(Type_t * value) { ___objectType_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___objectType_11), (void*)value); } inline static int32_t get_offset_of_isFullTypeNameSetExplicit_12() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___isFullTypeNameSetExplicit_12)); } inline bool get_isFullTypeNameSetExplicit_12() const { return ___isFullTypeNameSetExplicit_12; } inline bool* get_address_of_isFullTypeNameSetExplicit_12() { return &___isFullTypeNameSetExplicit_12; } inline void set_isFullTypeNameSetExplicit_12(bool value) { ___isFullTypeNameSetExplicit_12 = value; } inline static int32_t get_offset_of_isAssemblyNameSetExplicit_13() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___isAssemblyNameSetExplicit_13)); } inline bool get_isAssemblyNameSetExplicit_13() const { return ___isAssemblyNameSetExplicit_13; } inline bool* get_address_of_isAssemblyNameSetExplicit_13() { return &___isAssemblyNameSetExplicit_13; } inline void set_isAssemblyNameSetExplicit_13(bool value) { ___isAssemblyNameSetExplicit_13 = value; } inline static int32_t get_offset_of_requireSameTokenInPartialTrust_14() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___requireSameTokenInPartialTrust_14)); } inline bool get_requireSameTokenInPartialTrust_14() const { return ___requireSameTokenInPartialTrust_14; } inline bool* get_address_of_requireSameTokenInPartialTrust_14() { return &___requireSameTokenInPartialTrust_14; } inline void set_requireSameTokenInPartialTrust_14(bool value) { ___requireSameTokenInPartialTrust_14 = value; } }; // System.String struct String_t : public RuntimeObject { public: // System.Int32 System.String::m_stringLength int32_t ___m_stringLength_0; // System.Char System.String::m_firstChar Il2CppChar ___m_firstChar_1; public: inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); } inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; } inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; } inline void set_m_stringLength_0(int32_t value) { ___m_stringLength_0 = value; } inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); } inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; } inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; } inline void set_m_firstChar_1(Il2CppChar value) { ___m_firstChar_1 = value; } }; struct String_t_StaticFields { public: // System.String System.String::Empty String_t* ___Empty_5; public: inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); } inline String_t* get_Empty_5() const { return ___Empty_5; } inline String_t** get_address_of_Empty_5() { return &___Empty_5; } inline void set_Empty_5(String_t* value) { ___Empty_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value); } }; // System.ValueType struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF : public RuntimeObject { public: public: }; // Native definition for P/Invoke marshalling of System.ValueType struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_pinvoke { }; // Native definition for COM marshalling of System.ValueType struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_com { }; // System.Boolean struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C { public: // System.Boolean System.Boolean::m_value bool ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C, ___m_value_0)); } inline bool get_m_value_0() const { return ___m_value_0; } inline bool* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(bool value) { ___m_value_0 = value; } }; struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields { public: // System.String System.Boolean::TrueString String_t* ___TrueString_5; // System.String System.Boolean::FalseString String_t* ___FalseString_6; public: inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___TrueString_5)); } inline String_t* get_TrueString_5() const { return ___TrueString_5; } inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; } inline void set_TrueString_5(String_t* value) { ___TrueString_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value); } inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___FalseString_6)); } inline String_t* get_FalseString_6() const { return ___FalseString_6; } inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; } inline void set_FalseString_6(String_t* value) { ___FalseString_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value); } }; // System.Collections.DictionaryEntry struct DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 { public: // System.Object System.Collections.DictionaryEntry::_key RuntimeObject * ____key_0; // System.Object System.Collections.DictionaryEntry::_value RuntimeObject * ____value_1; public: inline static int32_t get_offset_of__key_0() { return static_cast<int32_t>(offsetof(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4, ____key_0)); } inline RuntimeObject * get__key_0() const { return ____key_0; } inline RuntimeObject ** get_address_of__key_0() { return &____key_0; } inline void set__key_0(RuntimeObject * value) { ____key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____key_0), (void*)value); } inline static int32_t get_offset_of__value_1() { return static_cast<int32_t>(offsetof(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4, ____value_1)); } inline RuntimeObject * get__value_1() const { return ____value_1; } inline RuntimeObject ** get_address_of__value_1() { return &____value_1; } inline void set__value_1(RuntimeObject * value) { ____value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____value_1), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Collections.DictionaryEntry struct DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_marshaled_pinvoke { Il2CppIUnknown* ____key_0; Il2CppIUnknown* ____value_1; }; // Native definition for COM marshalling of System.Collections.DictionaryEntry struct DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_marshaled_com { Il2CppIUnknown* ____key_0; Il2CppIUnknown* ____value_1; }; // System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int64> struct Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41 { public: // System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2_Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2_Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2_Entry::value int64_t ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41, ___value_3)); } inline int64_t get_value_3() const { return ___value_3; } inline int64_t* get_address_of_value_3() { return &___value_3; } inline void set_value_3(int64_t value) { ___value_3 = value; } }; // System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Object> struct Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA { public: // System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2_Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2_Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2_Entry::value RuntimeObject * ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA, ___value_3)); } inline RuntimeObject * get_value_3() const { return ___value_3; } inline RuntimeObject ** get_address_of_value_3() { return &___value_3; } inline void set_value_3(RuntimeObject * value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2_Entry<System.Object,System.UInt64> struct Entry_t09FDC95B8176FB338E5AEB6B208370DC61DA0AFB { public: // System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2_Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2_Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2_Entry::value uint64_t ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t09FDC95B8176FB338E5AEB6B208370DC61DA0AFB, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t09FDC95B8176FB338E5AEB6B208370DC61DA0AFB, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t09FDC95B8176FB338E5AEB6B208370DC61DA0AFB, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t09FDC95B8176FB338E5AEB6B208370DC61DA0AFB, ___value_3)); } inline uint64_t get_value_3() const { return ___value_3; } inline uint64_t* get_address_of_value_3() { return &___value_3; } inline void set_value_3(uint64_t value) { ___value_3 = value; } }; // System.Collections.Generic.Dictionary`2_Entry<System.UInt16,System.Object> struct Entry_t1450EFB00586C4C3F547351CC69158ECA835F664 { public: // System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2_Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2_Entry::key uint16_t ___key_2; // TValue System.Collections.Generic.Dictionary`2_Entry::value RuntimeObject * ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t1450EFB00586C4C3F547351CC69158ECA835F664, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t1450EFB00586C4C3F547351CC69158ECA835F664, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t1450EFB00586C4C3F547351CC69158ECA835F664, ___key_2)); } inline uint16_t get_key_2() const { return ___key_2; } inline uint16_t* get_address_of_key_2() { return &___key_2; } inline void set_key_2(uint16_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t1450EFB00586C4C3F547351CC69158ECA835F664, ___value_3)); } inline RuntimeObject * get_value_3() const { return ___value_3; } inline RuntimeObject ** get_address_of_value_3() { return &___value_3; } inline void set_value_3(RuntimeObject * value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2_Entry<System.UInt32,System.Object> struct Entry_tC105A43767733CFE822DCF17EE54641B162B266A { public: // System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2_Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2_Entry::key uint32_t ___key_2; // TValue System.Collections.Generic.Dictionary`2_Entry::value RuntimeObject * ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tC105A43767733CFE822DCF17EE54641B162B266A, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tC105A43767733CFE822DCF17EE54641B162B266A, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tC105A43767733CFE822DCF17EE54641B162B266A, ___key_2)); } inline uint32_t get_key_2() const { return ___key_2; } inline uint32_t* get_address_of_key_2() { return &___key_2; } inline void set_key_2(uint32_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tC105A43767733CFE822DCF17EE54641B162B266A, ___value_3)); } inline RuntimeObject * get_value_3() const { return ___value_3; } inline RuntimeObject ** get_address_of_value_3() { return &___value_3; } inline void set_value_3(RuntimeObject * value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value); } }; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Int64> struct KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value int64_t ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2, ___value_1)); } inline int64_t get_value_1() const { return ___value_1; } inline int64_t* get_address_of_value_1() { return &___value_1; } inline void set_value_1(int64_t value) { ___value_1 = value; } }; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Object> struct KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value); } }; // System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt64> struct KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value uint64_t ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42, ___value_1)); } inline uint64_t get_value_1() const { return ___value_1; } inline uint64_t* get_address_of_value_1() { return &___value_1; } inline void set_value_1(uint64_t value) { ___value_1 = value; } }; // System.Collections.Generic.KeyValuePair`2<System.UInt16,System.Object> struct KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 { public: // TKey System.Collections.Generic.KeyValuePair`2::key uint16_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968, ___key_0)); } inline uint16_t get_key_0() const { return ___key_0; } inline uint16_t* get_address_of_key_0() { return &___key_0; } inline void set_key_0(uint16_t value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value); } }; // System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object> struct KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 { public: // TKey System.Collections.Generic.KeyValuePair`2::key uint32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30, ___key_0)); } inline uint32_t get_key_0() const { return ___key_0; } inline uint32_t* get_address_of_key_0() { return &___key_0; } inline void set_key_0(uint32_t value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value); } }; // System.Collections.Generic.NonRandomizedStringEqualityComparer struct NonRandomizedStringEqualityComparer_t92C20503D9C5060A557792ABCCC06EF2DD77E5D9 : public EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137 { public: public: }; // System.Enum struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 : public ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF { public: public: }; struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields { public: // System.Char[] System.Enum::enumSeperatorCharArray CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___enumSeperatorCharArray_0; public: inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields, ___enumSeperatorCharArray_0)); } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; } inline void set_enumSeperatorCharArray_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value) { ___enumSeperatorCharArray_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Enum struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_pinvoke { }; // Native definition for COM marshalling of System.Enum struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_com { }; // System.Int32 struct Int32_t585191389E07734F19F3156FF88FB3EF4800D102 { public: // System.Int32 System.Int32::m_value int32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_t585191389E07734F19F3156FF88FB3EF4800D102, ___m_value_0)); } inline int32_t get_m_value_0() const { return ___m_value_0; } inline int32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int32_t value) { ___m_value_0 = value; } }; // System.Int64 struct Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 { public: // System.Int64 System.Int64::m_value int64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, ___m_value_0)); } inline int64_t get_m_value_0() const { return ___m_value_0; } inline int64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int64_t value) { ___m_value_0 = value; } }; // System.IntPtr struct IntPtr_t { public: // System.Void* System.IntPtr::m_value void* ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); } inline void* get_m_value_0() const { return ___m_value_0; } inline void** get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(void* value) { ___m_value_0 = value; } }; struct IntPtr_t_StaticFields { public: // System.IntPtr System.IntPtr::Zero intptr_t ___Zero_1; public: inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); } inline intptr_t get_Zero_1() const { return ___Zero_1; } inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; } inline void set_Zero_1(intptr_t value) { ___Zero_1 = value; } }; // System.Resources.ResourceLocator struct ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C { public: // System.Object System.Resources.ResourceLocator::_value RuntimeObject * ____value_0; // System.Int32 System.Resources.ResourceLocator::_dataPos int32_t ____dataPos_1; public: inline static int32_t get_offset_of__value_0() { return static_cast<int32_t>(offsetof(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C, ____value_0)); } inline RuntimeObject * get__value_0() const { return ____value_0; } inline RuntimeObject ** get_address_of__value_0() { return &____value_0; } inline void set__value_0(RuntimeObject * value) { ____value_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____value_0), (void*)value); } inline static int32_t get_offset_of__dataPos_1() { return static_cast<int32_t>(offsetof(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C, ____dataPos_1)); } inline int32_t get__dataPos_1() const { return ____dataPos_1; } inline int32_t* get_address_of__dataPos_1() { return &____dataPos_1; } inline void set__dataPos_1(int32_t value) { ____dataPos_1 = value; } }; // Native definition for P/Invoke marshalling of System.Resources.ResourceLocator struct ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_marshaled_pinvoke { Il2CppIUnknown* ____value_0; int32_t ____dataPos_1; }; // Native definition for COM marshalling of System.Resources.ResourceLocator struct ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_marshaled_com { Il2CppIUnknown* ____value_0; int32_t ____dataPos_1; }; // System.UInt16 struct UInt16_tAE45CEF73BF720100519F6867F32145D075F928E { public: // System.UInt16 System.UInt16::m_value uint16_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt16_tAE45CEF73BF720100519F6867F32145D075F928E, ___m_value_0)); } inline uint16_t get_m_value_0() const { return ___m_value_0; } inline uint16_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint16_t value) { ___m_value_0 = value; } }; // System.UInt32 struct UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B { public: // System.UInt32 System.UInt32::m_value uint32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B, ___m_value_0)); } inline uint32_t get_m_value_0() const { return ___m_value_0; } inline uint32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint32_t value) { ___m_value_0 = value; } }; // System.UInt64 struct UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E { public: // System.UInt64 System.UInt64::m_value uint64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E, ___m_value_0)); } inline uint64_t get_m_value_0() const { return ___m_value_0; } inline uint64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint64_t value) { ___m_value_0 = value; } }; // System.Void struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017 { public: union { struct { }; uint8_t Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017__padding[1]; }; public: }; // UnityEngine.Networking.NetworkBroadcastResult struct NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 { public: // System.String UnityEngine.Networking.NetworkBroadcastResult::serverAddress String_t* ___serverAddress_0; // System.Byte[] UnityEngine.Networking.NetworkBroadcastResult::broadcastData ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___broadcastData_1; public: inline static int32_t get_offset_of_serverAddress_0() { return static_cast<int32_t>(offsetof(NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6, ___serverAddress_0)); } inline String_t* get_serverAddress_0() const { return ___serverAddress_0; } inline String_t** get_address_of_serverAddress_0() { return &___serverAddress_0; } inline void set_serverAddress_0(String_t* value) { ___serverAddress_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___serverAddress_0), (void*)value); } inline static int32_t get_offset_of_broadcastData_1() { return static_cast<int32_t>(offsetof(NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6, ___broadcastData_1)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_broadcastData_1() const { return ___broadcastData_1; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_broadcastData_1() { return &___broadcastData_1; } inline void set_broadcastData_1(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___broadcastData_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___broadcastData_1), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.Networking.NetworkBroadcastResult struct NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6_marshaled_pinvoke { char* ___serverAddress_0; Il2CppSafeArray/*I1*/* ___broadcastData_1; }; // Native definition for COM marshalling of UnityEngine.Networking.NetworkBroadcastResult struct NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6_marshaled_com { Il2CppChar* ___serverAddress_0; Il2CppSafeArray/*I1*/* ___broadcastData_1; }; // System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Resources.ResourceLocator> struct Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D { public: // System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2_Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2_Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2_Entry::value ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D, ___value_3)); } inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C get_value_3() const { return ___value_3; } inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C * get_address_of_value_3() { return &___value_3; } inline void set_value_3(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->____value_0), (void*)NULL); } }; // System.Collections.Generic.Dictionary`2_Entry<System.Object,UnityEngine.Networking.NetworkBroadcastResult> struct Entry_t199B9164AC346CAFF297C44D6DF2326A3634773E { public: // System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2_Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2_Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2_Entry::value NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t199B9164AC346CAFF297C44D6DF2326A3634773E, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t199B9164AC346CAFF297C44D6DF2326A3634773E, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t199B9164AC346CAFF297C44D6DF2326A3634773E, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t199B9164AC346CAFF297C44D6DF2326A3634773E, ___value_3)); } inline NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 get_value_3() const { return ___value_3; } inline NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 * get_address_of_value_3() { return &___value_3; } inline void set_value_3(NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___serverAddress_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___broadcastData_1), (void*)NULL); #endif } }; // System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Int64> struct Enumerator_t9BD0A40138A5E3DDD866F2B84C017585FFBE61DE { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::dictionary Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::current KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t9BD0A40138A5E3DDD866F2B84C017585FFBE61DE, ___dictionary_0)); } inline Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_t9BD0A40138A5E3DDD866F2B84C017585FFBE61DE, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_t9BD0A40138A5E3DDD866F2B84C017585FFBE61DE, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t9BD0A40138A5E3DDD866F2B84C017585FFBE61DE, ___current_3)); } inline KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 get_current_3() const { return ___current_3; } inline KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL); } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_t9BD0A40138A5E3DDD866F2B84C017585FFBE61DE, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Object> struct Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::dictionary Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::current KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB, ___dictionary_0)); } inline Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB, ___current_3)); } inline KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE get_current_3() const { return ___current_3; } inline KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___value_1), (void*)NULL); #endif } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.UInt64> struct Enumerator_t23E8A8D4CB9A08A309C7A8334B81C7D0A9F6EF9C { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::dictionary Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::current KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t23E8A8D4CB9A08A309C7A8334B81C7D0A9F6EF9C, ___dictionary_0)); } inline Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_t23E8A8D4CB9A08A309C7A8334B81C7D0A9F6EF9C, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_t23E8A8D4CB9A08A309C7A8334B81C7D0A9F6EF9C, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t23E8A8D4CB9A08A309C7A8334B81C7D0A9F6EF9C, ___current_3)); } inline KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 get_current_3() const { return ___current_3; } inline KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL); } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_t23E8A8D4CB9A08A309C7A8334B81C7D0A9F6EF9C, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2_Enumerator<System.UInt16,System.Object> struct Enumerator_t976B9B5D38C913E0FC1BBE5B6DE0F3DA69753796 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::dictionary Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::current KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t976B9B5D38C913E0FC1BBE5B6DE0F3DA69753796, ___dictionary_0)); } inline Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_t976B9B5D38C913E0FC1BBE5B6DE0F3DA69753796, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_t976B9B5D38C913E0FC1BBE5B6DE0F3DA69753796, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t976B9B5D38C913E0FC1BBE5B6DE0F3DA69753796, ___current_3)); } inline KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 get_current_3() const { return ___current_3; } inline KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___value_1), (void*)NULL); } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_t976B9B5D38C913E0FC1BBE5B6DE0F3DA69753796, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2_Enumerator<System.UInt32,System.Object> struct Enumerator_tA11260A645393E5618D53A0300464DC6031C83B8 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::dictionary Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::current KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tA11260A645393E5618D53A0300464DC6031C83B8, ___dictionary_0)); } inline Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_tA11260A645393E5618D53A0300464DC6031C83B8, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_tA11260A645393E5618D53A0300464DC6031C83B8, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tA11260A645393E5618D53A0300464DC6031C83B8, ___current_3)); } inline KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 get_current_3() const { return ___current_3; } inline KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___value_1), (void*)NULL); } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tA11260A645393E5618D53A0300464DC6031C83B8, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.InsertionBehavior struct InsertionBehavior_tDE709AD9061AA205654E57F719D37F00F7A3E211 { public: // System.Byte System.Collections.Generic.InsertionBehavior::value__ uint8_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(InsertionBehavior_tDE709AD9061AA205654E57F719D37F00F7A3E211, ___value___2)); } inline uint8_t get_value___2() const { return ___value___2; } inline uint8_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(uint8_t value) { ___value___2 = value; } }; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator> struct KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6, ___value_1)); } inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C get_value_1() const { return ___value_1; } inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C * get_address_of_value_1() { return &___value_1; } inline void set_value_1(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->____value_0), (void*)NULL); } }; // System.Collections.Generic.KeyValuePair`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult> struct KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5, ___value_1)); } inline NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 get_value_1() const { return ___value_1; } inline NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 * get_address_of_value_1() { return &___value_1; } inline void set_value_1(NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->___serverAddress_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->___broadcastData_1), (void*)NULL); #endif } }; // System.Exception struct Exception_t : public RuntimeObject { public: // System.String System.Exception::_className String_t* ____className_1; // System.String System.Exception::_message String_t* ____message_2; // System.Collections.IDictionary System.Exception::_data RuntimeObject* ____data_3; // System.Exception System.Exception::_innerException Exception_t * ____innerException_4; // System.String System.Exception::_helpURL String_t* ____helpURL_5; // System.Object System.Exception::_stackTrace RuntimeObject * ____stackTrace_6; // System.String System.Exception::_stackTraceString String_t* ____stackTraceString_7; // System.String System.Exception::_remoteStackTraceString String_t* ____remoteStackTraceString_8; // System.Int32 System.Exception::_remoteStackIndex int32_t ____remoteStackIndex_9; // System.Object System.Exception::_dynamicMethods RuntimeObject * ____dynamicMethods_10; // System.Int32 System.Exception::_HResult int32_t ____HResult_11; // System.String System.Exception::_source String_t* ____source_12; // System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13; // System.Diagnostics.StackTrace[] System.Exception::captured_traces StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14; // System.IntPtr[] System.Exception::native_trace_ips IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* ___native_trace_ips_15; public: inline static int32_t get_offset_of__className_1() { return static_cast<int32_t>(offsetof(Exception_t, ____className_1)); } inline String_t* get__className_1() const { return ____className_1; } inline String_t** get_address_of__className_1() { return &____className_1; } inline void set__className_1(String_t* value) { ____className_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____className_1), (void*)value); } inline static int32_t get_offset_of__message_2() { return static_cast<int32_t>(offsetof(Exception_t, ____message_2)); } inline String_t* get__message_2() const { return ____message_2; } inline String_t** get_address_of__message_2() { return &____message_2; } inline void set__message_2(String_t* value) { ____message_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____message_2), (void*)value); } inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(Exception_t, ____data_3)); } inline RuntimeObject* get__data_3() const { return ____data_3; } inline RuntimeObject** get_address_of__data_3() { return &____data_3; } inline void set__data_3(RuntimeObject* value) { ____data_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____data_3), (void*)value); } inline static int32_t get_offset_of__innerException_4() { return static_cast<int32_t>(offsetof(Exception_t, ____innerException_4)); } inline Exception_t * get__innerException_4() const { return ____innerException_4; } inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; } inline void set__innerException_4(Exception_t * value) { ____innerException_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____innerException_4), (void*)value); } inline static int32_t get_offset_of__helpURL_5() { return static_cast<int32_t>(offsetof(Exception_t, ____helpURL_5)); } inline String_t* get__helpURL_5() const { return ____helpURL_5; } inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; } inline void set__helpURL_5(String_t* value) { ____helpURL_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____helpURL_5), (void*)value); } inline static int32_t get_offset_of__stackTrace_6() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTrace_6)); } inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; } inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; } inline void set__stackTrace_6(RuntimeObject * value) { ____stackTrace_6 = value; Il2CppCodeGenWriteBarrier((void**)(&____stackTrace_6), (void*)value); } inline static int32_t get_offset_of__stackTraceString_7() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTraceString_7)); } inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; } inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; } inline void set__stackTraceString_7(String_t* value) { ____stackTraceString_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____stackTraceString_7), (void*)value); } inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_8)); } inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; } inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; } inline void set__remoteStackTraceString_8(String_t* value) { ____remoteStackTraceString_8 = value; Il2CppCodeGenWriteBarrier((void**)(&____remoteStackTraceString_8), (void*)value); } inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackIndex_9)); } inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; } inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; } inline void set__remoteStackIndex_9(int32_t value) { ____remoteStackIndex_9 = value; } inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast<int32_t>(offsetof(Exception_t, ____dynamicMethods_10)); } inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; } inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; } inline void set__dynamicMethods_10(RuntimeObject * value) { ____dynamicMethods_10 = value; Il2CppCodeGenWriteBarrier((void**)(&____dynamicMethods_10), (void*)value); } inline static int32_t get_offset_of__HResult_11() { return static_cast<int32_t>(offsetof(Exception_t, ____HResult_11)); } inline int32_t get__HResult_11() const { return ____HResult_11; } inline int32_t* get_address_of__HResult_11() { return &____HResult_11; } inline void set__HResult_11(int32_t value) { ____HResult_11 = value; } inline static int32_t get_offset_of__source_12() { return static_cast<int32_t>(offsetof(Exception_t, ____source_12)); } inline String_t* get__source_12() const { return ____source_12; } inline String_t** get_address_of__source_12() { return &____source_12; } inline void set__source_12(String_t* value) { ____source_12 = value; Il2CppCodeGenWriteBarrier((void**)(&____source_12), (void*)value); } inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); } inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; } inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; } inline void set__safeSerializationManager_13(SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * value) { ____safeSerializationManager_13 = value; Il2CppCodeGenWriteBarrier((void**)(&____safeSerializationManager_13), (void*)value); } inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); } inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* get_captured_traces_14() const { return ___captured_traces_14; } inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196** get_address_of_captured_traces_14() { return &___captured_traces_14; } inline void set_captured_traces_14(StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* value) { ___captured_traces_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___captured_traces_14), (void*)value); } inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast<int32_t>(offsetof(Exception_t, ___native_trace_ips_15)); } inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* get_native_trace_ips_15() const { return ___native_trace_ips_15; } inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; } inline void set_native_trace_ips_15(IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* value) { ___native_trace_ips_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___native_trace_ips_15), (void*)value); } }; struct Exception_t_StaticFields { public: // System.Object System.Exception::s_EDILock RuntimeObject * ___s_EDILock_0; public: inline static int32_t get_offset_of_s_EDILock_0() { return static_cast<int32_t>(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); } inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; } inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; } inline void set_s_EDILock_0(RuntimeObject * value) { ___s_EDILock_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_EDILock_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Exception struct Exception_t_marshaled_pinvoke { char* ____className_1; char* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_pinvoke* ____innerException_4; char* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; char* ____stackTraceString_7; char* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; char* ____source_12; SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13; StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14; Il2CppSafeArray/*INT*/* ___native_trace_ips_15; }; // Native definition for COM marshalling of System.Exception struct Exception_t_marshaled_com { Il2CppChar* ____className_1; Il2CppChar* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_com* ____innerException_4; Il2CppChar* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; Il2CppChar* ____stackTraceString_7; Il2CppChar* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; Il2CppChar* ____source_12; SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13; StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14; Il2CppSafeArray/*INT*/* ___native_trace_ips_15; }; // System.Int32Enum struct Int32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD { public: // System.Int32 System.Int32Enum::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Int32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Reflection.BindingFlags struct BindingFlags_tE35C91D046E63A1B92BB9AB909FCF9DA84379ED0 { public: // System.Int32 System.Reflection.BindingFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BindingFlags_tE35C91D046E63A1B92BB9AB909FCF9DA84379ED0, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Runtime.Serialization.StreamingContextStates struct StreamingContextStates_t6D16CD7BC584A66A29B702F5FD59DF62BB1BDD3F { public: // System.Int32 System.Runtime.Serialization.StreamingContextStates::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StreamingContextStates_t6D16CD7BC584A66A29B702F5FD59DF62BB1BDD3F, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.RuntimeTypeHandle struct RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D { public: // System.IntPtr System.RuntimeTypeHandle::value intptr_t ___value_0; public: inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D, ___value_0)); } inline intptr_t get_value_0() const { return ___value_0; } inline intptr_t* get_address_of_value_0() { return &___value_0; } inline void set_value_0(intptr_t value) { ___value_0 = value; } }; // System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32Enum> struct Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 { public: // System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2_Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2_Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2_Entry::value int32_t ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0, ___value_3)); } inline int32_t get_value_3() const { return ___value_3; } inline int32_t* get_address_of_value_3() { return &___value_3; } inline void set_value_3(int32_t value) { ___value_3 = value; } }; // System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Resources.ResourceLocator> struct Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::dictionary Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::current KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860, ___dictionary_0)); } inline Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860, ___current_3)); } inline KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 get_current_3() const { return ___current_3; } inline KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___current_3))->___value_1))->____value_0), (void*)NULL); #endif } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2_Enumerator<System.Object,UnityEngine.Networking.NetworkBroadcastResult> struct Enumerator_tBB88D2BAC6A5B7E83EAF0774C620EF99949E9772 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::dictionary Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::current KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tBB88D2BAC6A5B7E83EAF0774C620EF99949E9772, ___dictionary_0)); } inline Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_tBB88D2BAC6A5B7E83EAF0774C620EF99949E9772, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_tBB88D2BAC6A5B7E83EAF0774C620EF99949E9772, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tBB88D2BAC6A5B7E83EAF0774C620EF99949E9772, ___current_3)); } inline KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 get_current_3() const { return ___current_3; } inline KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___current_3))->___value_1))->___serverAddress_0), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___current_3))->___value_1))->___broadcastData_1), (void*)NULL); #endif } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tBB88D2BAC6A5B7E83EAF0774C620EF99949E9772, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum> struct KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value int32_t ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5, ___value_1)); } inline int32_t get_value_1() const { return ___value_1; } inline int32_t* get_address_of_value_1() { return &___value_1; } inline void set_value_1(int32_t value) { ___value_1 = value; } }; // System.Runtime.Serialization.StreamingContext struct StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 { public: // System.Object System.Runtime.Serialization.StreamingContext::m_additionalContext RuntimeObject * ___m_additionalContext_0; // System.Runtime.Serialization.StreamingContextStates System.Runtime.Serialization.StreamingContext::m_state int32_t ___m_state_1; public: inline static int32_t get_offset_of_m_additionalContext_0() { return static_cast<int32_t>(offsetof(StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034, ___m_additionalContext_0)); } inline RuntimeObject * get_m_additionalContext_0() const { return ___m_additionalContext_0; } inline RuntimeObject ** get_address_of_m_additionalContext_0() { return &___m_additionalContext_0; } inline void set_m_additionalContext_0(RuntimeObject * value) { ___m_additionalContext_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_additionalContext_0), (void*)value); } inline static int32_t get_offset_of_m_state_1() { return static_cast<int32_t>(offsetof(StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034, ___m_state_1)); } inline int32_t get_m_state_1() const { return ___m_state_1; } inline int32_t* get_address_of_m_state_1() { return &___m_state_1; } inline void set_m_state_1(int32_t value) { ___m_state_1 = value; } }; // Native definition for P/Invoke marshalling of System.Runtime.Serialization.StreamingContext struct StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_marshaled_pinvoke { Il2CppIUnknown* ___m_additionalContext_0; int32_t ___m_state_1; }; // Native definition for COM marshalling of System.Runtime.Serialization.StreamingContext struct StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_marshaled_com { Il2CppIUnknown* ___m_additionalContext_0; int32_t ___m_state_1; }; // System.SystemException struct SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 : public Exception_t { public: public: }; // System.Type struct Type_t : public MemberInfo_t { public: // System.RuntimeTypeHandle System.Type::_impl RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ____impl_9; public: inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); } inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D get__impl_9() const { return ____impl_9; } inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D * get_address_of__impl_9() { return &____impl_9; } inline void set__impl_9(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D value) { ____impl_9 = value; } }; struct Type_t_StaticFields { public: // System.Reflection.MemberFilter System.Type::FilterAttribute MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterAttribute_0; // System.Reflection.MemberFilter System.Type::FilterName MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterName_1; // System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterNameIgnoreCase_2; // System.Object System.Type::Missing RuntimeObject * ___Missing_3; // System.Char System.Type::Delimiter Il2CppChar ___Delimiter_4; // System.Type[] System.Type::EmptyTypes TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___EmptyTypes_5; // System.Reflection.Binder System.Type::defaultBinder Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * ___defaultBinder_6; public: inline static int32_t get_offset_of_FilterAttribute_0() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_0)); } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterAttribute_0() const { return ___FilterAttribute_0; } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; } inline void set_FilterAttribute_0(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value) { ___FilterAttribute_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterAttribute_0), (void*)value); } inline static int32_t get_offset_of_FilterName_1() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_1)); } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterName_1() const { return ___FilterName_1; } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterName_1() { return &___FilterName_1; } inline void set_FilterName_1(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value) { ___FilterName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterName_1), (void*)value); } inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; } inline void set_FilterNameIgnoreCase_2(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value) { ___FilterNameIgnoreCase_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterNameIgnoreCase_2), (void*)value); } inline static int32_t get_offset_of_Missing_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_3)); } inline RuntimeObject * get_Missing_3() const { return ___Missing_3; } inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; } inline void set_Missing_3(RuntimeObject * value) { ___Missing_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Missing_3), (void*)value); } inline static int32_t get_offset_of_Delimiter_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_4)); } inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; } inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; } inline void set_Delimiter_4(Il2CppChar value) { ___Delimiter_4 = value; } inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_EmptyTypes_5() const { return ___EmptyTypes_5; } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; } inline void set_EmptyTypes_5(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value) { ___EmptyTypes_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___EmptyTypes_5), (void*)value); } inline static int32_t get_offset_of_defaultBinder_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___defaultBinder_6)); } inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * get_defaultBinder_6() const { return ___defaultBinder_6; } inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; } inline void set_defaultBinder_6(Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * value) { ___defaultBinder_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value); } }; // System.ArgumentException struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: // System.String System.ArgumentException::m_paramName String_t* ___m_paramName_17; public: inline static int32_t get_offset_of_m_paramName_17() { return static_cast<int32_t>(offsetof(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1, ___m_paramName_17)); } inline String_t* get_m_paramName_17() const { return ___m_paramName_17; } inline String_t** get_address_of_m_paramName_17() { return &___m_paramName_17; } inline void set_m_paramName_17(String_t* value) { ___m_paramName_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_paramName_17), (void*)value); } }; // System.ArrayTypeMismatchException struct ArrayTypeMismatchException_tE34C1032B089C37399200997F079C640D23D9499 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Int32Enum> struct Enumerator_t703CE82E2E7C2543EFCBFA02457EB68422BDAAD8 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::dictionary Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::current KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t703CE82E2E7C2543EFCBFA02457EB68422BDAAD8, ___dictionary_0)); } inline Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_t703CE82E2E7C2543EFCBFA02457EB68422BDAAD8, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_t703CE82E2E7C2543EFCBFA02457EB68422BDAAD8, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t703CE82E2E7C2543EFCBFA02457EB68422BDAAD8, ___current_3)); } inline KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 get_current_3() const { return ___current_3; } inline KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL); } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_t703CE82E2E7C2543EFCBFA02457EB68422BDAAD8, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.KeyNotFoundException struct KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.InvalidCastException struct InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.Runtime.Serialization.SerializationException struct SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; struct SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_StaticFields { public: // System.String System.Runtime.Serialization.SerializationException::_nullMessage String_t* ____nullMessage_17; public: inline static int32_t get_offset_of__nullMessage_17() { return static_cast<int32_t>(offsetof(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_StaticFields, ____nullMessage_17)); } inline String_t* get__nullMessage_17() const { return ____nullMessage_17; } inline String_t** get_address_of__nullMessage_17() { return &____nullMessage_17; } inline void set__nullMessage_17(String_t* value) { ____nullMessage_17 = value; Il2CppCodeGenWriteBarrier((void**)(&____nullMessage_17), (void*)value); } }; // System.ArgumentNullException struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 { public: public: }; // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 { public: // System.Object System.ArgumentOutOfRangeException::m_actualValue RuntimeObject * ___m_actualValue_19; public: inline static int32_t get_offset_of_m_actualValue_19() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA, ___m_actualValue_19)); } inline RuntimeObject * get_m_actualValue_19() const { return ___m_actualValue_19; } inline RuntimeObject ** get_address_of_m_actualValue_19() { return &___m_actualValue_19; } inline void set_m_actualValue_19(RuntimeObject * value) { ___m_actualValue_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_actualValue_19), (void*)value); } }; struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_StaticFields { public: // System.String modreq(System.Runtime.CompilerServices.IsVolatile) System.ArgumentOutOfRangeException::_rangeMessage String_t* ____rangeMessage_18; public: inline static int32_t get_offset_of__rangeMessage_18() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_StaticFields, ____rangeMessage_18)); } inline String_t* get__rangeMessage_18() const { return ____rangeMessage_18; } inline String_t** get_address_of__rangeMessage_18() { return &____rangeMessage_18; } inline void set__rangeMessage_18(String_t* value) { ____rangeMessage_18 = value; Il2CppCodeGenWriteBarrier((void**)(&____rangeMessage_18), (void*)value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32Enum>[] struct EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 m_Items[1]; public: inline Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 * 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, Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); } inline Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); } }; // System.Int32[] struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83 : public RuntimeArray { public: ALIGN_FIELD (8) int32_t m_Items[1]; public: inline int32_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int32_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, int32_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value) { m_Items[index] = value; } }; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>[] struct KeyValuePair_2U5BU5D_tC63FC57B68C58FE775C0A228C5DB05C042B6285E : public RuntimeArray { public: ALIGN_FIELD (8) KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 m_Items[1]; public: inline KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL); } inline KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL); } }; // System.Collections.DictionaryEntry[] struct DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56 : public RuntimeArray { public: ALIGN_FIELD (8) DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 m_Items[1]; public: inline DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 * 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, DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____key_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____value_1), (void*)NULL); #endif } inline DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____key_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____value_1), (void*)NULL); #endif } }; // System.Object[] struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A : public RuntimeArray { public: ALIGN_FIELD (8) RuntimeObject * m_Items[1]; public: inline RuntimeObject * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int64>[] struct EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41 m_Items[1]; public: inline Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41 * 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, Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); } inline Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); } }; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Int64>[] struct KeyValuePair_2U5BU5D_t03ACDE20158B31A492B18DAAEB19BCCAB1AFA9D5 : public RuntimeArray { public: ALIGN_FIELD (8) KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 m_Items[1]; public: inline KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL); } inline KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL); } }; // System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Object>[] struct EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA m_Items[1]; public: inline Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA * 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, Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL); #endif } inline Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL); #endif } }; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>[] struct KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262 : public RuntimeArray { public: ALIGN_FIELD (8) KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE m_Items[1]; public: inline KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL); #endif } inline KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL); #endif } }; // System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Resources.ResourceLocator>[] struct EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D m_Items[1]; public: inline Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D * 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, Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->____value_0), (void*)NULL); #endif } inline Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->____value_0), (void*)NULL); #endif } }; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>[] struct KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB : public RuntimeArray { public: ALIGN_FIELD (8) KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 m_Items[1]; public: inline KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_1))->____value_0), (void*)NULL); #endif } inline KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_1))->____value_0), (void*)NULL); #endif } }; // System.Collections.Generic.Dictionary`2_Entry<System.Object,System.UInt64>[] struct EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t09FDC95B8176FB338E5AEB6B208370DC61DA0AFB m_Items[1]; public: inline Entry_t09FDC95B8176FB338E5AEB6B208370DC61DA0AFB GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t09FDC95B8176FB338E5AEB6B208370DC61DA0AFB * 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, Entry_t09FDC95B8176FB338E5AEB6B208370DC61DA0AFB value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); } inline Entry_t09FDC95B8176FB338E5AEB6B208370DC61DA0AFB GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t09FDC95B8176FB338E5AEB6B208370DC61DA0AFB * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t09FDC95B8176FB338E5AEB6B208370DC61DA0AFB value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); } }; // System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt64>[] struct KeyValuePair_2U5BU5D_t6405A1D453F0ABF336D2B7B434910B1778715C78 : public RuntimeArray { public: ALIGN_FIELD (8) KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 m_Items[1]; public: inline KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL); } inline KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL); } }; // System.Collections.Generic.Dictionary`2_Entry<System.Object,UnityEngine.Networking.NetworkBroadcastResult>[] struct EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t199B9164AC346CAFF297C44D6DF2326A3634773E m_Items[1]; public: inline Entry_t199B9164AC346CAFF297C44D6DF2326A3634773E GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t199B9164AC346CAFF297C44D6DF2326A3634773E * 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, Entry_t199B9164AC346CAFF297C44D6DF2326A3634773E value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___serverAddress_0), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___broadcastData_1), (void*)NULL); #endif } inline Entry_t199B9164AC346CAFF297C44D6DF2326A3634773E GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t199B9164AC346CAFF297C44D6DF2326A3634773E * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t199B9164AC346CAFF297C44D6DF2326A3634773E value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___serverAddress_0), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___broadcastData_1), (void*)NULL); #endif } }; // System.Collections.Generic.KeyValuePair`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>[] struct KeyValuePair_2U5BU5D_tE9E64782D397CFFA60C8BDDFA88D4647AD8932C5 : public RuntimeArray { public: ALIGN_FIELD (8) KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 m_Items[1]; public: inline KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_1))->___serverAddress_0), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_1))->___broadcastData_1), (void*)NULL); #endif } inline KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_1))->___serverAddress_0), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_1))->___broadcastData_1), (void*)NULL); #endif } }; // System.Collections.Generic.Dictionary`2_Entry<System.UInt16,System.Object>[] struct EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t1450EFB00586C4C3F547351CC69158ECA835F664 m_Items[1]; public: inline Entry_t1450EFB00586C4C3F547351CC69158ECA835F664 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t1450EFB00586C4C3F547351CC69158ECA835F664 * 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, Entry_t1450EFB00586C4C3F547351CC69158ECA835F664 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL); } inline Entry_t1450EFB00586C4C3F547351CC69158ECA835F664 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t1450EFB00586C4C3F547351CC69158ECA835F664 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t1450EFB00586C4C3F547351CC69158ECA835F664 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL); } }; // System.Collections.Generic.KeyValuePair`2<System.UInt16,System.Object>[] struct KeyValuePair_2U5BU5D_t973017D6141F6D8AD9DCE8E35F9369C5A391F9F3 : public RuntimeArray { public: ALIGN_FIELD (8) KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 m_Items[1]; public: inline KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL); } inline KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL); } }; // System.Collections.Generic.Dictionary`2_Entry<System.UInt32,System.Object>[] struct EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A : public RuntimeArray { public: ALIGN_FIELD (8) Entry_tC105A43767733CFE822DCF17EE54641B162B266A m_Items[1]; public: inline Entry_tC105A43767733CFE822DCF17EE54641B162B266A GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_tC105A43767733CFE822DCF17EE54641B162B266A * 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, Entry_tC105A43767733CFE822DCF17EE54641B162B266A value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL); } inline Entry_tC105A43767733CFE822DCF17EE54641B162B266A GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_tC105A43767733CFE822DCF17EE54641B162B266A * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tC105A43767733CFE822DCF17EE54641B162B266A value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL); } }; // System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>[] struct KeyValuePair_2U5BU5D_tE5534F12D5421E2FFAE5C6743851D7EF64257399 : public RuntimeArray { public: ALIGN_FIELD (8) KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 m_Items[1]; public: inline KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL); } inline KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL); } }; // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>::get_Key() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m919A5B9C9E01A407D8DA9F3F08FB35620A76C296_gshared_inline (KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>::get_Value() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Value_mF3D2172C37CF753F9BDDAE1C214BAD43E3FB620A_gshared_inline (KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 * __this, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::Add(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConditionalWeakTable_2_Add_m328BEB54F1BEAC2B86045D46A84627B02C82E777_gshared (ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m5001221DAEAF189D4103F58AB40101F089635425_gshared (KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 * __this, RuntimeObject * ___key0, int32_t ___value1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32Enum>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mEAB595145815AB9186A2CFB4947C93D709660F04_gshared (Enumerator_t703CE82E2E7C2543EFCBFA02457EB68422BDAAD8 * __this, Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Object>::get_Default() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * EqualityComparer_1_get_Default_m6C1AD693298F6DE71F53C3E0195113D21592E183_gshared (const RuntimeMethod* method); // System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::TryGetValue(TKey,TValue&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConditionalWeakTable_2_TryGetValue_m281BFEF9AF914D26E08E1DE24C8A88D3CA8D557D_gshared (ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3 * __this, RuntimeObject * ___key0, RuntimeObject ** ___value1, const RuntimeMethod* method); // System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::Remove(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConditionalWeakTable_2_Remove_mD29BDC3DDB873F63EE055D4D5064CCD80CDCC21A_gshared (ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3 * __this, RuntimeObject * ___key0, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Int64>::get_Key() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_mB084E92B140BFFC0B05807BEF67E3078B444B51A_gshared_inline (KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Int64>::get_Value() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int64_t KeyValuePair_2_get_Value_mA67EB2ECE4D2556965A4E43E66589F6EEE19B182_gshared_inline (KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Int64>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m6204F5F64C03883836FCC24CF3FB9806BF396475_gshared (KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 * __this, RuntimeObject * ___key0, int64_t ___value1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int64>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mA87C4C4C2FCDEAFE555DACF7BF61D48F6ACB2E89_gshared (Enumerator_t9BD0A40138A5E3DDD866F2B84C017585FFBE61DE * __this, Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Key() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m9D4E9BCBAB1BE560871A0889C851FC22A09975F4_gshared_inline (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Value() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m8C7B882C4D425535288FAAD08EAF11D289A43AEC_gshared_inline (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m783A0935E40FCB80D5940E8CCF0EFEFE41D7C7D3_gshared (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m3FD84B57A809FF88FC26B86687686E3949F9CBC8_gshared (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB * __this, Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::get_Key() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m5D7C176AE453D032C109972EBB10C20605DAE036_gshared_inline (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::get_Value() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C KeyValuePair_2_get_Value_m48979A8E8026569BC75639CDE453011950B84356_gshared_inline (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m036B07A37CD133C33431E3A1AD0C3A57DBC521F0_gshared (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * __this, RuntimeObject * ___key0, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ___value1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mC05BB4833CCCF3518A99F2B27BEB5973D1E7AC32_gshared (Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 * __this, Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt64>::get_Key() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_mF0C24D70ED98A551C33B48F08966A9B0F2BA3FF5_gshared_inline (KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt64>::get_Value() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR uint64_t KeyValuePair_2_get_Value_mDA274D6518BE8D259246751EE0C3DDAEAFECF9D1_gshared_inline (KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt64>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m0F7C1AD545873E855BE321C3F5E7C9ABFF5D330D_gshared (KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 * __this, RuntimeObject * ___key0, uint64_t ___value1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt64>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m79D4E6166225A38E07A9DA6D158C0D6F46E685C9_gshared (Enumerator_t23E8A8D4CB9A08A309C7A8334B81C7D0A9F6EF9C * __this, Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::get_Key() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_mB917E774A987623D40C5DA2EBA21D45C3EB5C0F1_gshared_inline (KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::get_Value() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 KeyValuePair_2_get_Value_m195A8E1241A34205F7B6E149F05085770F740431_gshared_inline (KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m83E76CCB593E8CF4512E011C4323169B8BC2E4BE_gshared (KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 * __this, RuntimeObject * ___key0, NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 ___value1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mBEEF2AAEEB4D901A3076AE8AEBD9FCD7E8D0E300_gshared (Enumerator_tBB88D2BAC6A5B7E83EAF0774C620EF99949E9772 * __this, Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.UInt16,System.Object>::get_Key() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR uint16_t KeyValuePair_2_get_Key_mB51C4AA5BD683F1FB85101F403C825A315784C9F_gshared_inline (KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.UInt16,System.Object>::get_Value() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m2FD5C0ECFDA6A2DD292C4DBC2E6F56F3F6E074C2_gshared_inline (KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.UInt16,System.Object>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m2243E70A292DD0A7C69C6B99BC34719F41FF650E_gshared (KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 * __this, uint16_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt16,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mE681F7DC74D4D64852C7667F5EDED38D8365707A_gshared (Enumerator_t976B9B5D38C913E0FC1BBE5B6DE0F3DA69753796 * __this, Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>::get_Key() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR uint32_t KeyValuePair_2_get_Key_m87471DF5ECE5A02E957745A3F6A64B5A40B1DAD2_gshared_inline (KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>::get_Value() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m6256609EDAF20A0AC36F64B4E1B584B5D35B70A9_gshared_inline (KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_mDA92DF498E64672BF241C716D0F12E7ACF270931_gshared (KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 * __this, uint32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m0FA9E16264810D7DCC03216F7CA61C2F9FD8451A_gshared (Enumerator_tA11260A645393E5618D53A0300464DC6031C83B8 * __this, Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // System.Void System.Object::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0 (RuntimeObject * __this, const RuntimeMethod* method); // System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.Object,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378 (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * __this, String_t* ___paramName0, RuntimeObject * ___actualValue1, String_t* ___message2, const RuntimeMethod* method); // System.Void System.ArgumentNullException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * __this, String_t* ___paramName0, const RuntimeMethod* method); // System.Type System.Object::GetType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60 (RuntimeObject * __this, const RuntimeMethod* method); // System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6 (RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ___handle0, const RuntimeMethod* method); // System.Boolean System.Type::op_Equality(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>::get_Key() inline RuntimeObject * KeyValuePair_2_get_Key_m919A5B9C9E01A407D8DA9F3F08FB35620A76C296_inline (KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m919A5B9C9E01A407D8DA9F3F08FB35620A76C296_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>::get_Value() inline int32_t KeyValuePair_2_get_Value_mF3D2172C37CF753F9BDDAE1C214BAD43E3FB620A_inline (KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 * __this, const RuntimeMethod* method) { return (( int32_t (*) (KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 *, const RuntimeMethod*))KeyValuePair_2_get_Value_mF3D2172C37CF753F9BDDAE1C214BAD43E3FB620A_gshared_inline)(__this, method); } // System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo> System.Collections.Generic.DictionaryHashHelpers::get_SerializationInfoTable() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C_inline (const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo>::Add(TKey,TValue) inline void ConditionalWeakTable_2_Add_mCC3585BE91A7BDFC49EEFDE4C11173A36D1FB5FE (ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * __this, RuntimeObject * ___key0, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___value1, const RuntimeMethod* method) { (( void (*) (ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *, RuntimeObject *, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *, const RuntimeMethod*))ConditionalWeakTable_2_Add_m328BEB54F1BEAC2B86045D46A84627B02C82E777_gshared)(__this, ___key0, ___value1, method); } // System.Void System.Collections.Generic.KeyNotFoundException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyNotFoundException__ctor_mE9E1C6E6E21842095342C0A2ED65EC201FB4F3C8 (KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2 * __this, const RuntimeMethod* method); // System.Void System.Array::Clear(System.Array,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E (RuntimeArray * ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method); // System.Void System.ArgumentException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m5001221DAEAF189D4103F58AB40101F089635425 (KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 * __this, RuntimeObject * ___key0, int32_t ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 *, RuntimeObject *, int32_t, const RuntimeMethod*))KeyValuePair_2__ctor_m5001221DAEAF189D4103F58AB40101F089635425_gshared)(__this, ___key0, ___value1, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32Enum>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_mEAB595145815AB9186A2CFB4947C93D709660F04 (Enumerator_t703CE82E2E7C2543EFCBFA02457EB68422BDAAD8 * __this, Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_t703CE82E2E7C2543EFCBFA02457EB68422BDAAD8 *, Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *, int32_t, const RuntimeMethod*))Enumerator__ctor_mEAB595145815AB9186A2CFB4947C93D709660F04_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, int32_t ___value1, const RuntimeMethod* method); // System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Object,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, RuntimeObject * ___value1, Type_t * ___type2, const RuntimeMethod* method); // System.Int32 System.Collections.HashHelpers::GetPrime(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HashHelpers_GetPrime_m743D7006C2BCBADC1DC8CACF7C5B78C9F6B38297 (int32_t ___min0, const RuntimeMethod* method); // System.String SR::Format(System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_Format_mCDBB594267CC224AB2A69540BBA598151F0642C7 (String_t* ___resourceFormat0, RuntimeObject * ___p11, const RuntimeMethod* method); // System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.String>::get_Default() inline EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137 * EqualityComparer_1_get_Default_m85F378D7298050D5DF422363D5EB30A218B769B7 (const RuntimeMethod* method) { return (( EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137 * (*) (const RuntimeMethod*))EqualityComparer_1_get_Default_m6C1AD693298F6DE71F53C3E0195113D21592E183_gshared)(method); } // System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo>::TryGetValue(TKey,TValue&) inline bool ConditionalWeakTable_2_TryGetValue_mDFCB6C303807E3F8998D196F4573870680E81F8B (ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * __this, RuntimeObject * ___key0, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 ** ___value1, const RuntimeMethod* method) { return (( bool (*) (ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *, RuntimeObject *, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 **, const RuntimeMethod*))ConditionalWeakTable_2_TryGetValue_m281BFEF9AF914D26E08E1DE24C8A88D3CA8D557D_gshared)(__this, ___key0, ___value1, method); } // System.Int32 System.Runtime.Serialization.SerializationInfo::GetInt32(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SerializationInfo_GetInt32_mB47BD46A0BDBBAF5B47BB62E6EFF8E092E3F3656 (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, const RuntimeMethod* method); // System.Object System.Runtime.Serialization.SerializationInfo::GetValue(System.String,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, Type_t * ___type1, const RuntimeMethod* method); // System.Void System.Runtime.Serialization.SerializationException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1 (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo>::Remove(TKey) inline bool ConditionalWeakTable_2_Remove_mD69606977A8C793DEA91E373F7D886E4865D7FBD (ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { return (( bool (*) (ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *, RuntimeObject *, const RuntimeMethod*))ConditionalWeakTable_2_Remove_mD29BDC3DDB873F63EE055D4D5064CCD80CDCC21A_gshared)(__this, ___key0, method); } // System.Int32 System.Collections.HashHelpers::ExpandPrime(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HashHelpers_ExpandPrime_m4245F4C95074EAA8F949FB3B734F611A533A6A0D (int32_t ___oldSize0, const RuntimeMethod* method); // System.Void System.Array::Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6 (RuntimeArray * ___sourceArray0, int32_t ___sourceIndex1, RuntimeArray * ___destinationArray2, int32_t ___destinationIndex3, int32_t ___length4, const RuntimeMethod* method); // System.Int32 System.Array::get_Rank() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1 (RuntimeArray * __this, const RuntimeMethod* method); // System.Void System.ArgumentException::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, String_t* ___message0, String_t* ___paramName1, const RuntimeMethod* method); // System.Int32 System.Array::GetLowerBound(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B (RuntimeArray * __this, int32_t ___dimension0, const RuntimeMethod* method); // System.Int32 System.Array::get_Length() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D (RuntimeArray * __this, const RuntimeMethod* method); // System.Void System.Collections.DictionaryEntry::.ctor(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B (DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.String SR::Format(System.String,System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C (String_t* ___resourceFormat0, RuntimeObject * ___p11, RuntimeObject * ___p22, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Int64>::get_Key() inline RuntimeObject * KeyValuePair_2_get_Key_mB084E92B140BFFC0B05807BEF67E3078B444B51A_inline (KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 *, const RuntimeMethod*))KeyValuePair_2_get_Key_mB084E92B140BFFC0B05807BEF67E3078B444B51A_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Int64>::get_Value() inline int64_t KeyValuePair_2_get_Value_mA67EB2ECE4D2556965A4E43E66589F6EEE19B182_inline (KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 * __this, const RuntimeMethod* method) { return (( int64_t (*) (KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 *, const RuntimeMethod*))KeyValuePair_2_get_Value_mA67EB2ECE4D2556965A4E43E66589F6EEE19B182_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Int64>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m6204F5F64C03883836FCC24CF3FB9806BF396475 (KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 * __this, RuntimeObject * ___key0, int64_t ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 *, RuntimeObject *, int64_t, const RuntimeMethod*))KeyValuePair_2__ctor_m6204F5F64C03883836FCC24CF3FB9806BF396475_gshared)(__this, ___key0, ___value1, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int64>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_mA87C4C4C2FCDEAFE555DACF7BF61D48F6ACB2E89 (Enumerator_t9BD0A40138A5E3DDD866F2B84C017585FFBE61DE * __this, Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_t9BD0A40138A5E3DDD866F2B84C017585FFBE61DE *, Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *, int32_t, const RuntimeMethod*))Enumerator__ctor_mA87C4C4C2FCDEAFE555DACF7BF61D48F6ACB2E89_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Key() inline RuntimeObject * KeyValuePair_2_get_Key_m9D4E9BCBAB1BE560871A0889C851FC22A09975F4_inline (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *, const RuntimeMethod*))KeyValuePair_2_get_Key_m9D4E9BCBAB1BE560871A0889C851FC22A09975F4_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Value() inline RuntimeObject * KeyValuePair_2_get_Value_m8C7B882C4D425535288FAAD08EAF11D289A43AEC_inline (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *, const RuntimeMethod*))KeyValuePair_2_get_Value_m8C7B882C4D425535288FAAD08EAF11D289A43AEC_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m783A0935E40FCB80D5940E8CCF0EFEFE41D7C7D3 (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))KeyValuePair_2__ctor_m783A0935E40FCB80D5940E8CCF0EFEFE41D7C7D3_gshared)(__this, ___key0, ___value1, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_m3FD84B57A809FF88FC26B86687686E3949F9CBC8 (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB * __this, Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB *, Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, int32_t, const RuntimeMethod*))Enumerator__ctor_m3FD84B57A809FF88FC26B86687686E3949F9CBC8_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::get_Key() inline RuntimeObject * KeyValuePair_2_get_Key_m5D7C176AE453D032C109972EBB10C20605DAE036_inline (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m5D7C176AE453D032C109972EBB10C20605DAE036_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::get_Value() inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C KeyValuePair_2_get_Value_m48979A8E8026569BC75639CDE453011950B84356_inline (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * __this, const RuntimeMethod* method) { return (( ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C (*) (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m48979A8E8026569BC75639CDE453011950B84356_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m036B07A37CD133C33431E3A1AD0C3A57DBC521F0 (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * __this, RuntimeObject * ___key0, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *, RuntimeObject *, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C , const RuntimeMethod*))KeyValuePair_2__ctor_m036B07A37CD133C33431E3A1AD0C3A57DBC521F0_gshared)(__this, ___key0, ___value1, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_mC05BB4833CCCF3518A99F2B27BEB5973D1E7AC32 (Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 * __this, Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 *, Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, int32_t, const RuntimeMethod*))Enumerator__ctor_mC05BB4833CCCF3518A99F2B27BEB5973D1E7AC32_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt64>::get_Key() inline RuntimeObject * KeyValuePair_2_get_Key_mF0C24D70ED98A551C33B48F08966A9B0F2BA3FF5_inline (KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 *, const RuntimeMethod*))KeyValuePair_2_get_Key_mF0C24D70ED98A551C33B48F08966A9B0F2BA3FF5_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt64>::get_Value() inline uint64_t KeyValuePair_2_get_Value_mDA274D6518BE8D259246751EE0C3DDAEAFECF9D1_inline (KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 * __this, const RuntimeMethod* method) { return (( uint64_t (*) (KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 *, const RuntimeMethod*))KeyValuePair_2_get_Value_mDA274D6518BE8D259246751EE0C3DDAEAFECF9D1_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt64>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m0F7C1AD545873E855BE321C3F5E7C9ABFF5D330D (KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 * __this, RuntimeObject * ___key0, uint64_t ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 *, RuntimeObject *, uint64_t, const RuntimeMethod*))KeyValuePair_2__ctor_m0F7C1AD545873E855BE321C3F5E7C9ABFF5D330D_gshared)(__this, ___key0, ___value1, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt64>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_m79D4E6166225A38E07A9DA6D158C0D6F46E685C9 (Enumerator_t23E8A8D4CB9A08A309C7A8334B81C7D0A9F6EF9C * __this, Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_t23E8A8D4CB9A08A309C7A8334B81C7D0A9F6EF9C *, Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *, int32_t, const RuntimeMethod*))Enumerator__ctor_m79D4E6166225A38E07A9DA6D158C0D6F46E685C9_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::get_Key() inline RuntimeObject * KeyValuePair_2_get_Key_mB917E774A987623D40C5DA2EBA21D45C3EB5C0F1_inline (KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 *, const RuntimeMethod*))KeyValuePair_2_get_Key_mB917E774A987623D40C5DA2EBA21D45C3EB5C0F1_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::get_Value() inline NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 KeyValuePair_2_get_Value_m195A8E1241A34205F7B6E149F05085770F740431_inline (KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 * __this, const RuntimeMethod* method) { return (( NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 (*) (KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m195A8E1241A34205F7B6E149F05085770F740431_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m83E76CCB593E8CF4512E011C4323169B8BC2E4BE (KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 * __this, RuntimeObject * ___key0, NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 *, RuntimeObject *, NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 , const RuntimeMethod*))KeyValuePair_2__ctor_m83E76CCB593E8CF4512E011C4323169B8BC2E4BE_gshared)(__this, ___key0, ___value1, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_mBEEF2AAEEB4D901A3076AE8AEBD9FCD7E8D0E300 (Enumerator_tBB88D2BAC6A5B7E83EAF0774C620EF99949E9772 * __this, Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_tBB88D2BAC6A5B7E83EAF0774C620EF99949E9772 *, Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *, int32_t, const RuntimeMethod*))Enumerator__ctor_mBEEF2AAEEB4D901A3076AE8AEBD9FCD7E8D0E300_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.UInt16,System.Object>::get_Key() inline uint16_t KeyValuePair_2_get_Key_mB51C4AA5BD683F1FB85101F403C825A315784C9F_inline (KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 * __this, const RuntimeMethod* method) { return (( uint16_t (*) (KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 *, const RuntimeMethod*))KeyValuePair_2_get_Key_mB51C4AA5BD683F1FB85101F403C825A315784C9F_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.UInt16,System.Object>::get_Value() inline RuntimeObject * KeyValuePair_2_get_Value_m2FD5C0ECFDA6A2DD292C4DBC2E6F56F3F6E074C2_inline (KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m2FD5C0ECFDA6A2DD292C4DBC2E6F56F3F6E074C2_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.UInt16,System.Object>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m2243E70A292DD0A7C69C6B99BC34719F41FF650E (KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 * __this, uint16_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 *, uint16_t, RuntimeObject *, const RuntimeMethod*))KeyValuePair_2__ctor_m2243E70A292DD0A7C69C6B99BC34719F41FF650E_gshared)(__this, ___key0, ___value1, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt16,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_mE681F7DC74D4D64852C7667F5EDED38D8365707A (Enumerator_t976B9B5D38C913E0FC1BBE5B6DE0F3DA69753796 * __this, Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_t976B9B5D38C913E0FC1BBE5B6DE0F3DA69753796 *, Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *, int32_t, const RuntimeMethod*))Enumerator__ctor_mE681F7DC74D4D64852C7667F5EDED38D8365707A_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>::get_Key() inline uint32_t KeyValuePair_2_get_Key_m87471DF5ECE5A02E957745A3F6A64B5A40B1DAD2_inline (KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 * __this, const RuntimeMethod* method) { return (( uint32_t (*) (KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m87471DF5ECE5A02E957745A3F6A64B5A40B1DAD2_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>::get_Value() inline RuntimeObject * KeyValuePair_2_get_Value_m6256609EDAF20A0AC36F64B4E1B584B5D35B70A9_inline (KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m6256609EDAF20A0AC36F64B4E1B584B5D35B70A9_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_mDA92DF498E64672BF241C716D0F12E7ACF270931 (KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 * __this, uint32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 *, uint32_t, RuntimeObject *, const RuntimeMethod*))KeyValuePair_2__ctor_mDA92DF498E64672BF241C716D0F12E7ACF270931_gshared)(__this, ___key0, ___value1, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_m0FA9E16264810D7DCC03216F7CA61C2F9FD8451A (Enumerator_tA11260A645393E5618D53A0300464DC6031C83B8 * __this, Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_tA11260A645393E5618D53A0300464DC6031C83B8 *, Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *, int32_t, const RuntimeMethod*))Enumerator__ctor_m0FA9E16264810D7DCC03216F7CA61C2F9FD8451A_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m1C8D9B685C8406F92F3C063FCA11D9AB5F56493E_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, const RuntimeMethod* method) { { NullCheck((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this); (( void (*) (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this, (int32_t)0, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m600FDF815E60C81CEEE43606AB3DD61D7F95E74E_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, int32_t ___capacity0, const RuntimeMethod* method) { { int32_t L_0 = ___capacity0; NullCheck((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this); (( void (*) (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this, (int32_t)L_0, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m0F5369F554A6A3F00A328A3CC298BD1123CED815_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___comparer0; NullCheck((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this); (( void (*) (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this, (int32_t)0, (RuntimeObject*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::.ctor(System.Int32,System.Collections.Generic.IEqualityComparer`1<TKey>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m082713C7E6584F723EB973BD9CE25AF634381A09_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, int32_t ___capacity0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2__ctor_m082713C7E6584F723EB973BD9CE25AF634381A09_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* G_B6_0 = NULL; Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * G_B6_1 = NULL; RuntimeObject* G_B5_0 = NULL; Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * G_B5_1 = NULL; { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); int32_t L_0 = ___capacity0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0020; } } { int32_t L_1 = ___capacity0; int32_t L_2 = L_1; RuntimeObject * L_3 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_2); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_4 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_4, (String_t*)_stringLiteral7CB1F56D3FBE09E809244FC8E13671CD876E3860, (RuntimeObject *)L_3, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2__ctor_m082713C7E6584F723EB973BD9CE25AF634381A09_RuntimeMethod_var); } IL_0020: { int32_t L_5 = ___capacity0; if ((((int32_t)L_5) <= ((int32_t)0))) { goto IL_002b; } } { int32_t L_6 = ___capacity0; NullCheck((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this); (( void (*) (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); } IL_002b: { RuntimeObject* L_7 = ___comparer1; RuntimeObject* L_8 = (RuntimeObject*)L_7; G_B5_0 = L_8; G_B5_1 = ((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)(__this)); if (L_8) { G_B6_0 = L_8; G_B6_1 = ((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)(__this)); goto IL_0036; } } { EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * L_9 = (( EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); G_B6_0 = ((RuntimeObject*)(L_9)); G_B6_1 = ((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)(G_B5_1)); } IL_0036: { NullCheck(G_B6_1); G_B6_1->set_comparer_6(G_B6_0); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::.ctor(System.Collections.Generic.IDictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m4D093233F2539AA5F1D15545DBEB2EB806BE28EF_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, RuntimeObject* ___dictionary0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___dictionary0; NullCheck((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this); (( void (*) (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *, RuntimeObject*, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this, (RuntimeObject*)L_0, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::.ctor(System.Collections.Generic.IDictionary`2<TKey,TValue>,System.Collections.Generic.IEqualityComparer`1<TKey>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m5C8837FCE0A6A7FBDD5BAD9EC29AC1025EF4469C_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, RuntimeObject* ___dictionary0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2__ctor_m5C8837FCE0A6A7FBDD5BAD9EC29AC1025EF4469C_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* V_1 = NULL; int32_t V_2 = 0; RuntimeObject* V_3 = NULL; KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 V_4; memset((&V_4), 0, sizeof(V_4)); Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * G_B2_0 = NULL; Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * G_B1_0 = NULL; int32_t G_B3_0 = 0; Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * G_B3_1 = NULL; { RuntimeObject* L_0 = ___dictionary0; G_B1_0 = ((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)(__this)); if (L_0) { G_B2_0 = ((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)(__this)); goto IL_0007; } } { G_B3_0 = 0; G_B3_1 = ((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)(G_B1_0)); goto IL_000d; } IL_0007: { RuntimeObject* L_1 = ___dictionary0; NullCheck((RuntimeObject*)L_1); int32_t L_2 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::get_Count() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_1); G_B3_0 = L_2; G_B3_1 = ((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)(G_B2_0)); } IL_000d: { RuntimeObject* L_3 = ___comparer1; NullCheck((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)G_B3_1); (( void (*) (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)G_B3_1, (int32_t)G_B3_0, (RuntimeObject*)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); RuntimeObject* L_4 = ___dictionary0; if (L_4) { goto IL_0021; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_5 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_5, (String_t*)_stringLiteralF18BFB74E613AFB11F36BDD80CF05CD5DFAD98D6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Dictionary_2__ctor_m5C8837FCE0A6A7FBDD5BAD9EC29AC1025EF4469C_RuntimeMethod_var); } IL_0021: { RuntimeObject* L_6 = ___dictionary0; NullCheck((RuntimeObject *)L_6); Type_t * L_7 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60((RuntimeObject *)L_6, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_8 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 6)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_9 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_8, /*hidden argument*/NULL); bool L_10 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_7, (Type_t *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0085; } } { RuntimeObject* L_11 = ___dictionary0; Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * L_12 = (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)Castclass((RuntimeObject*)L_11, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))); NullCheck(L_12); int32_t L_13 = (int32_t)L_12->get_count_2(); V_0 = (int32_t)L_13; NullCheck(L_12); EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_14 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)L_12->get_entries_1(); V_1 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)L_14; V_2 = (int32_t)0; goto IL_0080; } IL_004f: { EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_15 = V_1; int32_t L_16 = V_2; NullCheck(L_15); int32_t L_17 = (int32_t)((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16)))->get_hashCode_0(); if ((((int32_t)L_17) < ((int32_t)0))) { goto IL_007c; } } { EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_18 = V_1; int32_t L_19 = V_2; NullCheck(L_18); RuntimeObject * L_20 = (RuntimeObject *)((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)))->get_key_2(); EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_21 = V_1; int32_t L_22 = V_2; NullCheck(L_21); int32_t L_23 = (int32_t)((L_21)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_22)))->get_value_3(); NullCheck((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this); (( void (*) (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *, RuntimeObject *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this, (RuntimeObject *)L_20, (int32_t)L_23, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); } IL_007c: { int32_t L_24 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1)); } IL_0080: { int32_t L_25 = V_2; int32_t L_26 = V_0; if ((((int32_t)L_25) < ((int32_t)L_26))) { goto IL_004f; } } { return; } IL_0085: { RuntimeObject* L_27 = ___dictionary0; NullCheck((RuntimeObject*)L_27); RuntimeObject* L_28 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 9), (RuntimeObject*)L_27); V_3 = (RuntimeObject*)L_28; } IL_008c: try { // begin try (depth: 1) { goto IL_00aa; } IL_008e: { RuntimeObject* L_29 = V_3; NullCheck((RuntimeObject*)L_29); KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 L_30 = InterfaceFuncInvoker0< KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 10), (RuntimeObject*)L_29); V_4 = (KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 )L_30; RuntimeObject * L_31 = KeyValuePair_2_get_Key_m919A5B9C9E01A407D8DA9F3F08FB35620A76C296_inline((KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 *)(KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 *)(&V_4), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); int32_t L_32 = KeyValuePair_2_get_Value_mF3D2172C37CF753F9BDDAE1C214BAD43E3FB620A_inline((KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 *)(KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 *)(&V_4), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); NullCheck((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this); (( void (*) (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *, RuntimeObject *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this, (RuntimeObject *)L_31, (int32_t)L_32, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); } IL_00aa: { RuntimeObject* L_33 = V_3; NullCheck((RuntimeObject*)L_33); bool L_34 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, (RuntimeObject*)L_33); if (L_34) { goto IL_008e; } } IL_00b2: { IL2CPP_LEAVE(0xBE, FINALLY_00b4); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00b4; } FINALLY_00b4: { // begin finally (depth: 1) { RuntimeObject* L_35 = V_3; if (!L_35) { goto IL_00bd; } } IL_00b7: { RuntimeObject* L_36 = V_3; NullCheck((RuntimeObject*)L_36); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, (RuntimeObject*)L_36); } IL_00bd: { IL2CPP_END_FINALLY(180) } } // end finally (depth: 1) IL2CPP_CLEANUP(180) { IL2CPP_JUMP_TBL(0xBE, IL_00be) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_00be: { return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m8476D07C57BB3953797855B1F78400A999FE51FC_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2__ctor_m8476D07C57BB3953797855B1F78400A999FE51FC_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_0 = DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C_inline(/*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_1 = ___info0; NullCheck((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0); ConditionalWeakTable_2_Add_mCC3585BE91A7BDFC49EEFDE4C11173A36D1FB5FE((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0, (RuntimeObject *)__this, (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_1, /*hidden argument*/ConditionalWeakTable_2_Add_mCC3585BE91A7BDFC49EEFDE4C11173A36D1FB5FE_RuntimeMethod_var); return; } } // System.Int32 System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Dictionary_2_get_Count_mF9F486F85F5160E7E7A13ACD7AF54C2831E2D115_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_count_2(); int32_t L_1 = (int32_t)__this->get_freeCount_5(); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)); } } // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::get_Keys() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyCollection_t16EDFEDFE6B46AE31E251DC5F71DDA39573C0A96 * Dictionary_2_get_Keys_m3E57395296C89146C306C09D58DD88914A48A892_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, const RuntimeMethod* method) { { KeyCollection_t16EDFEDFE6B46AE31E251DC5F71DDA39573C0A96 * L_0 = (KeyCollection_t16EDFEDFE6B46AE31E251DC5F71DDA39573C0A96 *)__this->get_keys_7(); if (L_0) { goto IL_0014; } } { KeyCollection_t16EDFEDFE6B46AE31E251DC5F71DDA39573C0A96 * L_1 = (KeyCollection_t16EDFEDFE6B46AE31E251DC5F71DDA39573C0A96 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 13)); (( void (*) (KeyCollection_t16EDFEDFE6B46AE31E251DC5F71DDA39573C0A96 *, Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)->methodPointer)(L_1, (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)); __this->set_keys_7(L_1); } IL_0014: { KeyCollection_t16EDFEDFE6B46AE31E251DC5F71DDA39573C0A96 * L_2 = (KeyCollection_t16EDFEDFE6B46AE31E251DC5F71DDA39573C0A96 *)__this->get_keys_7(); return L_2; } } // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::get_Values() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueCollection_t74015A8B75054E8C8947DAA50BD4DD43F895BECE * Dictionary_2_get_Values_mC7697FD8553E02F71EE3FDBAD435677DDCCC9245_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, const RuntimeMethod* method) { { ValueCollection_t74015A8B75054E8C8947DAA50BD4DD43F895BECE * L_0 = (ValueCollection_t74015A8B75054E8C8947DAA50BD4DD43F895BECE *)__this->get_values_8(); if (L_0) { goto IL_0014; } } { ValueCollection_t74015A8B75054E8C8947DAA50BD4DD43F895BECE * L_1 = (ValueCollection_t74015A8B75054E8C8947DAA50BD4DD43F895BECE *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 15)); (( void (*) (ValueCollection_t74015A8B75054E8C8947DAA50BD4DD43F895BECE *, Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)->methodPointer)(L_1, (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)); __this->set_values_8(L_1); } IL_0014: { ValueCollection_t74015A8B75054E8C8947DAA50BD4DD43F895BECE * L_2 = (ValueCollection_t74015A8B75054E8C8947DAA50BD4DD43F895BECE *)__this->get_values_8(); return L_2; } } // TValue System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::get_Item(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Dictionary_2_get_Item_m762CB847133E2354776C0BB968D07190DC136A22_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_get_Item_m762CB847133E2354776C0BB968D07190DC136A22_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; NullCheck((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_001e; } } { EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_3 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)__this->get_entries_1(); int32_t L_4 = V_0; NullCheck(L_3); int32_t L_5 = (int32_t)((L_3)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_4)))->get_value_3(); return L_5; } IL_001e: { KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2 * L_6 = (KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2 *)il2cpp_codegen_object_new(KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2_il2cpp_TypeInfo_var); KeyNotFoundException__ctor_mE9E1C6E6E21842095342C0A2ED65EC201FB4F3C8(L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Dictionary_2_get_Item_m762CB847133E2354776C0BB968D07190DC136A22_RuntimeMethod_var); } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::set_Item(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_m4A0DA06D7DEC22F36AE25DC7630B32A76C0E1749_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, RuntimeObject * ___key0, int32_t ___value1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; int32_t L_1 = ___value1; NullCheck((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this); (( bool (*) (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *, RuntimeObject *, int32_t, uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this, (RuntimeObject *)L_0, (int32_t)L_1, (uint8_t)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::Add(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_m7D34DD61861E67DE2FBAE6DFE9926CB3F60B12F7_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, RuntimeObject * ___key0, int32_t ___value1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; int32_t L_1 = ___value1; NullCheck((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this); (( bool (*) (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *, RuntimeObject *, int32_t, uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this, (RuntimeObject *)L_0, (int32_t)L_1, (uint8_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Add_m90824361B9D055EEA60B9EB2B786474EB28F01B9_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 ___keyValuePair0, const RuntimeMethod* method) { { RuntimeObject * L_0 = KeyValuePair_2_get_Key_m919A5B9C9E01A407D8DA9F3F08FB35620A76C296_inline((KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 *)(KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); int32_t L_1 = KeyValuePair_2_get_Value_mF3D2172C37CF753F9BDDAE1C214BAD43E3FB620A_inline((KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 *)(KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); NullCheck((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this); (( void (*) (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *, RuntimeObject *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this, (RuntimeObject *)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Contains(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Contains_mEF6F50E6B641D7D0D5CE4051440170080BAFE7C5_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 ___keyValuePair0, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = KeyValuePair_2_get_Key_m919A5B9C9E01A407D8DA9F3F08FB35620A76C296_inline((KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 *)(KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0038; } } { EqualityComparer_1_tD1E45FFD2812F3A647E425E6427770FF0DA20DD4 * L_3 = (( EqualityComparer_1_tD1E45FFD2812F3A647E425E6427770FF0DA20DD4 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)); EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_4 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); int32_t L_6 = (int32_t)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); int32_t L_7 = KeyValuePair_2_get_Value_mF3D2172C37CF753F9BDDAE1C214BAD43E3FB620A_inline((KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 *)(KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); NullCheck((EqualityComparer_1_tD1E45FFD2812F3A647E425E6427770FF0DA20DD4 *)L_3); bool L_8 = VirtFuncInvoker2< bool, int32_t, int32_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Int32Enum>::Equals(T,T) */, (EqualityComparer_1_tD1E45FFD2812F3A647E425E6427770FF0DA20DD4 *)L_3, (int32_t)L_6, (int32_t)L_7); if (!L_8) { goto IL_0038; } } { return (bool)1; } IL_0038: { return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Remove_mEDBF2D772E115CFAEE547343B6689F58F968E1BD_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 ___keyValuePair0, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = KeyValuePair_2_get_Key_m919A5B9C9E01A407D8DA9F3F08FB35620A76C296_inline((KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 *)(KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0046; } } { EqualityComparer_1_tD1E45FFD2812F3A647E425E6427770FF0DA20DD4 * L_3 = (( EqualityComparer_1_tD1E45FFD2812F3A647E425E6427770FF0DA20DD4 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)); EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_4 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); int32_t L_6 = (int32_t)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); int32_t L_7 = KeyValuePair_2_get_Value_mF3D2172C37CF753F9BDDAE1C214BAD43E3FB620A_inline((KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 *)(KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); NullCheck((EqualityComparer_1_tD1E45FFD2812F3A647E425E6427770FF0DA20DD4 *)L_3); bool L_8 = VirtFuncInvoker2< bool, int32_t, int32_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Int32Enum>::Equals(T,T) */, (EqualityComparer_1_tD1E45FFD2812F3A647E425E6427770FF0DA20DD4 *)L_3, (int32_t)L_6, (int32_t)L_7); if (!L_8) { goto IL_0046; } } { RuntimeObject * L_9 = KeyValuePair_2_get_Key_m919A5B9C9E01A407D8DA9F3F08FB35620A76C296_inline((KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 *)(KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this); (( bool (*) (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)->methodPointer)((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this, (RuntimeObject *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); return (bool)1; } IL_0046: { return (bool)0; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Clear_m6A0B00DC280D1136C9DE1FCFB95181B3B028FD73_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = (int32_t)__this->get_count_2(); if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_005a; } } { V_0 = (int32_t)0; goto IL_001a; } IL_000d: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_2 = V_0; NullCheck(L_1); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(L_2), (int32_t)(-1)); int32_t L_3 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)); } IL_001a: { int32_t L_4 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_5 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_5); if ((((int32_t)L_4) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length))))))) { goto IL_000d; } } { EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_6 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)__this->get_entries_1(); int32_t L_7 = (int32_t)__this->get_count_2(); Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_6, (int32_t)0, (int32_t)L_7, /*hidden argument*/NULL); __this->set_freeList_4((-1)); __this->set_count_2(0); __this->set_freeCount_5(0); int32_t L_8 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1))); } IL_005a: { return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::ContainsKey(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsKey_mFA8A7C3AE75554E70838FCF41A5DF89B9B6FC0DB_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; NullCheck((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); return (bool)((((int32_t)((((int32_t)L_1) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::ContainsValue(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsValue_m754F51A81092AF15FBFE15D9465765DFA700D7C5_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, int32_t ___value0, const RuntimeMethod* method) { int32_t V_0 = 0; EqualityComparer_1_tD1E45FFD2812F3A647E425E6427770FF0DA20DD4 * V_1 = NULL; int32_t V_2 = 0; { goto IL_0049; } { V_0 = (int32_t)0; goto IL_003e; } IL_000c: { EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_1 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)__this->get_entries_1(); int32_t L_2 = V_0; NullCheck(L_1); int32_t L_3 = (int32_t)((L_1)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_2)))->get_hashCode_0(); if ((((int32_t)L_3) < ((int32_t)0))) { goto IL_003a; } } { EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_4 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); int32_t L_6 = (int32_t)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); goto IL_003a; } { return (bool)1; } IL_003a: { int32_t L_7 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)); } IL_003e: { int32_t L_8 = V_0; int32_t L_9 = (int32_t)__this->get_count_2(); if ((((int32_t)L_8) < ((int32_t)L_9))) { goto IL_000c; } } { goto IL_0090; } IL_0049: { EqualityComparer_1_tD1E45FFD2812F3A647E425E6427770FF0DA20DD4 * L_10 = (( EqualityComparer_1_tD1E45FFD2812F3A647E425E6427770FF0DA20DD4 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)); V_1 = (EqualityComparer_1_tD1E45FFD2812F3A647E425E6427770FF0DA20DD4 *)L_10; V_2 = (int32_t)0; goto IL_0087; } IL_0053: { EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_11 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)__this->get_entries_1(); int32_t L_12 = V_2; NullCheck(L_11); int32_t L_13 = (int32_t)((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12)))->get_hashCode_0(); if ((((int32_t)L_13) < ((int32_t)0))) { goto IL_0083; } } { EqualityComparer_1_tD1E45FFD2812F3A647E425E6427770FF0DA20DD4 * L_14 = V_1; EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_15 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)__this->get_entries_1(); int32_t L_16 = V_2; NullCheck(L_15); int32_t L_17 = (int32_t)((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16)))->get_value_3(); int32_t L_18 = ___value0; NullCheck((EqualityComparer_1_tD1E45FFD2812F3A647E425E6427770FF0DA20DD4 *)L_14); bool L_19 = VirtFuncInvoker2< bool, int32_t, int32_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Int32Enum>::Equals(T,T) */, (EqualityComparer_1_tD1E45FFD2812F3A647E425E6427770FF0DA20DD4 *)L_14, (int32_t)L_17, (int32_t)L_18); if (!L_19) { goto IL_0083; } } { return (bool)1; } IL_0083: { int32_t L_20 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1)); } IL_0087: { int32_t L_21 = V_2; int32_t L_22 = (int32_t)__this->get_count_2(); if ((((int32_t)L_21) < ((int32_t)L_22))) { goto IL_0053; } } IL_0090: { return (bool)0; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_CopyTo_mD417B7E942D0854711D2C851375A5D36EE666583_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, KeyValuePair_2U5BU5D_tC63FC57B68C58FE775C0A228C5DB05C042B6285E* ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_CopyTo_mD417B7E942D0854711D2C851375A5D36EE666583_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* V_1 = NULL; int32_t V_2 = 0; { KeyValuePair_2U5BU5D_tC63FC57B68C58FE775C0A228C5DB05C042B6285E* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_CopyTo_mD417B7E942D0854711D2C851375A5D36EE666583_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___index1; KeyValuePair_2U5BU5D_tC63FC57B68C58FE775C0A228C5DB05C042B6285E* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))) { goto IL_002e; } } IL_0018: { int32_t L_5 = ___index1; int32_t L_6 = L_5; RuntimeObject * L_7 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_6); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_8, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, (RuntimeObject *)L_7, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Dictionary_2_CopyTo_mD417B7E942D0854711D2C851375A5D36EE666583_RuntimeMethod_var); } IL_002e: { KeyValuePair_2U5BU5D_tC63FC57B68C58FE775C0A228C5DB05C042B6285E* L_9 = ___array0; NullCheck(L_9); int32_t L_10 = ___index1; NullCheck((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this); int32_t L_11 = (( int32_t (*) (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)->methodPointer)((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_11))) { goto IL_0046; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_12, (String_t*)_stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Dictionary_2_CopyTo_mD417B7E942D0854711D2C851375A5D36EE666583_RuntimeMethod_var); } IL_0046: { int32_t L_13 = (int32_t)__this->get_count_2(); V_0 = (int32_t)L_13; EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_14 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)__this->get_entries_1(); V_1 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)L_14; V_2 = (int32_t)0; goto IL_0094; } IL_0058: { EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_15 = V_1; int32_t L_16 = V_2; NullCheck(L_15); int32_t L_17 = (int32_t)((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16)))->get_hashCode_0(); if ((((int32_t)L_17) < ((int32_t)0))) { goto IL_0090; } } { KeyValuePair_2U5BU5D_tC63FC57B68C58FE775C0A228C5DB05C042B6285E* L_18 = ___array0; int32_t L_19 = ___index1; int32_t L_20 = (int32_t)L_19; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1)); EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_21 = V_1; int32_t L_22 = V_2; NullCheck(L_21); RuntimeObject * L_23 = (RuntimeObject *)((L_21)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_22)))->get_key_2(); EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_24 = V_1; int32_t L_25 = V_2; NullCheck(L_24); int32_t L_26 = (int32_t)((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_value_3(); KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 L_27; memset((&L_27), 0, sizeof(L_27)); KeyValuePair_2__ctor_m5001221DAEAF189D4103F58AB40101F089635425((&L_27), (RuntimeObject *)L_23, (int32_t)L_26, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)); NullCheck(L_18); (L_18)->SetAt(static_cast<il2cpp_array_size_t>(L_20), (KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 )L_27); } IL_0090: { int32_t L_28 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)1)); } IL_0094: { int32_t L_29 = V_2; int32_t L_30 = V_0; if ((((int32_t)L_29) < ((int32_t)L_30))) { goto IL_0058; } } { return; } } // System.Collections.Generic.Dictionary`2_Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t703CE82E2E7C2543EFCBFA02457EB68422BDAAD8 Dictionary_2_GetEnumerator_m1B5A6A531DB805345CBCD31B2CFD18132810BA9E_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, const RuntimeMethod* method) { { Enumerator_t703CE82E2E7C2543EFCBFA02457EB68422BDAAD8 L_0; memset((&L_0), 0, sizeof(L_0)); Enumerator__ctor_mEAB595145815AB9186A2CFB4947C93D709660F04((&L_0), (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 28)); return L_0; } } // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<TKey,TValue>> System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_Generic_IEnumerableU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_GetEnumerator_m16A169453BC9D304FD140BC003A98AFC4BC0FA7A_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, const RuntimeMethod* method) { { Enumerator_t703CE82E2E7C2543EFCBFA02457EB68422BDAAD8 L_0; memset((&L_0), 0, sizeof(L_0)); Enumerator__ctor_mEAB595145815AB9186A2CFB4947C93D709660F04((&L_0), (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 28)); Enumerator_t703CE82E2E7C2543EFCBFA02457EB68422BDAAD8 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 27), &L_1); return (RuntimeObject*)L_2; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_GetObjectData_mFB7A6018D1085693F25E29266E97D618B2068DD0_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_GetObjectData_mFB7A6018D1085693F25E29266E97D618B2068DD0_MetadataUsageId); s_Il2CppMethodInitialized = true; } KeyValuePair_2U5BU5D_tC63FC57B68C58FE775C0A228C5DB05C042B6285E* V_0 = NULL; String_t* G_B4_0 = NULL; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * G_B4_1 = NULL; String_t* G_B3_0 = NULL; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * G_B3_1 = NULL; int32_t G_B5_0 = 0; String_t* G_B5_1 = NULL; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * G_B5_2 = NULL; { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_GetObjectData_mFB7A6018D1085693F25E29266E97D618B2068DD0_RuntimeMethod_var); } IL_000e: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0; int32_t L_3 = (int32_t)__this->get_version_3(); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2); SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2, (String_t*)_stringLiteral2DA600BF9404843107A9531694F654E5662959E0, (int32_t)L_3, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = ___info0; RuntimeObject* L_5 = (RuntimeObject*)__this->get_comparer_6(); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 29)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_6, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4, (String_t*)_stringLiteral8FC94E4F5B71CECE2565D72417AACC804EE27A0D, (RuntimeObject *)L_5, (Type_t *)L_7, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_8 = ___info0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_9 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); G_B3_0 = _stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60; G_B3_1 = L_8; if (!L_9) { G_B4_0 = _stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60; G_B4_1 = L_8; goto IL_0052; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_10 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_10); G_B5_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))); G_B5_1 = G_B3_0; G_B5_2 = G_B3_1; goto IL_0053; } IL_0052: { G_B5_0 = 0; G_B5_1 = G_B4_0; G_B5_2 = G_B4_1; } IL_0053: { NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)G_B5_2); SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)G_B5_2, (String_t*)G_B5_1, (int32_t)G_B5_0, /*hidden argument*/NULL); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_11 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (!L_11) { goto IL_008a; } } { NullCheck((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this); int32_t L_12 = (( int32_t (*) (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)->methodPointer)((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)); KeyValuePair_2U5BU5D_tC63FC57B68C58FE775C0A228C5DB05C042B6285E* L_13 = (KeyValuePair_2U5BU5D_tC63FC57B68C58FE775C0A228C5DB05C042B6285E*)(KeyValuePair_2U5BU5D_tC63FC57B68C58FE775C0A228C5DB05C042B6285E*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 30), (uint32_t)L_12); V_0 = (KeyValuePair_2U5BU5D_tC63FC57B68C58FE775C0A228C5DB05C042B6285E*)L_13; KeyValuePair_2U5BU5D_tC63FC57B68C58FE775C0A228C5DB05C042B6285E* L_14 = V_0; NullCheck((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this); (( void (*) (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *, KeyValuePair_2U5BU5D_tC63FC57B68C58FE775C0A228C5DB05C042B6285E*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this, (KeyValuePair_2U5BU5D_tC63FC57B68C58FE775C0A228C5DB05C042B6285E*)L_14, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_15 = ___info0; KeyValuePair_2U5BU5D_tC63FC57B68C58FE775C0A228C5DB05C042B6285E* L_16 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_17 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 32)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_18 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_17, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_15); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_15, (String_t*)_stringLiteral1D89254A2BC78C1FF41C2F6767A0E00EE126B3BF, (RuntimeObject *)(RuntimeObject *)L_16, (Type_t *)L_18, /*hidden argument*/NULL); } IL_008a: { return; } } // System.Int32 System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::FindEntry(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Dictionary_2_FindEntry_m30648D6674306ABD1063776C8ABAB2D4E53B35EA_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_FindEntry_m30648D6674306ABD1063776C8ABAB2D4E53B35EA_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0013; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_FindEntry_m30648D6674306ABD1063776C8ABAB2D4E53B35EA_RuntimeMethod_var); } IL_0013: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (!L_2) { goto IL_008d; } } { RuntimeObject* L_3 = (RuntimeObject*)__this->get_comparer_6(); RuntimeObject * L_4 = ___key0; NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Object>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_3, (RuntimeObject *)L_4); V_0 = (int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL))); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_6 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_7 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_8); NullCheck(L_6); int32_t L_9 = ((int32_t)((int32_t)L_7%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))))); int32_t L_10 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); V_1 = (int32_t)L_10; goto IL_0089; } IL_0042: { EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_11 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)__this->get_entries_1(); int32_t L_12 = V_1; NullCheck(L_11); int32_t L_13 = (int32_t)((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12)))->get_hashCode_0(); int32_t L_14 = V_0; if ((!(((uint32_t)L_13) == ((uint32_t)L_14)))) { goto IL_0077; } } { RuntimeObject* L_15 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_16 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)__this->get_entries_1(); int32_t L_17 = V_1; NullCheck(L_16); RuntimeObject * L_18 = (RuntimeObject *)((L_16)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_17)))->get_key_2(); RuntimeObject * L_19 = ___key0; NullCheck((RuntimeObject*)L_15); bool L_20 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Object>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_15, (RuntimeObject *)L_18, (RuntimeObject *)L_19); if (!L_20) { goto IL_0077; } } { int32_t L_21 = V_1; return L_21; } IL_0077: { EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_22 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)__this->get_entries_1(); int32_t L_23 = V_1; NullCheck(L_22); int32_t L_24 = (int32_t)((L_22)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_23)))->get_next_1(); V_1 = (int32_t)L_24; } IL_0089: { int32_t L_25 = V_1; if ((((int32_t)L_25) >= ((int32_t)0))) { goto IL_0042; } } IL_008d: { return (-1); } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::Initialize(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Initialize_m729150DA59824C6BAB4BED131E69B6EEF5036195_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, int32_t ___capacity0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Initialize_m729150DA59824C6BAB4BED131E69B6EEF5036195_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___capacity0; IL2CPP_RUNTIME_CLASS_INIT(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var); int32_t L_1 = HashHelpers_GetPrime_m743D7006C2BCBADC1DC8CACF7C5B78C9F6B38297((int32_t)L_0, /*hidden argument*/NULL); V_0 = (int32_t)L_1; int32_t L_2 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_3 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_2); __this->set_buckets_0(L_3); V_1 = (int32_t)0; goto IL_0024; } IL_0017: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_4 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_5 = V_1; NullCheck(L_4); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (int32_t)(-1)); int32_t L_6 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)); } IL_0024: { int32_t L_7 = V_1; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_8); if ((((int32_t)L_7) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length))))))) { goto IL_0017; } } { int32_t L_9 = V_0; EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_10 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)(EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 35), (uint32_t)L_9); __this->set_entries_1(L_10); __this->set_freeList_4((-1)); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::TryInsert(TKey,TValue,System.Collections.Generic.InsertionBehavior) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryInsert_m1F4BBB04AA0101F9FF592196A0C52FF29906C8CE_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, RuntimeObject * ___key0, int32_t ___value1, uint8_t ___behavior2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_TryInsert_m1F4BBB04AA0101F9FF592196A0C52FF29906C8CE_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0013; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_TryInsert_m1F4BBB04AA0101F9FF592196A0C52FF29906C8CE_RuntimeMethod_var); } IL_0013: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (L_2) { goto IL_0022; } } { NullCheck((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this); (( void (*) (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); } IL_0022: { RuntimeObject* L_3 = (RuntimeObject*)__this->get_comparer_6(); RuntimeObject * L_4 = ___key0; NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Object>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_3, (RuntimeObject *)L_4); V_0 = (int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL))); int32_t L_6 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_7 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_7); V_1 = (int32_t)((int32_t)((int32_t)L_6%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length)))))); V_2 = (int32_t)0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_9 = V_1; NullCheck(L_8); int32_t L_10 = L_9; int32_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); V_4 = (int32_t)L_11; goto IL_00e1; } IL_0051: { EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_12 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)__this->get_entries_1(); int32_t L_13 = V_4; NullCheck(L_12); int32_t L_14 = (int32_t)((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_13)))->get_hashCode_0(); int32_t L_15 = V_0; if ((!(((uint32_t)L_14) == ((uint32_t)L_15)))) { goto IL_00c9; } } { RuntimeObject* L_16 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_17 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)__this->get_entries_1(); int32_t L_18 = V_4; NullCheck(L_17); RuntimeObject * L_19 = (RuntimeObject *)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->get_key_2(); RuntimeObject * L_20 = ___key0; NullCheck((RuntimeObject*)L_16); bool L_21 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Object>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_16, (RuntimeObject *)L_19, (RuntimeObject *)L_20); if (!L_21) { goto IL_00c9; } } { uint8_t L_22 = ___behavior2; if ((!(((uint32_t)L_22) == ((uint32_t)1)))) { goto IL_00ad; } } { EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_23 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)__this->get_entries_1(); int32_t L_24 = V_4; NullCheck(L_23); int32_t L_25 = ___value1; ((L_23)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_24)))->set_value_3(L_25); int32_t L_26 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1))); return (bool)1; } IL_00ad: { uint8_t L_27 = ___behavior2; if ((!(((uint32_t)L_27) == ((uint32_t)2)))) { goto IL_00c7; } } { RuntimeObject * L_28 = ___key0; String_t* L_29 = SR_Format_mCDBB594267CC224AB2A69540BBA598151F0642C7((String_t*)_stringLiteral6FD577FD3A1BDC4DA28CD51D7A55EB397CEA3926, (RuntimeObject *)L_28, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_30 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_30, (String_t*)L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30, NULL, Dictionary_2_TryInsert_m1F4BBB04AA0101F9FF592196A0C52FF29906C8CE_RuntimeMethod_var); } IL_00c7: { return (bool)0; } IL_00c9: { int32_t L_31 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)1)); EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_32 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)__this->get_entries_1(); int32_t L_33 = V_4; NullCheck(L_32); int32_t L_34 = (int32_t)((L_32)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_33)))->get_next_1(); V_4 = (int32_t)L_34; } IL_00e1: { int32_t L_35 = V_4; if ((((int32_t)L_35) >= ((int32_t)0))) { goto IL_0051; } } { int32_t L_36 = (int32_t)__this->get_freeCount_5(); if ((((int32_t)L_36) <= ((int32_t)0))) { goto IL_0120; } } { int32_t L_37 = (int32_t)__this->get_freeList_4(); V_3 = (int32_t)L_37; EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_38 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)__this->get_entries_1(); int32_t L_39 = V_3; NullCheck(L_38); int32_t L_40 = (int32_t)((L_38)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_39)))->get_next_1(); __this->set_freeList_4(L_40); int32_t L_41 = (int32_t)__this->get_freeCount_5(); __this->set_freeCount_5(((int32_t)il2cpp_codegen_subtract((int32_t)L_41, (int32_t)1))); goto IL_0156; } IL_0120: { int32_t L_42 = (int32_t)__this->get_count_2(); EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_43 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)__this->get_entries_1(); NullCheck(L_43); if ((!(((uint32_t)L_42) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_43)->max_length)))))))) { goto IL_0141; } } { NullCheck((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this); (( void (*) (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 36)->methodPointer)((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 36)); int32_t L_44 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_45 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_45); V_1 = (int32_t)((int32_t)((int32_t)L_44%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_45)->max_length)))))); } IL_0141: { int32_t L_46 = (int32_t)__this->get_count_2(); V_3 = (int32_t)L_46; int32_t L_47 = (int32_t)__this->get_count_2(); __this->set_count_2(((int32_t)il2cpp_codegen_add((int32_t)L_47, (int32_t)1))); } IL_0156: { EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_48 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)__this->get_entries_1(); int32_t L_49 = V_3; NullCheck(L_48); int32_t L_50 = V_0; ((L_48)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_49)))->set_hashCode_0(L_50); EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_51 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)__this->get_entries_1(); int32_t L_52 = V_3; NullCheck(L_51); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_53 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_54 = V_1; NullCheck(L_53); int32_t L_55 = L_54; int32_t L_56 = (L_53)->GetAt(static_cast<il2cpp_array_size_t>(L_55)); ((L_51)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_52)))->set_next_1(L_56); EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_57 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)__this->get_entries_1(); int32_t L_58 = V_3; NullCheck(L_57); RuntimeObject * L_59 = ___key0; ((L_57)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_58)))->set_key_2(L_59); EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_60 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)__this->get_entries_1(); int32_t L_61 = V_3; NullCheck(L_60); int32_t L_62 = ___value1; ((L_60)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_61)))->set_value_3(L_62); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_63 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_64 = V_1; int32_t L_65 = V_3; NullCheck(L_63); (L_63)->SetAt(static_cast<il2cpp_array_size_t>(L_64), (int32_t)L_65); int32_t L_66 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_66, (int32_t)1))); int32_t L_67 = V_2; if ((((int32_t)L_67) <= ((int32_t)((int32_t)100)))) { goto IL_01ed; } } { RuntimeObject* L_68 = (RuntimeObject*)__this->get_comparer_6(); if (!((NonRandomizedStringEqualityComparer_t92C20503D9C5060A557792ABCCC06EF2DD77E5D9 *)IsInst((RuntimeObject*)L_68, NonRandomizedStringEqualityComparer_t92C20503D9C5060A557792ABCCC06EF2DD77E5D9_il2cpp_TypeInfo_var))) { goto IL_01ed; } } { EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137 * L_69 = EqualityComparer_1_get_Default_m85F378D7298050D5DF422363D5EB30A218B769B7(/*hidden argument*/EqualityComparer_1_get_Default_m85F378D7298050D5DF422363D5EB30A218B769B7_RuntimeMethod_var); __this->set_comparer_6(((RuntimeObject*)Castclass((RuntimeObject*)L_69, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34)))); EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_70 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)__this->get_entries_1(); NullCheck(L_70); NullCheck((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this); (( void (*) (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *, int32_t, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)->methodPointer)((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this, (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_70)->max_length)))), (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)); } IL_01ed: { return (bool)1; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::OnDeserialization(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_OnDeserialization_mF7C59B04C34719EB338FD3389DEA16188E0EEF6D_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, RuntimeObject * ___sender0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_OnDeserialization_mF7C59B04C34719EB338FD3389DEA16188E0EEF6D_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; KeyValuePair_2U5BU5D_tC63FC57B68C58FE775C0A228C5DB05C042B6285E* V_3 = NULL; int32_t V_4 = 0; int32_t V_5 = 0; { IL2CPP_RUNTIME_CLASS_INIT(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_0 = DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C_inline(/*hidden argument*/NULL); NullCheck((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0); ConditionalWeakTable_2_TryGetValue_mDFCB6C303807E3F8998D196F4573870680E81F8B((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0, (RuntimeObject *)__this, (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 **)(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 **)(&V_0), /*hidden argument*/ConditionalWeakTable_2_TryGetValue_mDFCB6C303807E3F8998D196F4573870680E81F8B_RuntimeMethod_var); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_1 = V_0; if (L_1) { goto IL_0012; } } { return; } IL_0012: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = V_0; NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2); int32_t L_3 = SerializationInfo_GetInt32_mB47BD46A0BDBBAF5B47BB62E6EFF8E092E3F3656((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2, (String_t*)_stringLiteral2DA600BF9404843107A9531694F654E5662959E0, /*hidden argument*/NULL); V_1 = (int32_t)L_3; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = V_0; NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4); int32_t L_5 = SerializationInfo_GetInt32_mB47BD46A0BDBBAF5B47BB62E6EFF8E092E3F3656((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4, (String_t*)_stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60, /*hidden argument*/NULL); V_2 = (int32_t)L_5; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_6 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 29)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_7, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_6); RuntimeObject * L_9 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_6, (String_t*)_stringLiteral8FC94E4F5B71CECE2565D72417AACC804EE27A0D, (Type_t *)L_8, /*hidden argument*/NULL); __this->set_comparer_6(((RuntimeObject*)Castclass((RuntimeObject*)L_9, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34)))); int32_t L_10 = V_2; if (!L_10) { goto IL_010c; } } { int32_t L_11 = V_2; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_12 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_11); __this->set_buckets_0(L_12); V_4 = (int32_t)0; goto IL_0071; } IL_0061: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_13 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_14 = V_4; NullCheck(L_13); (L_13)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (int32_t)(-1)); int32_t L_15 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_0071: { int32_t L_16 = V_4; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_17 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_17); if ((((int32_t)L_16) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length))))))) { goto IL_0061; } } { int32_t L_18 = V_2; EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_19 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)(EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 35), (uint32_t)L_18); __this->set_entries_1(L_19); __this->set_freeList_4((-1)); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_20 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_21 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 32)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_22 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_21, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_20); RuntimeObject * L_23 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_20, (String_t*)_stringLiteral1D89254A2BC78C1FF41C2F6767A0E00EE126B3BF, (Type_t *)L_22, /*hidden argument*/NULL); V_3 = (KeyValuePair_2U5BU5D_tC63FC57B68C58FE775C0A228C5DB05C042B6285E*)((KeyValuePair_2U5BU5D_tC63FC57B68C58FE775C0A228C5DB05C042B6285E*)Castclass((RuntimeObject*)L_23, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 38))); KeyValuePair_2U5BU5D_tC63FC57B68C58FE775C0A228C5DB05C042B6285E* L_24 = V_3; if (L_24) { goto IL_00b9; } } { SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * L_25 = (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 *)il2cpp_codegen_object_new(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var); SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1(L_25, (String_t*)_stringLiteral1EB7E67EA75FFC3FCB05A9685FA4F1578DCACCF6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, NULL, Dictionary_2_OnDeserialization_mF7C59B04C34719EB338FD3389DEA16188E0EEF6D_RuntimeMethod_var); } IL_00b9: { V_5 = (int32_t)0; goto IL_0103; } IL_00be: { KeyValuePair_2U5BU5D_tC63FC57B68C58FE775C0A228C5DB05C042B6285E* L_26 = V_3; int32_t L_27 = V_5; NullCheck(L_26); RuntimeObject * L_28 = KeyValuePair_2_get_Key_m919A5B9C9E01A407D8DA9F3F08FB35620A76C296_inline((KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 *)(KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 *)((L_26)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_27))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); if (L_28) { goto IL_00dd; } } { SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * L_29 = (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 *)il2cpp_codegen_object_new(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var); SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1(L_29, (String_t*)_stringLiteralD6D1BC79DD62E9F1FB9A49A8F76F4BA8AB71AECD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_29, NULL, Dictionary_2_OnDeserialization_mF7C59B04C34719EB338FD3389DEA16188E0EEF6D_RuntimeMethod_var); } IL_00dd: { KeyValuePair_2U5BU5D_tC63FC57B68C58FE775C0A228C5DB05C042B6285E* L_30 = V_3; int32_t L_31 = V_5; NullCheck(L_30); RuntimeObject * L_32 = KeyValuePair_2_get_Key_m919A5B9C9E01A407D8DA9F3F08FB35620A76C296_inline((KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 *)(KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 *)((L_30)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_31))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); KeyValuePair_2U5BU5D_tC63FC57B68C58FE775C0A228C5DB05C042B6285E* L_33 = V_3; int32_t L_34 = V_5; NullCheck(L_33); int32_t L_35 = KeyValuePair_2_get_Value_mF3D2172C37CF753F9BDDAE1C214BAD43E3FB620A_inline((KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 *)(KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 *)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); NullCheck((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this); (( void (*) (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *, RuntimeObject *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this, (RuntimeObject *)L_32, (int32_t)L_35, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); int32_t L_36 = V_5; V_5 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)1)); } IL_0103: { int32_t L_37 = V_5; KeyValuePair_2U5BU5D_tC63FC57B68C58FE775C0A228C5DB05C042B6285E* L_38 = V_3; NullCheck(L_38); if ((((int32_t)L_37) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_38)->max_length))))))) { goto IL_00be; } } { goto IL_0113; } IL_010c: { __this->set_buckets_0((Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)NULL); } IL_0113: { int32_t L_39 = V_1; __this->set_version_3(L_39); IL2CPP_RUNTIME_CLASS_INIT(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_40 = DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C_inline(/*hidden argument*/NULL); NullCheck((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_40); ConditionalWeakTable_2_Remove_mD69606977A8C793DEA91E373F7D886E4865D7FBD((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_40, (RuntimeObject *)__this, /*hidden argument*/ConditionalWeakTable_2_Remove_mD69606977A8C793DEA91E373F7D886E4865D7FBD_RuntimeMethod_var); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::Resize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Resize_m2B3705208DD6C357A4BD75FD977CD665ADF7AAB7_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Resize_m2B3705208DD6C357A4BD75FD977CD665ADF7AAB7_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_count_2(); IL2CPP_RUNTIME_CLASS_INIT(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var); int32_t L_1 = HashHelpers_ExpandPrime_m4245F4C95074EAA8F949FB3B734F611A533A6A0D((int32_t)L_0, /*hidden argument*/NULL); NullCheck((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this); (( void (*) (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *, int32_t, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)->methodPointer)((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this, (int32_t)L_1, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::Resize(System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Resize_mDC7F20443FB983309AB571268EE5A097F222D149_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, int32_t ___newSize0, bool ___forceNewHashCodes1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Resize_mDC7F20443FB983309AB571268EE5A097F222D149_MetadataUsageId); s_Il2CppMethodInitialized = true; } Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL; EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; { int32_t L_0 = ___newSize0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_0); V_0 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)L_1; V_2 = (int32_t)0; goto IL_0013; } IL_000b: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = V_0; int32_t L_3 = V_2; NullCheck(L_2); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (int32_t)(-1)); int32_t L_4 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)); } IL_0013: { int32_t L_5 = V_2; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_6 = V_0; NullCheck(L_6); if ((((int32_t)L_5) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length))))))) { goto IL_000b; } } { int32_t L_7 = ___newSize0; EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_8 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)(EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 35), (uint32_t)L_7); V_1 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)L_8; EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_9 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)__this->get_entries_1(); EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_10 = V_1; int32_t L_11 = (int32_t)__this->get_count_2(); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_9, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_10, (int32_t)0, (int32_t)L_11, /*hidden argument*/NULL); bool L_12 = ___forceNewHashCodes1; if (!L_12) { goto IL_0080; } } { V_3 = (int32_t)0; goto IL_0077; } IL_003b: { EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_13 = V_1; int32_t L_14 = V_3; NullCheck(L_13); int32_t L_15 = (int32_t)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_hashCode_0(); if ((((int32_t)L_15) == ((int32_t)(-1)))) { goto IL_0073; } } { EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_16 = V_1; int32_t L_17 = V_3; NullCheck(L_16); RuntimeObject* L_18 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_19 = V_1; int32_t L_20 = V_3; NullCheck(L_19); RuntimeObject * L_21 = (RuntimeObject *)((L_19)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_20)))->get_key_2(); NullCheck((RuntimeObject*)L_18); int32_t L_22 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Object>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_18, (RuntimeObject *)L_21); ((L_16)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_17)))->set_hashCode_0(((int32_t)((int32_t)L_22&(int32_t)((int32_t)2147483647LL)))); } IL_0073: { int32_t L_23 = V_3; V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); } IL_0077: { int32_t L_24 = V_3; int32_t L_25 = (int32_t)__this->get_count_2(); if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_003b; } } IL_0080: { V_4 = (int32_t)0; goto IL_00c3; } IL_0085: { EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_26 = V_1; int32_t L_27 = V_4; NullCheck(L_26); int32_t L_28 = (int32_t)((L_26)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_27)))->get_hashCode_0(); if ((((int32_t)L_28) < ((int32_t)0))) { goto IL_00bd; } } { EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_29 = V_1; int32_t L_30 = V_4; NullCheck(L_29); int32_t L_31 = (int32_t)((L_29)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_30)))->get_hashCode_0(); int32_t L_32 = ___newSize0; V_5 = (int32_t)((int32_t)((int32_t)L_31%(int32_t)L_32)); EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_33 = V_1; int32_t L_34 = V_4; NullCheck(L_33); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_35 = V_0; int32_t L_36 = V_5; NullCheck(L_35); int32_t L_37 = L_36; int32_t L_38 = (L_35)->GetAt(static_cast<il2cpp_array_size_t>(L_37)); ((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->set_next_1(L_38); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_39 = V_0; int32_t L_40 = V_5; int32_t L_41 = V_4; NullCheck(L_39); (L_39)->SetAt(static_cast<il2cpp_array_size_t>(L_40), (int32_t)L_41); } IL_00bd: { int32_t L_42 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1)); } IL_00c3: { int32_t L_43 = V_4; int32_t L_44 = (int32_t)__this->get_count_2(); if ((((int32_t)L_43) < ((int32_t)L_44))) { goto IL_0085; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_45 = V_0; __this->set_buckets_0(L_45); EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_46 = V_1; __this->set_entries_1(L_46); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::Remove(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_Remove_m95FAFE3C4D9927C1525B62FE9E27363D1DACB372_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Remove_m95FAFE3C4D9927C1525B62FE9E27363D1DACB372_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0013; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_Remove_m95FAFE3C4D9927C1525B62FE9E27363D1DACB372_RuntimeMethod_var); } IL_0013: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (!L_2) { goto IL_015d; } } { RuntimeObject* L_3 = (RuntimeObject*)__this->get_comparer_6(); RuntimeObject * L_4 = ___key0; NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Object>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_3, (RuntimeObject *)L_4); V_0 = (int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL))); int32_t L_6 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_7 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_7); V_1 = (int32_t)((int32_t)((int32_t)L_6%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length)))))); V_2 = (int32_t)(-1); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_9 = V_1; NullCheck(L_8); int32_t L_10 = L_9; int32_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); V_3 = (int32_t)L_11; goto IL_0156; } IL_004c: { EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_12 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)__this->get_entries_1(); int32_t L_13 = V_3; NullCheck(L_12); int32_t L_14 = (int32_t)((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_13)))->get_hashCode_0(); int32_t L_15 = V_0; if ((!(((uint32_t)L_14) == ((uint32_t)L_15)))) { goto IL_0142; } } { RuntimeObject* L_16 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_17 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)__this->get_entries_1(); int32_t L_18 = V_3; NullCheck(L_17); RuntimeObject * L_19 = (RuntimeObject *)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->get_key_2(); RuntimeObject * L_20 = ___key0; NullCheck((RuntimeObject*)L_16); bool L_21 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Object>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_16, (RuntimeObject *)L_19, (RuntimeObject *)L_20); if (!L_21) { goto IL_0142; } } { int32_t L_22 = V_2; if ((((int32_t)L_22) >= ((int32_t)0))) { goto IL_00a4; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_23 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_24 = V_1; EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_25 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)__this->get_entries_1(); int32_t L_26 = V_3; NullCheck(L_25); int32_t L_27 = (int32_t)((L_25)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_26)))->get_next_1(); NullCheck(L_23); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (int32_t)L_27); goto IL_00c6; } IL_00a4: { EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_28 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)__this->get_entries_1(); int32_t L_29 = V_2; NullCheck(L_28); EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_30 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)__this->get_entries_1(); int32_t L_31 = V_3; NullCheck(L_30); int32_t L_32 = (int32_t)((L_30)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_31)))->get_next_1(); ((L_28)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_29)))->set_next_1(L_32); } IL_00c6: { EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_33 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)__this->get_entries_1(); int32_t L_34 = V_3; NullCheck(L_33); ((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->set_hashCode_0((-1)); EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_35 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)__this->get_entries_1(); int32_t L_36 = V_3; NullCheck(L_35); int32_t L_37 = (int32_t)__this->get_freeList_4(); ((L_35)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_36)))->set_next_1(L_37); EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_38 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)__this->get_entries_1(); int32_t L_39 = V_3; NullCheck(L_38); RuntimeObject ** L_40 = (RuntimeObject **)((L_38)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_39)))->get_address_of_key_2(); il2cpp_codegen_initobj(L_40, sizeof(RuntimeObject *)); EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_41 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)__this->get_entries_1(); int32_t L_42 = V_3; NullCheck(L_41); int32_t* L_43 = (int32_t*)((L_41)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_42)))->get_address_of_value_3(); il2cpp_codegen_initobj(L_43, sizeof(int32_t)); int32_t L_44 = V_3; __this->set_freeList_4(L_44); int32_t L_45 = (int32_t)__this->get_freeCount_5(); __this->set_freeCount_5(((int32_t)il2cpp_codegen_add((int32_t)L_45, (int32_t)1))); int32_t L_46 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_46, (int32_t)1))); return (bool)1; } IL_0142: { int32_t L_47 = V_3; V_2 = (int32_t)L_47; EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_48 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)__this->get_entries_1(); int32_t L_49 = V_3; NullCheck(L_48); int32_t L_50 = (int32_t)((L_48)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_49)))->get_next_1(); V_3 = (int32_t)L_50; } IL_0156: { int32_t L_51 = V_3; if ((((int32_t)L_51) >= ((int32_t)0))) { goto IL_004c; } } IL_015d: { return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::TryGetValue(TKey,TValue&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_m030F754E09D15A285E66EFA35E177F75C52E0D43_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, RuntimeObject * ___key0, int32_t* ___value1, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; NullCheck((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0025; } } { int32_t* L_3 = ___value1; EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_4 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); int32_t L_6 = (int32_t)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); *(int32_t*)L_3 = L_6; return (bool)1; } IL_0025: { int32_t* L_7 = ___value1; il2cpp_codegen_initobj(L_7, sizeof(int32_t)); return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_get_IsReadOnly_m4C428210F71CF61757A219862CD682B996F3646D_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_CopyTo_m4109DD4B749E307D8BB130717553FB0CD4B9F449_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, KeyValuePair_2U5BU5D_tC63FC57B68C58FE775C0A228C5DB05C042B6285E* ___array0, int32_t ___index1, const RuntimeMethod* method) { { KeyValuePair_2U5BU5D_tC63FC57B68C58FE775C0A228C5DB05C042B6285E* L_0 = ___array0; int32_t L_1 = ___index1; NullCheck((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this); (( void (*) (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *, KeyValuePair_2U5BU5D_tC63FC57B68C58FE775C0A228C5DB05C042B6285E*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this, (KeyValuePair_2U5BU5D_tC63FC57B68C58FE775C0A228C5DB05C042B6285E*)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_ICollection_CopyTo_m9FF8CB83DCCF60C20B939B5C14633CA6CB23E7A6_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_ICollection_CopyTo_m9FF8CB83DCCF60C20B939B5C14633CA6CB23E7A6_MetadataUsageId); s_Il2CppMethodInitialized = true; } KeyValuePair_2U5BU5D_tC63FC57B68C58FE775C0A228C5DB05C042B6285E* V_0 = NULL; DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56* V_1 = NULL; EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* V_2 = NULL; int32_t V_3 = 0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_4 = NULL; int32_t V_5 = 0; EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* V_6 = NULL; int32_t V_7 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m9FF8CB83DCCF60C20B939B5C14633CA6CB23E7A6_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; NullCheck((RuntimeArray *)L_2); int32_t L_3 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0027; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_4 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_4, (String_t*)_stringLiteral2D77BE6D598A0A9376398980E66D10E319F1B52A, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m9FF8CB83DCCF60C20B939B5C14633CA6CB23E7A6_RuntimeMethod_var); } IL_0027: { RuntimeArray * L_5 = ___array0; NullCheck((RuntimeArray *)L_5); int32_t L_6 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)L_5, (int32_t)0, /*hidden argument*/NULL); if (!L_6) { goto IL_0040; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_7, (String_t*)_stringLiteralC363992023785AF013BBCF2E20C19D9835184F82, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m9FF8CB83DCCF60C20B939B5C14633CA6CB23E7A6_RuntimeMethod_var); } IL_0040: { int32_t L_8 = ___index1; if ((((int32_t)L_8) < ((int32_t)0))) { goto IL_004d; } } { int32_t L_9 = ___index1; RuntimeArray * L_10 = ___array0; NullCheck((RuntimeArray *)L_10); int32_t L_11 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_10, /*hidden argument*/NULL); if ((((int32_t)L_9) <= ((int32_t)L_11))) { goto IL_0063; } } IL_004d: { int32_t L_12 = ___index1; int32_t L_13 = L_12; RuntimeObject * L_14 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_13); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_15 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_15, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, (RuntimeObject *)L_14, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m9FF8CB83DCCF60C20B939B5C14633CA6CB23E7A6_RuntimeMethod_var); } IL_0063: { RuntimeArray * L_16 = ___array0; NullCheck((RuntimeArray *)L_16); int32_t L_17 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_16, /*hidden argument*/NULL); int32_t L_18 = ___index1; NullCheck((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this); int32_t L_19 = (( int32_t (*) (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)->methodPointer)((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_19))) { goto IL_007e; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_20 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_20, (String_t*)_stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m9FF8CB83DCCF60C20B939B5C14633CA6CB23E7A6_RuntimeMethod_var); } IL_007e: { RuntimeArray * L_21 = ___array0; V_0 = (KeyValuePair_2U5BU5D_tC63FC57B68C58FE775C0A228C5DB05C042B6285E*)((KeyValuePair_2U5BU5D_tC63FC57B68C58FE775C0A228C5DB05C042B6285E*)IsInst((RuntimeObject*)L_21, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 38))); KeyValuePair_2U5BU5D_tC63FC57B68C58FE775C0A228C5DB05C042B6285E* L_22 = V_0; if (!L_22) { goto IL_0091; } } { KeyValuePair_2U5BU5D_tC63FC57B68C58FE775C0A228C5DB05C042B6285E* L_23 = V_0; int32_t L_24 = ___index1; NullCheck((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this); (( void (*) (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *, KeyValuePair_2U5BU5D_tC63FC57B68C58FE775C0A228C5DB05C042B6285E*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this, (KeyValuePair_2U5BU5D_tC63FC57B68C58FE775C0A228C5DB05C042B6285E*)L_23, (int32_t)L_24, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); return; } IL_0091: { RuntimeArray * L_25 = ___array0; if (!((DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56*)IsInst((RuntimeObject*)L_25, DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56_il2cpp_TypeInfo_var))) { goto IL_00fb; } } { RuntimeArray * L_26 = ___array0; V_1 = (DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56*)((DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56*)IsInst((RuntimeObject*)L_26, DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56_il2cpp_TypeInfo_var)); EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_27 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)__this->get_entries_1(); V_2 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)L_27; V_3 = (int32_t)0; goto IL_00f1; } IL_00ab: { EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_28 = V_2; int32_t L_29 = V_3; NullCheck(L_28); int32_t L_30 = (int32_t)((L_28)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_29)))->get_hashCode_0(); if ((((int32_t)L_30) < ((int32_t)0))) { goto IL_00ed; } } { DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56* L_31 = V_1; int32_t L_32 = ___index1; int32_t L_33 = (int32_t)L_32; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1)); EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_34 = V_2; int32_t L_35 = V_3; NullCheck(L_34); RuntimeObject * L_36 = (RuntimeObject *)((L_34)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_35)))->get_key_2(); EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_37 = V_2; int32_t L_38 = V_3; NullCheck(L_37); int32_t L_39 = (int32_t)((L_37)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_38)))->get_value_3(); int32_t L_40 = L_39; RuntimeObject * L_41 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 23), &L_40); DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_42; memset((&L_42), 0, sizeof(L_42)); DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B((&L_42), (RuntimeObject *)L_36, (RuntimeObject *)L_41, /*hidden argument*/NULL); NullCheck(L_31); (L_31)->SetAt(static_cast<il2cpp_array_size_t>(L_33), (DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 )L_42); } IL_00ed: { int32_t L_43 = V_3; V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_43, (int32_t)1)); } IL_00f1: { int32_t L_44 = V_3; int32_t L_45 = (int32_t)__this->get_count_2(); if ((((int32_t)L_44) < ((int32_t)L_45))) { goto IL_00ab; } } { return; } IL_00fb: { RuntimeArray * L_46 = ___array0; V_4 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)L_46, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_47 = V_4; if (L_47) { goto IL_0117; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_48 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_48, (String_t*)_stringLiteralC44D4E6C6AF3517A1CC72EDF7D1A5FFD7E3368F1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_48, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m9FF8CB83DCCF60C20B939B5C14633CA6CB23E7A6_RuntimeMethod_var); } IL_0117: { } IL_0118: try { // begin try (depth: 1) { int32_t L_49 = (int32_t)__this->get_count_2(); V_5 = (int32_t)L_49; EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_50 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)__this->get_entries_1(); V_6 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)L_50; V_7 = (int32_t)0; goto IL_0173; } IL_012d: { EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_51 = V_6; int32_t L_52 = V_7; NullCheck(L_51); int32_t L_53 = (int32_t)((L_51)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_52)))->get_hashCode_0(); if ((((int32_t)L_53) < ((int32_t)0))) { goto IL_016d; } } IL_013e: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_54 = V_4; int32_t L_55 = ___index1; int32_t L_56 = (int32_t)L_55; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_56, (int32_t)1)); EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_57 = V_6; int32_t L_58 = V_7; NullCheck(L_57); RuntimeObject * L_59 = (RuntimeObject *)((L_57)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_58)))->get_key_2(); EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_60 = V_6; int32_t L_61 = V_7; NullCheck(L_60); int32_t L_62 = (int32_t)((L_60)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_61)))->get_value_3(); KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 L_63; memset((&L_63), 0, sizeof(L_63)); KeyValuePair_2__ctor_m5001221DAEAF189D4103F58AB40101F089635425((&L_63), (RuntimeObject *)L_59, (int32_t)L_62, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)); KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 L_64 = L_63; RuntimeObject * L_65 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 25), &L_64); NullCheck(L_54); ArrayElementTypeCheck (L_54, L_65); (L_54)->SetAt(static_cast<il2cpp_array_size_t>(L_56), (RuntimeObject *)L_65); } IL_016d: { int32_t L_66 = V_7; V_7 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_66, (int32_t)1)); } IL_0173: { int32_t L_67 = V_7; int32_t L_68 = V_5; if ((((int32_t)L_67) < ((int32_t)L_68))) { goto IL_012d; } } IL_0179: { goto IL_018c; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArrayTypeMismatchException_tE34C1032B089C37399200997F079C640D23D9499_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_017b; throw e; } CATCH_017b: { // begin catch(System.ArrayTypeMismatchException) ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_69 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_69, (String_t*)_stringLiteralC44D4E6C6AF3517A1CC72EDF7D1A5FFD7E3368F1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_69, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m9FF8CB83DCCF60C20B939B5C14633CA6CB23E7A6_RuntimeMethod_var); } // end catch (depth: 1) IL_018c: { return; } } // System.Collections.IEnumerator System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_IEnumerable_GetEnumerator_mEF80AE46A6EA530EDAEA6E5304A0199EC1AFEC8F_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, const RuntimeMethod* method) { { Enumerator_t703CE82E2E7C2543EFCBFA02457EB68422BDAAD8 L_0; memset((&L_0), 0, sizeof(L_0)); Enumerator__ctor_mEAB595145815AB9186A2CFB4947C93D709660F04((&L_0), (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 28)); Enumerator_t703CE82E2E7C2543EFCBFA02457EB68422BDAAD8 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 27), &L_1); return (RuntimeObject*)L_2; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::System.Collections.ICollection.get_IsSynchronized() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_ICollection_get_IsSynchronized_m9B20939C100DE53E3A6451BE19DCE13BE73117A6_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Object System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::System.Collections.ICollection.get_SyncRoot() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Dictionary_2_System_Collections_ICollection_get_SyncRoot_mE589050CE4E82475F1096526C6ED4CE5384C30F5_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_ICollection_get_SyncRoot_mE589050CE4E82475F1096526C6ED4CE5384C30F5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = (RuntimeObject *)__this->get__syncRoot_9(); if (L_0) { goto IL_001a; } } { RuntimeObject ** L_1 = (RuntimeObject **)__this->get_address_of__syncRoot_9(); RuntimeObject * L_2 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_2, /*hidden argument*/NULL); InterlockedCompareExchangeImpl<RuntimeObject *>((RuntimeObject **)(RuntimeObject **)L_1, (RuntimeObject *)L_2, (RuntimeObject *)NULL); } IL_001a: { RuntimeObject * L_3 = (RuntimeObject *)__this->get__syncRoot_9(); return L_3; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::System.Collections.IDictionary.get_IsFixedSize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_IDictionary_get_IsFixedSize_m3FE133925402D1CFEE15A53721EF921005CD51D7_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::System.Collections.IDictionary.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_IDictionary_get_IsReadOnly_m6B910BF939F9F7687CD2605160746915986C8BAF_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Collections.ICollection System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::System.Collections.IDictionary.get_Keys() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_IDictionary_get_Keys_m322DAD7E94F0E2F3288FB9B3965D665CCF4720C0_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, const RuntimeMethod* method) { { NullCheck((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this); KeyCollection_t16EDFEDFE6B46AE31E251DC5F71DDA39573C0A96 * L_0 = (( KeyCollection_t16EDFEDFE6B46AE31E251DC5F71DDA39573C0A96 * (*) (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 39)->methodPointer)((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 39)); return L_0; } } // System.Collections.ICollection System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::System.Collections.IDictionary.get_Values() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_IDictionary_get_Values_m9FE60B5B11B3BACBC1C9A08EFBC46A3BF1CF995F_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, const RuntimeMethod* method) { { NullCheck((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this); ValueCollection_t74015A8B75054E8C8947DAA50BD4DD43F895BECE * L_0 = (( ValueCollection_t74015A8B75054E8C8947DAA50BD4DD43F895BECE * (*) (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 40)->methodPointer)((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 40)); return L_0; } } // System.Object System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::System.Collections.IDictionary.get_Item(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Dictionary_2_System_Collections_IDictionary_get_Item_mD244216BEFD290818213E2AB4EB587227B972795_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; bool L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)); if (!L_1) { goto IL_0030; } } { RuntimeObject * L_2 = ___key0; NullCheck((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this); int32_t L_3 = (( int32_t (*) (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 33))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); V_0 = (int32_t)L_3; int32_t L_4 = V_0; if ((((int32_t)L_4) < ((int32_t)0))) { goto IL_0030; } } { EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6* L_5 = (EntryU5BU5D_tCFEF98CA27EC31324D6B734CD404CD5754BD11F6*)__this->get_entries_1(); int32_t L_6 = V_0; NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_value_3(); int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 23), &L_8); return L_9; } IL_0030: { return NULL; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::System.Collections.IDictionary.set_Item(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_IDictionary_set_Item_mA353C1581B0E6DB004E93A38305B92FECACABD63_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_IDictionary_set_Item_mA353C1581B0E6DB004E93A38305B92FECACABD63_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; RuntimeObject * V_1 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_mA353C1581B0E6DB004E93A38305B92FECACABD63_RuntimeMethod_var); } IL_000e: { RuntimeObject * L_2 = ___value1; if (L_2) { goto IL_002c; } } { il2cpp_codegen_initobj((&V_0), sizeof(int32_t)); } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_4, (String_t*)_stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_mA353C1581B0E6DB004E93A38305B92FECACABD63_RuntimeMethod_var); } IL_002c: { } IL_002d: try { // begin try (depth: 1) { RuntimeObject * L_5 = ___key0; V_1 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 33))); } IL_0034: try { // begin try (depth: 2) RuntimeObject * L_6 = V_1; RuntimeObject * L_7 = ___value1; NullCheck((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this); (( void (*) (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *, RuntimeObject *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 43)->methodPointer)((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this, (RuntimeObject *)L_6, (int32_t)((*(int32_t*)((int32_t*)UnBox(L_7, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 23))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 43)); goto IL_0064; } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0043; throw e; } CATCH_0043: { // begin catch(System.InvalidCastException) RuntimeObject * L_8 = ___value1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_9 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 44)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_9, /*hidden argument*/NULL); String_t* L_11 = SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C((String_t*)_stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6, (RuntimeObject *)L_8, (RuntimeObject *)L_10, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_12, (String_t*)L_11, (String_t*)_stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_mA353C1581B0E6DB004E93A38305B92FECACABD63_RuntimeMethod_var); } // end catch (depth: 2) IL_0064: { goto IL_0087; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0066; throw e; } CATCH_0066: { // begin catch(System.InvalidCastException) RuntimeObject * L_13 = ___key0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 45)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_14, /*hidden argument*/NULL); String_t* L_16 = SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C((String_t*)_stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6, (RuntimeObject *)L_13, (RuntimeObject *)L_15, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_17 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_17, (String_t*)L_16, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_mA353C1581B0E6DB004E93A38305B92FECACABD63_RuntimeMethod_var); } // end catch (depth: 1) IL_0087: { return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::IsCompatibleKey(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_IsCompatibleKey_mC5A4A93416D8CE91F60E1620D903D728DCFE32F5_gshared (RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_IsCompatibleKey_mC5A4A93416D8CE91F60E1620D903D728DCFE32F5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_IsCompatibleKey_mC5A4A93416D8CE91F60E1620D903D728DCFE32F5_RuntimeMethod_var); } IL_000e: { RuntimeObject * L_2 = ___key0; return (bool)((!(((RuntimeObject*)(RuntimeObject *)((RuntimeObject *)IsInst((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 33)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::System.Collections.IDictionary.Add(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_IDictionary_Add_mC402A2D90FBB2980AE2A19E44FFE57D976221F42_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_IDictionary_Add_mC402A2D90FBB2980AE2A19E44FFE57D976221F42_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; RuntimeObject * V_1 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_System_Collections_IDictionary_Add_mC402A2D90FBB2980AE2A19E44FFE57D976221F42_RuntimeMethod_var); } IL_000e: { RuntimeObject * L_2 = ___value1; if (L_2) { goto IL_002c; } } { il2cpp_codegen_initobj((&V_0), sizeof(int32_t)); } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_4, (String_t*)_stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2_System_Collections_IDictionary_Add_mC402A2D90FBB2980AE2A19E44FFE57D976221F42_RuntimeMethod_var); } IL_002c: { } IL_002d: try { // begin try (depth: 1) { RuntimeObject * L_5 = ___key0; V_1 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 33))); } IL_0034: try { // begin try (depth: 2) RuntimeObject * L_6 = V_1; RuntimeObject * L_7 = ___value1; NullCheck((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this); (( void (*) (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *, RuntimeObject *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this, (RuntimeObject *)L_6, (int32_t)((*(int32_t*)((int32_t*)UnBox(L_7, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 23))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); goto IL_0064; } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0043; throw e; } CATCH_0043: { // begin catch(System.InvalidCastException) RuntimeObject * L_8 = ___value1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_9 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 44)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_9, /*hidden argument*/NULL); String_t* L_11 = SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C((String_t*)_stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6, (RuntimeObject *)L_8, (RuntimeObject *)L_10, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_12, (String_t*)L_11, (String_t*)_stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Dictionary_2_System_Collections_IDictionary_Add_mC402A2D90FBB2980AE2A19E44FFE57D976221F42_RuntimeMethod_var); } // end catch (depth: 2) IL_0064: { goto IL_0087; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0066; throw e; } CATCH_0066: { // begin catch(System.InvalidCastException) RuntimeObject * L_13 = ___key0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 45)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_14, /*hidden argument*/NULL); String_t* L_16 = SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C((String_t*)_stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6, (RuntimeObject *)L_13, (RuntimeObject *)L_15, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_17 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_17, (String_t*)L_16, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, NULL, Dictionary_2_System_Collections_IDictionary_Add_mC402A2D90FBB2980AE2A19E44FFE57D976221F42_RuntimeMethod_var); } // end catch (depth: 1) IL_0087: { return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::System.Collections.IDictionary.Contains(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_IDictionary_Contains_m698718B9C4E0B786507AB1E88B1A56A3F457AFAF_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; bool L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)); if (!L_1) { goto IL_0015; } } { RuntimeObject * L_2 = ___key0; NullCheck((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this); bool L_3 = (( bool (*) (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 46)->methodPointer)((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 33))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 46)); return L_3; } IL_0015: { return (bool)0; } } // System.Collections.IDictionaryEnumerator System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::System.Collections.IDictionary.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_IDictionary_GetEnumerator_mDCB9053A6913755C0F11AB021D17FD207DFF223B_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, const RuntimeMethod* method) { { Enumerator_t703CE82E2E7C2543EFCBFA02457EB68422BDAAD8 L_0; memset((&L_0), 0, sizeof(L_0)); Enumerator__ctor_mEAB595145815AB9186A2CFB4947C93D709660F04((&L_0), (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this, (int32_t)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 28)); Enumerator_t703CE82E2E7C2543EFCBFA02457EB68422BDAAD8 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 27), &L_1); return (RuntimeObject*)L_2; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::System.Collections.IDictionary.Remove(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_IDictionary_Remove_m0D0780695BF1D4ACD39F12C72BB00EE73D66EEB5_gshared (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; bool L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)); if (!L_1) { goto IL_0015; } } { RuntimeObject * L_2 = ___key0; NullCheck((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this); (( bool (*) (Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)->methodPointer)((Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 *)__this, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 33))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); } IL_0015: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m6EECD7DA8332D2E055E045BC2D13B388739592DD_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, const RuntimeMethod* method) { { NullCheck((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this); (( void (*) (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this, (int32_t)0, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m9559684E13990FB0F7E05DB9D581A490F3CA6E10_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, int32_t ___capacity0, const RuntimeMethod* method) { { int32_t L_0 = ___capacity0; NullCheck((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this); (( void (*) (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this, (int32_t)L_0, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m63142AFFA3754B6AD6F61B43FE3A15F162C259AC_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___comparer0; NullCheck((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this); (( void (*) (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this, (int32_t)0, (RuntimeObject*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::.ctor(System.Int32,System.Collections.Generic.IEqualityComparer`1<TKey>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mEF5ECB3C38051BBBB2C30719CA6AFE1478CE56D8_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, int32_t ___capacity0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2__ctor_mEF5ECB3C38051BBBB2C30719CA6AFE1478CE56D8_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* G_B6_0 = NULL; Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * G_B6_1 = NULL; RuntimeObject* G_B5_0 = NULL; Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * G_B5_1 = NULL; { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); int32_t L_0 = ___capacity0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0020; } } { int32_t L_1 = ___capacity0; int32_t L_2 = L_1; RuntimeObject * L_3 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_2); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_4 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_4, (String_t*)_stringLiteral7CB1F56D3FBE09E809244FC8E13671CD876E3860, (RuntimeObject *)L_3, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2__ctor_mEF5ECB3C38051BBBB2C30719CA6AFE1478CE56D8_RuntimeMethod_var); } IL_0020: { int32_t L_5 = ___capacity0; if ((((int32_t)L_5) <= ((int32_t)0))) { goto IL_002b; } } { int32_t L_6 = ___capacity0; NullCheck((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this); (( void (*) (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); } IL_002b: { RuntimeObject* L_7 = ___comparer1; RuntimeObject* L_8 = (RuntimeObject*)L_7; G_B5_0 = L_8; G_B5_1 = ((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)(__this)); if (L_8) { G_B6_0 = L_8; G_B6_1 = ((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)(__this)); goto IL_0036; } } { EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * L_9 = (( EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); G_B6_0 = ((RuntimeObject*)(L_9)); G_B6_1 = ((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)(G_B5_1)); } IL_0036: { NullCheck(G_B6_1); G_B6_1->set_comparer_6(G_B6_0); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::.ctor(System.Collections.Generic.IDictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m66D4D3104E4D4C01982F695F9B5EC47C3AE681CF_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, RuntimeObject* ___dictionary0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___dictionary0; NullCheck((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this); (( void (*) (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *, RuntimeObject*, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this, (RuntimeObject*)L_0, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::.ctor(System.Collections.Generic.IDictionary`2<TKey,TValue>,System.Collections.Generic.IEqualityComparer`1<TKey>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mC0476015F9A6CB834F15DEA10E6AFCC3D0DA8266_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, RuntimeObject* ___dictionary0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2__ctor_mC0476015F9A6CB834F15DEA10E6AFCC3D0DA8266_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* V_1 = NULL; int32_t V_2 = 0; RuntimeObject* V_3 = NULL; KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 V_4; memset((&V_4), 0, sizeof(V_4)); Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * G_B2_0 = NULL; Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * G_B1_0 = NULL; int32_t G_B3_0 = 0; Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * G_B3_1 = NULL; { RuntimeObject* L_0 = ___dictionary0; G_B1_0 = ((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)(__this)); if (L_0) { G_B2_0 = ((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)(__this)); goto IL_0007; } } { G_B3_0 = 0; G_B3_1 = ((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)(G_B1_0)); goto IL_000d; } IL_0007: { RuntimeObject* L_1 = ___dictionary0; NullCheck((RuntimeObject*)L_1); int32_t L_2 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int64>>::get_Count() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_1); G_B3_0 = L_2; G_B3_1 = ((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)(G_B2_0)); } IL_000d: { RuntimeObject* L_3 = ___comparer1; NullCheck((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)G_B3_1); (( void (*) (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)G_B3_1, (int32_t)G_B3_0, (RuntimeObject*)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); RuntimeObject* L_4 = ___dictionary0; if (L_4) { goto IL_0021; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_5 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_5, (String_t*)_stringLiteralF18BFB74E613AFB11F36BDD80CF05CD5DFAD98D6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Dictionary_2__ctor_mC0476015F9A6CB834F15DEA10E6AFCC3D0DA8266_RuntimeMethod_var); } IL_0021: { RuntimeObject* L_6 = ___dictionary0; NullCheck((RuntimeObject *)L_6); Type_t * L_7 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60((RuntimeObject *)L_6, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_8 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 6)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_9 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_8, /*hidden argument*/NULL); bool L_10 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_7, (Type_t *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0085; } } { RuntimeObject* L_11 = ___dictionary0; Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * L_12 = (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)Castclass((RuntimeObject*)L_11, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))); NullCheck(L_12); int32_t L_13 = (int32_t)L_12->get_count_2(); V_0 = (int32_t)L_13; NullCheck(L_12); EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_14 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)L_12->get_entries_1(); V_1 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)L_14; V_2 = (int32_t)0; goto IL_0080; } IL_004f: { EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_15 = V_1; int32_t L_16 = V_2; NullCheck(L_15); int32_t L_17 = (int32_t)((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16)))->get_hashCode_0(); if ((((int32_t)L_17) < ((int32_t)0))) { goto IL_007c; } } { EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_18 = V_1; int32_t L_19 = V_2; NullCheck(L_18); RuntimeObject * L_20 = (RuntimeObject *)((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)))->get_key_2(); EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_21 = V_1; int32_t L_22 = V_2; NullCheck(L_21); int64_t L_23 = (int64_t)((L_21)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_22)))->get_value_3(); NullCheck((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this); (( void (*) (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *, RuntimeObject *, int64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this, (RuntimeObject *)L_20, (int64_t)L_23, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); } IL_007c: { int32_t L_24 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1)); } IL_0080: { int32_t L_25 = V_2; int32_t L_26 = V_0; if ((((int32_t)L_25) < ((int32_t)L_26))) { goto IL_004f; } } { return; } IL_0085: { RuntimeObject* L_27 = ___dictionary0; NullCheck((RuntimeObject*)L_27); RuntimeObject* L_28 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int64>>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 9), (RuntimeObject*)L_27); V_3 = (RuntimeObject*)L_28; } IL_008c: try { // begin try (depth: 1) { goto IL_00aa; } IL_008e: { RuntimeObject* L_29 = V_3; NullCheck((RuntimeObject*)L_29); KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 L_30 = InterfaceFuncInvoker0< KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int64>>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 10), (RuntimeObject*)L_29); V_4 = (KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 )L_30; RuntimeObject * L_31 = KeyValuePair_2_get_Key_mB084E92B140BFFC0B05807BEF67E3078B444B51A_inline((KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 *)(KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 *)(&V_4), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); int64_t L_32 = KeyValuePair_2_get_Value_mA67EB2ECE4D2556965A4E43E66589F6EEE19B182_inline((KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 *)(KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 *)(&V_4), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); NullCheck((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this); (( void (*) (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *, RuntimeObject *, int64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this, (RuntimeObject *)L_31, (int64_t)L_32, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); } IL_00aa: { RuntimeObject* L_33 = V_3; NullCheck((RuntimeObject*)L_33); bool L_34 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, (RuntimeObject*)L_33); if (L_34) { goto IL_008e; } } IL_00b2: { IL2CPP_LEAVE(0xBE, FINALLY_00b4); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00b4; } FINALLY_00b4: { // begin finally (depth: 1) { RuntimeObject* L_35 = V_3; if (!L_35) { goto IL_00bd; } } IL_00b7: { RuntimeObject* L_36 = V_3; NullCheck((RuntimeObject*)L_36); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, (RuntimeObject*)L_36); } IL_00bd: { IL2CPP_END_FINALLY(180) } } // end finally (depth: 1) IL2CPP_CLEANUP(180) { IL2CPP_JUMP_TBL(0xBE, IL_00be) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_00be: { return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m4E2B3B3F2A7FA7FE66E336C00A043CC8D813A1BA_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2__ctor_m4E2B3B3F2A7FA7FE66E336C00A043CC8D813A1BA_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_0 = DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C_inline(/*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_1 = ___info0; NullCheck((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0); ConditionalWeakTable_2_Add_mCC3585BE91A7BDFC49EEFDE4C11173A36D1FB5FE((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0, (RuntimeObject *)__this, (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_1, /*hidden argument*/ConditionalWeakTable_2_Add_mCC3585BE91A7BDFC49EEFDE4C11173A36D1FB5FE_RuntimeMethod_var); return; } } // System.Int32 System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Dictionary_2_get_Count_mF4D2E80A8FE85CF632353DDDCE6891CFF2D79687_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_count_2(); int32_t L_1 = (int32_t)__this->get_freeCount_5(); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)); } } // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::get_Keys() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyCollection_t094529A3BCF7C6FDAC957A8B3DBA4182A2915D15 * Dictionary_2_get_Keys_m947CF660B2696BE63AAD329BCFAB53469DD05BE6_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, const RuntimeMethod* method) { { KeyCollection_t094529A3BCF7C6FDAC957A8B3DBA4182A2915D15 * L_0 = (KeyCollection_t094529A3BCF7C6FDAC957A8B3DBA4182A2915D15 *)__this->get_keys_7(); if (L_0) { goto IL_0014; } } { KeyCollection_t094529A3BCF7C6FDAC957A8B3DBA4182A2915D15 * L_1 = (KeyCollection_t094529A3BCF7C6FDAC957A8B3DBA4182A2915D15 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 13)); (( void (*) (KeyCollection_t094529A3BCF7C6FDAC957A8B3DBA4182A2915D15 *, Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)->methodPointer)(L_1, (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)); __this->set_keys_7(L_1); } IL_0014: { KeyCollection_t094529A3BCF7C6FDAC957A8B3DBA4182A2915D15 * L_2 = (KeyCollection_t094529A3BCF7C6FDAC957A8B3DBA4182A2915D15 *)__this->get_keys_7(); return L_2; } } // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::get_Values() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueCollection_tF4024A6BA9CF9684EE2E87153E84B91B1FEF68C3 * Dictionary_2_get_Values_mC00B13BB30A52206F901954989871DF723C1D32D_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, const RuntimeMethod* method) { { ValueCollection_tF4024A6BA9CF9684EE2E87153E84B91B1FEF68C3 * L_0 = (ValueCollection_tF4024A6BA9CF9684EE2E87153E84B91B1FEF68C3 *)__this->get_values_8(); if (L_0) { goto IL_0014; } } { ValueCollection_tF4024A6BA9CF9684EE2E87153E84B91B1FEF68C3 * L_1 = (ValueCollection_tF4024A6BA9CF9684EE2E87153E84B91B1FEF68C3 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 15)); (( void (*) (ValueCollection_tF4024A6BA9CF9684EE2E87153E84B91B1FEF68C3 *, Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)->methodPointer)(L_1, (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)); __this->set_values_8(L_1); } IL_0014: { ValueCollection_tF4024A6BA9CF9684EE2E87153E84B91B1FEF68C3 * L_2 = (ValueCollection_tF4024A6BA9CF9684EE2E87153E84B91B1FEF68C3 *)__this->get_values_8(); return L_2; } } // TValue System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::get_Item(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Dictionary_2_get_Item_m9265E34215AF52E3DF2AEA649C0B2893D95277D1_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_get_Item_m9265E34215AF52E3DF2AEA649C0B2893D95277D1_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; NullCheck((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_001e; } } { EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_3 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)__this->get_entries_1(); int32_t L_4 = V_0; NullCheck(L_3); int64_t L_5 = (int64_t)((L_3)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_4)))->get_value_3(); return L_5; } IL_001e: { KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2 * L_6 = (KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2 *)il2cpp_codegen_object_new(KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2_il2cpp_TypeInfo_var); KeyNotFoundException__ctor_mE9E1C6E6E21842095342C0A2ED65EC201FB4F3C8(L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Dictionary_2_get_Item_m9265E34215AF52E3DF2AEA649C0B2893D95277D1_RuntimeMethod_var); } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::set_Item(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_m0D069B5E2C927714AF50327B5FE73E0572D9FD9F_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, RuntimeObject * ___key0, int64_t ___value1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; int64_t L_1 = ___value1; NullCheck((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this); (( bool (*) (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *, RuntimeObject *, int64_t, uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this, (RuntimeObject *)L_0, (int64_t)L_1, (uint8_t)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::Add(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_m93CF978501E5AA29F80FA46F8674B3A4A6862104_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, RuntimeObject * ___key0, int64_t ___value1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; int64_t L_1 = ___value1; NullCheck((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this); (( bool (*) (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *, RuntimeObject *, int64_t, uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this, (RuntimeObject *)L_0, (int64_t)L_1, (uint8_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Add_mC3715708435BD11D516B8B875CB8B6CDA807194C_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 ___keyValuePair0, const RuntimeMethod* method) { { RuntimeObject * L_0 = KeyValuePair_2_get_Key_mB084E92B140BFFC0B05807BEF67E3078B444B51A_inline((KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 *)(KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); int64_t L_1 = KeyValuePair_2_get_Value_mA67EB2ECE4D2556965A4E43E66589F6EEE19B182_inline((KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 *)(KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); NullCheck((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this); (( void (*) (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *, RuntimeObject *, int64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this, (RuntimeObject *)L_0, (int64_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Contains(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Contains_m4C584A3B222137E4118662F2C5B460205E433523_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 ___keyValuePair0, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = KeyValuePair_2_get_Key_mB084E92B140BFFC0B05807BEF67E3078B444B51A_inline((KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 *)(KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0038; } } { EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E * L_3 = (( EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)); EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_4 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); int64_t L_6 = (int64_t)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); int64_t L_7 = KeyValuePair_2_get_Value_mA67EB2ECE4D2556965A4E43E66589F6EEE19B182_inline((KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 *)(KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); NullCheck((EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E *)L_3); bool L_8 = VirtFuncInvoker2< bool, int64_t, int64_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Int64>::Equals(T,T) */, (EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E *)L_3, (int64_t)L_6, (int64_t)L_7); if (!L_8) { goto IL_0038; } } { return (bool)1; } IL_0038: { return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Remove_m7C129FAE105E6489D554D26B0E115990C5583B41_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 ___keyValuePair0, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = KeyValuePair_2_get_Key_mB084E92B140BFFC0B05807BEF67E3078B444B51A_inline((KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 *)(KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0046; } } { EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E * L_3 = (( EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)); EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_4 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); int64_t L_6 = (int64_t)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); int64_t L_7 = KeyValuePair_2_get_Value_mA67EB2ECE4D2556965A4E43E66589F6EEE19B182_inline((KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 *)(KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); NullCheck((EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E *)L_3); bool L_8 = VirtFuncInvoker2< bool, int64_t, int64_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Int64>::Equals(T,T) */, (EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E *)L_3, (int64_t)L_6, (int64_t)L_7); if (!L_8) { goto IL_0046; } } { RuntimeObject * L_9 = KeyValuePair_2_get_Key_mB084E92B140BFFC0B05807BEF67E3078B444B51A_inline((KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 *)(KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this); (( bool (*) (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)->methodPointer)((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this, (RuntimeObject *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); return (bool)1; } IL_0046: { return (bool)0; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Clear_m058F87A0799BF61C55D36387DAF1546A250E0BDA_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = (int32_t)__this->get_count_2(); if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_005a; } } { V_0 = (int32_t)0; goto IL_001a; } IL_000d: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_2 = V_0; NullCheck(L_1); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(L_2), (int32_t)(-1)); int32_t L_3 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)); } IL_001a: { int32_t L_4 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_5 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_5); if ((((int32_t)L_4) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length))))))) { goto IL_000d; } } { EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_6 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)__this->get_entries_1(); int32_t L_7 = (int32_t)__this->get_count_2(); Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_6, (int32_t)0, (int32_t)L_7, /*hidden argument*/NULL); __this->set_freeList_4((-1)); __this->set_count_2(0); __this->set_freeCount_5(0); int32_t L_8 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1))); } IL_005a: { return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::ContainsKey(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsKey_mDA37E8BE0D781E03520AFD3F21363983575792B6_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; NullCheck((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); return (bool)((((int32_t)((((int32_t)L_1) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::ContainsValue(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsValue_m5D9015C18830E028D7F45CDADDE647976AAE3E7C_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, int64_t ___value0, const RuntimeMethod* method) { int32_t V_0 = 0; EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E * V_1 = NULL; int32_t V_2 = 0; { goto IL_0049; } { V_0 = (int32_t)0; goto IL_003e; } IL_000c: { EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_1 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)__this->get_entries_1(); int32_t L_2 = V_0; NullCheck(L_1); int32_t L_3 = (int32_t)((L_1)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_2)))->get_hashCode_0(); if ((((int32_t)L_3) < ((int32_t)0))) { goto IL_003a; } } { EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_4 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); int64_t L_6 = (int64_t)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); goto IL_003a; } { return (bool)1; } IL_003a: { int32_t L_7 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)); } IL_003e: { int32_t L_8 = V_0; int32_t L_9 = (int32_t)__this->get_count_2(); if ((((int32_t)L_8) < ((int32_t)L_9))) { goto IL_000c; } } { goto IL_0090; } IL_0049: { EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E * L_10 = (( EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)); V_1 = (EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E *)L_10; V_2 = (int32_t)0; goto IL_0087; } IL_0053: { EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_11 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)__this->get_entries_1(); int32_t L_12 = V_2; NullCheck(L_11); int32_t L_13 = (int32_t)((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12)))->get_hashCode_0(); if ((((int32_t)L_13) < ((int32_t)0))) { goto IL_0083; } } { EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E * L_14 = V_1; EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_15 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)__this->get_entries_1(); int32_t L_16 = V_2; NullCheck(L_15); int64_t L_17 = (int64_t)((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16)))->get_value_3(); int64_t L_18 = ___value0; NullCheck((EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E *)L_14); bool L_19 = VirtFuncInvoker2< bool, int64_t, int64_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Int64>::Equals(T,T) */, (EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E *)L_14, (int64_t)L_17, (int64_t)L_18); if (!L_19) { goto IL_0083; } } { return (bool)1; } IL_0083: { int32_t L_20 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1)); } IL_0087: { int32_t L_21 = V_2; int32_t L_22 = (int32_t)__this->get_count_2(); if ((((int32_t)L_21) < ((int32_t)L_22))) { goto IL_0053; } } IL_0090: { return (bool)0; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_CopyTo_m8E87BB364C418ED42AF31F882AB3FE18437393DA_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, KeyValuePair_2U5BU5D_t03ACDE20158B31A492B18DAAEB19BCCAB1AFA9D5* ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_CopyTo_m8E87BB364C418ED42AF31F882AB3FE18437393DA_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* V_1 = NULL; int32_t V_2 = 0; { KeyValuePair_2U5BU5D_t03ACDE20158B31A492B18DAAEB19BCCAB1AFA9D5* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_CopyTo_m8E87BB364C418ED42AF31F882AB3FE18437393DA_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___index1; KeyValuePair_2U5BU5D_t03ACDE20158B31A492B18DAAEB19BCCAB1AFA9D5* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))) { goto IL_002e; } } IL_0018: { int32_t L_5 = ___index1; int32_t L_6 = L_5; RuntimeObject * L_7 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_6); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_8, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, (RuntimeObject *)L_7, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Dictionary_2_CopyTo_m8E87BB364C418ED42AF31F882AB3FE18437393DA_RuntimeMethod_var); } IL_002e: { KeyValuePair_2U5BU5D_t03ACDE20158B31A492B18DAAEB19BCCAB1AFA9D5* L_9 = ___array0; NullCheck(L_9); int32_t L_10 = ___index1; NullCheck((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this); int32_t L_11 = (( int32_t (*) (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)->methodPointer)((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_11))) { goto IL_0046; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_12, (String_t*)_stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Dictionary_2_CopyTo_m8E87BB364C418ED42AF31F882AB3FE18437393DA_RuntimeMethod_var); } IL_0046: { int32_t L_13 = (int32_t)__this->get_count_2(); V_0 = (int32_t)L_13; EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_14 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)__this->get_entries_1(); V_1 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)L_14; V_2 = (int32_t)0; goto IL_0094; } IL_0058: { EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_15 = V_1; int32_t L_16 = V_2; NullCheck(L_15); int32_t L_17 = (int32_t)((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16)))->get_hashCode_0(); if ((((int32_t)L_17) < ((int32_t)0))) { goto IL_0090; } } { KeyValuePair_2U5BU5D_t03ACDE20158B31A492B18DAAEB19BCCAB1AFA9D5* L_18 = ___array0; int32_t L_19 = ___index1; int32_t L_20 = (int32_t)L_19; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1)); EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_21 = V_1; int32_t L_22 = V_2; NullCheck(L_21); RuntimeObject * L_23 = (RuntimeObject *)((L_21)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_22)))->get_key_2(); EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_24 = V_1; int32_t L_25 = V_2; NullCheck(L_24); int64_t L_26 = (int64_t)((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_value_3(); KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 L_27; memset((&L_27), 0, sizeof(L_27)); KeyValuePair_2__ctor_m6204F5F64C03883836FCC24CF3FB9806BF396475((&L_27), (RuntimeObject *)L_23, (int64_t)L_26, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)); NullCheck(L_18); (L_18)->SetAt(static_cast<il2cpp_array_size_t>(L_20), (KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 )L_27); } IL_0090: { int32_t L_28 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)1)); } IL_0094: { int32_t L_29 = V_2; int32_t L_30 = V_0; if ((((int32_t)L_29) < ((int32_t)L_30))) { goto IL_0058; } } { return; } } // System.Collections.Generic.Dictionary`2_Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t9BD0A40138A5E3DDD866F2B84C017585FFBE61DE Dictionary_2_GetEnumerator_m2E08737C7FC30D28210F3F25ABEF032D3151B5EB_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, const RuntimeMethod* method) { { Enumerator_t9BD0A40138A5E3DDD866F2B84C017585FFBE61DE L_0; memset((&L_0), 0, sizeof(L_0)); Enumerator__ctor_mA87C4C4C2FCDEAFE555DACF7BF61D48F6ACB2E89((&L_0), (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 28)); return L_0; } } // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<TKey,TValue>> System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_Generic_IEnumerableU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_GetEnumerator_m4F8553504BA2F08D3299E4A994E6EF6DDBB4D586_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, const RuntimeMethod* method) { { Enumerator_t9BD0A40138A5E3DDD866F2B84C017585FFBE61DE L_0; memset((&L_0), 0, sizeof(L_0)); Enumerator__ctor_mA87C4C4C2FCDEAFE555DACF7BF61D48F6ACB2E89((&L_0), (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 28)); Enumerator_t9BD0A40138A5E3DDD866F2B84C017585FFBE61DE L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 27), &L_1); return (RuntimeObject*)L_2; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_GetObjectData_m477C4452638D485A46D896846B7FA4E7F00DA31F_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_GetObjectData_m477C4452638D485A46D896846B7FA4E7F00DA31F_MetadataUsageId); s_Il2CppMethodInitialized = true; } KeyValuePair_2U5BU5D_t03ACDE20158B31A492B18DAAEB19BCCAB1AFA9D5* V_0 = NULL; String_t* G_B4_0 = NULL; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * G_B4_1 = NULL; String_t* G_B3_0 = NULL; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * G_B3_1 = NULL; int32_t G_B5_0 = 0; String_t* G_B5_1 = NULL; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * G_B5_2 = NULL; { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_GetObjectData_m477C4452638D485A46D896846B7FA4E7F00DA31F_RuntimeMethod_var); } IL_000e: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0; int32_t L_3 = (int32_t)__this->get_version_3(); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2); SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2, (String_t*)_stringLiteral2DA600BF9404843107A9531694F654E5662959E0, (int32_t)L_3, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = ___info0; RuntimeObject* L_5 = (RuntimeObject*)__this->get_comparer_6(); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 29)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_6, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4, (String_t*)_stringLiteral8FC94E4F5B71CECE2565D72417AACC804EE27A0D, (RuntimeObject *)L_5, (Type_t *)L_7, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_8 = ___info0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_9 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); G_B3_0 = _stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60; G_B3_1 = L_8; if (!L_9) { G_B4_0 = _stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60; G_B4_1 = L_8; goto IL_0052; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_10 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_10); G_B5_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))); G_B5_1 = G_B3_0; G_B5_2 = G_B3_1; goto IL_0053; } IL_0052: { G_B5_0 = 0; G_B5_1 = G_B4_0; G_B5_2 = G_B4_1; } IL_0053: { NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)G_B5_2); SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)G_B5_2, (String_t*)G_B5_1, (int32_t)G_B5_0, /*hidden argument*/NULL); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_11 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (!L_11) { goto IL_008a; } } { NullCheck((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this); int32_t L_12 = (( int32_t (*) (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)->methodPointer)((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)); KeyValuePair_2U5BU5D_t03ACDE20158B31A492B18DAAEB19BCCAB1AFA9D5* L_13 = (KeyValuePair_2U5BU5D_t03ACDE20158B31A492B18DAAEB19BCCAB1AFA9D5*)(KeyValuePair_2U5BU5D_t03ACDE20158B31A492B18DAAEB19BCCAB1AFA9D5*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 30), (uint32_t)L_12); V_0 = (KeyValuePair_2U5BU5D_t03ACDE20158B31A492B18DAAEB19BCCAB1AFA9D5*)L_13; KeyValuePair_2U5BU5D_t03ACDE20158B31A492B18DAAEB19BCCAB1AFA9D5* L_14 = V_0; NullCheck((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this); (( void (*) (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *, KeyValuePair_2U5BU5D_t03ACDE20158B31A492B18DAAEB19BCCAB1AFA9D5*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this, (KeyValuePair_2U5BU5D_t03ACDE20158B31A492B18DAAEB19BCCAB1AFA9D5*)L_14, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_15 = ___info0; KeyValuePair_2U5BU5D_t03ACDE20158B31A492B18DAAEB19BCCAB1AFA9D5* L_16 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_17 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 32)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_18 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_17, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_15); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_15, (String_t*)_stringLiteral1D89254A2BC78C1FF41C2F6767A0E00EE126B3BF, (RuntimeObject *)(RuntimeObject *)L_16, (Type_t *)L_18, /*hidden argument*/NULL); } IL_008a: { return; } } // System.Int32 System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::FindEntry(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Dictionary_2_FindEntry_m5BB000ABA37B0920476F4062799D056EA47EF04F_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_FindEntry_m5BB000ABA37B0920476F4062799D056EA47EF04F_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0013; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_FindEntry_m5BB000ABA37B0920476F4062799D056EA47EF04F_RuntimeMethod_var); } IL_0013: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (!L_2) { goto IL_008d; } } { RuntimeObject* L_3 = (RuntimeObject*)__this->get_comparer_6(); RuntimeObject * L_4 = ___key0; NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Object>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_3, (RuntimeObject *)L_4); V_0 = (int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL))); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_6 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_7 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_8); NullCheck(L_6); int32_t L_9 = ((int32_t)((int32_t)L_7%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))))); int32_t L_10 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); V_1 = (int32_t)L_10; goto IL_0089; } IL_0042: { EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_11 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)__this->get_entries_1(); int32_t L_12 = V_1; NullCheck(L_11); int32_t L_13 = (int32_t)((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12)))->get_hashCode_0(); int32_t L_14 = V_0; if ((!(((uint32_t)L_13) == ((uint32_t)L_14)))) { goto IL_0077; } } { RuntimeObject* L_15 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_16 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)__this->get_entries_1(); int32_t L_17 = V_1; NullCheck(L_16); RuntimeObject * L_18 = (RuntimeObject *)((L_16)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_17)))->get_key_2(); RuntimeObject * L_19 = ___key0; NullCheck((RuntimeObject*)L_15); bool L_20 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Object>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_15, (RuntimeObject *)L_18, (RuntimeObject *)L_19); if (!L_20) { goto IL_0077; } } { int32_t L_21 = V_1; return L_21; } IL_0077: { EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_22 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)__this->get_entries_1(); int32_t L_23 = V_1; NullCheck(L_22); int32_t L_24 = (int32_t)((L_22)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_23)))->get_next_1(); V_1 = (int32_t)L_24; } IL_0089: { int32_t L_25 = V_1; if ((((int32_t)L_25) >= ((int32_t)0))) { goto IL_0042; } } IL_008d: { return (-1); } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::Initialize(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Initialize_m8CDFA6766E6EE68D4C5FF858923CF332E58B5A01_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, int32_t ___capacity0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Initialize_m8CDFA6766E6EE68D4C5FF858923CF332E58B5A01_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___capacity0; IL2CPP_RUNTIME_CLASS_INIT(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var); int32_t L_1 = HashHelpers_GetPrime_m743D7006C2BCBADC1DC8CACF7C5B78C9F6B38297((int32_t)L_0, /*hidden argument*/NULL); V_0 = (int32_t)L_1; int32_t L_2 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_3 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_2); __this->set_buckets_0(L_3); V_1 = (int32_t)0; goto IL_0024; } IL_0017: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_4 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_5 = V_1; NullCheck(L_4); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (int32_t)(-1)); int32_t L_6 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)); } IL_0024: { int32_t L_7 = V_1; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_8); if ((((int32_t)L_7) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length))))))) { goto IL_0017; } } { int32_t L_9 = V_0; EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_10 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)(EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 35), (uint32_t)L_9); __this->set_entries_1(L_10); __this->set_freeList_4((-1)); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::TryInsert(TKey,TValue,System.Collections.Generic.InsertionBehavior) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryInsert_mA3CAB92DBD7AF67DCC3EFA3F728A89E34362688F_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, RuntimeObject * ___key0, int64_t ___value1, uint8_t ___behavior2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_TryInsert_mA3CAB92DBD7AF67DCC3EFA3F728A89E34362688F_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0013; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_TryInsert_mA3CAB92DBD7AF67DCC3EFA3F728A89E34362688F_RuntimeMethod_var); } IL_0013: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (L_2) { goto IL_0022; } } { NullCheck((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this); (( void (*) (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); } IL_0022: { RuntimeObject* L_3 = (RuntimeObject*)__this->get_comparer_6(); RuntimeObject * L_4 = ___key0; NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Object>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_3, (RuntimeObject *)L_4); V_0 = (int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL))); int32_t L_6 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_7 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_7); V_1 = (int32_t)((int32_t)((int32_t)L_6%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length)))))); V_2 = (int32_t)0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_9 = V_1; NullCheck(L_8); int32_t L_10 = L_9; int32_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); V_4 = (int32_t)L_11; goto IL_00e1; } IL_0051: { EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_12 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)__this->get_entries_1(); int32_t L_13 = V_4; NullCheck(L_12); int32_t L_14 = (int32_t)((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_13)))->get_hashCode_0(); int32_t L_15 = V_0; if ((!(((uint32_t)L_14) == ((uint32_t)L_15)))) { goto IL_00c9; } } { RuntimeObject* L_16 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_17 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)__this->get_entries_1(); int32_t L_18 = V_4; NullCheck(L_17); RuntimeObject * L_19 = (RuntimeObject *)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->get_key_2(); RuntimeObject * L_20 = ___key0; NullCheck((RuntimeObject*)L_16); bool L_21 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Object>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_16, (RuntimeObject *)L_19, (RuntimeObject *)L_20); if (!L_21) { goto IL_00c9; } } { uint8_t L_22 = ___behavior2; if ((!(((uint32_t)L_22) == ((uint32_t)1)))) { goto IL_00ad; } } { EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_23 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)__this->get_entries_1(); int32_t L_24 = V_4; NullCheck(L_23); int64_t L_25 = ___value1; ((L_23)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_24)))->set_value_3(L_25); int32_t L_26 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1))); return (bool)1; } IL_00ad: { uint8_t L_27 = ___behavior2; if ((!(((uint32_t)L_27) == ((uint32_t)2)))) { goto IL_00c7; } } { RuntimeObject * L_28 = ___key0; String_t* L_29 = SR_Format_mCDBB594267CC224AB2A69540BBA598151F0642C7((String_t*)_stringLiteral6FD577FD3A1BDC4DA28CD51D7A55EB397CEA3926, (RuntimeObject *)L_28, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_30 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_30, (String_t*)L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30, NULL, Dictionary_2_TryInsert_mA3CAB92DBD7AF67DCC3EFA3F728A89E34362688F_RuntimeMethod_var); } IL_00c7: { return (bool)0; } IL_00c9: { int32_t L_31 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)1)); EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_32 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)__this->get_entries_1(); int32_t L_33 = V_4; NullCheck(L_32); int32_t L_34 = (int32_t)((L_32)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_33)))->get_next_1(); V_4 = (int32_t)L_34; } IL_00e1: { int32_t L_35 = V_4; if ((((int32_t)L_35) >= ((int32_t)0))) { goto IL_0051; } } { int32_t L_36 = (int32_t)__this->get_freeCount_5(); if ((((int32_t)L_36) <= ((int32_t)0))) { goto IL_0120; } } { int32_t L_37 = (int32_t)__this->get_freeList_4(); V_3 = (int32_t)L_37; EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_38 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)__this->get_entries_1(); int32_t L_39 = V_3; NullCheck(L_38); int32_t L_40 = (int32_t)((L_38)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_39)))->get_next_1(); __this->set_freeList_4(L_40); int32_t L_41 = (int32_t)__this->get_freeCount_5(); __this->set_freeCount_5(((int32_t)il2cpp_codegen_subtract((int32_t)L_41, (int32_t)1))); goto IL_0156; } IL_0120: { int32_t L_42 = (int32_t)__this->get_count_2(); EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_43 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)__this->get_entries_1(); NullCheck(L_43); if ((!(((uint32_t)L_42) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_43)->max_length)))))))) { goto IL_0141; } } { NullCheck((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this); (( void (*) (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 36)->methodPointer)((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 36)); int32_t L_44 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_45 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_45); V_1 = (int32_t)((int32_t)((int32_t)L_44%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_45)->max_length)))))); } IL_0141: { int32_t L_46 = (int32_t)__this->get_count_2(); V_3 = (int32_t)L_46; int32_t L_47 = (int32_t)__this->get_count_2(); __this->set_count_2(((int32_t)il2cpp_codegen_add((int32_t)L_47, (int32_t)1))); } IL_0156: { EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_48 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)__this->get_entries_1(); int32_t L_49 = V_3; NullCheck(L_48); int32_t L_50 = V_0; ((L_48)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_49)))->set_hashCode_0(L_50); EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_51 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)__this->get_entries_1(); int32_t L_52 = V_3; NullCheck(L_51); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_53 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_54 = V_1; NullCheck(L_53); int32_t L_55 = L_54; int32_t L_56 = (L_53)->GetAt(static_cast<il2cpp_array_size_t>(L_55)); ((L_51)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_52)))->set_next_1(L_56); EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_57 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)__this->get_entries_1(); int32_t L_58 = V_3; NullCheck(L_57); RuntimeObject * L_59 = ___key0; ((L_57)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_58)))->set_key_2(L_59); EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_60 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)__this->get_entries_1(); int32_t L_61 = V_3; NullCheck(L_60); int64_t L_62 = ___value1; ((L_60)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_61)))->set_value_3(L_62); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_63 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_64 = V_1; int32_t L_65 = V_3; NullCheck(L_63); (L_63)->SetAt(static_cast<il2cpp_array_size_t>(L_64), (int32_t)L_65); int32_t L_66 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_66, (int32_t)1))); int32_t L_67 = V_2; if ((((int32_t)L_67) <= ((int32_t)((int32_t)100)))) { goto IL_01ed; } } { RuntimeObject* L_68 = (RuntimeObject*)__this->get_comparer_6(); if (!((NonRandomizedStringEqualityComparer_t92C20503D9C5060A557792ABCCC06EF2DD77E5D9 *)IsInst((RuntimeObject*)L_68, NonRandomizedStringEqualityComparer_t92C20503D9C5060A557792ABCCC06EF2DD77E5D9_il2cpp_TypeInfo_var))) { goto IL_01ed; } } { EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137 * L_69 = EqualityComparer_1_get_Default_m85F378D7298050D5DF422363D5EB30A218B769B7(/*hidden argument*/EqualityComparer_1_get_Default_m85F378D7298050D5DF422363D5EB30A218B769B7_RuntimeMethod_var); __this->set_comparer_6(((RuntimeObject*)Castclass((RuntimeObject*)L_69, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34)))); EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_70 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)__this->get_entries_1(); NullCheck(L_70); NullCheck((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this); (( void (*) (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *, int32_t, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)->methodPointer)((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this, (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_70)->max_length)))), (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)); } IL_01ed: { return (bool)1; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::OnDeserialization(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_OnDeserialization_m85E3F3207B84D073B94EAD6D5B2A33BBD711D2C0_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, RuntimeObject * ___sender0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_OnDeserialization_m85E3F3207B84D073B94EAD6D5B2A33BBD711D2C0_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; KeyValuePair_2U5BU5D_t03ACDE20158B31A492B18DAAEB19BCCAB1AFA9D5* V_3 = NULL; int32_t V_4 = 0; int32_t V_5 = 0; { IL2CPP_RUNTIME_CLASS_INIT(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_0 = DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C_inline(/*hidden argument*/NULL); NullCheck((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0); ConditionalWeakTable_2_TryGetValue_mDFCB6C303807E3F8998D196F4573870680E81F8B((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0, (RuntimeObject *)__this, (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 **)(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 **)(&V_0), /*hidden argument*/ConditionalWeakTable_2_TryGetValue_mDFCB6C303807E3F8998D196F4573870680E81F8B_RuntimeMethod_var); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_1 = V_0; if (L_1) { goto IL_0012; } } { return; } IL_0012: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = V_0; NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2); int32_t L_3 = SerializationInfo_GetInt32_mB47BD46A0BDBBAF5B47BB62E6EFF8E092E3F3656((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2, (String_t*)_stringLiteral2DA600BF9404843107A9531694F654E5662959E0, /*hidden argument*/NULL); V_1 = (int32_t)L_3; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = V_0; NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4); int32_t L_5 = SerializationInfo_GetInt32_mB47BD46A0BDBBAF5B47BB62E6EFF8E092E3F3656((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4, (String_t*)_stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60, /*hidden argument*/NULL); V_2 = (int32_t)L_5; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_6 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 29)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_7, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_6); RuntimeObject * L_9 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_6, (String_t*)_stringLiteral8FC94E4F5B71CECE2565D72417AACC804EE27A0D, (Type_t *)L_8, /*hidden argument*/NULL); __this->set_comparer_6(((RuntimeObject*)Castclass((RuntimeObject*)L_9, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34)))); int32_t L_10 = V_2; if (!L_10) { goto IL_010c; } } { int32_t L_11 = V_2; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_12 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_11); __this->set_buckets_0(L_12); V_4 = (int32_t)0; goto IL_0071; } IL_0061: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_13 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_14 = V_4; NullCheck(L_13); (L_13)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (int32_t)(-1)); int32_t L_15 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_0071: { int32_t L_16 = V_4; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_17 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_17); if ((((int32_t)L_16) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length))))))) { goto IL_0061; } } { int32_t L_18 = V_2; EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_19 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)(EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 35), (uint32_t)L_18); __this->set_entries_1(L_19); __this->set_freeList_4((-1)); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_20 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_21 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 32)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_22 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_21, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_20); RuntimeObject * L_23 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_20, (String_t*)_stringLiteral1D89254A2BC78C1FF41C2F6767A0E00EE126B3BF, (Type_t *)L_22, /*hidden argument*/NULL); V_3 = (KeyValuePair_2U5BU5D_t03ACDE20158B31A492B18DAAEB19BCCAB1AFA9D5*)((KeyValuePair_2U5BU5D_t03ACDE20158B31A492B18DAAEB19BCCAB1AFA9D5*)Castclass((RuntimeObject*)L_23, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 38))); KeyValuePair_2U5BU5D_t03ACDE20158B31A492B18DAAEB19BCCAB1AFA9D5* L_24 = V_3; if (L_24) { goto IL_00b9; } } { SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * L_25 = (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 *)il2cpp_codegen_object_new(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var); SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1(L_25, (String_t*)_stringLiteral1EB7E67EA75FFC3FCB05A9685FA4F1578DCACCF6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, NULL, Dictionary_2_OnDeserialization_m85E3F3207B84D073B94EAD6D5B2A33BBD711D2C0_RuntimeMethod_var); } IL_00b9: { V_5 = (int32_t)0; goto IL_0103; } IL_00be: { KeyValuePair_2U5BU5D_t03ACDE20158B31A492B18DAAEB19BCCAB1AFA9D5* L_26 = V_3; int32_t L_27 = V_5; NullCheck(L_26); RuntimeObject * L_28 = KeyValuePair_2_get_Key_mB084E92B140BFFC0B05807BEF67E3078B444B51A_inline((KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 *)(KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 *)((L_26)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_27))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); if (L_28) { goto IL_00dd; } } { SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * L_29 = (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 *)il2cpp_codegen_object_new(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var); SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1(L_29, (String_t*)_stringLiteralD6D1BC79DD62E9F1FB9A49A8F76F4BA8AB71AECD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_29, NULL, Dictionary_2_OnDeserialization_m85E3F3207B84D073B94EAD6D5B2A33BBD711D2C0_RuntimeMethod_var); } IL_00dd: { KeyValuePair_2U5BU5D_t03ACDE20158B31A492B18DAAEB19BCCAB1AFA9D5* L_30 = V_3; int32_t L_31 = V_5; NullCheck(L_30); RuntimeObject * L_32 = KeyValuePair_2_get_Key_mB084E92B140BFFC0B05807BEF67E3078B444B51A_inline((KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 *)(KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 *)((L_30)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_31))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); KeyValuePair_2U5BU5D_t03ACDE20158B31A492B18DAAEB19BCCAB1AFA9D5* L_33 = V_3; int32_t L_34 = V_5; NullCheck(L_33); int64_t L_35 = KeyValuePair_2_get_Value_mA67EB2ECE4D2556965A4E43E66589F6EEE19B182_inline((KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 *)(KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 *)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); NullCheck((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this); (( void (*) (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *, RuntimeObject *, int64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this, (RuntimeObject *)L_32, (int64_t)L_35, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); int32_t L_36 = V_5; V_5 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)1)); } IL_0103: { int32_t L_37 = V_5; KeyValuePair_2U5BU5D_t03ACDE20158B31A492B18DAAEB19BCCAB1AFA9D5* L_38 = V_3; NullCheck(L_38); if ((((int32_t)L_37) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_38)->max_length))))))) { goto IL_00be; } } { goto IL_0113; } IL_010c: { __this->set_buckets_0((Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)NULL); } IL_0113: { int32_t L_39 = V_1; __this->set_version_3(L_39); IL2CPP_RUNTIME_CLASS_INIT(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_40 = DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C_inline(/*hidden argument*/NULL); NullCheck((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_40); ConditionalWeakTable_2_Remove_mD69606977A8C793DEA91E373F7D886E4865D7FBD((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_40, (RuntimeObject *)__this, /*hidden argument*/ConditionalWeakTable_2_Remove_mD69606977A8C793DEA91E373F7D886E4865D7FBD_RuntimeMethod_var); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::Resize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Resize_m51C9067FC9296946D07550559F7087648D976FED_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Resize_m51C9067FC9296946D07550559F7087648D976FED_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_count_2(); IL2CPP_RUNTIME_CLASS_INIT(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var); int32_t L_1 = HashHelpers_ExpandPrime_m4245F4C95074EAA8F949FB3B734F611A533A6A0D((int32_t)L_0, /*hidden argument*/NULL); NullCheck((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this); (( void (*) (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *, int32_t, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)->methodPointer)((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this, (int32_t)L_1, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::Resize(System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Resize_m4D9B4ABDE3485ADBF1453E64B7969121FD16FA4A_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, int32_t ___newSize0, bool ___forceNewHashCodes1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Resize_m4D9B4ABDE3485ADBF1453E64B7969121FD16FA4A_MetadataUsageId); s_Il2CppMethodInitialized = true; } Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL; EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; { int32_t L_0 = ___newSize0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_0); V_0 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)L_1; V_2 = (int32_t)0; goto IL_0013; } IL_000b: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = V_0; int32_t L_3 = V_2; NullCheck(L_2); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (int32_t)(-1)); int32_t L_4 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)); } IL_0013: { int32_t L_5 = V_2; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_6 = V_0; NullCheck(L_6); if ((((int32_t)L_5) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length))))))) { goto IL_000b; } } { int32_t L_7 = ___newSize0; EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_8 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)(EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 35), (uint32_t)L_7); V_1 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)L_8; EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_9 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)__this->get_entries_1(); EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_10 = V_1; int32_t L_11 = (int32_t)__this->get_count_2(); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_9, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_10, (int32_t)0, (int32_t)L_11, /*hidden argument*/NULL); bool L_12 = ___forceNewHashCodes1; if (!L_12) { goto IL_0080; } } { V_3 = (int32_t)0; goto IL_0077; } IL_003b: { EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_13 = V_1; int32_t L_14 = V_3; NullCheck(L_13); int32_t L_15 = (int32_t)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_hashCode_0(); if ((((int32_t)L_15) == ((int32_t)(-1)))) { goto IL_0073; } } { EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_16 = V_1; int32_t L_17 = V_3; NullCheck(L_16); RuntimeObject* L_18 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_19 = V_1; int32_t L_20 = V_3; NullCheck(L_19); RuntimeObject * L_21 = (RuntimeObject *)((L_19)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_20)))->get_key_2(); NullCheck((RuntimeObject*)L_18); int32_t L_22 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Object>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_18, (RuntimeObject *)L_21); ((L_16)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_17)))->set_hashCode_0(((int32_t)((int32_t)L_22&(int32_t)((int32_t)2147483647LL)))); } IL_0073: { int32_t L_23 = V_3; V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); } IL_0077: { int32_t L_24 = V_3; int32_t L_25 = (int32_t)__this->get_count_2(); if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_003b; } } IL_0080: { V_4 = (int32_t)0; goto IL_00c3; } IL_0085: { EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_26 = V_1; int32_t L_27 = V_4; NullCheck(L_26); int32_t L_28 = (int32_t)((L_26)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_27)))->get_hashCode_0(); if ((((int32_t)L_28) < ((int32_t)0))) { goto IL_00bd; } } { EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_29 = V_1; int32_t L_30 = V_4; NullCheck(L_29); int32_t L_31 = (int32_t)((L_29)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_30)))->get_hashCode_0(); int32_t L_32 = ___newSize0; V_5 = (int32_t)((int32_t)((int32_t)L_31%(int32_t)L_32)); EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_33 = V_1; int32_t L_34 = V_4; NullCheck(L_33); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_35 = V_0; int32_t L_36 = V_5; NullCheck(L_35); int32_t L_37 = L_36; int32_t L_38 = (L_35)->GetAt(static_cast<il2cpp_array_size_t>(L_37)); ((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->set_next_1(L_38); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_39 = V_0; int32_t L_40 = V_5; int32_t L_41 = V_4; NullCheck(L_39); (L_39)->SetAt(static_cast<il2cpp_array_size_t>(L_40), (int32_t)L_41); } IL_00bd: { int32_t L_42 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1)); } IL_00c3: { int32_t L_43 = V_4; int32_t L_44 = (int32_t)__this->get_count_2(); if ((((int32_t)L_43) < ((int32_t)L_44))) { goto IL_0085; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_45 = V_0; __this->set_buckets_0(L_45); EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_46 = V_1; __this->set_entries_1(L_46); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::Remove(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_Remove_m1ED1A8C4E97713FE1117C92E7ACCAB9458825C22_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Remove_m1ED1A8C4E97713FE1117C92E7ACCAB9458825C22_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0013; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_Remove_m1ED1A8C4E97713FE1117C92E7ACCAB9458825C22_RuntimeMethod_var); } IL_0013: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (!L_2) { goto IL_015d; } } { RuntimeObject* L_3 = (RuntimeObject*)__this->get_comparer_6(); RuntimeObject * L_4 = ___key0; NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Object>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_3, (RuntimeObject *)L_4); V_0 = (int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL))); int32_t L_6 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_7 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_7); V_1 = (int32_t)((int32_t)((int32_t)L_6%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length)))))); V_2 = (int32_t)(-1); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_9 = V_1; NullCheck(L_8); int32_t L_10 = L_9; int32_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); V_3 = (int32_t)L_11; goto IL_0156; } IL_004c: { EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_12 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)__this->get_entries_1(); int32_t L_13 = V_3; NullCheck(L_12); int32_t L_14 = (int32_t)((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_13)))->get_hashCode_0(); int32_t L_15 = V_0; if ((!(((uint32_t)L_14) == ((uint32_t)L_15)))) { goto IL_0142; } } { RuntimeObject* L_16 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_17 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)__this->get_entries_1(); int32_t L_18 = V_3; NullCheck(L_17); RuntimeObject * L_19 = (RuntimeObject *)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->get_key_2(); RuntimeObject * L_20 = ___key0; NullCheck((RuntimeObject*)L_16); bool L_21 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Object>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_16, (RuntimeObject *)L_19, (RuntimeObject *)L_20); if (!L_21) { goto IL_0142; } } { int32_t L_22 = V_2; if ((((int32_t)L_22) >= ((int32_t)0))) { goto IL_00a4; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_23 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_24 = V_1; EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_25 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)__this->get_entries_1(); int32_t L_26 = V_3; NullCheck(L_25); int32_t L_27 = (int32_t)((L_25)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_26)))->get_next_1(); NullCheck(L_23); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (int32_t)L_27); goto IL_00c6; } IL_00a4: { EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_28 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)__this->get_entries_1(); int32_t L_29 = V_2; NullCheck(L_28); EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_30 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)__this->get_entries_1(); int32_t L_31 = V_3; NullCheck(L_30); int32_t L_32 = (int32_t)((L_30)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_31)))->get_next_1(); ((L_28)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_29)))->set_next_1(L_32); } IL_00c6: { EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_33 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)__this->get_entries_1(); int32_t L_34 = V_3; NullCheck(L_33); ((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->set_hashCode_0((-1)); EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_35 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)__this->get_entries_1(); int32_t L_36 = V_3; NullCheck(L_35); int32_t L_37 = (int32_t)__this->get_freeList_4(); ((L_35)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_36)))->set_next_1(L_37); EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_38 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)__this->get_entries_1(); int32_t L_39 = V_3; NullCheck(L_38); RuntimeObject ** L_40 = (RuntimeObject **)((L_38)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_39)))->get_address_of_key_2(); il2cpp_codegen_initobj(L_40, sizeof(RuntimeObject *)); EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_41 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)__this->get_entries_1(); int32_t L_42 = V_3; NullCheck(L_41); int64_t* L_43 = (int64_t*)((L_41)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_42)))->get_address_of_value_3(); il2cpp_codegen_initobj(L_43, sizeof(int64_t)); int32_t L_44 = V_3; __this->set_freeList_4(L_44); int32_t L_45 = (int32_t)__this->get_freeCount_5(); __this->set_freeCount_5(((int32_t)il2cpp_codegen_add((int32_t)L_45, (int32_t)1))); int32_t L_46 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_46, (int32_t)1))); return (bool)1; } IL_0142: { int32_t L_47 = V_3; V_2 = (int32_t)L_47; EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_48 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)__this->get_entries_1(); int32_t L_49 = V_3; NullCheck(L_48); int32_t L_50 = (int32_t)((L_48)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_49)))->get_next_1(); V_3 = (int32_t)L_50; } IL_0156: { int32_t L_51 = V_3; if ((((int32_t)L_51) >= ((int32_t)0))) { goto IL_004c; } } IL_015d: { return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::TryGetValue(TKey,TValue&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_m06EEBD174E9267F4D864E2B99D10DDADB552038D_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, RuntimeObject * ___key0, int64_t* ___value1, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; NullCheck((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0025; } } { int64_t* L_3 = ___value1; EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_4 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); int64_t L_6 = (int64_t)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); *(int64_t*)L_3 = L_6; return (bool)1; } IL_0025: { int64_t* L_7 = ___value1; il2cpp_codegen_initobj(L_7, sizeof(int64_t)); return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_get_IsReadOnly_m6CA51FFC313CB0D9B60F056C044E8B223D20C27C_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_CopyTo_mE3CCDE4929CA7F4311CDD7229953A3AB0B245292_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, KeyValuePair_2U5BU5D_t03ACDE20158B31A492B18DAAEB19BCCAB1AFA9D5* ___array0, int32_t ___index1, const RuntimeMethod* method) { { KeyValuePair_2U5BU5D_t03ACDE20158B31A492B18DAAEB19BCCAB1AFA9D5* L_0 = ___array0; int32_t L_1 = ___index1; NullCheck((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this); (( void (*) (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *, KeyValuePair_2U5BU5D_t03ACDE20158B31A492B18DAAEB19BCCAB1AFA9D5*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this, (KeyValuePair_2U5BU5D_t03ACDE20158B31A492B18DAAEB19BCCAB1AFA9D5*)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_ICollection_CopyTo_m9E0A3CE877AE8809E19111C8D07C4D823B95D308_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_ICollection_CopyTo_m9E0A3CE877AE8809E19111C8D07C4D823B95D308_MetadataUsageId); s_Il2CppMethodInitialized = true; } KeyValuePair_2U5BU5D_t03ACDE20158B31A492B18DAAEB19BCCAB1AFA9D5* V_0 = NULL; DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56* V_1 = NULL; EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* V_2 = NULL; int32_t V_3 = 0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_4 = NULL; int32_t V_5 = 0; EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* V_6 = NULL; int32_t V_7 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m9E0A3CE877AE8809E19111C8D07C4D823B95D308_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; NullCheck((RuntimeArray *)L_2); int32_t L_3 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0027; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_4 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_4, (String_t*)_stringLiteral2D77BE6D598A0A9376398980E66D10E319F1B52A, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m9E0A3CE877AE8809E19111C8D07C4D823B95D308_RuntimeMethod_var); } IL_0027: { RuntimeArray * L_5 = ___array0; NullCheck((RuntimeArray *)L_5); int32_t L_6 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)L_5, (int32_t)0, /*hidden argument*/NULL); if (!L_6) { goto IL_0040; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_7, (String_t*)_stringLiteralC363992023785AF013BBCF2E20C19D9835184F82, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m9E0A3CE877AE8809E19111C8D07C4D823B95D308_RuntimeMethod_var); } IL_0040: { int32_t L_8 = ___index1; if ((((int32_t)L_8) < ((int32_t)0))) { goto IL_004d; } } { int32_t L_9 = ___index1; RuntimeArray * L_10 = ___array0; NullCheck((RuntimeArray *)L_10); int32_t L_11 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_10, /*hidden argument*/NULL); if ((((int32_t)L_9) <= ((int32_t)L_11))) { goto IL_0063; } } IL_004d: { int32_t L_12 = ___index1; int32_t L_13 = L_12; RuntimeObject * L_14 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_13); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_15 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_15, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, (RuntimeObject *)L_14, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m9E0A3CE877AE8809E19111C8D07C4D823B95D308_RuntimeMethod_var); } IL_0063: { RuntimeArray * L_16 = ___array0; NullCheck((RuntimeArray *)L_16); int32_t L_17 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_16, /*hidden argument*/NULL); int32_t L_18 = ___index1; NullCheck((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this); int32_t L_19 = (( int32_t (*) (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)->methodPointer)((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_19))) { goto IL_007e; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_20 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_20, (String_t*)_stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m9E0A3CE877AE8809E19111C8D07C4D823B95D308_RuntimeMethod_var); } IL_007e: { RuntimeArray * L_21 = ___array0; V_0 = (KeyValuePair_2U5BU5D_t03ACDE20158B31A492B18DAAEB19BCCAB1AFA9D5*)((KeyValuePair_2U5BU5D_t03ACDE20158B31A492B18DAAEB19BCCAB1AFA9D5*)IsInst((RuntimeObject*)L_21, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 38))); KeyValuePair_2U5BU5D_t03ACDE20158B31A492B18DAAEB19BCCAB1AFA9D5* L_22 = V_0; if (!L_22) { goto IL_0091; } } { KeyValuePair_2U5BU5D_t03ACDE20158B31A492B18DAAEB19BCCAB1AFA9D5* L_23 = V_0; int32_t L_24 = ___index1; NullCheck((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this); (( void (*) (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *, KeyValuePair_2U5BU5D_t03ACDE20158B31A492B18DAAEB19BCCAB1AFA9D5*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this, (KeyValuePair_2U5BU5D_t03ACDE20158B31A492B18DAAEB19BCCAB1AFA9D5*)L_23, (int32_t)L_24, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); return; } IL_0091: { RuntimeArray * L_25 = ___array0; if (!((DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56*)IsInst((RuntimeObject*)L_25, DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56_il2cpp_TypeInfo_var))) { goto IL_00fb; } } { RuntimeArray * L_26 = ___array0; V_1 = (DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56*)((DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56*)IsInst((RuntimeObject*)L_26, DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56_il2cpp_TypeInfo_var)); EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_27 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)__this->get_entries_1(); V_2 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)L_27; V_3 = (int32_t)0; goto IL_00f1; } IL_00ab: { EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_28 = V_2; int32_t L_29 = V_3; NullCheck(L_28); int32_t L_30 = (int32_t)((L_28)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_29)))->get_hashCode_0(); if ((((int32_t)L_30) < ((int32_t)0))) { goto IL_00ed; } } { DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56* L_31 = V_1; int32_t L_32 = ___index1; int32_t L_33 = (int32_t)L_32; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1)); EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_34 = V_2; int32_t L_35 = V_3; NullCheck(L_34); RuntimeObject * L_36 = (RuntimeObject *)((L_34)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_35)))->get_key_2(); EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_37 = V_2; int32_t L_38 = V_3; NullCheck(L_37); int64_t L_39 = (int64_t)((L_37)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_38)))->get_value_3(); int64_t L_40 = L_39; RuntimeObject * L_41 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 23), &L_40); DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_42; memset((&L_42), 0, sizeof(L_42)); DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B((&L_42), (RuntimeObject *)L_36, (RuntimeObject *)L_41, /*hidden argument*/NULL); NullCheck(L_31); (L_31)->SetAt(static_cast<il2cpp_array_size_t>(L_33), (DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 )L_42); } IL_00ed: { int32_t L_43 = V_3; V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_43, (int32_t)1)); } IL_00f1: { int32_t L_44 = V_3; int32_t L_45 = (int32_t)__this->get_count_2(); if ((((int32_t)L_44) < ((int32_t)L_45))) { goto IL_00ab; } } { return; } IL_00fb: { RuntimeArray * L_46 = ___array0; V_4 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)L_46, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_47 = V_4; if (L_47) { goto IL_0117; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_48 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_48, (String_t*)_stringLiteralC44D4E6C6AF3517A1CC72EDF7D1A5FFD7E3368F1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_48, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m9E0A3CE877AE8809E19111C8D07C4D823B95D308_RuntimeMethod_var); } IL_0117: { } IL_0118: try { // begin try (depth: 1) { int32_t L_49 = (int32_t)__this->get_count_2(); V_5 = (int32_t)L_49; EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_50 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)__this->get_entries_1(); V_6 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)L_50; V_7 = (int32_t)0; goto IL_0173; } IL_012d: { EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_51 = V_6; int32_t L_52 = V_7; NullCheck(L_51); int32_t L_53 = (int32_t)((L_51)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_52)))->get_hashCode_0(); if ((((int32_t)L_53) < ((int32_t)0))) { goto IL_016d; } } IL_013e: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_54 = V_4; int32_t L_55 = ___index1; int32_t L_56 = (int32_t)L_55; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_56, (int32_t)1)); EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_57 = V_6; int32_t L_58 = V_7; NullCheck(L_57); RuntimeObject * L_59 = (RuntimeObject *)((L_57)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_58)))->get_key_2(); EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_60 = V_6; int32_t L_61 = V_7; NullCheck(L_60); int64_t L_62 = (int64_t)((L_60)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_61)))->get_value_3(); KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 L_63; memset((&L_63), 0, sizeof(L_63)); KeyValuePair_2__ctor_m6204F5F64C03883836FCC24CF3FB9806BF396475((&L_63), (RuntimeObject *)L_59, (int64_t)L_62, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)); KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 L_64 = L_63; RuntimeObject * L_65 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 25), &L_64); NullCheck(L_54); ArrayElementTypeCheck (L_54, L_65); (L_54)->SetAt(static_cast<il2cpp_array_size_t>(L_56), (RuntimeObject *)L_65); } IL_016d: { int32_t L_66 = V_7; V_7 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_66, (int32_t)1)); } IL_0173: { int32_t L_67 = V_7; int32_t L_68 = V_5; if ((((int32_t)L_67) < ((int32_t)L_68))) { goto IL_012d; } } IL_0179: { goto IL_018c; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArrayTypeMismatchException_tE34C1032B089C37399200997F079C640D23D9499_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_017b; throw e; } CATCH_017b: { // begin catch(System.ArrayTypeMismatchException) ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_69 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_69, (String_t*)_stringLiteralC44D4E6C6AF3517A1CC72EDF7D1A5FFD7E3368F1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_69, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m9E0A3CE877AE8809E19111C8D07C4D823B95D308_RuntimeMethod_var); } // end catch (depth: 1) IL_018c: { return; } } // System.Collections.IEnumerator System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_IEnumerable_GetEnumerator_mA4C20FB41F7C8E71782373E1A1F6B0EEA3F4A272_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, const RuntimeMethod* method) { { Enumerator_t9BD0A40138A5E3DDD866F2B84C017585FFBE61DE L_0; memset((&L_0), 0, sizeof(L_0)); Enumerator__ctor_mA87C4C4C2FCDEAFE555DACF7BF61D48F6ACB2E89((&L_0), (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 28)); Enumerator_t9BD0A40138A5E3DDD866F2B84C017585FFBE61DE L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 27), &L_1); return (RuntimeObject*)L_2; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::System.Collections.ICollection.get_IsSynchronized() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_ICollection_get_IsSynchronized_m965BCCCBC1A31BFBDFBFE2FEF2ED5BCF27655686_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Object System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::System.Collections.ICollection.get_SyncRoot() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Dictionary_2_System_Collections_ICollection_get_SyncRoot_mC12D71595BEF6B74E2EA3DC1DE8E13484BBE7882_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_ICollection_get_SyncRoot_mC12D71595BEF6B74E2EA3DC1DE8E13484BBE7882_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = (RuntimeObject *)__this->get__syncRoot_9(); if (L_0) { goto IL_001a; } } { RuntimeObject ** L_1 = (RuntimeObject **)__this->get_address_of__syncRoot_9(); RuntimeObject * L_2 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_2, /*hidden argument*/NULL); InterlockedCompareExchangeImpl<RuntimeObject *>((RuntimeObject **)(RuntimeObject **)L_1, (RuntimeObject *)L_2, (RuntimeObject *)NULL); } IL_001a: { RuntimeObject * L_3 = (RuntimeObject *)__this->get__syncRoot_9(); return L_3; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::System.Collections.IDictionary.get_IsFixedSize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_IDictionary_get_IsFixedSize_m73FEB5C7B190625754BB166B74B400C3B54C0124_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::System.Collections.IDictionary.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_IDictionary_get_IsReadOnly_m315658E579175D0FCAA6CF453C668E8D2BDB979F_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Collections.ICollection System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::System.Collections.IDictionary.get_Keys() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_IDictionary_get_Keys_m9F20E37158A73FA2D01273712412708B1DA713C5_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, const RuntimeMethod* method) { { NullCheck((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this); KeyCollection_t094529A3BCF7C6FDAC957A8B3DBA4182A2915D15 * L_0 = (( KeyCollection_t094529A3BCF7C6FDAC957A8B3DBA4182A2915D15 * (*) (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 39)->methodPointer)((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 39)); return L_0; } } // System.Collections.ICollection System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::System.Collections.IDictionary.get_Values() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_IDictionary_get_Values_m7A90348C2CC1CC43009662CB19FD00F6DB9947E5_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, const RuntimeMethod* method) { { NullCheck((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this); ValueCollection_tF4024A6BA9CF9684EE2E87153E84B91B1FEF68C3 * L_0 = (( ValueCollection_tF4024A6BA9CF9684EE2E87153E84B91B1FEF68C3 * (*) (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 40)->methodPointer)((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 40)); return L_0; } } // System.Object System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::System.Collections.IDictionary.get_Item(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Dictionary_2_System_Collections_IDictionary_get_Item_mF813AA61220F35048BD6E68B80C4D40212FD541A_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; bool L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)); if (!L_1) { goto IL_0030; } } { RuntimeObject * L_2 = ___key0; NullCheck((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this); int32_t L_3 = (( int32_t (*) (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 33))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); V_0 = (int32_t)L_3; int32_t L_4 = V_0; if ((((int32_t)L_4) < ((int32_t)0))) { goto IL_0030; } } { EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF* L_5 = (EntryU5BU5D_t7013045DA825123431B8EAE511C2CE20996DD1DF*)__this->get_entries_1(); int32_t L_6 = V_0; NullCheck(L_5); int64_t L_7 = (int64_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_value_3(); int64_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 23), &L_8); return L_9; } IL_0030: { return NULL; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::System.Collections.IDictionary.set_Item(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_IDictionary_set_Item_m9ED7C4B62DC351902D9E4E6FF30FC8C21E9813E7_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_IDictionary_set_Item_m9ED7C4B62DC351902D9E4E6FF30FC8C21E9813E7_MetadataUsageId); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; RuntimeObject * V_1 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_m9ED7C4B62DC351902D9E4E6FF30FC8C21E9813E7_RuntimeMethod_var); } IL_000e: { RuntimeObject * L_2 = ___value1; if (L_2) { goto IL_002c; } } { il2cpp_codegen_initobj((&V_0), sizeof(int64_t)); } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_4, (String_t*)_stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_m9ED7C4B62DC351902D9E4E6FF30FC8C21E9813E7_RuntimeMethod_var); } IL_002c: { } IL_002d: try { // begin try (depth: 1) { RuntimeObject * L_5 = ___key0; V_1 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 33))); } IL_0034: try { // begin try (depth: 2) RuntimeObject * L_6 = V_1; RuntimeObject * L_7 = ___value1; NullCheck((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this); (( void (*) (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *, RuntimeObject *, int64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 43)->methodPointer)((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this, (RuntimeObject *)L_6, (int64_t)((*(int64_t*)((int64_t*)UnBox(L_7, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 23))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 43)); goto IL_0064; } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0043; throw e; } CATCH_0043: { // begin catch(System.InvalidCastException) RuntimeObject * L_8 = ___value1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_9 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 44)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_9, /*hidden argument*/NULL); String_t* L_11 = SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C((String_t*)_stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6, (RuntimeObject *)L_8, (RuntimeObject *)L_10, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_12, (String_t*)L_11, (String_t*)_stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_m9ED7C4B62DC351902D9E4E6FF30FC8C21E9813E7_RuntimeMethod_var); } // end catch (depth: 2) IL_0064: { goto IL_0087; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0066; throw e; } CATCH_0066: { // begin catch(System.InvalidCastException) RuntimeObject * L_13 = ___key0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 45)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_14, /*hidden argument*/NULL); String_t* L_16 = SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C((String_t*)_stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6, (RuntimeObject *)L_13, (RuntimeObject *)L_15, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_17 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_17, (String_t*)L_16, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_m9ED7C4B62DC351902D9E4E6FF30FC8C21E9813E7_RuntimeMethod_var); } // end catch (depth: 1) IL_0087: { return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::IsCompatibleKey(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_IsCompatibleKey_mB61AFA5259CDAEA60F830AF4C2283AA803E76648_gshared (RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_IsCompatibleKey_mB61AFA5259CDAEA60F830AF4C2283AA803E76648_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_IsCompatibleKey_mB61AFA5259CDAEA60F830AF4C2283AA803E76648_RuntimeMethod_var); } IL_000e: { RuntimeObject * L_2 = ___key0; return (bool)((!(((RuntimeObject*)(RuntimeObject *)((RuntimeObject *)IsInst((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 33)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::System.Collections.IDictionary.Add(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_IDictionary_Add_m4167369826C8E4440CCAE69EB051358B9C1A36A0_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_IDictionary_Add_m4167369826C8E4440CCAE69EB051358B9C1A36A0_MetadataUsageId); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; RuntimeObject * V_1 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_System_Collections_IDictionary_Add_m4167369826C8E4440CCAE69EB051358B9C1A36A0_RuntimeMethod_var); } IL_000e: { RuntimeObject * L_2 = ___value1; if (L_2) { goto IL_002c; } } { il2cpp_codegen_initobj((&V_0), sizeof(int64_t)); } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_4, (String_t*)_stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2_System_Collections_IDictionary_Add_m4167369826C8E4440CCAE69EB051358B9C1A36A0_RuntimeMethod_var); } IL_002c: { } IL_002d: try { // begin try (depth: 1) { RuntimeObject * L_5 = ___key0; V_1 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 33))); } IL_0034: try { // begin try (depth: 2) RuntimeObject * L_6 = V_1; RuntimeObject * L_7 = ___value1; NullCheck((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this); (( void (*) (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *, RuntimeObject *, int64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this, (RuntimeObject *)L_6, (int64_t)((*(int64_t*)((int64_t*)UnBox(L_7, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 23))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); goto IL_0064; } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0043; throw e; } CATCH_0043: { // begin catch(System.InvalidCastException) RuntimeObject * L_8 = ___value1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_9 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 44)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_9, /*hidden argument*/NULL); String_t* L_11 = SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C((String_t*)_stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6, (RuntimeObject *)L_8, (RuntimeObject *)L_10, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_12, (String_t*)L_11, (String_t*)_stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Dictionary_2_System_Collections_IDictionary_Add_m4167369826C8E4440CCAE69EB051358B9C1A36A0_RuntimeMethod_var); } // end catch (depth: 2) IL_0064: { goto IL_0087; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0066; throw e; } CATCH_0066: { // begin catch(System.InvalidCastException) RuntimeObject * L_13 = ___key0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 45)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_14, /*hidden argument*/NULL); String_t* L_16 = SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C((String_t*)_stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6, (RuntimeObject *)L_13, (RuntimeObject *)L_15, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_17 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_17, (String_t*)L_16, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, NULL, Dictionary_2_System_Collections_IDictionary_Add_m4167369826C8E4440CCAE69EB051358B9C1A36A0_RuntimeMethod_var); } // end catch (depth: 1) IL_0087: { return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::System.Collections.IDictionary.Contains(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_IDictionary_Contains_m76AAD9982FBA45BB68DC48117D70F7AB2B6E8B42_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; bool L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)); if (!L_1) { goto IL_0015; } } { RuntimeObject * L_2 = ___key0; NullCheck((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this); bool L_3 = (( bool (*) (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 46)->methodPointer)((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 33))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 46)); return L_3; } IL_0015: { return (bool)0; } } // System.Collections.IDictionaryEnumerator System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::System.Collections.IDictionary.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_IDictionary_GetEnumerator_m297C82B43D4E58ABAD67913B585958E6BF6A52B2_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, const RuntimeMethod* method) { { Enumerator_t9BD0A40138A5E3DDD866F2B84C017585FFBE61DE L_0; memset((&L_0), 0, sizeof(L_0)); Enumerator__ctor_mA87C4C4C2FCDEAFE555DACF7BF61D48F6ACB2E89((&L_0), (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this, (int32_t)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 28)); Enumerator_t9BD0A40138A5E3DDD866F2B84C017585FFBE61DE L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 27), &L_1); return (RuntimeObject*)L_2; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::System.Collections.IDictionary.Remove(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_IDictionary_Remove_m70F436310BEAE2C92ADB31B50B465420EBBD844C_gshared (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; bool L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)); if (!L_1) { goto IL_0015; } } { RuntimeObject * L_2 = ___key0; NullCheck((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this); (( bool (*) (Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)->methodPointer)((Dictionary_2_t93E4A285599DF5AE27511A5E9205F2FC2CC7A526 *)__this, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 33))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); } IL_0015: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m2C7E51568033239B506E15E7804A0B8658246498_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method) { { NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); (( void (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (int32_t)0, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m2895EBB13AA7D9232058658A7DC404DC5F608923_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, int32_t ___capacity0, const RuntimeMethod* method) { { int32_t L_0 = ___capacity0; NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); (( void (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (int32_t)L_0, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m76CDCB0C7BECE95DBA94C7C98467F297E4451EE7_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___comparer0; NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); (( void (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (int32_t)0, (RuntimeObject*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor(System.Int32,System.Collections.Generic.IEqualityComparer`1<TKey>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m499028E85929789637749F7847C5EA53E99B51A0_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, int32_t ___capacity0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2__ctor_m499028E85929789637749F7847C5EA53E99B51A0_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* G_B6_0 = NULL; Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * G_B6_1 = NULL; RuntimeObject* G_B5_0 = NULL; Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * G_B5_1 = NULL; { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); int32_t L_0 = ___capacity0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0020; } } { int32_t L_1 = ___capacity0; int32_t L_2 = L_1; RuntimeObject * L_3 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_2); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_4 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_4, (String_t*)_stringLiteral7CB1F56D3FBE09E809244FC8E13671CD876E3860, (RuntimeObject *)L_3, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2__ctor_m499028E85929789637749F7847C5EA53E99B51A0_RuntimeMethod_var); } IL_0020: { int32_t L_5 = ___capacity0; if ((((int32_t)L_5) <= ((int32_t)0))) { goto IL_002b; } } { int32_t L_6 = ___capacity0; NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); (( void (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); } IL_002b: { RuntimeObject* L_7 = ___comparer1; RuntimeObject* L_8 = (RuntimeObject*)L_7; G_B5_0 = L_8; G_B5_1 = ((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)(__this)); if (L_8) { G_B6_0 = L_8; G_B6_1 = ((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)(__this)); goto IL_0036; } } { EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * L_9 = (( EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); G_B6_0 = ((RuntimeObject*)(L_9)); G_B6_1 = ((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)(G_B5_1)); } IL_0036: { NullCheck(G_B6_1); G_B6_1->set_comparer_6(G_B6_0); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor(System.Collections.Generic.IDictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mB0896A7287506E8D9C9BCAE7F5BCDB33BA28852D_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject* ___dictionary0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___dictionary0; NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); (( void (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, RuntimeObject*, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (RuntimeObject*)L_0, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor(System.Collections.Generic.IDictionary`2<TKey,TValue>,System.Collections.Generic.IEqualityComparer`1<TKey>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m1E8388061AF7756EA023607ED4A17F624220AC40_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject* ___dictionary0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2__ctor_m1E8388061AF7756EA023607ED4A17F624220AC40_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* V_1 = NULL; int32_t V_2 = 0; RuntimeObject* V_3 = NULL; KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE V_4; memset((&V_4), 0, sizeof(V_4)); Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * G_B2_0 = NULL; Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * G_B1_0 = NULL; int32_t G_B3_0 = 0; Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * G_B3_1 = NULL; { RuntimeObject* L_0 = ___dictionary0; G_B1_0 = ((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)(__this)); if (L_0) { G_B2_0 = ((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)(__this)); goto IL_0007; } } { G_B3_0 = 0; G_B3_1 = ((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)(G_B1_0)); goto IL_000d; } IL_0007: { RuntimeObject* L_1 = ___dictionary0; NullCheck((RuntimeObject*)L_1); int32_t L_2 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Count() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_1); G_B3_0 = L_2; G_B3_1 = ((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)(G_B2_0)); } IL_000d: { RuntimeObject* L_3 = ___comparer1; NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)G_B3_1); (( void (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)G_B3_1, (int32_t)G_B3_0, (RuntimeObject*)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); RuntimeObject* L_4 = ___dictionary0; if (L_4) { goto IL_0021; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_5 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_5, (String_t*)_stringLiteralF18BFB74E613AFB11F36BDD80CF05CD5DFAD98D6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Dictionary_2__ctor_m1E8388061AF7756EA023607ED4A17F624220AC40_RuntimeMethod_var); } IL_0021: { RuntimeObject* L_6 = ___dictionary0; NullCheck((RuntimeObject *)L_6); Type_t * L_7 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60((RuntimeObject *)L_6, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_8 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 6)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_9 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_8, /*hidden argument*/NULL); bool L_10 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_7, (Type_t *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0085; } } { RuntimeObject* L_11 = ___dictionary0; Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * L_12 = (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)Castclass((RuntimeObject*)L_11, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))); NullCheck(L_12); int32_t L_13 = (int32_t)L_12->get_count_2(); V_0 = (int32_t)L_13; NullCheck(L_12); EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_14 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)L_12->get_entries_1(); V_1 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)L_14; V_2 = (int32_t)0; goto IL_0080; } IL_004f: { EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_15 = V_1; int32_t L_16 = V_2; NullCheck(L_15); int32_t L_17 = (int32_t)((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16)))->get_hashCode_0(); if ((((int32_t)L_17) < ((int32_t)0))) { goto IL_007c; } } { EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_18 = V_1; int32_t L_19 = V_2; NullCheck(L_18); RuntimeObject * L_20 = (RuntimeObject *)((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)))->get_key_2(); EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_21 = V_1; int32_t L_22 = V_2; NullCheck(L_21); RuntimeObject * L_23 = (RuntimeObject *)((L_21)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_22)))->get_value_3(); NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); (( void (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (RuntimeObject *)L_20, (RuntimeObject *)L_23, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); } IL_007c: { int32_t L_24 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1)); } IL_0080: { int32_t L_25 = V_2; int32_t L_26 = V_0; if ((((int32_t)L_25) < ((int32_t)L_26))) { goto IL_004f; } } { return; } IL_0085: { RuntimeObject* L_27 = ___dictionary0; NullCheck((RuntimeObject*)L_27); RuntimeObject* L_28 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 9), (RuntimeObject*)L_27); V_3 = (RuntimeObject*)L_28; } IL_008c: try { // begin try (depth: 1) { goto IL_00aa; } IL_008e: { RuntimeObject* L_29 = V_3; NullCheck((RuntimeObject*)L_29); KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_30 = InterfaceFuncInvoker0< KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 10), (RuntimeObject*)L_29); V_4 = (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE )L_30; RuntimeObject * L_31 = KeyValuePair_2_get_Key_m9D4E9BCBAB1BE560871A0889C851FC22A09975F4_inline((KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(&V_4), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); RuntimeObject * L_32 = KeyValuePair_2_get_Value_m8C7B882C4D425535288FAAD08EAF11D289A43AEC_inline((KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(&V_4), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); (( void (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (RuntimeObject *)L_31, (RuntimeObject *)L_32, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); } IL_00aa: { RuntimeObject* L_33 = V_3; NullCheck((RuntimeObject*)L_33); bool L_34 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, (RuntimeObject*)L_33); if (L_34) { goto IL_008e; } } IL_00b2: { IL2CPP_LEAVE(0xBE, FINALLY_00b4); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00b4; } FINALLY_00b4: { // begin finally (depth: 1) { RuntimeObject* L_35 = V_3; if (!L_35) { goto IL_00bd; } } IL_00b7: { RuntimeObject* L_36 = V_3; NullCheck((RuntimeObject*)L_36); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, (RuntimeObject*)L_36); } IL_00bd: { IL2CPP_END_FINALLY(180) } } // end finally (depth: 1) IL2CPP_CLEANUP(180) { IL2CPP_JUMP_TBL(0xBE, IL_00be) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_00be: { return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m1349AC7001410F92CA7F2F0A2245F564950594D2_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2__ctor_m1349AC7001410F92CA7F2F0A2245F564950594D2_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_0 = DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C_inline(/*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_1 = ___info0; NullCheck((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0); ConditionalWeakTable_2_Add_mCC3585BE91A7BDFC49EEFDE4C11173A36D1FB5FE((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0, (RuntimeObject *)__this, (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_1, /*hidden argument*/ConditionalWeakTable_2_Add_mCC3585BE91A7BDFC49EEFDE4C11173A36D1FB5FE_RuntimeMethod_var); return; } } // System.Int32 System.Collections.Generic.Dictionary`2<System.Object,System.Object>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Dictionary_2_get_Count_m1B06EB9D28DDA7E38DDC20D88532DFF246F03DF6_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_count_2(); int32_t L_1 = (int32_t)__this->get_freeCount_5(); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)); } } // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Object>::get_Keys() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C * Dictionary_2_get_Keys_m079EE5437EE7D904E9E3F798041C1108B96B3AC3_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method) { { KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C * L_0 = (KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C *)__this->get_keys_7(); if (L_0) { goto IL_0014; } } { KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C * L_1 = (KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 13)); (( void (*) (KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C *, Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)->methodPointer)(L_1, (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)); __this->set_keys_7(L_1); } IL_0014: { KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C * L_2 = (KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C *)__this->get_keys_7(); return L_2; } } // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Object>::get_Values() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueCollection_t0816666499CBD11E58E1E7C79A4EFC2AA47E08A2 * Dictionary_2_get_Values_m58CC32586C31C6F38B730DE7CD79A1FFE9109BA4_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method) { { ValueCollection_t0816666499CBD11E58E1E7C79A4EFC2AA47E08A2 * L_0 = (ValueCollection_t0816666499CBD11E58E1E7C79A4EFC2AA47E08A2 *)__this->get_values_8(); if (L_0) { goto IL_0014; } } { ValueCollection_t0816666499CBD11E58E1E7C79A4EFC2AA47E08A2 * L_1 = (ValueCollection_t0816666499CBD11E58E1E7C79A4EFC2AA47E08A2 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 15)); (( void (*) (ValueCollection_t0816666499CBD11E58E1E7C79A4EFC2AA47E08A2 *, Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)->methodPointer)(L_1, (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)); __this->set_values_8(L_1); } IL_0014: { ValueCollection_t0816666499CBD11E58E1E7C79A4EFC2AA47E08A2 * L_2 = (ValueCollection_t0816666499CBD11E58E1E7C79A4EFC2AA47E08A2 *)__this->get_values_8(); return L_2; } } // TValue System.Collections.Generic.Dictionary`2<System.Object,System.Object>::get_Item(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Dictionary_2_get_Item_m6625C3BA931A6EE5D6DB46B9E743B40AAA30010B_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_get_Item_m6625C3BA931A6EE5D6DB46B9E743B40AAA30010B_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_001e; } } { EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_3 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)__this->get_entries_1(); int32_t L_4 = V_0; NullCheck(L_3); RuntimeObject * L_5 = (RuntimeObject *)((L_3)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_4)))->get_value_3(); return L_5; } IL_001e: { KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2 * L_6 = (KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2 *)il2cpp_codegen_object_new(KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2_il2cpp_TypeInfo_var); KeyNotFoundException__ctor_mE9E1C6E6E21842095342C0A2ED65EC201FB4F3C8(L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Dictionary_2_get_Item_m6625C3BA931A6EE5D6DB46B9E743B40AAA30010B_RuntimeMethod_var); } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::set_Item(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_m466D001F105E25DEB5C9BCB17837EE92A27FDE93_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; RuntimeObject * L_1 = ___value1; NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); (( bool (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, RuntimeObject *, RuntimeObject *, uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (RuntimeObject *)L_0, (RuntimeObject *)L_1, (uint8_t)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Add(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_mC741BBB0A647C814227953DB9B23CB1BDF571C5B_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; RuntimeObject * L_1 = ___value1; NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); (( bool (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, RuntimeObject *, RuntimeObject *, uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (RuntimeObject *)L_0, (RuntimeObject *)L_1, (uint8_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Add_m02123021BD44DAD125FBC16A09C91E03B817E29C_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE ___keyValuePair0, const RuntimeMethod* method) { { RuntimeObject * L_0 = KeyValuePair_2_get_Key_m9D4E9BCBAB1BE560871A0889C851FC22A09975F4_inline((KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); RuntimeObject * L_1 = KeyValuePair_2_get_Value_m8C7B882C4D425535288FAAD08EAF11D289A43AEC_inline((KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); (( void (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (RuntimeObject *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Contains(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Contains_m2CB7B292EE9A7DF5A8F6043071D85B56508F7B13_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE ___keyValuePair0, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = KeyValuePair_2_get_Key_m9D4E9BCBAB1BE560871A0889C851FC22A09975F4_inline((KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0038; } } { EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * L_3 = (( EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)); EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_4 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); RuntimeObject * L_6 = (RuntimeObject *)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); RuntimeObject * L_7 = KeyValuePair_2_get_Value_m8C7B882C4D425535288FAAD08EAF11D289A43AEC_inline((KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); NullCheck((EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_3); bool L_8 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(T,T) */, (EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_3, (RuntimeObject *)L_6, (RuntimeObject *)L_7); if (!L_8) { goto IL_0038; } } { return (bool)1; } IL_0038: { return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Remove_m099F1D3C232A516A7CCED6F2CB046A046C6A97F9_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE ___keyValuePair0, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = KeyValuePair_2_get_Key_m9D4E9BCBAB1BE560871A0889C851FC22A09975F4_inline((KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0046; } } { EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * L_3 = (( EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)); EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_4 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); RuntimeObject * L_6 = (RuntimeObject *)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); RuntimeObject * L_7 = KeyValuePair_2_get_Value_m8C7B882C4D425535288FAAD08EAF11D289A43AEC_inline((KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); NullCheck((EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_3); bool L_8 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(T,T) */, (EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_3, (RuntimeObject *)L_6, (RuntimeObject *)L_7); if (!L_8) { goto IL_0046; } } { RuntimeObject * L_9 = KeyValuePair_2_get_Key_m9D4E9BCBAB1BE560871A0889C851FC22A09975F4_inline((KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); (( bool (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (RuntimeObject *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); return (bool)1; } IL_0046: { return (bool)0; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Clear_m74771F9C8FCF4ECD25890A0025FDD9A874418CF4_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = (int32_t)__this->get_count_2(); if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_005a; } } { V_0 = (int32_t)0; goto IL_001a; } IL_000d: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_2 = V_0; NullCheck(L_1); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(L_2), (int32_t)(-1)); int32_t L_3 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)); } IL_001a: { int32_t L_4 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_5 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_5); if ((((int32_t)L_4) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length))))))) { goto IL_000d; } } { EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_6 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)__this->get_entries_1(); int32_t L_7 = (int32_t)__this->get_count_2(); Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_6, (int32_t)0, (int32_t)L_7, /*hidden argument*/NULL); __this->set_freeList_4((-1)); __this->set_count_2(0); __this->set_freeCount_5(0); int32_t L_8 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1))); } IL_005a: { return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::ContainsKey(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsKey_m4EBC00E16E83DA33851A551757D2B7332D5756B9_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); return (bool)((((int32_t)((((int32_t)L_1) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::ContainsValue(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsValue_mBB6B5B5840E3CC8C34F28CA181A62FD0F3CAD821_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { int32_t V_0 = 0; EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * V_1 = NULL; int32_t V_2 = 0; { RuntimeObject * L_0 = ___value0; if (L_0) { goto IL_0049; } } { V_0 = (int32_t)0; goto IL_003e; } IL_000c: { EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_1 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)__this->get_entries_1(); int32_t L_2 = V_0; NullCheck(L_1); int32_t L_3 = (int32_t)((L_1)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_2)))->get_hashCode_0(); if ((((int32_t)L_3) < ((int32_t)0))) { goto IL_003a; } } { EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_4 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); RuntimeObject * L_6 = (RuntimeObject *)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); if (L_6) { goto IL_003a; } } { return (bool)1; } IL_003a: { int32_t L_7 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)); } IL_003e: { int32_t L_8 = V_0; int32_t L_9 = (int32_t)__this->get_count_2(); if ((((int32_t)L_8) < ((int32_t)L_9))) { goto IL_000c; } } { goto IL_0090; } IL_0049: { EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * L_10 = (( EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)); V_1 = (EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_10; V_2 = (int32_t)0; goto IL_0087; } IL_0053: { EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_11 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)__this->get_entries_1(); int32_t L_12 = V_2; NullCheck(L_11); int32_t L_13 = (int32_t)((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12)))->get_hashCode_0(); if ((((int32_t)L_13) < ((int32_t)0))) { goto IL_0083; } } { EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * L_14 = V_1; EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_15 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)__this->get_entries_1(); int32_t L_16 = V_2; NullCheck(L_15); RuntimeObject * L_17 = (RuntimeObject *)((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16)))->get_value_3(); RuntimeObject * L_18 = ___value0; NullCheck((EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_14); bool L_19 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(T,T) */, (EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_14, (RuntimeObject *)L_17, (RuntimeObject *)L_18); if (!L_19) { goto IL_0083; } } { return (bool)1; } IL_0083: { int32_t L_20 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1)); } IL_0087: { int32_t L_21 = V_2; int32_t L_22 = (int32_t)__this->get_count_2(); if ((((int32_t)L_21) < ((int32_t)L_22))) { goto IL_0053; } } IL_0090: { return (bool)0; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_CopyTo_m864F8B875F42B6B97A8DE9D0587511163F6DAD7A_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_CopyTo_m864F8B875F42B6B97A8DE9D0587511163F6DAD7A_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* V_1 = NULL; int32_t V_2 = 0; { KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_CopyTo_m864F8B875F42B6B97A8DE9D0587511163F6DAD7A_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___index1; KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))) { goto IL_002e; } } IL_0018: { int32_t L_5 = ___index1; int32_t L_6 = L_5; RuntimeObject * L_7 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_6); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_8, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, (RuntimeObject *)L_7, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Dictionary_2_CopyTo_m864F8B875F42B6B97A8DE9D0587511163F6DAD7A_RuntimeMethod_var); } IL_002e: { KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* L_9 = ___array0; NullCheck(L_9); int32_t L_10 = ___index1; NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); int32_t L_11 = (( int32_t (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_11))) { goto IL_0046; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_12, (String_t*)_stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Dictionary_2_CopyTo_m864F8B875F42B6B97A8DE9D0587511163F6DAD7A_RuntimeMethod_var); } IL_0046: { int32_t L_13 = (int32_t)__this->get_count_2(); V_0 = (int32_t)L_13; EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_14 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)__this->get_entries_1(); V_1 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)L_14; V_2 = (int32_t)0; goto IL_0094; } IL_0058: { EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_15 = V_1; int32_t L_16 = V_2; NullCheck(L_15); int32_t L_17 = (int32_t)((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16)))->get_hashCode_0(); if ((((int32_t)L_17) < ((int32_t)0))) { goto IL_0090; } } { KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* L_18 = ___array0; int32_t L_19 = ___index1; int32_t L_20 = (int32_t)L_19; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1)); EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_21 = V_1; int32_t L_22 = V_2; NullCheck(L_21); RuntimeObject * L_23 = (RuntimeObject *)((L_21)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_22)))->get_key_2(); EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_24 = V_1; int32_t L_25 = V_2; NullCheck(L_24); RuntimeObject * L_26 = (RuntimeObject *)((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_value_3(); KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_27; memset((&L_27), 0, sizeof(L_27)); KeyValuePair_2__ctor_m783A0935E40FCB80D5940E8CCF0EFEFE41D7C7D3((&L_27), (RuntimeObject *)L_23, (RuntimeObject *)L_26, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)); NullCheck(L_18); (L_18)->SetAt(static_cast<il2cpp_array_size_t>(L_20), (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE )L_27); } IL_0090: { int32_t L_28 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)1)); } IL_0094: { int32_t L_29 = V_2; int32_t L_30 = V_0; if ((((int32_t)L_29) < ((int32_t)L_30))) { goto IL_0058; } } { return; } } // System.Collections.Generic.Dictionary`2_Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Object>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB Dictionary_2_GetEnumerator_mF1CF1D13F3E70C6D20D96D9AC88E44454E4C0053_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method) { { Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB L_0; memset((&L_0), 0, sizeof(L_0)); Enumerator__ctor_m3FD84B57A809FF88FC26B86687686E3949F9CBC8((&L_0), (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 28)); return L_0; } } // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<TKey,TValue>> System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_Generic_IEnumerableU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_GetEnumerator_mD4A55E4832243F97DAA06D7D0F4E542770774BC2_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method) { { Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB L_0; memset((&L_0), 0, sizeof(L_0)); Enumerator__ctor_m3FD84B57A809FF88FC26B86687686E3949F9CBC8((&L_0), (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 28)); Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 27), &L_1); return (RuntimeObject*)L_2; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_GetObjectData_mD3BE8CA8EEA44C1B845B8317BA1B6BF461E0805B_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_GetObjectData_mD3BE8CA8EEA44C1B845B8317BA1B6BF461E0805B_MetadataUsageId); s_Il2CppMethodInitialized = true; } KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* V_0 = NULL; String_t* G_B4_0 = NULL; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * G_B4_1 = NULL; String_t* G_B3_0 = NULL; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * G_B3_1 = NULL; int32_t G_B5_0 = 0; String_t* G_B5_1 = NULL; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * G_B5_2 = NULL; { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_GetObjectData_mD3BE8CA8EEA44C1B845B8317BA1B6BF461E0805B_RuntimeMethod_var); } IL_000e: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0; int32_t L_3 = (int32_t)__this->get_version_3(); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2); SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2, (String_t*)_stringLiteral2DA600BF9404843107A9531694F654E5662959E0, (int32_t)L_3, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = ___info0; RuntimeObject* L_5 = (RuntimeObject*)__this->get_comparer_6(); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 29)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_6, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4, (String_t*)_stringLiteral8FC94E4F5B71CECE2565D72417AACC804EE27A0D, (RuntimeObject *)L_5, (Type_t *)L_7, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_8 = ___info0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_9 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); G_B3_0 = _stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60; G_B3_1 = L_8; if (!L_9) { G_B4_0 = _stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60; G_B4_1 = L_8; goto IL_0052; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_10 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_10); G_B5_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))); G_B5_1 = G_B3_0; G_B5_2 = G_B3_1; goto IL_0053; } IL_0052: { G_B5_0 = 0; G_B5_1 = G_B4_0; G_B5_2 = G_B4_1; } IL_0053: { NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)G_B5_2); SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)G_B5_2, (String_t*)G_B5_1, (int32_t)G_B5_0, /*hidden argument*/NULL); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_11 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (!L_11) { goto IL_008a; } } { NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); int32_t L_12 = (( int32_t (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)); KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* L_13 = (KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262*)(KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 30), (uint32_t)L_12); V_0 = (KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262*)L_13; KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* L_14 = V_0; NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); (( void (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262*)L_14, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_15 = ___info0; KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* L_16 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_17 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 32)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_18 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_17, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_15); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_15, (String_t*)_stringLiteral1D89254A2BC78C1FF41C2F6767A0E00EE126B3BF, (RuntimeObject *)(RuntimeObject *)L_16, (Type_t *)L_18, /*hidden argument*/NULL); } IL_008a: { return; } } // System.Int32 System.Collections.Generic.Dictionary`2<System.Object,System.Object>::FindEntry(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Dictionary_2_FindEntry_mFDF9D228127FB25281E0A80AA968857CC42D0069_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_FindEntry_mFDF9D228127FB25281E0A80AA968857CC42D0069_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0013; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_FindEntry_mFDF9D228127FB25281E0A80AA968857CC42D0069_RuntimeMethod_var); } IL_0013: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (!L_2) { goto IL_008d; } } { RuntimeObject* L_3 = (RuntimeObject*)__this->get_comparer_6(); RuntimeObject * L_4 = ___key0; NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Object>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_3, (RuntimeObject *)L_4); V_0 = (int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL))); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_6 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_7 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_8); NullCheck(L_6); int32_t L_9 = ((int32_t)((int32_t)L_7%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))))); int32_t L_10 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); V_1 = (int32_t)L_10; goto IL_0089; } IL_0042: { EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_11 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)__this->get_entries_1(); int32_t L_12 = V_1; NullCheck(L_11); int32_t L_13 = (int32_t)((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12)))->get_hashCode_0(); int32_t L_14 = V_0; if ((!(((uint32_t)L_13) == ((uint32_t)L_14)))) { goto IL_0077; } } { RuntimeObject* L_15 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_16 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)__this->get_entries_1(); int32_t L_17 = V_1; NullCheck(L_16); RuntimeObject * L_18 = (RuntimeObject *)((L_16)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_17)))->get_key_2(); RuntimeObject * L_19 = ___key0; NullCheck((RuntimeObject*)L_15); bool L_20 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Object>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_15, (RuntimeObject *)L_18, (RuntimeObject *)L_19); if (!L_20) { goto IL_0077; } } { int32_t L_21 = V_1; return L_21; } IL_0077: { EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_22 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)__this->get_entries_1(); int32_t L_23 = V_1; NullCheck(L_22); int32_t L_24 = (int32_t)((L_22)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_23)))->get_next_1(); V_1 = (int32_t)L_24; } IL_0089: { int32_t L_25 = V_1; if ((((int32_t)L_25) >= ((int32_t)0))) { goto IL_0042; } } IL_008d: { return (-1); } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Initialize(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Initialize_mF7D42C77254CEC29BA9D805608E31F501AFB5F64_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, int32_t ___capacity0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Initialize_mF7D42C77254CEC29BA9D805608E31F501AFB5F64_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___capacity0; IL2CPP_RUNTIME_CLASS_INIT(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var); int32_t L_1 = HashHelpers_GetPrime_m743D7006C2BCBADC1DC8CACF7C5B78C9F6B38297((int32_t)L_0, /*hidden argument*/NULL); V_0 = (int32_t)L_1; int32_t L_2 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_3 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_2); __this->set_buckets_0(L_3); V_1 = (int32_t)0; goto IL_0024; } IL_0017: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_4 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_5 = V_1; NullCheck(L_4); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (int32_t)(-1)); int32_t L_6 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)); } IL_0024: { int32_t L_7 = V_1; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_8); if ((((int32_t)L_7) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length))))))) { goto IL_0017; } } { int32_t L_9 = V_0; EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_10 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)(EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 35), (uint32_t)L_9); __this->set_entries_1(L_10); __this->set_freeList_4((-1)); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::TryInsert(TKey,TValue,System.Collections.Generic.InsertionBehavior) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryInsert_mED1C552AB4DDD3CC9789DEC21407767B9803F005_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, uint8_t ___behavior2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_TryInsert_mED1C552AB4DDD3CC9789DEC21407767B9803F005_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0013; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_TryInsert_mED1C552AB4DDD3CC9789DEC21407767B9803F005_RuntimeMethod_var); } IL_0013: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (L_2) { goto IL_0022; } } { NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); (( void (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); } IL_0022: { RuntimeObject* L_3 = (RuntimeObject*)__this->get_comparer_6(); RuntimeObject * L_4 = ___key0; NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Object>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_3, (RuntimeObject *)L_4); V_0 = (int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL))); int32_t L_6 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_7 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_7); V_1 = (int32_t)((int32_t)((int32_t)L_6%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length)))))); V_2 = (int32_t)0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_9 = V_1; NullCheck(L_8); int32_t L_10 = L_9; int32_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); V_4 = (int32_t)L_11; goto IL_00e1; } IL_0051: { EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_12 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)__this->get_entries_1(); int32_t L_13 = V_4; NullCheck(L_12); int32_t L_14 = (int32_t)((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_13)))->get_hashCode_0(); int32_t L_15 = V_0; if ((!(((uint32_t)L_14) == ((uint32_t)L_15)))) { goto IL_00c9; } } { RuntimeObject* L_16 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_17 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)__this->get_entries_1(); int32_t L_18 = V_4; NullCheck(L_17); RuntimeObject * L_19 = (RuntimeObject *)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->get_key_2(); RuntimeObject * L_20 = ___key0; NullCheck((RuntimeObject*)L_16); bool L_21 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Object>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_16, (RuntimeObject *)L_19, (RuntimeObject *)L_20); if (!L_21) { goto IL_00c9; } } { uint8_t L_22 = ___behavior2; if ((!(((uint32_t)L_22) == ((uint32_t)1)))) { goto IL_00ad; } } { EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_23 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)__this->get_entries_1(); int32_t L_24 = V_4; NullCheck(L_23); RuntimeObject * L_25 = ___value1; ((L_23)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_24)))->set_value_3(L_25); int32_t L_26 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1))); return (bool)1; } IL_00ad: { uint8_t L_27 = ___behavior2; if ((!(((uint32_t)L_27) == ((uint32_t)2)))) { goto IL_00c7; } } { RuntimeObject * L_28 = ___key0; String_t* L_29 = SR_Format_mCDBB594267CC224AB2A69540BBA598151F0642C7((String_t*)_stringLiteral6FD577FD3A1BDC4DA28CD51D7A55EB397CEA3926, (RuntimeObject *)L_28, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_30 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_30, (String_t*)L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30, NULL, Dictionary_2_TryInsert_mED1C552AB4DDD3CC9789DEC21407767B9803F005_RuntimeMethod_var); } IL_00c7: { return (bool)0; } IL_00c9: { int32_t L_31 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)1)); EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_32 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)__this->get_entries_1(); int32_t L_33 = V_4; NullCheck(L_32); int32_t L_34 = (int32_t)((L_32)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_33)))->get_next_1(); V_4 = (int32_t)L_34; } IL_00e1: { int32_t L_35 = V_4; if ((((int32_t)L_35) >= ((int32_t)0))) { goto IL_0051; } } { int32_t L_36 = (int32_t)__this->get_freeCount_5(); if ((((int32_t)L_36) <= ((int32_t)0))) { goto IL_0120; } } { int32_t L_37 = (int32_t)__this->get_freeList_4(); V_3 = (int32_t)L_37; EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_38 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)__this->get_entries_1(); int32_t L_39 = V_3; NullCheck(L_38); int32_t L_40 = (int32_t)((L_38)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_39)))->get_next_1(); __this->set_freeList_4(L_40); int32_t L_41 = (int32_t)__this->get_freeCount_5(); __this->set_freeCount_5(((int32_t)il2cpp_codegen_subtract((int32_t)L_41, (int32_t)1))); goto IL_0156; } IL_0120: { int32_t L_42 = (int32_t)__this->get_count_2(); EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_43 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)__this->get_entries_1(); NullCheck(L_43); if ((!(((uint32_t)L_42) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_43)->max_length)))))))) { goto IL_0141; } } { NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); (( void (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 36)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 36)); int32_t L_44 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_45 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_45); V_1 = (int32_t)((int32_t)((int32_t)L_44%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_45)->max_length)))))); } IL_0141: { int32_t L_46 = (int32_t)__this->get_count_2(); V_3 = (int32_t)L_46; int32_t L_47 = (int32_t)__this->get_count_2(); __this->set_count_2(((int32_t)il2cpp_codegen_add((int32_t)L_47, (int32_t)1))); } IL_0156: { EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_48 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)__this->get_entries_1(); int32_t L_49 = V_3; NullCheck(L_48); int32_t L_50 = V_0; ((L_48)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_49)))->set_hashCode_0(L_50); EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_51 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)__this->get_entries_1(); int32_t L_52 = V_3; NullCheck(L_51); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_53 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_54 = V_1; NullCheck(L_53); int32_t L_55 = L_54; int32_t L_56 = (L_53)->GetAt(static_cast<il2cpp_array_size_t>(L_55)); ((L_51)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_52)))->set_next_1(L_56); EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_57 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)__this->get_entries_1(); int32_t L_58 = V_3; NullCheck(L_57); RuntimeObject * L_59 = ___key0; ((L_57)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_58)))->set_key_2(L_59); EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_60 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)__this->get_entries_1(); int32_t L_61 = V_3; NullCheck(L_60); RuntimeObject * L_62 = ___value1; ((L_60)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_61)))->set_value_3(L_62); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_63 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_64 = V_1; int32_t L_65 = V_3; NullCheck(L_63); (L_63)->SetAt(static_cast<il2cpp_array_size_t>(L_64), (int32_t)L_65); int32_t L_66 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_66, (int32_t)1))); int32_t L_67 = V_2; if ((((int32_t)L_67) <= ((int32_t)((int32_t)100)))) { goto IL_01ed; } } { RuntimeObject* L_68 = (RuntimeObject*)__this->get_comparer_6(); if (!((NonRandomizedStringEqualityComparer_t92C20503D9C5060A557792ABCCC06EF2DD77E5D9 *)IsInst((RuntimeObject*)L_68, NonRandomizedStringEqualityComparer_t92C20503D9C5060A557792ABCCC06EF2DD77E5D9_il2cpp_TypeInfo_var))) { goto IL_01ed; } } { EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137 * L_69 = EqualityComparer_1_get_Default_m85F378D7298050D5DF422363D5EB30A218B769B7(/*hidden argument*/EqualityComparer_1_get_Default_m85F378D7298050D5DF422363D5EB30A218B769B7_RuntimeMethod_var); __this->set_comparer_6(((RuntimeObject*)Castclass((RuntimeObject*)L_69, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34)))); EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_70 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)__this->get_entries_1(); NullCheck(L_70); NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); (( void (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, int32_t, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_70)->max_length)))), (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)); } IL_01ed: { return (bool)1; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::OnDeserialization(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_OnDeserialization_m967C18291BF9DFEF8D9AA60323D01408BB421AB4_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___sender0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_OnDeserialization_m967C18291BF9DFEF8D9AA60323D01408BB421AB4_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* V_3 = NULL; int32_t V_4 = 0; int32_t V_5 = 0; { IL2CPP_RUNTIME_CLASS_INIT(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_0 = DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C_inline(/*hidden argument*/NULL); NullCheck((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0); ConditionalWeakTable_2_TryGetValue_mDFCB6C303807E3F8998D196F4573870680E81F8B((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0, (RuntimeObject *)__this, (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 **)(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 **)(&V_0), /*hidden argument*/ConditionalWeakTable_2_TryGetValue_mDFCB6C303807E3F8998D196F4573870680E81F8B_RuntimeMethod_var); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_1 = V_0; if (L_1) { goto IL_0012; } } { return; } IL_0012: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = V_0; NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2); int32_t L_3 = SerializationInfo_GetInt32_mB47BD46A0BDBBAF5B47BB62E6EFF8E092E3F3656((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2, (String_t*)_stringLiteral2DA600BF9404843107A9531694F654E5662959E0, /*hidden argument*/NULL); V_1 = (int32_t)L_3; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = V_0; NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4); int32_t L_5 = SerializationInfo_GetInt32_mB47BD46A0BDBBAF5B47BB62E6EFF8E092E3F3656((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4, (String_t*)_stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60, /*hidden argument*/NULL); V_2 = (int32_t)L_5; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_6 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 29)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_7, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_6); RuntimeObject * L_9 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_6, (String_t*)_stringLiteral8FC94E4F5B71CECE2565D72417AACC804EE27A0D, (Type_t *)L_8, /*hidden argument*/NULL); __this->set_comparer_6(((RuntimeObject*)Castclass((RuntimeObject*)L_9, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34)))); int32_t L_10 = V_2; if (!L_10) { goto IL_010c; } } { int32_t L_11 = V_2; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_12 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_11); __this->set_buckets_0(L_12); V_4 = (int32_t)0; goto IL_0071; } IL_0061: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_13 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_14 = V_4; NullCheck(L_13); (L_13)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (int32_t)(-1)); int32_t L_15 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_0071: { int32_t L_16 = V_4; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_17 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_17); if ((((int32_t)L_16) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length))))))) { goto IL_0061; } } { int32_t L_18 = V_2; EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_19 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)(EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 35), (uint32_t)L_18); __this->set_entries_1(L_19); __this->set_freeList_4((-1)); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_20 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_21 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 32)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_22 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_21, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_20); RuntimeObject * L_23 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_20, (String_t*)_stringLiteral1D89254A2BC78C1FF41C2F6767A0E00EE126B3BF, (Type_t *)L_22, /*hidden argument*/NULL); V_3 = (KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262*)((KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262*)Castclass((RuntimeObject*)L_23, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 38))); KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* L_24 = V_3; if (L_24) { goto IL_00b9; } } { SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * L_25 = (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 *)il2cpp_codegen_object_new(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var); SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1(L_25, (String_t*)_stringLiteral1EB7E67EA75FFC3FCB05A9685FA4F1578DCACCF6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, NULL, Dictionary_2_OnDeserialization_m967C18291BF9DFEF8D9AA60323D01408BB421AB4_RuntimeMethod_var); } IL_00b9: { V_5 = (int32_t)0; goto IL_0103; } IL_00be: { KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* L_26 = V_3; int32_t L_27 = V_5; NullCheck(L_26); RuntimeObject * L_28 = KeyValuePair_2_get_Key_m9D4E9BCBAB1BE560871A0889C851FC22A09975F4_inline((KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)((L_26)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_27))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); if (L_28) { goto IL_00dd; } } { SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * L_29 = (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 *)il2cpp_codegen_object_new(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var); SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1(L_29, (String_t*)_stringLiteralD6D1BC79DD62E9F1FB9A49A8F76F4BA8AB71AECD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_29, NULL, Dictionary_2_OnDeserialization_m967C18291BF9DFEF8D9AA60323D01408BB421AB4_RuntimeMethod_var); } IL_00dd: { KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* L_30 = V_3; int32_t L_31 = V_5; NullCheck(L_30); RuntimeObject * L_32 = KeyValuePair_2_get_Key_m9D4E9BCBAB1BE560871A0889C851FC22A09975F4_inline((KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)((L_30)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_31))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* L_33 = V_3; int32_t L_34 = V_5; NullCheck(L_33); RuntimeObject * L_35 = KeyValuePair_2_get_Value_m8C7B882C4D425535288FAAD08EAF11D289A43AEC_inline((KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); (( void (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (RuntimeObject *)L_32, (RuntimeObject *)L_35, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); int32_t L_36 = V_5; V_5 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)1)); } IL_0103: { int32_t L_37 = V_5; KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* L_38 = V_3; NullCheck(L_38); if ((((int32_t)L_37) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_38)->max_length))))))) { goto IL_00be; } } { goto IL_0113; } IL_010c: { __this->set_buckets_0((Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)NULL); } IL_0113: { int32_t L_39 = V_1; __this->set_version_3(L_39); IL2CPP_RUNTIME_CLASS_INIT(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_40 = DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C_inline(/*hidden argument*/NULL); NullCheck((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_40); ConditionalWeakTable_2_Remove_mD69606977A8C793DEA91E373F7D886E4865D7FBD((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_40, (RuntimeObject *)__this, /*hidden argument*/ConditionalWeakTable_2_Remove_mD69606977A8C793DEA91E373F7D886E4865D7FBD_RuntimeMethod_var); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Resize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Resize_m26C88D986740EF24D60F7AA7E90DDBD6A7748D50_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Resize_m26C88D986740EF24D60F7AA7E90DDBD6A7748D50_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_count_2(); IL2CPP_RUNTIME_CLASS_INIT(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var); int32_t L_1 = HashHelpers_ExpandPrime_m4245F4C95074EAA8F949FB3B734F611A533A6A0D((int32_t)L_0, /*hidden argument*/NULL); NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); (( void (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, int32_t, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (int32_t)L_1, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Resize(System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Resize_m37AD61EE82E8CEC71D3A0F583E4592666D6BA58B_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, int32_t ___newSize0, bool ___forceNewHashCodes1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Resize_m37AD61EE82E8CEC71D3A0F583E4592666D6BA58B_MetadataUsageId); s_Il2CppMethodInitialized = true; } Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL; EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; { int32_t L_0 = ___newSize0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_0); V_0 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)L_1; V_2 = (int32_t)0; goto IL_0013; } IL_000b: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = V_0; int32_t L_3 = V_2; NullCheck(L_2); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (int32_t)(-1)); int32_t L_4 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)); } IL_0013: { int32_t L_5 = V_2; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_6 = V_0; NullCheck(L_6); if ((((int32_t)L_5) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length))))))) { goto IL_000b; } } { int32_t L_7 = ___newSize0; EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_8 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)(EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 35), (uint32_t)L_7); V_1 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)L_8; EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_9 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)__this->get_entries_1(); EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_10 = V_1; int32_t L_11 = (int32_t)__this->get_count_2(); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_9, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_10, (int32_t)0, (int32_t)L_11, /*hidden argument*/NULL); bool L_12 = ___forceNewHashCodes1; if (!L_12) { goto IL_0080; } } { V_3 = (int32_t)0; goto IL_0077; } IL_003b: { EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_13 = V_1; int32_t L_14 = V_3; NullCheck(L_13); int32_t L_15 = (int32_t)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_hashCode_0(); if ((((int32_t)L_15) == ((int32_t)(-1)))) { goto IL_0073; } } { EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_16 = V_1; int32_t L_17 = V_3; NullCheck(L_16); RuntimeObject* L_18 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_19 = V_1; int32_t L_20 = V_3; NullCheck(L_19); RuntimeObject * L_21 = (RuntimeObject *)((L_19)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_20)))->get_key_2(); NullCheck((RuntimeObject*)L_18); int32_t L_22 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Object>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_18, (RuntimeObject *)L_21); ((L_16)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_17)))->set_hashCode_0(((int32_t)((int32_t)L_22&(int32_t)((int32_t)2147483647LL)))); } IL_0073: { int32_t L_23 = V_3; V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); } IL_0077: { int32_t L_24 = V_3; int32_t L_25 = (int32_t)__this->get_count_2(); if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_003b; } } IL_0080: { V_4 = (int32_t)0; goto IL_00c3; } IL_0085: { EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_26 = V_1; int32_t L_27 = V_4; NullCheck(L_26); int32_t L_28 = (int32_t)((L_26)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_27)))->get_hashCode_0(); if ((((int32_t)L_28) < ((int32_t)0))) { goto IL_00bd; } } { EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_29 = V_1; int32_t L_30 = V_4; NullCheck(L_29); int32_t L_31 = (int32_t)((L_29)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_30)))->get_hashCode_0(); int32_t L_32 = ___newSize0; V_5 = (int32_t)((int32_t)((int32_t)L_31%(int32_t)L_32)); EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_33 = V_1; int32_t L_34 = V_4; NullCheck(L_33); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_35 = V_0; int32_t L_36 = V_5; NullCheck(L_35); int32_t L_37 = L_36; int32_t L_38 = (L_35)->GetAt(static_cast<il2cpp_array_size_t>(L_37)); ((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->set_next_1(L_38); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_39 = V_0; int32_t L_40 = V_5; int32_t L_41 = V_4; NullCheck(L_39); (L_39)->SetAt(static_cast<il2cpp_array_size_t>(L_40), (int32_t)L_41); } IL_00bd: { int32_t L_42 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1)); } IL_00c3: { int32_t L_43 = V_4; int32_t L_44 = (int32_t)__this->get_count_2(); if ((((int32_t)L_43) < ((int32_t)L_44))) { goto IL_0085; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_45 = V_0; __this->set_buckets_0(L_45); EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_46 = V_1; __this->set_entries_1(L_46); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Remove(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_Remove_m0FCCD33CE2C6A7589E52A2AB0872FE361BF5EF60_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Remove_m0FCCD33CE2C6A7589E52A2AB0872FE361BF5EF60_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0013; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_Remove_m0FCCD33CE2C6A7589E52A2AB0872FE361BF5EF60_RuntimeMethod_var); } IL_0013: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (!L_2) { goto IL_015d; } } { RuntimeObject* L_3 = (RuntimeObject*)__this->get_comparer_6(); RuntimeObject * L_4 = ___key0; NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Object>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_3, (RuntimeObject *)L_4); V_0 = (int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL))); int32_t L_6 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_7 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_7); V_1 = (int32_t)((int32_t)((int32_t)L_6%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length)))))); V_2 = (int32_t)(-1); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_9 = V_1; NullCheck(L_8); int32_t L_10 = L_9; int32_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); V_3 = (int32_t)L_11; goto IL_0156; } IL_004c: { EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_12 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)__this->get_entries_1(); int32_t L_13 = V_3; NullCheck(L_12); int32_t L_14 = (int32_t)((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_13)))->get_hashCode_0(); int32_t L_15 = V_0; if ((!(((uint32_t)L_14) == ((uint32_t)L_15)))) { goto IL_0142; } } { RuntimeObject* L_16 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_17 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)__this->get_entries_1(); int32_t L_18 = V_3; NullCheck(L_17); RuntimeObject * L_19 = (RuntimeObject *)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->get_key_2(); RuntimeObject * L_20 = ___key0; NullCheck((RuntimeObject*)L_16); bool L_21 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Object>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_16, (RuntimeObject *)L_19, (RuntimeObject *)L_20); if (!L_21) { goto IL_0142; } } { int32_t L_22 = V_2; if ((((int32_t)L_22) >= ((int32_t)0))) { goto IL_00a4; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_23 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_24 = V_1; EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_25 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)__this->get_entries_1(); int32_t L_26 = V_3; NullCheck(L_25); int32_t L_27 = (int32_t)((L_25)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_26)))->get_next_1(); NullCheck(L_23); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (int32_t)L_27); goto IL_00c6; } IL_00a4: { EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_28 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)__this->get_entries_1(); int32_t L_29 = V_2; NullCheck(L_28); EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_30 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)__this->get_entries_1(); int32_t L_31 = V_3; NullCheck(L_30); int32_t L_32 = (int32_t)((L_30)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_31)))->get_next_1(); ((L_28)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_29)))->set_next_1(L_32); } IL_00c6: { EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_33 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)__this->get_entries_1(); int32_t L_34 = V_3; NullCheck(L_33); ((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->set_hashCode_0((-1)); EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_35 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)__this->get_entries_1(); int32_t L_36 = V_3; NullCheck(L_35); int32_t L_37 = (int32_t)__this->get_freeList_4(); ((L_35)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_36)))->set_next_1(L_37); EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_38 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)__this->get_entries_1(); int32_t L_39 = V_3; NullCheck(L_38); RuntimeObject ** L_40 = (RuntimeObject **)((L_38)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_39)))->get_address_of_key_2(); il2cpp_codegen_initobj(L_40, sizeof(RuntimeObject *)); EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_41 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)__this->get_entries_1(); int32_t L_42 = V_3; NullCheck(L_41); RuntimeObject ** L_43 = (RuntimeObject **)((L_41)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_42)))->get_address_of_value_3(); il2cpp_codegen_initobj(L_43, sizeof(RuntimeObject *)); int32_t L_44 = V_3; __this->set_freeList_4(L_44); int32_t L_45 = (int32_t)__this->get_freeCount_5(); __this->set_freeCount_5(((int32_t)il2cpp_codegen_add((int32_t)L_45, (int32_t)1))); int32_t L_46 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_46, (int32_t)1))); return (bool)1; } IL_0142: { int32_t L_47 = V_3; V_2 = (int32_t)L_47; EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_48 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)__this->get_entries_1(); int32_t L_49 = V_3; NullCheck(L_48); int32_t L_50 = (int32_t)((L_48)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_49)))->get_next_1(); V_3 = (int32_t)L_50; } IL_0156: { int32_t L_51 = V_3; if ((((int32_t)L_51) >= ((int32_t)0))) { goto IL_004c; } } IL_015d: { return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::TryGetValue(TKey,TValue&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_m3455807C552312C60038DF52EF328C3687442DE3_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, RuntimeObject ** ___value1, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0025; } } { RuntimeObject ** L_3 = ___value1; EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_4 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); RuntimeObject * L_6 = (RuntimeObject *)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); *(RuntimeObject **)L_3 = L_6; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_3, (void*)L_6); return (bool)1; } IL_0025: { RuntimeObject ** L_7 = ___value1; il2cpp_codegen_initobj(L_7, sizeof(RuntimeObject *)); return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_get_IsReadOnly_mA7D9B474A95A148D822D3742088F1702E6B7DA05_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_CopyTo_mD9820773B83802C40720418F76318448ED0AD8B1_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* ___array0, int32_t ___index1, const RuntimeMethod* method) { { KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* L_0 = ___array0; int32_t L_1 = ___index1; NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); (( void (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262*)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_ICollection_CopyTo_m2A04B7A42F924F8497A06C101712AF467E6C057C_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_ICollection_CopyTo_m2A04B7A42F924F8497A06C101712AF467E6C057C_MetadataUsageId); s_Il2CppMethodInitialized = true; } KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* V_0 = NULL; DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56* V_1 = NULL; EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* V_2 = NULL; int32_t V_3 = 0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_4 = NULL; int32_t V_5 = 0; EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* V_6 = NULL; int32_t V_7 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m2A04B7A42F924F8497A06C101712AF467E6C057C_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; NullCheck((RuntimeArray *)L_2); int32_t L_3 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0027; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_4 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_4, (String_t*)_stringLiteral2D77BE6D598A0A9376398980E66D10E319F1B52A, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m2A04B7A42F924F8497A06C101712AF467E6C057C_RuntimeMethod_var); } IL_0027: { RuntimeArray * L_5 = ___array0; NullCheck((RuntimeArray *)L_5); int32_t L_6 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)L_5, (int32_t)0, /*hidden argument*/NULL); if (!L_6) { goto IL_0040; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_7, (String_t*)_stringLiteralC363992023785AF013BBCF2E20C19D9835184F82, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m2A04B7A42F924F8497A06C101712AF467E6C057C_RuntimeMethod_var); } IL_0040: { int32_t L_8 = ___index1; if ((((int32_t)L_8) < ((int32_t)0))) { goto IL_004d; } } { int32_t L_9 = ___index1; RuntimeArray * L_10 = ___array0; NullCheck((RuntimeArray *)L_10); int32_t L_11 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_10, /*hidden argument*/NULL); if ((((int32_t)L_9) <= ((int32_t)L_11))) { goto IL_0063; } } IL_004d: { int32_t L_12 = ___index1; int32_t L_13 = L_12; RuntimeObject * L_14 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_13); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_15 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_15, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, (RuntimeObject *)L_14, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m2A04B7A42F924F8497A06C101712AF467E6C057C_RuntimeMethod_var); } IL_0063: { RuntimeArray * L_16 = ___array0; NullCheck((RuntimeArray *)L_16); int32_t L_17 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_16, /*hidden argument*/NULL); int32_t L_18 = ___index1; NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); int32_t L_19 = (( int32_t (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_19))) { goto IL_007e; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_20 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_20, (String_t*)_stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m2A04B7A42F924F8497A06C101712AF467E6C057C_RuntimeMethod_var); } IL_007e: { RuntimeArray * L_21 = ___array0; V_0 = (KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262*)((KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262*)IsInst((RuntimeObject*)L_21, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 38))); KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* L_22 = V_0; if (!L_22) { goto IL_0091; } } { KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* L_23 = V_0; int32_t L_24 = ___index1; NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); (( void (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262*)L_23, (int32_t)L_24, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); return; } IL_0091: { RuntimeArray * L_25 = ___array0; if (!((DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56*)IsInst((RuntimeObject*)L_25, DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56_il2cpp_TypeInfo_var))) { goto IL_00fb; } } { RuntimeArray * L_26 = ___array0; V_1 = (DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56*)((DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56*)IsInst((RuntimeObject*)L_26, DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56_il2cpp_TypeInfo_var)); EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_27 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)__this->get_entries_1(); V_2 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)L_27; V_3 = (int32_t)0; goto IL_00f1; } IL_00ab: { EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_28 = V_2; int32_t L_29 = V_3; NullCheck(L_28); int32_t L_30 = (int32_t)((L_28)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_29)))->get_hashCode_0(); if ((((int32_t)L_30) < ((int32_t)0))) { goto IL_00ed; } } { DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56* L_31 = V_1; int32_t L_32 = ___index1; int32_t L_33 = (int32_t)L_32; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1)); EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_34 = V_2; int32_t L_35 = V_3; NullCheck(L_34); RuntimeObject * L_36 = (RuntimeObject *)((L_34)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_35)))->get_key_2(); EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_37 = V_2; int32_t L_38 = V_3; NullCheck(L_37); RuntimeObject * L_39 = (RuntimeObject *)((L_37)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_38)))->get_value_3(); DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_40; memset((&L_40), 0, sizeof(L_40)); DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B((&L_40), (RuntimeObject *)L_36, (RuntimeObject *)L_39, /*hidden argument*/NULL); NullCheck(L_31); (L_31)->SetAt(static_cast<il2cpp_array_size_t>(L_33), (DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 )L_40); } IL_00ed: { int32_t L_41 = V_3; V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)1)); } IL_00f1: { int32_t L_42 = V_3; int32_t L_43 = (int32_t)__this->get_count_2(); if ((((int32_t)L_42) < ((int32_t)L_43))) { goto IL_00ab; } } { return; } IL_00fb: { RuntimeArray * L_44 = ___array0; V_4 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)L_44, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_45 = V_4; if (L_45) { goto IL_0117; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_46 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_46, (String_t*)_stringLiteralC44D4E6C6AF3517A1CC72EDF7D1A5FFD7E3368F1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_46, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m2A04B7A42F924F8497A06C101712AF467E6C057C_RuntimeMethod_var); } IL_0117: { } IL_0118: try { // begin try (depth: 1) { int32_t L_47 = (int32_t)__this->get_count_2(); V_5 = (int32_t)L_47; EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_48 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)__this->get_entries_1(); V_6 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)L_48; V_7 = (int32_t)0; goto IL_0173; } IL_012d: { EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_49 = V_6; int32_t L_50 = V_7; NullCheck(L_49); int32_t L_51 = (int32_t)((L_49)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_50)))->get_hashCode_0(); if ((((int32_t)L_51) < ((int32_t)0))) { goto IL_016d; } } IL_013e: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_52 = V_4; int32_t L_53 = ___index1; int32_t L_54 = (int32_t)L_53; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_54, (int32_t)1)); EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_55 = V_6; int32_t L_56 = V_7; NullCheck(L_55); RuntimeObject * L_57 = (RuntimeObject *)((L_55)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_56)))->get_key_2(); EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_58 = V_6; int32_t L_59 = V_7; NullCheck(L_58); RuntimeObject * L_60 = (RuntimeObject *)((L_58)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_59)))->get_value_3(); KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_61; memset((&L_61), 0, sizeof(L_61)); KeyValuePair_2__ctor_m783A0935E40FCB80D5940E8CCF0EFEFE41D7C7D3((&L_61), (RuntimeObject *)L_57, (RuntimeObject *)L_60, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)); KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_62 = L_61; RuntimeObject * L_63 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 25), &L_62); NullCheck(L_52); ArrayElementTypeCheck (L_52, L_63); (L_52)->SetAt(static_cast<il2cpp_array_size_t>(L_54), (RuntimeObject *)L_63); } IL_016d: { int32_t L_64 = V_7; V_7 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_64, (int32_t)1)); } IL_0173: { int32_t L_65 = V_7; int32_t L_66 = V_5; if ((((int32_t)L_65) < ((int32_t)L_66))) { goto IL_012d; } } IL_0179: { goto IL_018c; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArrayTypeMismatchException_tE34C1032B089C37399200997F079C640D23D9499_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_017b; throw e; } CATCH_017b: { // begin catch(System.ArrayTypeMismatchException) ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_67 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_67, (String_t*)_stringLiteralC44D4E6C6AF3517A1CC72EDF7D1A5FFD7E3368F1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_67, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m2A04B7A42F924F8497A06C101712AF467E6C057C_RuntimeMethod_var); } // end catch (depth: 1) IL_018c: { return; } } // System.Collections.IEnumerator System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_IEnumerable_GetEnumerator_m44D153A048387F61D52F7238BFB16C67C1F4D831_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method) { { Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB L_0; memset((&L_0), 0, sizeof(L_0)); Enumerator__ctor_m3FD84B57A809FF88FC26B86687686E3949F9CBC8((&L_0), (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 28)); Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 27), &L_1); return (RuntimeObject*)L_2; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.ICollection.get_IsSynchronized() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_ICollection_get_IsSynchronized_mC004C9512526EFA2CF14E285824DDA1463713891_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Object System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.ICollection.get_SyncRoot() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Dictionary_2_System_Collections_ICollection_get_SyncRoot_mA7D2E1D66F065B017EBA7275D6927CFFA3B90E26_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_ICollection_get_SyncRoot_mA7D2E1D66F065B017EBA7275D6927CFFA3B90E26_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = (RuntimeObject *)__this->get__syncRoot_9(); if (L_0) { goto IL_001a; } } { RuntimeObject ** L_1 = (RuntimeObject **)__this->get_address_of__syncRoot_9(); RuntimeObject * L_2 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_2, /*hidden argument*/NULL); InterlockedCompareExchangeImpl<RuntimeObject *>((RuntimeObject **)(RuntimeObject **)L_1, (RuntimeObject *)L_2, (RuntimeObject *)NULL); } IL_001a: { RuntimeObject * L_3 = (RuntimeObject *)__this->get__syncRoot_9(); return L_3; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.IDictionary.get_IsFixedSize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_IDictionary_get_IsFixedSize_mFE1B6A0E6E1F971028DE59F7C183EC788A215983_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.IDictionary.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_IDictionary_get_IsReadOnly_m5D3677D410CE505506508B64022B2BDD0A2FB390_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Collections.ICollection System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.IDictionary.get_Keys() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_IDictionary_get_Keys_mE0D06E7D795D7E60BE93FEC47044A9FB1A77FFC5_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method) { { NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C * L_0 = (( KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C * (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 39)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 39)); return L_0; } } // System.Collections.ICollection System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.IDictionary.get_Values() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_IDictionary_get_Values_mBF9ABEBEE61E41A643255C015A509E2CF2E90354_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method) { { NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); ValueCollection_t0816666499CBD11E58E1E7C79A4EFC2AA47E08A2 * L_0 = (( ValueCollection_t0816666499CBD11E58E1E7C79A4EFC2AA47E08A2 * (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 40)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 40)); return L_0; } } // System.Object System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.IDictionary.get_Item(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Dictionary_2_System_Collections_IDictionary_get_Item_m94CA254F26DD0471A4AE3FCAC07AA6BAC9735A8B_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; bool L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)); if (!L_1) { goto IL_0030; } } { RuntimeObject * L_2 = ___key0; NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); int32_t L_3 = (( int32_t (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 33))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); V_0 = (int32_t)L_3; int32_t L_4 = V_0; if ((((int32_t)L_4) < ((int32_t)0))) { goto IL_0030; } } { EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE* L_5 = (EntryU5BU5D_t9EC04215E0A25794290249C0F6D7EA694596D2BE*)__this->get_entries_1(); int32_t L_6 = V_0; NullCheck(L_5); RuntimeObject * L_7 = (RuntimeObject *)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_value_3(); return L_7; } IL_0030: { return NULL; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.IDictionary.set_Item(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_IDictionary_set_Item_m752CA04F6A7E64A7E050B4A9C914B69874401EDF_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_IDictionary_set_Item_m752CA04F6A7E64A7E050B4A9C914B69874401EDF_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; RuntimeObject * V_1 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_m752CA04F6A7E64A7E050B4A9C914B69874401EDF_RuntimeMethod_var); } IL_000e: { RuntimeObject * L_2 = ___value1; if (L_2) { goto IL_002c; } } { il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *)); RuntimeObject * L_3 = V_0; if (!L_3) { goto IL_002c; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_4, (String_t*)_stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_m752CA04F6A7E64A7E050B4A9C914B69874401EDF_RuntimeMethod_var); } IL_002c: { } IL_002d: try { // begin try (depth: 1) { RuntimeObject * L_5 = ___key0; V_1 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 33))); } IL_0034: try { // begin try (depth: 2) RuntimeObject * L_6 = V_1; RuntimeObject * L_7 = ___value1; NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); (( void (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 43)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (RuntimeObject *)L_6, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_7, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 23))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 43)); goto IL_0064; } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0043; throw e; } CATCH_0043: { // begin catch(System.InvalidCastException) RuntimeObject * L_8 = ___value1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_9 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 44)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_9, /*hidden argument*/NULL); String_t* L_11 = SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C((String_t*)_stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6, (RuntimeObject *)L_8, (RuntimeObject *)L_10, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_12, (String_t*)L_11, (String_t*)_stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_m752CA04F6A7E64A7E050B4A9C914B69874401EDF_RuntimeMethod_var); } // end catch (depth: 2) IL_0064: { goto IL_0087; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0066; throw e; } CATCH_0066: { // begin catch(System.InvalidCastException) RuntimeObject * L_13 = ___key0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 45)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_14, /*hidden argument*/NULL); String_t* L_16 = SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C((String_t*)_stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6, (RuntimeObject *)L_13, (RuntimeObject *)L_15, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_17 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_17, (String_t*)L_16, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_m752CA04F6A7E64A7E050B4A9C914B69874401EDF_RuntimeMethod_var); } // end catch (depth: 1) IL_0087: { return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::IsCompatibleKey(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_IsCompatibleKey_mE704BFB33E9A85EEFD6FB15FD7DF71ED3B240ED2_gshared (RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_IsCompatibleKey_mE704BFB33E9A85EEFD6FB15FD7DF71ED3B240ED2_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_IsCompatibleKey_mE704BFB33E9A85EEFD6FB15FD7DF71ED3B240ED2_RuntimeMethod_var); } IL_000e: { RuntimeObject * L_2 = ___key0; return (bool)((!(((RuntimeObject*)(RuntimeObject *)((RuntimeObject *)IsInst((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 33)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.IDictionary.Add(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_IDictionary_Add_m281E28101146E6648B75AD52FF821EA28021227D_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_IDictionary_Add_m281E28101146E6648B75AD52FF821EA28021227D_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; RuntimeObject * V_1 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_System_Collections_IDictionary_Add_m281E28101146E6648B75AD52FF821EA28021227D_RuntimeMethod_var); } IL_000e: { RuntimeObject * L_2 = ___value1; if (L_2) { goto IL_002c; } } { il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *)); RuntimeObject * L_3 = V_0; if (!L_3) { goto IL_002c; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_4, (String_t*)_stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2_System_Collections_IDictionary_Add_m281E28101146E6648B75AD52FF821EA28021227D_RuntimeMethod_var); } IL_002c: { } IL_002d: try { // begin try (depth: 1) { RuntimeObject * L_5 = ___key0; V_1 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 33))); } IL_0034: try { // begin try (depth: 2) RuntimeObject * L_6 = V_1; RuntimeObject * L_7 = ___value1; NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); (( void (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (RuntimeObject *)L_6, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_7, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 23))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); goto IL_0064; } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0043; throw e; } CATCH_0043: { // begin catch(System.InvalidCastException) RuntimeObject * L_8 = ___value1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_9 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 44)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_9, /*hidden argument*/NULL); String_t* L_11 = SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C((String_t*)_stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6, (RuntimeObject *)L_8, (RuntimeObject *)L_10, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_12, (String_t*)L_11, (String_t*)_stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Dictionary_2_System_Collections_IDictionary_Add_m281E28101146E6648B75AD52FF821EA28021227D_RuntimeMethod_var); } // end catch (depth: 2) IL_0064: { goto IL_0087; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0066; throw e; } CATCH_0066: { // begin catch(System.InvalidCastException) RuntimeObject * L_13 = ___key0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 45)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_14, /*hidden argument*/NULL); String_t* L_16 = SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C((String_t*)_stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6, (RuntimeObject *)L_13, (RuntimeObject *)L_15, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_17 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_17, (String_t*)L_16, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, NULL, Dictionary_2_System_Collections_IDictionary_Add_m281E28101146E6648B75AD52FF821EA28021227D_RuntimeMethod_var); } // end catch (depth: 1) IL_0087: { return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.IDictionary.Contains(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_IDictionary_Contains_mF2589C01349D7613655B13F734A4B9B4AA0B1F42_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; bool L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)); if (!L_1) { goto IL_0015; } } { RuntimeObject * L_2 = ___key0; NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); bool L_3 = (( bool (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 46)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 33))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 46)); return L_3; } IL_0015: { return (bool)0; } } // System.Collections.IDictionaryEnumerator System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.IDictionary.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_IDictionary_GetEnumerator_m5914F56CF12185868454A898E0380BD5319A785C_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method) { { Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB L_0; memset((&L_0), 0, sizeof(L_0)); Enumerator__ctor_m3FD84B57A809FF88FC26B86687686E3949F9CBC8((&L_0), (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (int32_t)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 28)); Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 27), &L_1); return (RuntimeObject*)L_2; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.IDictionary.Remove(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_IDictionary_Remove_m316BE0F28E9FBEE8C271BCADABECD82564949E88_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; bool L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)); if (!L_1) { goto IL_0015; } } { RuntimeObject * L_2 = ___key0; NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); (( bool (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 33))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); } IL_0015: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mC02A71C1ADA601AE168BC4D52B5246D00BF669B8_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, const RuntimeMethod* method) { { NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); (( void (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (int32_t)0, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m3508681DC325B26F68CBF6DF15233B6EAA54C3BC_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, int32_t ___capacity0, const RuntimeMethod* method) { { int32_t L_0 = ___capacity0; NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); (( void (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (int32_t)L_0, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mC9C7C41F5539436D21833342201247DD6A6033D2_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___comparer0; NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); (( void (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (int32_t)0, (RuntimeObject*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::.ctor(System.Int32,System.Collections.Generic.IEqualityComparer`1<TKey>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m005E7E17A2E27952BC4C20BA2995AC18A338EE78_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, int32_t ___capacity0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2__ctor_m005E7E17A2E27952BC4C20BA2995AC18A338EE78_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* G_B6_0 = NULL; Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * G_B6_1 = NULL; RuntimeObject* G_B5_0 = NULL; Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * G_B5_1 = NULL; { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); int32_t L_0 = ___capacity0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0020; } } { int32_t L_1 = ___capacity0; int32_t L_2 = L_1; RuntimeObject * L_3 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_2); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_4 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_4, (String_t*)_stringLiteral7CB1F56D3FBE09E809244FC8E13671CD876E3860, (RuntimeObject *)L_3, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2__ctor_m005E7E17A2E27952BC4C20BA2995AC18A338EE78_RuntimeMethod_var); } IL_0020: { int32_t L_5 = ___capacity0; if ((((int32_t)L_5) <= ((int32_t)0))) { goto IL_002b; } } { int32_t L_6 = ___capacity0; NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); (( void (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); } IL_002b: { RuntimeObject* L_7 = ___comparer1; RuntimeObject* L_8 = (RuntimeObject*)L_7; G_B5_0 = L_8; G_B5_1 = ((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)(__this)); if (L_8) { G_B6_0 = L_8; G_B6_1 = ((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)(__this)); goto IL_0036; } } { EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * L_9 = (( EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); G_B6_0 = ((RuntimeObject*)(L_9)); G_B6_1 = ((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)(G_B5_1)); } IL_0036: { NullCheck(G_B6_1); G_B6_1->set_comparer_6(G_B6_0); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.IDictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mAAB8C92645401DDC9B81E4DF2F0F8CD6CCA63A9B_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, RuntimeObject* ___dictionary0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___dictionary0; NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); (( void (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, RuntimeObject*, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (RuntimeObject*)L_0, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.IDictionary`2<TKey,TValue>,System.Collections.Generic.IEqualityComparer`1<TKey>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m9E826F9D5AF09D486580476C9EE99E09B614C165_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, RuntimeObject* ___dictionary0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2__ctor_m9E826F9D5AF09D486580476C9EE99E09B614C165_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* V_1 = NULL; int32_t V_2 = 0; RuntimeObject* V_3 = NULL; KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 V_4; memset((&V_4), 0, sizeof(V_4)); Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * G_B2_0 = NULL; Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * G_B1_0 = NULL; int32_t G_B3_0 = 0; Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * G_B3_1 = NULL; { RuntimeObject* L_0 = ___dictionary0; G_B1_0 = ((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)(__this)); if (L_0) { G_B2_0 = ((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)(__this)); goto IL_0007; } } { G_B3_0 = 0; G_B3_1 = ((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)(G_B1_0)); goto IL_000d; } IL_0007: { RuntimeObject* L_1 = ___dictionary0; NullCheck((RuntimeObject*)L_1); int32_t L_2 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::get_Count() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_1); G_B3_0 = L_2; G_B3_1 = ((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)(G_B2_0)); } IL_000d: { RuntimeObject* L_3 = ___comparer1; NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)G_B3_1); (( void (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)G_B3_1, (int32_t)G_B3_0, (RuntimeObject*)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); RuntimeObject* L_4 = ___dictionary0; if (L_4) { goto IL_0021; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_5 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_5, (String_t*)_stringLiteralF18BFB74E613AFB11F36BDD80CF05CD5DFAD98D6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Dictionary_2__ctor_m9E826F9D5AF09D486580476C9EE99E09B614C165_RuntimeMethod_var); } IL_0021: { RuntimeObject* L_6 = ___dictionary0; NullCheck((RuntimeObject *)L_6); Type_t * L_7 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60((RuntimeObject *)L_6, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_8 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 6)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_9 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_8, /*hidden argument*/NULL); bool L_10 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_7, (Type_t *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0085; } } { RuntimeObject* L_11 = ___dictionary0; Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * L_12 = (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)Castclass((RuntimeObject*)L_11, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))); NullCheck(L_12); int32_t L_13 = (int32_t)L_12->get_count_2(); V_0 = (int32_t)L_13; NullCheck(L_12); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_14 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)L_12->get_entries_1(); V_1 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)L_14; V_2 = (int32_t)0; goto IL_0080; } IL_004f: { EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_15 = V_1; int32_t L_16 = V_2; NullCheck(L_15); int32_t L_17 = (int32_t)((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16)))->get_hashCode_0(); if ((((int32_t)L_17) < ((int32_t)0))) { goto IL_007c; } } { EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_18 = V_1; int32_t L_19 = V_2; NullCheck(L_18); RuntimeObject * L_20 = (RuntimeObject *)((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)))->get_key_2(); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_21 = V_1; int32_t L_22 = V_2; NullCheck(L_21); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_23 = (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )((L_21)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_22)))->get_value_3(); NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); (( void (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, RuntimeObject *, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (RuntimeObject *)L_20, (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )L_23, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); } IL_007c: { int32_t L_24 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1)); } IL_0080: { int32_t L_25 = V_2; int32_t L_26 = V_0; if ((((int32_t)L_25) < ((int32_t)L_26))) { goto IL_004f; } } { return; } IL_0085: { RuntimeObject* L_27 = ___dictionary0; NullCheck((RuntimeObject*)L_27); RuntimeObject* L_28 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 9), (RuntimeObject*)L_27); V_3 = (RuntimeObject*)L_28; } IL_008c: try { // begin try (depth: 1) { goto IL_00aa; } IL_008e: { RuntimeObject* L_29 = V_3; NullCheck((RuntimeObject*)L_29); KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 L_30 = InterfaceFuncInvoker0< KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 10), (RuntimeObject*)L_29); V_4 = (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 )L_30; RuntimeObject * L_31 = KeyValuePair_2_get_Key_m5D7C176AE453D032C109972EBB10C20605DAE036_inline((KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(&V_4), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_32 = KeyValuePair_2_get_Value_m48979A8E8026569BC75639CDE453011950B84356_inline((KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(&V_4), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); (( void (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, RuntimeObject *, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (RuntimeObject *)L_31, (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )L_32, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); } IL_00aa: { RuntimeObject* L_33 = V_3; NullCheck((RuntimeObject*)L_33); bool L_34 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, (RuntimeObject*)L_33); if (L_34) { goto IL_008e; } } IL_00b2: { IL2CPP_LEAVE(0xBE, FINALLY_00b4); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00b4; } FINALLY_00b4: { // begin finally (depth: 1) { RuntimeObject* L_35 = V_3; if (!L_35) { goto IL_00bd; } } IL_00b7: { RuntimeObject* L_36 = V_3; NullCheck((RuntimeObject*)L_36); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, (RuntimeObject*)L_36); } IL_00bd: { IL2CPP_END_FINALLY(180) } } // end finally (depth: 1) IL2CPP_CLEANUP(180) { IL2CPP_JUMP_TBL(0xBE, IL_00be) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_00be: { return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m9228B6B598897711D01E10AB8EC12D5EA46A06AA_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2__ctor_m9228B6B598897711D01E10AB8EC12D5EA46A06AA_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_0 = DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C_inline(/*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_1 = ___info0; NullCheck((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0); ConditionalWeakTable_2_Add_mCC3585BE91A7BDFC49EEFDE4C11173A36D1FB5FE((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0, (RuntimeObject *)__this, (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_1, /*hidden argument*/ConditionalWeakTable_2_Add_mCC3585BE91A7BDFC49EEFDE4C11173A36D1FB5FE_RuntimeMethod_var); return; } } // System.Int32 System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Dictionary_2_get_Count_m3FA40CCA390312418B6F0677CF1861C93107DE14_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_count_2(); int32_t L_1 = (int32_t)__this->get_freeCount_5(); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)); } } // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::get_Keys() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyCollection_tB62DC24DEF9A9DC0EE67965814F53091651CAE92 * Dictionary_2_get_Keys_m70C1896419F69E84A4054D83E29492A500264087_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, const RuntimeMethod* method) { { KeyCollection_tB62DC24DEF9A9DC0EE67965814F53091651CAE92 * L_0 = (KeyCollection_tB62DC24DEF9A9DC0EE67965814F53091651CAE92 *)__this->get_keys_7(); if (L_0) { goto IL_0014; } } { KeyCollection_tB62DC24DEF9A9DC0EE67965814F53091651CAE92 * L_1 = (KeyCollection_tB62DC24DEF9A9DC0EE67965814F53091651CAE92 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 13)); (( void (*) (KeyCollection_tB62DC24DEF9A9DC0EE67965814F53091651CAE92 *, Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)->methodPointer)(L_1, (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)); __this->set_keys_7(L_1); } IL_0014: { KeyCollection_tB62DC24DEF9A9DC0EE67965814F53091651CAE92 * L_2 = (KeyCollection_tB62DC24DEF9A9DC0EE67965814F53091651CAE92 *)__this->get_keys_7(); return L_2; } } // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::get_Values() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueCollection_t32E4BA93A6E2E9AC038396EC46CDBA2BAE42AF4B * Dictionary_2_get_Values_m0E8CF2D73DE1DE60B057FBA89D37CA8974473E51_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, const RuntimeMethod* method) { { ValueCollection_t32E4BA93A6E2E9AC038396EC46CDBA2BAE42AF4B * L_0 = (ValueCollection_t32E4BA93A6E2E9AC038396EC46CDBA2BAE42AF4B *)__this->get_values_8(); if (L_0) { goto IL_0014; } } { ValueCollection_t32E4BA93A6E2E9AC038396EC46CDBA2BAE42AF4B * L_1 = (ValueCollection_t32E4BA93A6E2E9AC038396EC46CDBA2BAE42AF4B *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 15)); (( void (*) (ValueCollection_t32E4BA93A6E2E9AC038396EC46CDBA2BAE42AF4B *, Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)->methodPointer)(L_1, (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)); __this->set_values_8(L_1); } IL_0014: { ValueCollection_t32E4BA93A6E2E9AC038396EC46CDBA2BAE42AF4B * L_2 = (ValueCollection_t32E4BA93A6E2E9AC038396EC46CDBA2BAE42AF4B *)__this->get_values_8(); return L_2; } } // TValue System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::get_Item(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C Dictionary_2_get_Item_mD6B3AA9C53F2917F8E40CAD37B995C327DFB751B_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_get_Item_mD6B3AA9C53F2917F8E40CAD37B995C327DFB751B_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_001e; } } { EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_3 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_4 = V_0; NullCheck(L_3); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_5 = (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )((L_3)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_4)))->get_value_3(); return L_5; } IL_001e: { KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2 * L_6 = (KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2 *)il2cpp_codegen_object_new(KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2_il2cpp_TypeInfo_var); KeyNotFoundException__ctor_mE9E1C6E6E21842095342C0A2ED65EC201FB4F3C8(L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Dictionary_2_get_Item_mD6B3AA9C53F2917F8E40CAD37B995C327DFB751B_RuntimeMethod_var); } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::set_Item(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_m1A4458C0445BA92B74500D235137CAF9208993DF_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, RuntimeObject * ___key0, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ___value1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_1 = ___value1; NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); (( bool (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, RuntimeObject *, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C , uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (RuntimeObject *)L_0, (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )L_1, (uint8_t)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::Add(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_m020F2AE23A2190BE315B11093FED80CF738754AB_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, RuntimeObject * ___key0, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ___value1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_1 = ___value1; NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); (( bool (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, RuntimeObject *, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C , uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (RuntimeObject *)L_0, (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )L_1, (uint8_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Add_m83B94967036BB91420AF11DD7741750CD7B8D72A_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 ___keyValuePair0, const RuntimeMethod* method) { { RuntimeObject * L_0 = KeyValuePair_2_get_Key_m5D7C176AE453D032C109972EBB10C20605DAE036_inline((KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_1 = KeyValuePair_2_get_Value_m48979A8E8026569BC75639CDE453011950B84356_inline((KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); (( void (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, RuntimeObject *, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (RuntimeObject *)L_0, (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Contains(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Contains_m9F38F05DA8330E2DBED32D7A77B26E2D0CA8735F_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 ___keyValuePair0, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = KeyValuePair_2_get_Key_m5D7C176AE453D032C109972EBB10C20605DAE036_inline((KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0038; } } { EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D * L_3 = (( EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_4 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_6 = (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_7 = KeyValuePair_2_get_Value_m48979A8E8026569BC75639CDE453011950B84356_inline((KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); NullCheck((EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D *)L_3); bool L_8 = VirtFuncInvoker2< bool, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C , ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Resources.ResourceLocator>::Equals(T,T) */, (EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D *)L_3, (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )L_6, (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )L_7); if (!L_8) { goto IL_0038; } } { return (bool)1; } IL_0038: { return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Remove_m70D980352EB59C31D2A8B3E0612719D09FA1AC0C_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 ___keyValuePair0, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = KeyValuePair_2_get_Key_m5D7C176AE453D032C109972EBB10C20605DAE036_inline((KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0046; } } { EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D * L_3 = (( EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_4 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_6 = (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_7 = KeyValuePair_2_get_Value_m48979A8E8026569BC75639CDE453011950B84356_inline((KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); NullCheck((EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D *)L_3); bool L_8 = VirtFuncInvoker2< bool, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C , ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Resources.ResourceLocator>::Equals(T,T) */, (EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D *)L_3, (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )L_6, (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )L_7); if (!L_8) { goto IL_0046; } } { RuntimeObject * L_9 = KeyValuePair_2_get_Key_m5D7C176AE453D032C109972EBB10C20605DAE036_inline((KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); (( bool (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (RuntimeObject *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); return (bool)1; } IL_0046: { return (bool)0; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Clear_mE8FC95D8A378955B79BA0CB3600D1DDE054FC0B0_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = (int32_t)__this->get_count_2(); if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_005a; } } { V_0 = (int32_t)0; goto IL_001a; } IL_000d: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_2 = V_0; NullCheck(L_1); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(L_2), (int32_t)(-1)); int32_t L_3 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)); } IL_001a: { int32_t L_4 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_5 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_5); if ((((int32_t)L_4) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length))))))) { goto IL_000d; } } { EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_6 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_7 = (int32_t)__this->get_count_2(); Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_6, (int32_t)0, (int32_t)L_7, /*hidden argument*/NULL); __this->set_freeList_4((-1)); __this->set_count_2(0); __this->set_freeCount_5(0); int32_t L_8 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1))); } IL_005a: { return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::ContainsKey(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsKey_m6C0B594A1032D88202765F11149E749D11C1EE34_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); return (bool)((((int32_t)((((int32_t)L_1) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::ContainsValue(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsValue_mBA8CBB31984AA815BCF06F0B8C19F161F3F3F986_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ___value0, const RuntimeMethod* method) { int32_t V_0 = 0; EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D * V_1 = NULL; int32_t V_2 = 0; { goto IL_0049; } { V_0 = (int32_t)0; goto IL_003e; } IL_000c: { EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_1 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_2 = V_0; NullCheck(L_1); int32_t L_3 = (int32_t)((L_1)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_2)))->get_hashCode_0(); if ((((int32_t)L_3) < ((int32_t)0))) { goto IL_003a; } } { EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_4 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_6 = (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); goto IL_003a; } { return (bool)1; } IL_003a: { int32_t L_7 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)); } IL_003e: { int32_t L_8 = V_0; int32_t L_9 = (int32_t)__this->get_count_2(); if ((((int32_t)L_8) < ((int32_t)L_9))) { goto IL_000c; } } { goto IL_0090; } IL_0049: { EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D * L_10 = (( EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)); V_1 = (EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D *)L_10; V_2 = (int32_t)0; goto IL_0087; } IL_0053: { EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_11 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_12 = V_2; NullCheck(L_11); int32_t L_13 = (int32_t)((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12)))->get_hashCode_0(); if ((((int32_t)L_13) < ((int32_t)0))) { goto IL_0083; } } { EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D * L_14 = V_1; EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_15 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_16 = V_2; NullCheck(L_15); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_17 = (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16)))->get_value_3(); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_18 = ___value0; NullCheck((EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D *)L_14); bool L_19 = VirtFuncInvoker2< bool, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C , ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Resources.ResourceLocator>::Equals(T,T) */, (EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D *)L_14, (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )L_17, (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )L_18); if (!L_19) { goto IL_0083; } } { return (bool)1; } IL_0083: { int32_t L_20 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1)); } IL_0087: { int32_t L_21 = V_2; int32_t L_22 = (int32_t)__this->get_count_2(); if ((((int32_t)L_21) < ((int32_t)L_22))) { goto IL_0053; } } IL_0090: { return (bool)0; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_CopyTo_mDB78948770252D4C02930B666567476DFFED1759_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB* ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_CopyTo_mDB78948770252D4C02930B666567476DFFED1759_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* V_1 = NULL; int32_t V_2 = 0; { KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_CopyTo_mDB78948770252D4C02930B666567476DFFED1759_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___index1; KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))) { goto IL_002e; } } IL_0018: { int32_t L_5 = ___index1; int32_t L_6 = L_5; RuntimeObject * L_7 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_6); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_8, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, (RuntimeObject *)L_7, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Dictionary_2_CopyTo_mDB78948770252D4C02930B666567476DFFED1759_RuntimeMethod_var); } IL_002e: { KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB* L_9 = ___array0; NullCheck(L_9); int32_t L_10 = ___index1; NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); int32_t L_11 = (( int32_t (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_11))) { goto IL_0046; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_12, (String_t*)_stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Dictionary_2_CopyTo_mDB78948770252D4C02930B666567476DFFED1759_RuntimeMethod_var); } IL_0046: { int32_t L_13 = (int32_t)__this->get_count_2(); V_0 = (int32_t)L_13; EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_14 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); V_1 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)L_14; V_2 = (int32_t)0; goto IL_0094; } IL_0058: { EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_15 = V_1; int32_t L_16 = V_2; NullCheck(L_15); int32_t L_17 = (int32_t)((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16)))->get_hashCode_0(); if ((((int32_t)L_17) < ((int32_t)0))) { goto IL_0090; } } { KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB* L_18 = ___array0; int32_t L_19 = ___index1; int32_t L_20 = (int32_t)L_19; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1)); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_21 = V_1; int32_t L_22 = V_2; NullCheck(L_21); RuntimeObject * L_23 = (RuntimeObject *)((L_21)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_22)))->get_key_2(); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_24 = V_1; int32_t L_25 = V_2; NullCheck(L_24); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_26 = (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_value_3(); KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 L_27; memset((&L_27), 0, sizeof(L_27)); KeyValuePair_2__ctor_m036B07A37CD133C33431E3A1AD0C3A57DBC521F0((&L_27), (RuntimeObject *)L_23, (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )L_26, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)); NullCheck(L_18); (L_18)->SetAt(static_cast<il2cpp_array_size_t>(L_20), (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 )L_27); } IL_0090: { int32_t L_28 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)1)); } IL_0094: { int32_t L_29 = V_2; int32_t L_30 = V_0; if ((((int32_t)L_29) < ((int32_t)L_30))) { goto IL_0058; } } { return; } } // System.Collections.Generic.Dictionary`2_Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 Dictionary_2_GetEnumerator_mAF05E35C179DB0DF13C31AD8C02A0A0353F23950_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, const RuntimeMethod* method) { { Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 L_0; memset((&L_0), 0, sizeof(L_0)); Enumerator__ctor_mC05BB4833CCCF3518A99F2B27BEB5973D1E7AC32((&L_0), (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 28)); return L_0; } } // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<TKey,TValue>> System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_Generic_IEnumerableU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_GetEnumerator_mD8A87F7C339780B7804E3FC3DF8D651C36CBF47A_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, const RuntimeMethod* method) { { Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 L_0; memset((&L_0), 0, sizeof(L_0)); Enumerator__ctor_mC05BB4833CCCF3518A99F2B27BEB5973D1E7AC32((&L_0), (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 28)); Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 27), &L_1); return (RuntimeObject*)L_2; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_GetObjectData_mAFFB6C7E9F3E826ECA1CFF5E3CF26BC20468C466_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_GetObjectData_mAFFB6C7E9F3E826ECA1CFF5E3CF26BC20468C466_MetadataUsageId); s_Il2CppMethodInitialized = true; } KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB* V_0 = NULL; String_t* G_B4_0 = NULL; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * G_B4_1 = NULL; String_t* G_B3_0 = NULL; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * G_B3_1 = NULL; int32_t G_B5_0 = 0; String_t* G_B5_1 = NULL; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * G_B5_2 = NULL; { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_GetObjectData_mAFFB6C7E9F3E826ECA1CFF5E3CF26BC20468C466_RuntimeMethod_var); } IL_000e: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0; int32_t L_3 = (int32_t)__this->get_version_3(); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2); SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2, (String_t*)_stringLiteral2DA600BF9404843107A9531694F654E5662959E0, (int32_t)L_3, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = ___info0; RuntimeObject* L_5 = (RuntimeObject*)__this->get_comparer_6(); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 29)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_6, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4, (String_t*)_stringLiteral8FC94E4F5B71CECE2565D72417AACC804EE27A0D, (RuntimeObject *)L_5, (Type_t *)L_7, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_8 = ___info0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_9 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); G_B3_0 = _stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60; G_B3_1 = L_8; if (!L_9) { G_B4_0 = _stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60; G_B4_1 = L_8; goto IL_0052; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_10 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_10); G_B5_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))); G_B5_1 = G_B3_0; G_B5_2 = G_B3_1; goto IL_0053; } IL_0052: { G_B5_0 = 0; G_B5_1 = G_B4_0; G_B5_2 = G_B4_1; } IL_0053: { NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)G_B5_2); SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)G_B5_2, (String_t*)G_B5_1, (int32_t)G_B5_0, /*hidden argument*/NULL); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_11 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (!L_11) { goto IL_008a; } } { NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); int32_t L_12 = (( int32_t (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)); KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB* L_13 = (KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB*)(KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 30), (uint32_t)L_12); V_0 = (KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB*)L_13; KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB* L_14 = V_0; NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); (( void (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB*)L_14, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_15 = ___info0; KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB* L_16 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_17 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 32)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_18 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_17, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_15); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_15, (String_t*)_stringLiteral1D89254A2BC78C1FF41C2F6767A0E00EE126B3BF, (RuntimeObject *)(RuntimeObject *)L_16, (Type_t *)L_18, /*hidden argument*/NULL); } IL_008a: { return; } } // System.Int32 System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::FindEntry(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Dictionary_2_FindEntry_m85531CCD613626B0C21B5181F9EFE5914EB754D1_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_FindEntry_m85531CCD613626B0C21B5181F9EFE5914EB754D1_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0013; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_FindEntry_m85531CCD613626B0C21B5181F9EFE5914EB754D1_RuntimeMethod_var); } IL_0013: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (!L_2) { goto IL_008d; } } { RuntimeObject* L_3 = (RuntimeObject*)__this->get_comparer_6(); RuntimeObject * L_4 = ___key0; NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Object>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_3, (RuntimeObject *)L_4); V_0 = (int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL))); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_6 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_7 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_8); NullCheck(L_6); int32_t L_9 = ((int32_t)((int32_t)L_7%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))))); int32_t L_10 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); V_1 = (int32_t)L_10; goto IL_0089; } IL_0042: { EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_11 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_12 = V_1; NullCheck(L_11); int32_t L_13 = (int32_t)((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12)))->get_hashCode_0(); int32_t L_14 = V_0; if ((!(((uint32_t)L_13) == ((uint32_t)L_14)))) { goto IL_0077; } } { RuntimeObject* L_15 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_16 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_17 = V_1; NullCheck(L_16); RuntimeObject * L_18 = (RuntimeObject *)((L_16)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_17)))->get_key_2(); RuntimeObject * L_19 = ___key0; NullCheck((RuntimeObject*)L_15); bool L_20 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Object>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_15, (RuntimeObject *)L_18, (RuntimeObject *)L_19); if (!L_20) { goto IL_0077; } } { int32_t L_21 = V_1; return L_21; } IL_0077: { EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_22 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_23 = V_1; NullCheck(L_22); int32_t L_24 = (int32_t)((L_22)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_23)))->get_next_1(); V_1 = (int32_t)L_24; } IL_0089: { int32_t L_25 = V_1; if ((((int32_t)L_25) >= ((int32_t)0))) { goto IL_0042; } } IL_008d: { return (-1); } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::Initialize(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Initialize_mEFF43FA447EAC4F63AE14770493D8758E6279194_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, int32_t ___capacity0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Initialize_mEFF43FA447EAC4F63AE14770493D8758E6279194_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___capacity0; IL2CPP_RUNTIME_CLASS_INIT(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var); int32_t L_1 = HashHelpers_GetPrime_m743D7006C2BCBADC1DC8CACF7C5B78C9F6B38297((int32_t)L_0, /*hidden argument*/NULL); V_0 = (int32_t)L_1; int32_t L_2 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_3 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_2); __this->set_buckets_0(L_3); V_1 = (int32_t)0; goto IL_0024; } IL_0017: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_4 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_5 = V_1; NullCheck(L_4); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (int32_t)(-1)); int32_t L_6 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)); } IL_0024: { int32_t L_7 = V_1; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_8); if ((((int32_t)L_7) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length))))))) { goto IL_0017; } } { int32_t L_9 = V_0; EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_10 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)(EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 35), (uint32_t)L_9); __this->set_entries_1(L_10); __this->set_freeList_4((-1)); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::TryInsert(TKey,TValue,System.Collections.Generic.InsertionBehavior) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryInsert_m4BFED1FA0B4FBDB8E839F6FE9D514D98C2227E41_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, RuntimeObject * ___key0, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ___value1, uint8_t ___behavior2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_TryInsert_m4BFED1FA0B4FBDB8E839F6FE9D514D98C2227E41_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0013; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_TryInsert_m4BFED1FA0B4FBDB8E839F6FE9D514D98C2227E41_RuntimeMethod_var); } IL_0013: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (L_2) { goto IL_0022; } } { NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); (( void (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); } IL_0022: { RuntimeObject* L_3 = (RuntimeObject*)__this->get_comparer_6(); RuntimeObject * L_4 = ___key0; NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Object>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_3, (RuntimeObject *)L_4); V_0 = (int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL))); int32_t L_6 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_7 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_7); V_1 = (int32_t)((int32_t)((int32_t)L_6%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length)))))); V_2 = (int32_t)0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_9 = V_1; NullCheck(L_8); int32_t L_10 = L_9; int32_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); V_4 = (int32_t)L_11; goto IL_00e1; } IL_0051: { EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_12 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_13 = V_4; NullCheck(L_12); int32_t L_14 = (int32_t)((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_13)))->get_hashCode_0(); int32_t L_15 = V_0; if ((!(((uint32_t)L_14) == ((uint32_t)L_15)))) { goto IL_00c9; } } { RuntimeObject* L_16 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_17 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_18 = V_4; NullCheck(L_17); RuntimeObject * L_19 = (RuntimeObject *)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->get_key_2(); RuntimeObject * L_20 = ___key0; NullCheck((RuntimeObject*)L_16); bool L_21 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Object>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_16, (RuntimeObject *)L_19, (RuntimeObject *)L_20); if (!L_21) { goto IL_00c9; } } { uint8_t L_22 = ___behavior2; if ((!(((uint32_t)L_22) == ((uint32_t)1)))) { goto IL_00ad; } } { EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_23 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_24 = V_4; NullCheck(L_23); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_25 = ___value1; ((L_23)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_24)))->set_value_3(L_25); int32_t L_26 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1))); return (bool)1; } IL_00ad: { uint8_t L_27 = ___behavior2; if ((!(((uint32_t)L_27) == ((uint32_t)2)))) { goto IL_00c7; } } { RuntimeObject * L_28 = ___key0; String_t* L_29 = SR_Format_mCDBB594267CC224AB2A69540BBA598151F0642C7((String_t*)_stringLiteral6FD577FD3A1BDC4DA28CD51D7A55EB397CEA3926, (RuntimeObject *)L_28, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_30 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_30, (String_t*)L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30, NULL, Dictionary_2_TryInsert_m4BFED1FA0B4FBDB8E839F6FE9D514D98C2227E41_RuntimeMethod_var); } IL_00c7: { return (bool)0; } IL_00c9: { int32_t L_31 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)1)); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_32 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_33 = V_4; NullCheck(L_32); int32_t L_34 = (int32_t)((L_32)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_33)))->get_next_1(); V_4 = (int32_t)L_34; } IL_00e1: { int32_t L_35 = V_4; if ((((int32_t)L_35) >= ((int32_t)0))) { goto IL_0051; } } { int32_t L_36 = (int32_t)__this->get_freeCount_5(); if ((((int32_t)L_36) <= ((int32_t)0))) { goto IL_0120; } } { int32_t L_37 = (int32_t)__this->get_freeList_4(); V_3 = (int32_t)L_37; EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_38 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_39 = V_3; NullCheck(L_38); int32_t L_40 = (int32_t)((L_38)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_39)))->get_next_1(); __this->set_freeList_4(L_40); int32_t L_41 = (int32_t)__this->get_freeCount_5(); __this->set_freeCount_5(((int32_t)il2cpp_codegen_subtract((int32_t)L_41, (int32_t)1))); goto IL_0156; } IL_0120: { int32_t L_42 = (int32_t)__this->get_count_2(); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_43 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); NullCheck(L_43); if ((!(((uint32_t)L_42) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_43)->max_length)))))))) { goto IL_0141; } } { NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); (( void (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 36)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 36)); int32_t L_44 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_45 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_45); V_1 = (int32_t)((int32_t)((int32_t)L_44%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_45)->max_length)))))); } IL_0141: { int32_t L_46 = (int32_t)__this->get_count_2(); V_3 = (int32_t)L_46; int32_t L_47 = (int32_t)__this->get_count_2(); __this->set_count_2(((int32_t)il2cpp_codegen_add((int32_t)L_47, (int32_t)1))); } IL_0156: { EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_48 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_49 = V_3; NullCheck(L_48); int32_t L_50 = V_0; ((L_48)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_49)))->set_hashCode_0(L_50); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_51 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_52 = V_3; NullCheck(L_51); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_53 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_54 = V_1; NullCheck(L_53); int32_t L_55 = L_54; int32_t L_56 = (L_53)->GetAt(static_cast<il2cpp_array_size_t>(L_55)); ((L_51)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_52)))->set_next_1(L_56); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_57 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_58 = V_3; NullCheck(L_57); RuntimeObject * L_59 = ___key0; ((L_57)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_58)))->set_key_2(L_59); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_60 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_61 = V_3; NullCheck(L_60); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_62 = ___value1; ((L_60)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_61)))->set_value_3(L_62); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_63 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_64 = V_1; int32_t L_65 = V_3; NullCheck(L_63); (L_63)->SetAt(static_cast<il2cpp_array_size_t>(L_64), (int32_t)L_65); int32_t L_66 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_66, (int32_t)1))); int32_t L_67 = V_2; if ((((int32_t)L_67) <= ((int32_t)((int32_t)100)))) { goto IL_01ed; } } { RuntimeObject* L_68 = (RuntimeObject*)__this->get_comparer_6(); if (!((NonRandomizedStringEqualityComparer_t92C20503D9C5060A557792ABCCC06EF2DD77E5D9 *)IsInst((RuntimeObject*)L_68, NonRandomizedStringEqualityComparer_t92C20503D9C5060A557792ABCCC06EF2DD77E5D9_il2cpp_TypeInfo_var))) { goto IL_01ed; } } { EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137 * L_69 = EqualityComparer_1_get_Default_m85F378D7298050D5DF422363D5EB30A218B769B7(/*hidden argument*/EqualityComparer_1_get_Default_m85F378D7298050D5DF422363D5EB30A218B769B7_RuntimeMethod_var); __this->set_comparer_6(((RuntimeObject*)Castclass((RuntimeObject*)L_69, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34)))); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_70 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); NullCheck(L_70); NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); (( void (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, int32_t, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_70)->max_length)))), (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)); } IL_01ed: { return (bool)1; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::OnDeserialization(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_OnDeserialization_m63903F75E863748E0BA65E8FC9A1B45155BE00EA_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, RuntimeObject * ___sender0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_OnDeserialization_m63903F75E863748E0BA65E8FC9A1B45155BE00EA_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB* V_3 = NULL; int32_t V_4 = 0; int32_t V_5 = 0; { IL2CPP_RUNTIME_CLASS_INIT(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_0 = DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C_inline(/*hidden argument*/NULL); NullCheck((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0); ConditionalWeakTable_2_TryGetValue_mDFCB6C303807E3F8998D196F4573870680E81F8B((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0, (RuntimeObject *)__this, (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 **)(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 **)(&V_0), /*hidden argument*/ConditionalWeakTable_2_TryGetValue_mDFCB6C303807E3F8998D196F4573870680E81F8B_RuntimeMethod_var); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_1 = V_0; if (L_1) { goto IL_0012; } } { return; } IL_0012: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = V_0; NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2); int32_t L_3 = SerializationInfo_GetInt32_mB47BD46A0BDBBAF5B47BB62E6EFF8E092E3F3656((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2, (String_t*)_stringLiteral2DA600BF9404843107A9531694F654E5662959E0, /*hidden argument*/NULL); V_1 = (int32_t)L_3; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = V_0; NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4); int32_t L_5 = SerializationInfo_GetInt32_mB47BD46A0BDBBAF5B47BB62E6EFF8E092E3F3656((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4, (String_t*)_stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60, /*hidden argument*/NULL); V_2 = (int32_t)L_5; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_6 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 29)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_7, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_6); RuntimeObject * L_9 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_6, (String_t*)_stringLiteral8FC94E4F5B71CECE2565D72417AACC804EE27A0D, (Type_t *)L_8, /*hidden argument*/NULL); __this->set_comparer_6(((RuntimeObject*)Castclass((RuntimeObject*)L_9, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34)))); int32_t L_10 = V_2; if (!L_10) { goto IL_010c; } } { int32_t L_11 = V_2; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_12 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_11); __this->set_buckets_0(L_12); V_4 = (int32_t)0; goto IL_0071; } IL_0061: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_13 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_14 = V_4; NullCheck(L_13); (L_13)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (int32_t)(-1)); int32_t L_15 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_0071: { int32_t L_16 = V_4; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_17 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_17); if ((((int32_t)L_16) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length))))))) { goto IL_0061; } } { int32_t L_18 = V_2; EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_19 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)(EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 35), (uint32_t)L_18); __this->set_entries_1(L_19); __this->set_freeList_4((-1)); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_20 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_21 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 32)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_22 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_21, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_20); RuntimeObject * L_23 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_20, (String_t*)_stringLiteral1D89254A2BC78C1FF41C2F6767A0E00EE126B3BF, (Type_t *)L_22, /*hidden argument*/NULL); V_3 = (KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB*)((KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB*)Castclass((RuntimeObject*)L_23, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 38))); KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB* L_24 = V_3; if (L_24) { goto IL_00b9; } } { SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * L_25 = (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 *)il2cpp_codegen_object_new(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var); SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1(L_25, (String_t*)_stringLiteral1EB7E67EA75FFC3FCB05A9685FA4F1578DCACCF6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, NULL, Dictionary_2_OnDeserialization_m63903F75E863748E0BA65E8FC9A1B45155BE00EA_RuntimeMethod_var); } IL_00b9: { V_5 = (int32_t)0; goto IL_0103; } IL_00be: { KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB* L_26 = V_3; int32_t L_27 = V_5; NullCheck(L_26); RuntimeObject * L_28 = KeyValuePair_2_get_Key_m5D7C176AE453D032C109972EBB10C20605DAE036_inline((KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)((L_26)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_27))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); if (L_28) { goto IL_00dd; } } { SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * L_29 = (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 *)il2cpp_codegen_object_new(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var); SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1(L_29, (String_t*)_stringLiteralD6D1BC79DD62E9F1FB9A49A8F76F4BA8AB71AECD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_29, NULL, Dictionary_2_OnDeserialization_m63903F75E863748E0BA65E8FC9A1B45155BE00EA_RuntimeMethod_var); } IL_00dd: { KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB* L_30 = V_3; int32_t L_31 = V_5; NullCheck(L_30); RuntimeObject * L_32 = KeyValuePair_2_get_Key_m5D7C176AE453D032C109972EBB10C20605DAE036_inline((KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)((L_30)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_31))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB* L_33 = V_3; int32_t L_34 = V_5; NullCheck(L_33); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_35 = KeyValuePair_2_get_Value_m48979A8E8026569BC75639CDE453011950B84356_inline((KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); (( void (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, RuntimeObject *, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (RuntimeObject *)L_32, (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )L_35, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); int32_t L_36 = V_5; V_5 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)1)); } IL_0103: { int32_t L_37 = V_5; KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB* L_38 = V_3; NullCheck(L_38); if ((((int32_t)L_37) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_38)->max_length))))))) { goto IL_00be; } } { goto IL_0113; } IL_010c: { __this->set_buckets_0((Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)NULL); } IL_0113: { int32_t L_39 = V_1; __this->set_version_3(L_39); IL2CPP_RUNTIME_CLASS_INIT(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_40 = DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C_inline(/*hidden argument*/NULL); NullCheck((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_40); ConditionalWeakTable_2_Remove_mD69606977A8C793DEA91E373F7D886E4865D7FBD((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_40, (RuntimeObject *)__this, /*hidden argument*/ConditionalWeakTable_2_Remove_mD69606977A8C793DEA91E373F7D886E4865D7FBD_RuntimeMethod_var); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::Resize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Resize_m45B007ADE44A69A6B4AA23028D3642BA5AA66061_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Resize_m45B007ADE44A69A6B4AA23028D3642BA5AA66061_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_count_2(); IL2CPP_RUNTIME_CLASS_INIT(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var); int32_t L_1 = HashHelpers_ExpandPrime_m4245F4C95074EAA8F949FB3B734F611A533A6A0D((int32_t)L_0, /*hidden argument*/NULL); NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); (( void (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, int32_t, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (int32_t)L_1, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::Resize(System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Resize_mA34DD099BDA2F1633617FD97EF0B12953A7C9CA2_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, int32_t ___newSize0, bool ___forceNewHashCodes1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Resize_mA34DD099BDA2F1633617FD97EF0B12953A7C9CA2_MetadataUsageId); s_Il2CppMethodInitialized = true; } Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL; EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; { int32_t L_0 = ___newSize0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_0); V_0 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)L_1; V_2 = (int32_t)0; goto IL_0013; } IL_000b: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = V_0; int32_t L_3 = V_2; NullCheck(L_2); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (int32_t)(-1)); int32_t L_4 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)); } IL_0013: { int32_t L_5 = V_2; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_6 = V_0; NullCheck(L_6); if ((((int32_t)L_5) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length))))))) { goto IL_000b; } } { int32_t L_7 = ___newSize0; EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_8 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)(EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 35), (uint32_t)L_7); V_1 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)L_8; EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_9 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_10 = V_1; int32_t L_11 = (int32_t)__this->get_count_2(); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_9, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_10, (int32_t)0, (int32_t)L_11, /*hidden argument*/NULL); bool L_12 = ___forceNewHashCodes1; if (!L_12) { goto IL_0080; } } { V_3 = (int32_t)0; goto IL_0077; } IL_003b: { EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_13 = V_1; int32_t L_14 = V_3; NullCheck(L_13); int32_t L_15 = (int32_t)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_hashCode_0(); if ((((int32_t)L_15) == ((int32_t)(-1)))) { goto IL_0073; } } { EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_16 = V_1; int32_t L_17 = V_3; NullCheck(L_16); RuntimeObject* L_18 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_19 = V_1; int32_t L_20 = V_3; NullCheck(L_19); RuntimeObject * L_21 = (RuntimeObject *)((L_19)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_20)))->get_key_2(); NullCheck((RuntimeObject*)L_18); int32_t L_22 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Object>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_18, (RuntimeObject *)L_21); ((L_16)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_17)))->set_hashCode_0(((int32_t)((int32_t)L_22&(int32_t)((int32_t)2147483647LL)))); } IL_0073: { int32_t L_23 = V_3; V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); } IL_0077: { int32_t L_24 = V_3; int32_t L_25 = (int32_t)__this->get_count_2(); if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_003b; } } IL_0080: { V_4 = (int32_t)0; goto IL_00c3; } IL_0085: { EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_26 = V_1; int32_t L_27 = V_4; NullCheck(L_26); int32_t L_28 = (int32_t)((L_26)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_27)))->get_hashCode_0(); if ((((int32_t)L_28) < ((int32_t)0))) { goto IL_00bd; } } { EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_29 = V_1; int32_t L_30 = V_4; NullCheck(L_29); int32_t L_31 = (int32_t)((L_29)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_30)))->get_hashCode_0(); int32_t L_32 = ___newSize0; V_5 = (int32_t)((int32_t)((int32_t)L_31%(int32_t)L_32)); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_33 = V_1; int32_t L_34 = V_4; NullCheck(L_33); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_35 = V_0; int32_t L_36 = V_5; NullCheck(L_35); int32_t L_37 = L_36; int32_t L_38 = (L_35)->GetAt(static_cast<il2cpp_array_size_t>(L_37)); ((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->set_next_1(L_38); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_39 = V_0; int32_t L_40 = V_5; int32_t L_41 = V_4; NullCheck(L_39); (L_39)->SetAt(static_cast<il2cpp_array_size_t>(L_40), (int32_t)L_41); } IL_00bd: { int32_t L_42 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1)); } IL_00c3: { int32_t L_43 = V_4; int32_t L_44 = (int32_t)__this->get_count_2(); if ((((int32_t)L_43) < ((int32_t)L_44))) { goto IL_0085; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_45 = V_0; __this->set_buckets_0(L_45); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_46 = V_1; __this->set_entries_1(L_46); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::Remove(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_Remove_mDA53A01E63EFD9F3D4A2695D41B10D981E15ACD4_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Remove_mDA53A01E63EFD9F3D4A2695D41B10D981E15ACD4_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0013; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_Remove_mDA53A01E63EFD9F3D4A2695D41B10D981E15ACD4_RuntimeMethod_var); } IL_0013: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (!L_2) { goto IL_015d; } } { RuntimeObject* L_3 = (RuntimeObject*)__this->get_comparer_6(); RuntimeObject * L_4 = ___key0; NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Object>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_3, (RuntimeObject *)L_4); V_0 = (int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL))); int32_t L_6 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_7 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_7); V_1 = (int32_t)((int32_t)((int32_t)L_6%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length)))))); V_2 = (int32_t)(-1); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_9 = V_1; NullCheck(L_8); int32_t L_10 = L_9; int32_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); V_3 = (int32_t)L_11; goto IL_0156; } IL_004c: { EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_12 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_13 = V_3; NullCheck(L_12); int32_t L_14 = (int32_t)((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_13)))->get_hashCode_0(); int32_t L_15 = V_0; if ((!(((uint32_t)L_14) == ((uint32_t)L_15)))) { goto IL_0142; } } { RuntimeObject* L_16 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_17 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_18 = V_3; NullCheck(L_17); RuntimeObject * L_19 = (RuntimeObject *)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->get_key_2(); RuntimeObject * L_20 = ___key0; NullCheck((RuntimeObject*)L_16); bool L_21 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Object>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_16, (RuntimeObject *)L_19, (RuntimeObject *)L_20); if (!L_21) { goto IL_0142; } } { int32_t L_22 = V_2; if ((((int32_t)L_22) >= ((int32_t)0))) { goto IL_00a4; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_23 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_24 = V_1; EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_25 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_26 = V_3; NullCheck(L_25); int32_t L_27 = (int32_t)((L_25)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_26)))->get_next_1(); NullCheck(L_23); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (int32_t)L_27); goto IL_00c6; } IL_00a4: { EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_28 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_29 = V_2; NullCheck(L_28); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_30 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_31 = V_3; NullCheck(L_30); int32_t L_32 = (int32_t)((L_30)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_31)))->get_next_1(); ((L_28)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_29)))->set_next_1(L_32); } IL_00c6: { EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_33 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_34 = V_3; NullCheck(L_33); ((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->set_hashCode_0((-1)); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_35 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_36 = V_3; NullCheck(L_35); int32_t L_37 = (int32_t)__this->get_freeList_4(); ((L_35)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_36)))->set_next_1(L_37); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_38 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_39 = V_3; NullCheck(L_38); RuntimeObject ** L_40 = (RuntimeObject **)((L_38)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_39)))->get_address_of_key_2(); il2cpp_codegen_initobj(L_40, sizeof(RuntimeObject *)); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_41 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_42 = V_3; NullCheck(L_41); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C * L_43 = (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C *)((L_41)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_42)))->get_address_of_value_3(); il2cpp_codegen_initobj(L_43, sizeof(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )); int32_t L_44 = V_3; __this->set_freeList_4(L_44); int32_t L_45 = (int32_t)__this->get_freeCount_5(); __this->set_freeCount_5(((int32_t)il2cpp_codegen_add((int32_t)L_45, (int32_t)1))); int32_t L_46 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_46, (int32_t)1))); return (bool)1; } IL_0142: { int32_t L_47 = V_3; V_2 = (int32_t)L_47; EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_48 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_49 = V_3; NullCheck(L_48); int32_t L_50 = (int32_t)((L_48)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_49)))->get_next_1(); V_3 = (int32_t)L_50; } IL_0156: { int32_t L_51 = V_3; if ((((int32_t)L_51) >= ((int32_t)0))) { goto IL_004c; } } IL_015d: { return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::TryGetValue(TKey,TValue&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_mAE2056CD9A88411E248B0F3F15F38DE2586C6953_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, RuntimeObject * ___key0, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C * ___value1, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0025; } } { ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C * L_3 = ___value1; EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_4 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_6 = (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); *(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C *)L_3 = L_6; Il2CppCodeGenWriteBarrier((void**)&(((ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C *)L_3)->____value_0), (void*)NULL); return (bool)1; } IL_0025: { ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C * L_7 = ___value1; il2cpp_codegen_initobj(L_7, sizeof(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )); return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_get_IsReadOnly_m776C89DCEA6512CEB2756EDA8854CA11EF235514_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_CopyTo_m4C5A88A6D1C54A204EBF77E48C2B607F7C3BADF8_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB* ___array0, int32_t ___index1, const RuntimeMethod* method) { { KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB* L_0 = ___array0; int32_t L_1 = ___index1; NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); (( void (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB*)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_ICollection_CopyTo_mE4CA5150D495BBC4E0252D620694D9A3001B1AAA_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_ICollection_CopyTo_mE4CA5150D495BBC4E0252D620694D9A3001B1AAA_MetadataUsageId); s_Il2CppMethodInitialized = true; } KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB* V_0 = NULL; DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56* V_1 = NULL; EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* V_2 = NULL; int32_t V_3 = 0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_4 = NULL; int32_t V_5 = 0; EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* V_6 = NULL; int32_t V_7 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mE4CA5150D495BBC4E0252D620694D9A3001B1AAA_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; NullCheck((RuntimeArray *)L_2); int32_t L_3 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0027; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_4 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_4, (String_t*)_stringLiteral2D77BE6D598A0A9376398980E66D10E319F1B52A, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mE4CA5150D495BBC4E0252D620694D9A3001B1AAA_RuntimeMethod_var); } IL_0027: { RuntimeArray * L_5 = ___array0; NullCheck((RuntimeArray *)L_5); int32_t L_6 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)L_5, (int32_t)0, /*hidden argument*/NULL); if (!L_6) { goto IL_0040; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_7, (String_t*)_stringLiteralC363992023785AF013BBCF2E20C19D9835184F82, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mE4CA5150D495BBC4E0252D620694D9A3001B1AAA_RuntimeMethod_var); } IL_0040: { int32_t L_8 = ___index1; if ((((int32_t)L_8) < ((int32_t)0))) { goto IL_004d; } } { int32_t L_9 = ___index1; RuntimeArray * L_10 = ___array0; NullCheck((RuntimeArray *)L_10); int32_t L_11 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_10, /*hidden argument*/NULL); if ((((int32_t)L_9) <= ((int32_t)L_11))) { goto IL_0063; } } IL_004d: { int32_t L_12 = ___index1; int32_t L_13 = L_12; RuntimeObject * L_14 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_13); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_15 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_15, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, (RuntimeObject *)L_14, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mE4CA5150D495BBC4E0252D620694D9A3001B1AAA_RuntimeMethod_var); } IL_0063: { RuntimeArray * L_16 = ___array0; NullCheck((RuntimeArray *)L_16); int32_t L_17 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_16, /*hidden argument*/NULL); int32_t L_18 = ___index1; NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); int32_t L_19 = (( int32_t (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_19))) { goto IL_007e; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_20 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_20, (String_t*)_stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mE4CA5150D495BBC4E0252D620694D9A3001B1AAA_RuntimeMethod_var); } IL_007e: { RuntimeArray * L_21 = ___array0; V_0 = (KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB*)((KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB*)IsInst((RuntimeObject*)L_21, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 38))); KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB* L_22 = V_0; if (!L_22) { goto IL_0091; } } { KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB* L_23 = V_0; int32_t L_24 = ___index1; NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); (( void (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB*)L_23, (int32_t)L_24, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); return; } IL_0091: { RuntimeArray * L_25 = ___array0; if (!((DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56*)IsInst((RuntimeObject*)L_25, DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56_il2cpp_TypeInfo_var))) { goto IL_00fb; } } { RuntimeArray * L_26 = ___array0; V_1 = (DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56*)((DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56*)IsInst((RuntimeObject*)L_26, DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56_il2cpp_TypeInfo_var)); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_27 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); V_2 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)L_27; V_3 = (int32_t)0; goto IL_00f1; } IL_00ab: { EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_28 = V_2; int32_t L_29 = V_3; NullCheck(L_28); int32_t L_30 = (int32_t)((L_28)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_29)))->get_hashCode_0(); if ((((int32_t)L_30) < ((int32_t)0))) { goto IL_00ed; } } { DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56* L_31 = V_1; int32_t L_32 = ___index1; int32_t L_33 = (int32_t)L_32; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1)); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_34 = V_2; int32_t L_35 = V_3; NullCheck(L_34); RuntimeObject * L_36 = (RuntimeObject *)((L_34)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_35)))->get_key_2(); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_37 = V_2; int32_t L_38 = V_3; NullCheck(L_37); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_39 = (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )((L_37)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_38)))->get_value_3(); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_40 = L_39; RuntimeObject * L_41 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 23), &L_40); DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_42; memset((&L_42), 0, sizeof(L_42)); DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B((&L_42), (RuntimeObject *)L_36, (RuntimeObject *)L_41, /*hidden argument*/NULL); NullCheck(L_31); (L_31)->SetAt(static_cast<il2cpp_array_size_t>(L_33), (DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 )L_42); } IL_00ed: { int32_t L_43 = V_3; V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_43, (int32_t)1)); } IL_00f1: { int32_t L_44 = V_3; int32_t L_45 = (int32_t)__this->get_count_2(); if ((((int32_t)L_44) < ((int32_t)L_45))) { goto IL_00ab; } } { return; } IL_00fb: { RuntimeArray * L_46 = ___array0; V_4 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)L_46, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_47 = V_4; if (L_47) { goto IL_0117; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_48 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_48, (String_t*)_stringLiteralC44D4E6C6AF3517A1CC72EDF7D1A5FFD7E3368F1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_48, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mE4CA5150D495BBC4E0252D620694D9A3001B1AAA_RuntimeMethod_var); } IL_0117: { } IL_0118: try { // begin try (depth: 1) { int32_t L_49 = (int32_t)__this->get_count_2(); V_5 = (int32_t)L_49; EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_50 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); V_6 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)L_50; V_7 = (int32_t)0; goto IL_0173; } IL_012d: { EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_51 = V_6; int32_t L_52 = V_7; NullCheck(L_51); int32_t L_53 = (int32_t)((L_51)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_52)))->get_hashCode_0(); if ((((int32_t)L_53) < ((int32_t)0))) { goto IL_016d; } } IL_013e: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_54 = V_4; int32_t L_55 = ___index1; int32_t L_56 = (int32_t)L_55; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_56, (int32_t)1)); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_57 = V_6; int32_t L_58 = V_7; NullCheck(L_57); RuntimeObject * L_59 = (RuntimeObject *)((L_57)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_58)))->get_key_2(); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_60 = V_6; int32_t L_61 = V_7; NullCheck(L_60); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_62 = (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )((L_60)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_61)))->get_value_3(); KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 L_63; memset((&L_63), 0, sizeof(L_63)); KeyValuePair_2__ctor_m036B07A37CD133C33431E3A1AD0C3A57DBC521F0((&L_63), (RuntimeObject *)L_59, (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )L_62, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)); KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 L_64 = L_63; RuntimeObject * L_65 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 25), &L_64); NullCheck(L_54); ArrayElementTypeCheck (L_54, L_65); (L_54)->SetAt(static_cast<il2cpp_array_size_t>(L_56), (RuntimeObject *)L_65); } IL_016d: { int32_t L_66 = V_7; V_7 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_66, (int32_t)1)); } IL_0173: { int32_t L_67 = V_7; int32_t L_68 = V_5; if ((((int32_t)L_67) < ((int32_t)L_68))) { goto IL_012d; } } IL_0179: { goto IL_018c; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArrayTypeMismatchException_tE34C1032B089C37399200997F079C640D23D9499_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_017b; throw e; } CATCH_017b: { // begin catch(System.ArrayTypeMismatchException) ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_69 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_69, (String_t*)_stringLiteralC44D4E6C6AF3517A1CC72EDF7D1A5FFD7E3368F1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_69, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mE4CA5150D495BBC4E0252D620694D9A3001B1AAA_RuntimeMethod_var); } // end catch (depth: 1) IL_018c: { return; } } // System.Collections.IEnumerator System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_IEnumerable_GetEnumerator_m8CA50F6FF4A107CBC4239838E34DED5E4538BA33_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, const RuntimeMethod* method) { { Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 L_0; memset((&L_0), 0, sizeof(L_0)); Enumerator__ctor_mC05BB4833CCCF3518A99F2B27BEB5973D1E7AC32((&L_0), (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 28)); Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 27), &L_1); return (RuntimeObject*)L_2; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.ICollection.get_IsSynchronized() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_ICollection_get_IsSynchronized_m78B64E012ED85AB6AA74A2D9B67D278AD18E9CAA_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Object System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.ICollection.get_SyncRoot() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Dictionary_2_System_Collections_ICollection_get_SyncRoot_mA421BC558ECB5116A75AAA3D670614F71D19BF85_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_ICollection_get_SyncRoot_mA421BC558ECB5116A75AAA3D670614F71D19BF85_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = (RuntimeObject *)__this->get__syncRoot_9(); if (L_0) { goto IL_001a; } } { RuntimeObject ** L_1 = (RuntimeObject **)__this->get_address_of__syncRoot_9(); RuntimeObject * L_2 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_2, /*hidden argument*/NULL); InterlockedCompareExchangeImpl<RuntimeObject *>((RuntimeObject **)(RuntimeObject **)L_1, (RuntimeObject *)L_2, (RuntimeObject *)NULL); } IL_001a: { RuntimeObject * L_3 = (RuntimeObject *)__this->get__syncRoot_9(); return L_3; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionary.get_IsFixedSize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_IDictionary_get_IsFixedSize_m62B424274E83C997920C9BF2E3F88E918E30A540_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionary.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_IDictionary_get_IsReadOnly_m52F21A08619C75C90BF1993E0CC6F69508B94520_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Collections.ICollection System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionary.get_Keys() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_IDictionary_get_Keys_m6F614CD49D594D1A0D7B166EAE83C04EA74EE86D_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, const RuntimeMethod* method) { { NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); KeyCollection_tB62DC24DEF9A9DC0EE67965814F53091651CAE92 * L_0 = (( KeyCollection_tB62DC24DEF9A9DC0EE67965814F53091651CAE92 * (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 39)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 39)); return L_0; } } // System.Collections.ICollection System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionary.get_Values() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_IDictionary_get_Values_m50428F083F63F8D389A8E9B257323BB679F4B4DB_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, const RuntimeMethod* method) { { NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); ValueCollection_t32E4BA93A6E2E9AC038396EC46CDBA2BAE42AF4B * L_0 = (( ValueCollection_t32E4BA93A6E2E9AC038396EC46CDBA2BAE42AF4B * (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 40)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 40)); return L_0; } } // System.Object System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionary.get_Item(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Dictionary_2_System_Collections_IDictionary_get_Item_m5E1E84A40E7BBD82CF4C5200C5F2F993FD5F11E8_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; bool L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)); if (!L_1) { goto IL_0030; } } { RuntimeObject * L_2 = ___key0; NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); int32_t L_3 = (( int32_t (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 33))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); V_0 = (int32_t)L_3; int32_t L_4 = V_0; if ((((int32_t)L_4) < ((int32_t)0))) { goto IL_0030; } } { EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_5 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_6 = V_0; NullCheck(L_5); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_7 = (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_value_3(); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 23), &L_8); return L_9; } IL_0030: { return NULL; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionary.set_Item(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_IDictionary_set_Item_m3A2E48BB4D4447BEDEBD25E8BB702AEF849B93AF_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_IDictionary_set_Item_m3A2E48BB4D4447BEDEBD25E8BB702AEF849B93AF_MetadataUsageId); s_Il2CppMethodInitialized = true; } ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C V_0; memset((&V_0), 0, sizeof(V_0)); RuntimeObject * V_1 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_m3A2E48BB4D4447BEDEBD25E8BB702AEF849B93AF_RuntimeMethod_var); } IL_000e: { RuntimeObject * L_2 = ___value1; if (L_2) { goto IL_002c; } } { il2cpp_codegen_initobj((&V_0), sizeof(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )); } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_4, (String_t*)_stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_m3A2E48BB4D4447BEDEBD25E8BB702AEF849B93AF_RuntimeMethod_var); } IL_002c: { } IL_002d: try { // begin try (depth: 1) { RuntimeObject * L_5 = ___key0; V_1 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 33))); } IL_0034: try { // begin try (depth: 2) RuntimeObject * L_6 = V_1; RuntimeObject * L_7 = ___value1; NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); (( void (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, RuntimeObject *, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 43)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (RuntimeObject *)L_6, (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )((*(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C *)((ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C *)UnBox(L_7, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 23))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 43)); goto IL_0064; } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0043; throw e; } CATCH_0043: { // begin catch(System.InvalidCastException) RuntimeObject * L_8 = ___value1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_9 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 44)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_9, /*hidden argument*/NULL); String_t* L_11 = SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C((String_t*)_stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6, (RuntimeObject *)L_8, (RuntimeObject *)L_10, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_12, (String_t*)L_11, (String_t*)_stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_m3A2E48BB4D4447BEDEBD25E8BB702AEF849B93AF_RuntimeMethod_var); } // end catch (depth: 2) IL_0064: { goto IL_0087; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0066; throw e; } CATCH_0066: { // begin catch(System.InvalidCastException) RuntimeObject * L_13 = ___key0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 45)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_14, /*hidden argument*/NULL); String_t* L_16 = SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C((String_t*)_stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6, (RuntimeObject *)L_13, (RuntimeObject *)L_15, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_17 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_17, (String_t*)L_16, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_m3A2E48BB4D4447BEDEBD25E8BB702AEF849B93AF_RuntimeMethod_var); } // end catch (depth: 1) IL_0087: { return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::IsCompatibleKey(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_IsCompatibleKey_m7E43A77A3EC2C76193BEE3EDDDAD146A892D19F7_gshared (RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_IsCompatibleKey_m7E43A77A3EC2C76193BEE3EDDDAD146A892D19F7_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_IsCompatibleKey_m7E43A77A3EC2C76193BEE3EDDDAD146A892D19F7_RuntimeMethod_var); } IL_000e: { RuntimeObject * L_2 = ___key0; return (bool)((!(((RuntimeObject*)(RuntimeObject *)((RuntimeObject *)IsInst((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 33)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionary.Add(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_IDictionary_Add_m6A9E23190AB240F7A2282B6137FEC875544BC188_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_IDictionary_Add_m6A9E23190AB240F7A2282B6137FEC875544BC188_MetadataUsageId); s_Il2CppMethodInitialized = true; } ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C V_0; memset((&V_0), 0, sizeof(V_0)); RuntimeObject * V_1 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_System_Collections_IDictionary_Add_m6A9E23190AB240F7A2282B6137FEC875544BC188_RuntimeMethod_var); } IL_000e: { RuntimeObject * L_2 = ___value1; if (L_2) { goto IL_002c; } } { il2cpp_codegen_initobj((&V_0), sizeof(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )); } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_4, (String_t*)_stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2_System_Collections_IDictionary_Add_m6A9E23190AB240F7A2282B6137FEC875544BC188_RuntimeMethod_var); } IL_002c: { } IL_002d: try { // begin try (depth: 1) { RuntimeObject * L_5 = ___key0; V_1 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 33))); } IL_0034: try { // begin try (depth: 2) RuntimeObject * L_6 = V_1; RuntimeObject * L_7 = ___value1; NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); (( void (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, RuntimeObject *, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (RuntimeObject *)L_6, (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )((*(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C *)((ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C *)UnBox(L_7, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 23))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); goto IL_0064; } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0043; throw e; } CATCH_0043: { // begin catch(System.InvalidCastException) RuntimeObject * L_8 = ___value1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_9 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 44)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_9, /*hidden argument*/NULL); String_t* L_11 = SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C((String_t*)_stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6, (RuntimeObject *)L_8, (RuntimeObject *)L_10, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_12, (String_t*)L_11, (String_t*)_stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Dictionary_2_System_Collections_IDictionary_Add_m6A9E23190AB240F7A2282B6137FEC875544BC188_RuntimeMethod_var); } // end catch (depth: 2) IL_0064: { goto IL_0087; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0066; throw e; } CATCH_0066: { // begin catch(System.InvalidCastException) RuntimeObject * L_13 = ___key0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 45)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_14, /*hidden argument*/NULL); String_t* L_16 = SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C((String_t*)_stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6, (RuntimeObject *)L_13, (RuntimeObject *)L_15, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_17 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_17, (String_t*)L_16, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, NULL, Dictionary_2_System_Collections_IDictionary_Add_m6A9E23190AB240F7A2282B6137FEC875544BC188_RuntimeMethod_var); } // end catch (depth: 1) IL_0087: { return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionary.Contains(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_IDictionary_Contains_m7AF5996CE4C7958507A735E6C05974568516CD96_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; bool L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)); if (!L_1) { goto IL_0015; } } { RuntimeObject * L_2 = ___key0; NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); bool L_3 = (( bool (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 46)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 33))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 46)); return L_3; } IL_0015: { return (bool)0; } } // System.Collections.IDictionaryEnumerator System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionary.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_IDictionary_GetEnumerator_mFF1808E157194836A006AD14F55E1DA2D87E81EC_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, const RuntimeMethod* method) { { Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 L_0; memset((&L_0), 0, sizeof(L_0)); Enumerator__ctor_mC05BB4833CCCF3518A99F2B27BEB5973D1E7AC32((&L_0), (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (int32_t)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 28)); Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 27), &L_1); return (RuntimeObject*)L_2; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionary.Remove(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_IDictionary_Remove_m502966CB9D7F61FA110714D4501AB929D1F3051A_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; bool L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)); if (!L_1) { goto IL_0015; } } { RuntimeObject * L_2 = ___key0; NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); (( bool (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 33))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); } IL_0015: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mDE13AACC84AB6000A5D16CAEB07FB4D59DFD86FE_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, const RuntimeMethod* method) { { NullCheck((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this); (( void (*) (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this, (int32_t)0, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m3F98ADA74CBE2383F1467832DBFF09CD0DB55676_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, int32_t ___capacity0, const RuntimeMethod* method) { { int32_t L_0 = ___capacity0; NullCheck((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this); (( void (*) (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this, (int32_t)L_0, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m3CB2B000F85849416C185013E0FED3DAA3B4ED24_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___comparer0; NullCheck((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this); (( void (*) (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this, (int32_t)0, (RuntimeObject*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::.ctor(System.Int32,System.Collections.Generic.IEqualityComparer`1<TKey>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mF16C1C893CC8156C41EF3DC2715D73E58726BEDC_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, int32_t ___capacity0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2__ctor_mF16C1C893CC8156C41EF3DC2715D73E58726BEDC_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* G_B6_0 = NULL; Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * G_B6_1 = NULL; RuntimeObject* G_B5_0 = NULL; Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * G_B5_1 = NULL; { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); int32_t L_0 = ___capacity0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0020; } } { int32_t L_1 = ___capacity0; int32_t L_2 = L_1; RuntimeObject * L_3 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_2); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_4 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_4, (String_t*)_stringLiteral7CB1F56D3FBE09E809244FC8E13671CD876E3860, (RuntimeObject *)L_3, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2__ctor_mF16C1C893CC8156C41EF3DC2715D73E58726BEDC_RuntimeMethod_var); } IL_0020: { int32_t L_5 = ___capacity0; if ((((int32_t)L_5) <= ((int32_t)0))) { goto IL_002b; } } { int32_t L_6 = ___capacity0; NullCheck((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this); (( void (*) (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); } IL_002b: { RuntimeObject* L_7 = ___comparer1; RuntimeObject* L_8 = (RuntimeObject*)L_7; G_B5_0 = L_8; G_B5_1 = ((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)(__this)); if (L_8) { G_B6_0 = L_8; G_B6_1 = ((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)(__this)); goto IL_0036; } } { EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * L_9 = (( EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); G_B6_0 = ((RuntimeObject*)(L_9)); G_B6_1 = ((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)(G_B5_1)); } IL_0036: { NullCheck(G_B6_1); G_B6_1->set_comparer_6(G_B6_0); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::.ctor(System.Collections.Generic.IDictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mE4E3A4ED13B105F645333136D9D70DC484715011_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, RuntimeObject* ___dictionary0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___dictionary0; NullCheck((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this); (( void (*) (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *, RuntimeObject*, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this, (RuntimeObject*)L_0, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::.ctor(System.Collections.Generic.IDictionary`2<TKey,TValue>,System.Collections.Generic.IEqualityComparer`1<TKey>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m12E3FD08C16C918AA4F473FE1E8F25026ABCDF83_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, RuntimeObject* ___dictionary0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2__ctor_m12E3FD08C16C918AA4F473FE1E8F25026ABCDF83_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* V_1 = NULL; int32_t V_2 = 0; RuntimeObject* V_3 = NULL; KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 V_4; memset((&V_4), 0, sizeof(V_4)); Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * G_B2_0 = NULL; Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * G_B1_0 = NULL; int32_t G_B3_0 = 0; Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * G_B3_1 = NULL; { RuntimeObject* L_0 = ___dictionary0; G_B1_0 = ((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)(__this)); if (L_0) { G_B2_0 = ((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)(__this)); goto IL_0007; } } { G_B3_0 = 0; G_B3_1 = ((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)(G_B1_0)); goto IL_000d; } IL_0007: { RuntimeObject* L_1 = ___dictionary0; NullCheck((RuntimeObject*)L_1); int32_t L_2 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt64>>::get_Count() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_1); G_B3_0 = L_2; G_B3_1 = ((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)(G_B2_0)); } IL_000d: { RuntimeObject* L_3 = ___comparer1; NullCheck((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)G_B3_1); (( void (*) (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)G_B3_1, (int32_t)G_B3_0, (RuntimeObject*)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); RuntimeObject* L_4 = ___dictionary0; if (L_4) { goto IL_0021; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_5 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_5, (String_t*)_stringLiteralF18BFB74E613AFB11F36BDD80CF05CD5DFAD98D6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Dictionary_2__ctor_m12E3FD08C16C918AA4F473FE1E8F25026ABCDF83_RuntimeMethod_var); } IL_0021: { RuntimeObject* L_6 = ___dictionary0; NullCheck((RuntimeObject *)L_6); Type_t * L_7 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60((RuntimeObject *)L_6, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_8 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 6)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_9 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_8, /*hidden argument*/NULL); bool L_10 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_7, (Type_t *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0085; } } { RuntimeObject* L_11 = ___dictionary0; Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * L_12 = (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)Castclass((RuntimeObject*)L_11, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))); NullCheck(L_12); int32_t L_13 = (int32_t)L_12->get_count_2(); V_0 = (int32_t)L_13; NullCheck(L_12); EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_14 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)L_12->get_entries_1(); V_1 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)L_14; V_2 = (int32_t)0; goto IL_0080; } IL_004f: { EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_15 = V_1; int32_t L_16 = V_2; NullCheck(L_15); int32_t L_17 = (int32_t)((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16)))->get_hashCode_0(); if ((((int32_t)L_17) < ((int32_t)0))) { goto IL_007c; } } { EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_18 = V_1; int32_t L_19 = V_2; NullCheck(L_18); RuntimeObject * L_20 = (RuntimeObject *)((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)))->get_key_2(); EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_21 = V_1; int32_t L_22 = V_2; NullCheck(L_21); uint64_t L_23 = (uint64_t)((L_21)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_22)))->get_value_3(); NullCheck((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this); (( void (*) (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *, RuntimeObject *, uint64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this, (RuntimeObject *)L_20, (uint64_t)L_23, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); } IL_007c: { int32_t L_24 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1)); } IL_0080: { int32_t L_25 = V_2; int32_t L_26 = V_0; if ((((int32_t)L_25) < ((int32_t)L_26))) { goto IL_004f; } } { return; } IL_0085: { RuntimeObject* L_27 = ___dictionary0; NullCheck((RuntimeObject*)L_27); RuntimeObject* L_28 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt64>>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 9), (RuntimeObject*)L_27); V_3 = (RuntimeObject*)L_28; } IL_008c: try { // begin try (depth: 1) { goto IL_00aa; } IL_008e: { RuntimeObject* L_29 = V_3; NullCheck((RuntimeObject*)L_29); KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 L_30 = InterfaceFuncInvoker0< KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt64>>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 10), (RuntimeObject*)L_29); V_4 = (KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 )L_30; RuntimeObject * L_31 = KeyValuePair_2_get_Key_mF0C24D70ED98A551C33B48F08966A9B0F2BA3FF5_inline((KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 *)(KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 *)(&V_4), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); uint64_t L_32 = KeyValuePair_2_get_Value_mDA274D6518BE8D259246751EE0C3DDAEAFECF9D1_inline((KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 *)(KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 *)(&V_4), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); NullCheck((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this); (( void (*) (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *, RuntimeObject *, uint64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this, (RuntimeObject *)L_31, (uint64_t)L_32, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); } IL_00aa: { RuntimeObject* L_33 = V_3; NullCheck((RuntimeObject*)L_33); bool L_34 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, (RuntimeObject*)L_33); if (L_34) { goto IL_008e; } } IL_00b2: { IL2CPP_LEAVE(0xBE, FINALLY_00b4); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00b4; } FINALLY_00b4: { // begin finally (depth: 1) { RuntimeObject* L_35 = V_3; if (!L_35) { goto IL_00bd; } } IL_00b7: { RuntimeObject* L_36 = V_3; NullCheck((RuntimeObject*)L_36); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, (RuntimeObject*)L_36); } IL_00bd: { IL2CPP_END_FINALLY(180) } } // end finally (depth: 1) IL2CPP_CLEANUP(180) { IL2CPP_JUMP_TBL(0xBE, IL_00be) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_00be: { return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mC842245117A02DB91EBECF2585B27D2A8F1B284E_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2__ctor_mC842245117A02DB91EBECF2585B27D2A8F1B284E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_0 = DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C_inline(/*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_1 = ___info0; NullCheck((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0); ConditionalWeakTable_2_Add_mCC3585BE91A7BDFC49EEFDE4C11173A36D1FB5FE((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0, (RuntimeObject *)__this, (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_1, /*hidden argument*/ConditionalWeakTable_2_Add_mCC3585BE91A7BDFC49EEFDE4C11173A36D1FB5FE_RuntimeMethod_var); return; } } // System.Int32 System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Dictionary_2_get_Count_mC9B178C0A42E9F28C027AD885148B30AEA3D270C_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_count_2(); int32_t L_1 = (int32_t)__this->get_freeCount_5(); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)); } } // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::get_Keys() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyCollection_t5CCFEFE4D2B769236D5FE27DD98BD4C6CA1635DE * Dictionary_2_get_Keys_mBE6177F9FA551365B5A0B2E0382F510B9DFB91BA_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, const RuntimeMethod* method) { { KeyCollection_t5CCFEFE4D2B769236D5FE27DD98BD4C6CA1635DE * L_0 = (KeyCollection_t5CCFEFE4D2B769236D5FE27DD98BD4C6CA1635DE *)__this->get_keys_7(); if (L_0) { goto IL_0014; } } { KeyCollection_t5CCFEFE4D2B769236D5FE27DD98BD4C6CA1635DE * L_1 = (KeyCollection_t5CCFEFE4D2B769236D5FE27DD98BD4C6CA1635DE *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 13)); (( void (*) (KeyCollection_t5CCFEFE4D2B769236D5FE27DD98BD4C6CA1635DE *, Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)->methodPointer)(L_1, (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)); __this->set_keys_7(L_1); } IL_0014: { KeyCollection_t5CCFEFE4D2B769236D5FE27DD98BD4C6CA1635DE * L_2 = (KeyCollection_t5CCFEFE4D2B769236D5FE27DD98BD4C6CA1635DE *)__this->get_keys_7(); return L_2; } } // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::get_Values() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueCollection_t0FD9940EACD4156D2E752000E6E2B514E45212D2 * Dictionary_2_get_Values_m0FEF129621416F8AFC6A0906BFCECBE9E3FA20A9_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, const RuntimeMethod* method) { { ValueCollection_t0FD9940EACD4156D2E752000E6E2B514E45212D2 * L_0 = (ValueCollection_t0FD9940EACD4156D2E752000E6E2B514E45212D2 *)__this->get_values_8(); if (L_0) { goto IL_0014; } } { ValueCollection_t0FD9940EACD4156D2E752000E6E2B514E45212D2 * L_1 = (ValueCollection_t0FD9940EACD4156D2E752000E6E2B514E45212D2 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 15)); (( void (*) (ValueCollection_t0FD9940EACD4156D2E752000E6E2B514E45212D2 *, Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)->methodPointer)(L_1, (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)); __this->set_values_8(L_1); } IL_0014: { ValueCollection_t0FD9940EACD4156D2E752000E6E2B514E45212D2 * L_2 = (ValueCollection_t0FD9940EACD4156D2E752000E6E2B514E45212D2 *)__this->get_values_8(); return L_2; } } // TValue System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::get_Item(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Dictionary_2_get_Item_m1C4EA73C8B70AEC8E69C0E3247FE69E9F78DB1D0_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_get_Item_m1C4EA73C8B70AEC8E69C0E3247FE69E9F78DB1D0_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; NullCheck((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_001e; } } { EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_3 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)__this->get_entries_1(); int32_t L_4 = V_0; NullCheck(L_3); uint64_t L_5 = (uint64_t)((L_3)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_4)))->get_value_3(); return L_5; } IL_001e: { KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2 * L_6 = (KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2 *)il2cpp_codegen_object_new(KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2_il2cpp_TypeInfo_var); KeyNotFoundException__ctor_mE9E1C6E6E21842095342C0A2ED65EC201FB4F3C8(L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Dictionary_2_get_Item_m1C4EA73C8B70AEC8E69C0E3247FE69E9F78DB1D0_RuntimeMethod_var); } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::set_Item(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_m84499D4BF0E45A39D3EB5BCBF756ED11EB6DEB11_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, RuntimeObject * ___key0, uint64_t ___value1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; uint64_t L_1 = ___value1; NullCheck((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this); (( bool (*) (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *, RuntimeObject *, uint64_t, uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this, (RuntimeObject *)L_0, (uint64_t)L_1, (uint8_t)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::Add(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_m97C6A73B44AD715B5A5DD17E6E9F12232F3C6E63_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, RuntimeObject * ___key0, uint64_t ___value1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; uint64_t L_1 = ___value1; NullCheck((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this); (( bool (*) (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *, RuntimeObject *, uint64_t, uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this, (RuntimeObject *)L_0, (uint64_t)L_1, (uint8_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Add_mA24B034C3478FB0BD0C5E9B4E57FC8E99542177E_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 ___keyValuePair0, const RuntimeMethod* method) { { RuntimeObject * L_0 = KeyValuePair_2_get_Key_mF0C24D70ED98A551C33B48F08966A9B0F2BA3FF5_inline((KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 *)(KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); uint64_t L_1 = KeyValuePair_2_get_Value_mDA274D6518BE8D259246751EE0C3DDAEAFECF9D1_inline((KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 *)(KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); NullCheck((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this); (( void (*) (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *, RuntimeObject *, uint64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this, (RuntimeObject *)L_0, (uint64_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Contains(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Contains_mC67AA79E576A556B0DB98A080879714FB207CCC3_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 ___keyValuePair0, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = KeyValuePair_2_get_Key_mF0C24D70ED98A551C33B48F08966A9B0F2BA3FF5_inline((KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 *)(KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0038; } } { EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13 * L_3 = (( EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)); EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_4 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); uint64_t L_6 = (uint64_t)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); uint64_t L_7 = KeyValuePair_2_get_Value_mDA274D6518BE8D259246751EE0C3DDAEAFECF9D1_inline((KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 *)(KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); NullCheck((EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13 *)L_3); bool L_8 = VirtFuncInvoker2< bool, uint64_t, uint64_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.UInt64>::Equals(T,T) */, (EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13 *)L_3, (uint64_t)L_6, (uint64_t)L_7); if (!L_8) { goto IL_0038; } } { return (bool)1; } IL_0038: { return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Remove_mBD6C33534566B390BFD1896AAAFD2863ADAC6424_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 ___keyValuePair0, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = KeyValuePair_2_get_Key_mF0C24D70ED98A551C33B48F08966A9B0F2BA3FF5_inline((KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 *)(KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0046; } } { EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13 * L_3 = (( EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)); EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_4 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); uint64_t L_6 = (uint64_t)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); uint64_t L_7 = KeyValuePair_2_get_Value_mDA274D6518BE8D259246751EE0C3DDAEAFECF9D1_inline((KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 *)(KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); NullCheck((EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13 *)L_3); bool L_8 = VirtFuncInvoker2< bool, uint64_t, uint64_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.UInt64>::Equals(T,T) */, (EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13 *)L_3, (uint64_t)L_6, (uint64_t)L_7); if (!L_8) { goto IL_0046; } } { RuntimeObject * L_9 = KeyValuePair_2_get_Key_mF0C24D70ED98A551C33B48F08966A9B0F2BA3FF5_inline((KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 *)(KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this); (( bool (*) (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)->methodPointer)((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this, (RuntimeObject *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); return (bool)1; } IL_0046: { return (bool)0; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Clear_m577C08DE388796B56E9BB64BCD8F964783349AF4_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = (int32_t)__this->get_count_2(); if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_005a; } } { V_0 = (int32_t)0; goto IL_001a; } IL_000d: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_2 = V_0; NullCheck(L_1); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(L_2), (int32_t)(-1)); int32_t L_3 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)); } IL_001a: { int32_t L_4 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_5 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_5); if ((((int32_t)L_4) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length))))))) { goto IL_000d; } } { EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_6 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)__this->get_entries_1(); int32_t L_7 = (int32_t)__this->get_count_2(); Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_6, (int32_t)0, (int32_t)L_7, /*hidden argument*/NULL); __this->set_freeList_4((-1)); __this->set_count_2(0); __this->set_freeCount_5(0); int32_t L_8 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1))); } IL_005a: { return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::ContainsKey(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsKey_mBB7C1C8EF1586AE6EFD9D8DD0F6D45E9AB8F68CD_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; NullCheck((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); return (bool)((((int32_t)((((int32_t)L_1) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::ContainsValue(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsValue_m13D8D950290582A5F5FB545781C170BF572B5105_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, uint64_t ___value0, const RuntimeMethod* method) { int32_t V_0 = 0; EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13 * V_1 = NULL; int32_t V_2 = 0; { goto IL_0049; } { V_0 = (int32_t)0; goto IL_003e; } IL_000c: { EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_1 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)__this->get_entries_1(); int32_t L_2 = V_0; NullCheck(L_1); int32_t L_3 = (int32_t)((L_1)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_2)))->get_hashCode_0(); if ((((int32_t)L_3) < ((int32_t)0))) { goto IL_003a; } } { EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_4 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); uint64_t L_6 = (uint64_t)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); goto IL_003a; } { return (bool)1; } IL_003a: { int32_t L_7 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)); } IL_003e: { int32_t L_8 = V_0; int32_t L_9 = (int32_t)__this->get_count_2(); if ((((int32_t)L_8) < ((int32_t)L_9))) { goto IL_000c; } } { goto IL_0090; } IL_0049: { EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13 * L_10 = (( EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)); V_1 = (EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13 *)L_10; V_2 = (int32_t)0; goto IL_0087; } IL_0053: { EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_11 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)__this->get_entries_1(); int32_t L_12 = V_2; NullCheck(L_11); int32_t L_13 = (int32_t)((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12)))->get_hashCode_0(); if ((((int32_t)L_13) < ((int32_t)0))) { goto IL_0083; } } { EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13 * L_14 = V_1; EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_15 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)__this->get_entries_1(); int32_t L_16 = V_2; NullCheck(L_15); uint64_t L_17 = (uint64_t)((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16)))->get_value_3(); uint64_t L_18 = ___value0; NullCheck((EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13 *)L_14); bool L_19 = VirtFuncInvoker2< bool, uint64_t, uint64_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.UInt64>::Equals(T,T) */, (EqualityComparer_1_t5F0C8F88704710D11293F02D38AE92D81C964F13 *)L_14, (uint64_t)L_17, (uint64_t)L_18); if (!L_19) { goto IL_0083; } } { return (bool)1; } IL_0083: { int32_t L_20 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1)); } IL_0087: { int32_t L_21 = V_2; int32_t L_22 = (int32_t)__this->get_count_2(); if ((((int32_t)L_21) < ((int32_t)L_22))) { goto IL_0053; } } IL_0090: { return (bool)0; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_CopyTo_mE6861F93BC9F2B8249D859D96A4342E0199FF2EA_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, KeyValuePair_2U5BU5D_t6405A1D453F0ABF336D2B7B434910B1778715C78* ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_CopyTo_mE6861F93BC9F2B8249D859D96A4342E0199FF2EA_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* V_1 = NULL; int32_t V_2 = 0; { KeyValuePair_2U5BU5D_t6405A1D453F0ABF336D2B7B434910B1778715C78* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_CopyTo_mE6861F93BC9F2B8249D859D96A4342E0199FF2EA_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___index1; KeyValuePair_2U5BU5D_t6405A1D453F0ABF336D2B7B434910B1778715C78* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))) { goto IL_002e; } } IL_0018: { int32_t L_5 = ___index1; int32_t L_6 = L_5; RuntimeObject * L_7 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_6); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_8, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, (RuntimeObject *)L_7, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Dictionary_2_CopyTo_mE6861F93BC9F2B8249D859D96A4342E0199FF2EA_RuntimeMethod_var); } IL_002e: { KeyValuePair_2U5BU5D_t6405A1D453F0ABF336D2B7B434910B1778715C78* L_9 = ___array0; NullCheck(L_9); int32_t L_10 = ___index1; NullCheck((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this); int32_t L_11 = (( int32_t (*) (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)->methodPointer)((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_11))) { goto IL_0046; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_12, (String_t*)_stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Dictionary_2_CopyTo_mE6861F93BC9F2B8249D859D96A4342E0199FF2EA_RuntimeMethod_var); } IL_0046: { int32_t L_13 = (int32_t)__this->get_count_2(); V_0 = (int32_t)L_13; EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_14 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)__this->get_entries_1(); V_1 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)L_14; V_2 = (int32_t)0; goto IL_0094; } IL_0058: { EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_15 = V_1; int32_t L_16 = V_2; NullCheck(L_15); int32_t L_17 = (int32_t)((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16)))->get_hashCode_0(); if ((((int32_t)L_17) < ((int32_t)0))) { goto IL_0090; } } { KeyValuePair_2U5BU5D_t6405A1D453F0ABF336D2B7B434910B1778715C78* L_18 = ___array0; int32_t L_19 = ___index1; int32_t L_20 = (int32_t)L_19; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1)); EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_21 = V_1; int32_t L_22 = V_2; NullCheck(L_21); RuntimeObject * L_23 = (RuntimeObject *)((L_21)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_22)))->get_key_2(); EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_24 = V_1; int32_t L_25 = V_2; NullCheck(L_24); uint64_t L_26 = (uint64_t)((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_value_3(); KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 L_27; memset((&L_27), 0, sizeof(L_27)); KeyValuePair_2__ctor_m0F7C1AD545873E855BE321C3F5E7C9ABFF5D330D((&L_27), (RuntimeObject *)L_23, (uint64_t)L_26, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)); NullCheck(L_18); (L_18)->SetAt(static_cast<il2cpp_array_size_t>(L_20), (KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 )L_27); } IL_0090: { int32_t L_28 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)1)); } IL_0094: { int32_t L_29 = V_2; int32_t L_30 = V_0; if ((((int32_t)L_29) < ((int32_t)L_30))) { goto IL_0058; } } { return; } } // System.Collections.Generic.Dictionary`2_Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t23E8A8D4CB9A08A309C7A8334B81C7D0A9F6EF9C Dictionary_2_GetEnumerator_m03B565348CEB7DB0219020CA6A7E7499B8B8D062_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, const RuntimeMethod* method) { { Enumerator_t23E8A8D4CB9A08A309C7A8334B81C7D0A9F6EF9C L_0; memset((&L_0), 0, sizeof(L_0)); Enumerator__ctor_m79D4E6166225A38E07A9DA6D158C0D6F46E685C9((&L_0), (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 28)); return L_0; } } // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<TKey,TValue>> System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_Generic_IEnumerableU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_GetEnumerator_m31B6BA3457BDD54D723535E9721EA5F47D086758_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, const RuntimeMethod* method) { { Enumerator_t23E8A8D4CB9A08A309C7A8334B81C7D0A9F6EF9C L_0; memset((&L_0), 0, sizeof(L_0)); Enumerator__ctor_m79D4E6166225A38E07A9DA6D158C0D6F46E685C9((&L_0), (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 28)); Enumerator_t23E8A8D4CB9A08A309C7A8334B81C7D0A9F6EF9C L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 27), &L_1); return (RuntimeObject*)L_2; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_GetObjectData_m8039434A0B4F33C9AB7DEEC34D2FC002287C64E6_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_GetObjectData_m8039434A0B4F33C9AB7DEEC34D2FC002287C64E6_MetadataUsageId); s_Il2CppMethodInitialized = true; } KeyValuePair_2U5BU5D_t6405A1D453F0ABF336D2B7B434910B1778715C78* V_0 = NULL; String_t* G_B4_0 = NULL; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * G_B4_1 = NULL; String_t* G_B3_0 = NULL; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * G_B3_1 = NULL; int32_t G_B5_0 = 0; String_t* G_B5_1 = NULL; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * G_B5_2 = NULL; { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_GetObjectData_m8039434A0B4F33C9AB7DEEC34D2FC002287C64E6_RuntimeMethod_var); } IL_000e: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0; int32_t L_3 = (int32_t)__this->get_version_3(); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2); SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2, (String_t*)_stringLiteral2DA600BF9404843107A9531694F654E5662959E0, (int32_t)L_3, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = ___info0; RuntimeObject* L_5 = (RuntimeObject*)__this->get_comparer_6(); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 29)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_6, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4, (String_t*)_stringLiteral8FC94E4F5B71CECE2565D72417AACC804EE27A0D, (RuntimeObject *)L_5, (Type_t *)L_7, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_8 = ___info0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_9 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); G_B3_0 = _stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60; G_B3_1 = L_8; if (!L_9) { G_B4_0 = _stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60; G_B4_1 = L_8; goto IL_0052; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_10 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_10); G_B5_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))); G_B5_1 = G_B3_0; G_B5_2 = G_B3_1; goto IL_0053; } IL_0052: { G_B5_0 = 0; G_B5_1 = G_B4_0; G_B5_2 = G_B4_1; } IL_0053: { NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)G_B5_2); SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)G_B5_2, (String_t*)G_B5_1, (int32_t)G_B5_0, /*hidden argument*/NULL); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_11 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (!L_11) { goto IL_008a; } } { NullCheck((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this); int32_t L_12 = (( int32_t (*) (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)->methodPointer)((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)); KeyValuePair_2U5BU5D_t6405A1D453F0ABF336D2B7B434910B1778715C78* L_13 = (KeyValuePair_2U5BU5D_t6405A1D453F0ABF336D2B7B434910B1778715C78*)(KeyValuePair_2U5BU5D_t6405A1D453F0ABF336D2B7B434910B1778715C78*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 30), (uint32_t)L_12); V_0 = (KeyValuePair_2U5BU5D_t6405A1D453F0ABF336D2B7B434910B1778715C78*)L_13; KeyValuePair_2U5BU5D_t6405A1D453F0ABF336D2B7B434910B1778715C78* L_14 = V_0; NullCheck((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this); (( void (*) (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *, KeyValuePair_2U5BU5D_t6405A1D453F0ABF336D2B7B434910B1778715C78*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this, (KeyValuePair_2U5BU5D_t6405A1D453F0ABF336D2B7B434910B1778715C78*)L_14, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_15 = ___info0; KeyValuePair_2U5BU5D_t6405A1D453F0ABF336D2B7B434910B1778715C78* L_16 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_17 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 32)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_18 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_17, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_15); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_15, (String_t*)_stringLiteral1D89254A2BC78C1FF41C2F6767A0E00EE126B3BF, (RuntimeObject *)(RuntimeObject *)L_16, (Type_t *)L_18, /*hidden argument*/NULL); } IL_008a: { return; } } // System.Int32 System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::FindEntry(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Dictionary_2_FindEntry_mEF0AC9C8BE6FC0AAF3E2C40902E7885B4BB46EF6_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_FindEntry_mEF0AC9C8BE6FC0AAF3E2C40902E7885B4BB46EF6_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0013; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_FindEntry_mEF0AC9C8BE6FC0AAF3E2C40902E7885B4BB46EF6_RuntimeMethod_var); } IL_0013: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (!L_2) { goto IL_008d; } } { RuntimeObject* L_3 = (RuntimeObject*)__this->get_comparer_6(); RuntimeObject * L_4 = ___key0; NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Object>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_3, (RuntimeObject *)L_4); V_0 = (int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL))); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_6 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_7 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_8); NullCheck(L_6); int32_t L_9 = ((int32_t)((int32_t)L_7%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))))); int32_t L_10 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); V_1 = (int32_t)L_10; goto IL_0089; } IL_0042: { EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_11 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)__this->get_entries_1(); int32_t L_12 = V_1; NullCheck(L_11); int32_t L_13 = (int32_t)((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12)))->get_hashCode_0(); int32_t L_14 = V_0; if ((!(((uint32_t)L_13) == ((uint32_t)L_14)))) { goto IL_0077; } } { RuntimeObject* L_15 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_16 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)__this->get_entries_1(); int32_t L_17 = V_1; NullCheck(L_16); RuntimeObject * L_18 = (RuntimeObject *)((L_16)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_17)))->get_key_2(); RuntimeObject * L_19 = ___key0; NullCheck((RuntimeObject*)L_15); bool L_20 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Object>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_15, (RuntimeObject *)L_18, (RuntimeObject *)L_19); if (!L_20) { goto IL_0077; } } { int32_t L_21 = V_1; return L_21; } IL_0077: { EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_22 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)__this->get_entries_1(); int32_t L_23 = V_1; NullCheck(L_22); int32_t L_24 = (int32_t)((L_22)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_23)))->get_next_1(); V_1 = (int32_t)L_24; } IL_0089: { int32_t L_25 = V_1; if ((((int32_t)L_25) >= ((int32_t)0))) { goto IL_0042; } } IL_008d: { return (-1); } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::Initialize(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Initialize_m137C6A84336C70E5077C95E80128AFF290268BED_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, int32_t ___capacity0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Initialize_m137C6A84336C70E5077C95E80128AFF290268BED_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___capacity0; IL2CPP_RUNTIME_CLASS_INIT(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var); int32_t L_1 = HashHelpers_GetPrime_m743D7006C2BCBADC1DC8CACF7C5B78C9F6B38297((int32_t)L_0, /*hidden argument*/NULL); V_0 = (int32_t)L_1; int32_t L_2 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_3 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_2); __this->set_buckets_0(L_3); V_1 = (int32_t)0; goto IL_0024; } IL_0017: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_4 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_5 = V_1; NullCheck(L_4); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (int32_t)(-1)); int32_t L_6 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)); } IL_0024: { int32_t L_7 = V_1; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_8); if ((((int32_t)L_7) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length))))))) { goto IL_0017; } } { int32_t L_9 = V_0; EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_10 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)(EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 35), (uint32_t)L_9); __this->set_entries_1(L_10); __this->set_freeList_4((-1)); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::TryInsert(TKey,TValue,System.Collections.Generic.InsertionBehavior) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryInsert_m246BD73AB4DAEB4BE395BF8476ECB9EB482B6EE1_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, RuntimeObject * ___key0, uint64_t ___value1, uint8_t ___behavior2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_TryInsert_m246BD73AB4DAEB4BE395BF8476ECB9EB482B6EE1_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0013; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_TryInsert_m246BD73AB4DAEB4BE395BF8476ECB9EB482B6EE1_RuntimeMethod_var); } IL_0013: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (L_2) { goto IL_0022; } } { NullCheck((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this); (( void (*) (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); } IL_0022: { RuntimeObject* L_3 = (RuntimeObject*)__this->get_comparer_6(); RuntimeObject * L_4 = ___key0; NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Object>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_3, (RuntimeObject *)L_4); V_0 = (int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL))); int32_t L_6 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_7 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_7); V_1 = (int32_t)((int32_t)((int32_t)L_6%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length)))))); V_2 = (int32_t)0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_9 = V_1; NullCheck(L_8); int32_t L_10 = L_9; int32_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); V_4 = (int32_t)L_11; goto IL_00e1; } IL_0051: { EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_12 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)__this->get_entries_1(); int32_t L_13 = V_4; NullCheck(L_12); int32_t L_14 = (int32_t)((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_13)))->get_hashCode_0(); int32_t L_15 = V_0; if ((!(((uint32_t)L_14) == ((uint32_t)L_15)))) { goto IL_00c9; } } { RuntimeObject* L_16 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_17 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)__this->get_entries_1(); int32_t L_18 = V_4; NullCheck(L_17); RuntimeObject * L_19 = (RuntimeObject *)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->get_key_2(); RuntimeObject * L_20 = ___key0; NullCheck((RuntimeObject*)L_16); bool L_21 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Object>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_16, (RuntimeObject *)L_19, (RuntimeObject *)L_20); if (!L_21) { goto IL_00c9; } } { uint8_t L_22 = ___behavior2; if ((!(((uint32_t)L_22) == ((uint32_t)1)))) { goto IL_00ad; } } { EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_23 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)__this->get_entries_1(); int32_t L_24 = V_4; NullCheck(L_23); uint64_t L_25 = ___value1; ((L_23)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_24)))->set_value_3(L_25); int32_t L_26 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1))); return (bool)1; } IL_00ad: { uint8_t L_27 = ___behavior2; if ((!(((uint32_t)L_27) == ((uint32_t)2)))) { goto IL_00c7; } } { RuntimeObject * L_28 = ___key0; String_t* L_29 = SR_Format_mCDBB594267CC224AB2A69540BBA598151F0642C7((String_t*)_stringLiteral6FD577FD3A1BDC4DA28CD51D7A55EB397CEA3926, (RuntimeObject *)L_28, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_30 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_30, (String_t*)L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30, NULL, Dictionary_2_TryInsert_m246BD73AB4DAEB4BE395BF8476ECB9EB482B6EE1_RuntimeMethod_var); } IL_00c7: { return (bool)0; } IL_00c9: { int32_t L_31 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)1)); EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_32 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)__this->get_entries_1(); int32_t L_33 = V_4; NullCheck(L_32); int32_t L_34 = (int32_t)((L_32)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_33)))->get_next_1(); V_4 = (int32_t)L_34; } IL_00e1: { int32_t L_35 = V_4; if ((((int32_t)L_35) >= ((int32_t)0))) { goto IL_0051; } } { int32_t L_36 = (int32_t)__this->get_freeCount_5(); if ((((int32_t)L_36) <= ((int32_t)0))) { goto IL_0120; } } { int32_t L_37 = (int32_t)__this->get_freeList_4(); V_3 = (int32_t)L_37; EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_38 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)__this->get_entries_1(); int32_t L_39 = V_3; NullCheck(L_38); int32_t L_40 = (int32_t)((L_38)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_39)))->get_next_1(); __this->set_freeList_4(L_40); int32_t L_41 = (int32_t)__this->get_freeCount_5(); __this->set_freeCount_5(((int32_t)il2cpp_codegen_subtract((int32_t)L_41, (int32_t)1))); goto IL_0156; } IL_0120: { int32_t L_42 = (int32_t)__this->get_count_2(); EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_43 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)__this->get_entries_1(); NullCheck(L_43); if ((!(((uint32_t)L_42) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_43)->max_length)))))))) { goto IL_0141; } } { NullCheck((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this); (( void (*) (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 36)->methodPointer)((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 36)); int32_t L_44 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_45 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_45); V_1 = (int32_t)((int32_t)((int32_t)L_44%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_45)->max_length)))))); } IL_0141: { int32_t L_46 = (int32_t)__this->get_count_2(); V_3 = (int32_t)L_46; int32_t L_47 = (int32_t)__this->get_count_2(); __this->set_count_2(((int32_t)il2cpp_codegen_add((int32_t)L_47, (int32_t)1))); } IL_0156: { EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_48 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)__this->get_entries_1(); int32_t L_49 = V_3; NullCheck(L_48); int32_t L_50 = V_0; ((L_48)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_49)))->set_hashCode_0(L_50); EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_51 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)__this->get_entries_1(); int32_t L_52 = V_3; NullCheck(L_51); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_53 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_54 = V_1; NullCheck(L_53); int32_t L_55 = L_54; int32_t L_56 = (L_53)->GetAt(static_cast<il2cpp_array_size_t>(L_55)); ((L_51)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_52)))->set_next_1(L_56); EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_57 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)__this->get_entries_1(); int32_t L_58 = V_3; NullCheck(L_57); RuntimeObject * L_59 = ___key0; ((L_57)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_58)))->set_key_2(L_59); EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_60 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)__this->get_entries_1(); int32_t L_61 = V_3; NullCheck(L_60); uint64_t L_62 = ___value1; ((L_60)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_61)))->set_value_3(L_62); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_63 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_64 = V_1; int32_t L_65 = V_3; NullCheck(L_63); (L_63)->SetAt(static_cast<il2cpp_array_size_t>(L_64), (int32_t)L_65); int32_t L_66 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_66, (int32_t)1))); int32_t L_67 = V_2; if ((((int32_t)L_67) <= ((int32_t)((int32_t)100)))) { goto IL_01ed; } } { RuntimeObject* L_68 = (RuntimeObject*)__this->get_comparer_6(); if (!((NonRandomizedStringEqualityComparer_t92C20503D9C5060A557792ABCCC06EF2DD77E5D9 *)IsInst((RuntimeObject*)L_68, NonRandomizedStringEqualityComparer_t92C20503D9C5060A557792ABCCC06EF2DD77E5D9_il2cpp_TypeInfo_var))) { goto IL_01ed; } } { EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137 * L_69 = EqualityComparer_1_get_Default_m85F378D7298050D5DF422363D5EB30A218B769B7(/*hidden argument*/EqualityComparer_1_get_Default_m85F378D7298050D5DF422363D5EB30A218B769B7_RuntimeMethod_var); __this->set_comparer_6(((RuntimeObject*)Castclass((RuntimeObject*)L_69, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34)))); EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_70 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)__this->get_entries_1(); NullCheck(L_70); NullCheck((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this); (( void (*) (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *, int32_t, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)->methodPointer)((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this, (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_70)->max_length)))), (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)); } IL_01ed: { return (bool)1; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::OnDeserialization(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_OnDeserialization_mFEF4109F2F0976459EE65126CBE7F99D6277A4C4_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, RuntimeObject * ___sender0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_OnDeserialization_mFEF4109F2F0976459EE65126CBE7F99D6277A4C4_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; KeyValuePair_2U5BU5D_t6405A1D453F0ABF336D2B7B434910B1778715C78* V_3 = NULL; int32_t V_4 = 0; int32_t V_5 = 0; { IL2CPP_RUNTIME_CLASS_INIT(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_0 = DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C_inline(/*hidden argument*/NULL); NullCheck((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0); ConditionalWeakTable_2_TryGetValue_mDFCB6C303807E3F8998D196F4573870680E81F8B((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0, (RuntimeObject *)__this, (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 **)(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 **)(&V_0), /*hidden argument*/ConditionalWeakTable_2_TryGetValue_mDFCB6C303807E3F8998D196F4573870680E81F8B_RuntimeMethod_var); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_1 = V_0; if (L_1) { goto IL_0012; } } { return; } IL_0012: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = V_0; NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2); int32_t L_3 = SerializationInfo_GetInt32_mB47BD46A0BDBBAF5B47BB62E6EFF8E092E3F3656((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2, (String_t*)_stringLiteral2DA600BF9404843107A9531694F654E5662959E0, /*hidden argument*/NULL); V_1 = (int32_t)L_3; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = V_0; NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4); int32_t L_5 = SerializationInfo_GetInt32_mB47BD46A0BDBBAF5B47BB62E6EFF8E092E3F3656((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4, (String_t*)_stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60, /*hidden argument*/NULL); V_2 = (int32_t)L_5; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_6 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 29)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_7, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_6); RuntimeObject * L_9 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_6, (String_t*)_stringLiteral8FC94E4F5B71CECE2565D72417AACC804EE27A0D, (Type_t *)L_8, /*hidden argument*/NULL); __this->set_comparer_6(((RuntimeObject*)Castclass((RuntimeObject*)L_9, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34)))); int32_t L_10 = V_2; if (!L_10) { goto IL_010c; } } { int32_t L_11 = V_2; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_12 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_11); __this->set_buckets_0(L_12); V_4 = (int32_t)0; goto IL_0071; } IL_0061: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_13 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_14 = V_4; NullCheck(L_13); (L_13)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (int32_t)(-1)); int32_t L_15 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_0071: { int32_t L_16 = V_4; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_17 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_17); if ((((int32_t)L_16) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length))))))) { goto IL_0061; } } { int32_t L_18 = V_2; EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_19 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)(EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 35), (uint32_t)L_18); __this->set_entries_1(L_19); __this->set_freeList_4((-1)); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_20 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_21 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 32)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_22 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_21, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_20); RuntimeObject * L_23 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_20, (String_t*)_stringLiteral1D89254A2BC78C1FF41C2F6767A0E00EE126B3BF, (Type_t *)L_22, /*hidden argument*/NULL); V_3 = (KeyValuePair_2U5BU5D_t6405A1D453F0ABF336D2B7B434910B1778715C78*)((KeyValuePair_2U5BU5D_t6405A1D453F0ABF336D2B7B434910B1778715C78*)Castclass((RuntimeObject*)L_23, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 38))); KeyValuePair_2U5BU5D_t6405A1D453F0ABF336D2B7B434910B1778715C78* L_24 = V_3; if (L_24) { goto IL_00b9; } } { SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * L_25 = (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 *)il2cpp_codegen_object_new(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var); SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1(L_25, (String_t*)_stringLiteral1EB7E67EA75FFC3FCB05A9685FA4F1578DCACCF6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, NULL, Dictionary_2_OnDeserialization_mFEF4109F2F0976459EE65126CBE7F99D6277A4C4_RuntimeMethod_var); } IL_00b9: { V_5 = (int32_t)0; goto IL_0103; } IL_00be: { KeyValuePair_2U5BU5D_t6405A1D453F0ABF336D2B7B434910B1778715C78* L_26 = V_3; int32_t L_27 = V_5; NullCheck(L_26); RuntimeObject * L_28 = KeyValuePair_2_get_Key_mF0C24D70ED98A551C33B48F08966A9B0F2BA3FF5_inline((KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 *)(KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 *)((L_26)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_27))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); if (L_28) { goto IL_00dd; } } { SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * L_29 = (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 *)il2cpp_codegen_object_new(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var); SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1(L_29, (String_t*)_stringLiteralD6D1BC79DD62E9F1FB9A49A8F76F4BA8AB71AECD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_29, NULL, Dictionary_2_OnDeserialization_mFEF4109F2F0976459EE65126CBE7F99D6277A4C4_RuntimeMethod_var); } IL_00dd: { KeyValuePair_2U5BU5D_t6405A1D453F0ABF336D2B7B434910B1778715C78* L_30 = V_3; int32_t L_31 = V_5; NullCheck(L_30); RuntimeObject * L_32 = KeyValuePair_2_get_Key_mF0C24D70ED98A551C33B48F08966A9B0F2BA3FF5_inline((KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 *)(KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 *)((L_30)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_31))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); KeyValuePair_2U5BU5D_t6405A1D453F0ABF336D2B7B434910B1778715C78* L_33 = V_3; int32_t L_34 = V_5; NullCheck(L_33); uint64_t L_35 = KeyValuePair_2_get_Value_mDA274D6518BE8D259246751EE0C3DDAEAFECF9D1_inline((KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 *)(KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 *)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); NullCheck((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this); (( void (*) (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *, RuntimeObject *, uint64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this, (RuntimeObject *)L_32, (uint64_t)L_35, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); int32_t L_36 = V_5; V_5 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)1)); } IL_0103: { int32_t L_37 = V_5; KeyValuePair_2U5BU5D_t6405A1D453F0ABF336D2B7B434910B1778715C78* L_38 = V_3; NullCheck(L_38); if ((((int32_t)L_37) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_38)->max_length))))))) { goto IL_00be; } } { goto IL_0113; } IL_010c: { __this->set_buckets_0((Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)NULL); } IL_0113: { int32_t L_39 = V_1; __this->set_version_3(L_39); IL2CPP_RUNTIME_CLASS_INIT(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_40 = DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C_inline(/*hidden argument*/NULL); NullCheck((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_40); ConditionalWeakTable_2_Remove_mD69606977A8C793DEA91E373F7D886E4865D7FBD((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_40, (RuntimeObject *)__this, /*hidden argument*/ConditionalWeakTable_2_Remove_mD69606977A8C793DEA91E373F7D886E4865D7FBD_RuntimeMethod_var); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::Resize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Resize_mD73094B2065B3C50BDD2138C1065AD28666FAC18_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Resize_mD73094B2065B3C50BDD2138C1065AD28666FAC18_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_count_2(); IL2CPP_RUNTIME_CLASS_INIT(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var); int32_t L_1 = HashHelpers_ExpandPrime_m4245F4C95074EAA8F949FB3B734F611A533A6A0D((int32_t)L_0, /*hidden argument*/NULL); NullCheck((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this); (( void (*) (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *, int32_t, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)->methodPointer)((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this, (int32_t)L_1, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::Resize(System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Resize_m8AA5BC868AE4B09099EC4ED2E21DEB4AB0FA8315_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, int32_t ___newSize0, bool ___forceNewHashCodes1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Resize_m8AA5BC868AE4B09099EC4ED2E21DEB4AB0FA8315_MetadataUsageId); s_Il2CppMethodInitialized = true; } Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL; EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; { int32_t L_0 = ___newSize0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_0); V_0 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)L_1; V_2 = (int32_t)0; goto IL_0013; } IL_000b: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = V_0; int32_t L_3 = V_2; NullCheck(L_2); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (int32_t)(-1)); int32_t L_4 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)); } IL_0013: { int32_t L_5 = V_2; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_6 = V_0; NullCheck(L_6); if ((((int32_t)L_5) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length))))))) { goto IL_000b; } } { int32_t L_7 = ___newSize0; EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_8 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)(EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 35), (uint32_t)L_7); V_1 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)L_8; EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_9 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)__this->get_entries_1(); EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_10 = V_1; int32_t L_11 = (int32_t)__this->get_count_2(); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_9, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_10, (int32_t)0, (int32_t)L_11, /*hidden argument*/NULL); bool L_12 = ___forceNewHashCodes1; if (!L_12) { goto IL_0080; } } { V_3 = (int32_t)0; goto IL_0077; } IL_003b: { EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_13 = V_1; int32_t L_14 = V_3; NullCheck(L_13); int32_t L_15 = (int32_t)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_hashCode_0(); if ((((int32_t)L_15) == ((int32_t)(-1)))) { goto IL_0073; } } { EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_16 = V_1; int32_t L_17 = V_3; NullCheck(L_16); RuntimeObject* L_18 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_19 = V_1; int32_t L_20 = V_3; NullCheck(L_19); RuntimeObject * L_21 = (RuntimeObject *)((L_19)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_20)))->get_key_2(); NullCheck((RuntimeObject*)L_18); int32_t L_22 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Object>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_18, (RuntimeObject *)L_21); ((L_16)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_17)))->set_hashCode_0(((int32_t)((int32_t)L_22&(int32_t)((int32_t)2147483647LL)))); } IL_0073: { int32_t L_23 = V_3; V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); } IL_0077: { int32_t L_24 = V_3; int32_t L_25 = (int32_t)__this->get_count_2(); if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_003b; } } IL_0080: { V_4 = (int32_t)0; goto IL_00c3; } IL_0085: { EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_26 = V_1; int32_t L_27 = V_4; NullCheck(L_26); int32_t L_28 = (int32_t)((L_26)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_27)))->get_hashCode_0(); if ((((int32_t)L_28) < ((int32_t)0))) { goto IL_00bd; } } { EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_29 = V_1; int32_t L_30 = V_4; NullCheck(L_29); int32_t L_31 = (int32_t)((L_29)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_30)))->get_hashCode_0(); int32_t L_32 = ___newSize0; V_5 = (int32_t)((int32_t)((int32_t)L_31%(int32_t)L_32)); EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_33 = V_1; int32_t L_34 = V_4; NullCheck(L_33); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_35 = V_0; int32_t L_36 = V_5; NullCheck(L_35); int32_t L_37 = L_36; int32_t L_38 = (L_35)->GetAt(static_cast<il2cpp_array_size_t>(L_37)); ((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->set_next_1(L_38); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_39 = V_0; int32_t L_40 = V_5; int32_t L_41 = V_4; NullCheck(L_39); (L_39)->SetAt(static_cast<il2cpp_array_size_t>(L_40), (int32_t)L_41); } IL_00bd: { int32_t L_42 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1)); } IL_00c3: { int32_t L_43 = V_4; int32_t L_44 = (int32_t)__this->get_count_2(); if ((((int32_t)L_43) < ((int32_t)L_44))) { goto IL_0085; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_45 = V_0; __this->set_buckets_0(L_45); EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_46 = V_1; __this->set_entries_1(L_46); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::Remove(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_Remove_m8AAC7BEA6C1AAB40410697CF37B10161FCD622F1_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Remove_m8AAC7BEA6C1AAB40410697CF37B10161FCD622F1_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0013; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_Remove_m8AAC7BEA6C1AAB40410697CF37B10161FCD622F1_RuntimeMethod_var); } IL_0013: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (!L_2) { goto IL_015d; } } { RuntimeObject* L_3 = (RuntimeObject*)__this->get_comparer_6(); RuntimeObject * L_4 = ___key0; NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Object>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_3, (RuntimeObject *)L_4); V_0 = (int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL))); int32_t L_6 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_7 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_7); V_1 = (int32_t)((int32_t)((int32_t)L_6%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length)))))); V_2 = (int32_t)(-1); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_9 = V_1; NullCheck(L_8); int32_t L_10 = L_9; int32_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); V_3 = (int32_t)L_11; goto IL_0156; } IL_004c: { EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_12 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)__this->get_entries_1(); int32_t L_13 = V_3; NullCheck(L_12); int32_t L_14 = (int32_t)((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_13)))->get_hashCode_0(); int32_t L_15 = V_0; if ((!(((uint32_t)L_14) == ((uint32_t)L_15)))) { goto IL_0142; } } { RuntimeObject* L_16 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_17 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)__this->get_entries_1(); int32_t L_18 = V_3; NullCheck(L_17); RuntimeObject * L_19 = (RuntimeObject *)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->get_key_2(); RuntimeObject * L_20 = ___key0; NullCheck((RuntimeObject*)L_16); bool L_21 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Object>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_16, (RuntimeObject *)L_19, (RuntimeObject *)L_20); if (!L_21) { goto IL_0142; } } { int32_t L_22 = V_2; if ((((int32_t)L_22) >= ((int32_t)0))) { goto IL_00a4; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_23 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_24 = V_1; EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_25 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)__this->get_entries_1(); int32_t L_26 = V_3; NullCheck(L_25); int32_t L_27 = (int32_t)((L_25)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_26)))->get_next_1(); NullCheck(L_23); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (int32_t)L_27); goto IL_00c6; } IL_00a4: { EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_28 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)__this->get_entries_1(); int32_t L_29 = V_2; NullCheck(L_28); EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_30 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)__this->get_entries_1(); int32_t L_31 = V_3; NullCheck(L_30); int32_t L_32 = (int32_t)((L_30)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_31)))->get_next_1(); ((L_28)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_29)))->set_next_1(L_32); } IL_00c6: { EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_33 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)__this->get_entries_1(); int32_t L_34 = V_3; NullCheck(L_33); ((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->set_hashCode_0((-1)); EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_35 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)__this->get_entries_1(); int32_t L_36 = V_3; NullCheck(L_35); int32_t L_37 = (int32_t)__this->get_freeList_4(); ((L_35)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_36)))->set_next_1(L_37); EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_38 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)__this->get_entries_1(); int32_t L_39 = V_3; NullCheck(L_38); RuntimeObject ** L_40 = (RuntimeObject **)((L_38)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_39)))->get_address_of_key_2(); il2cpp_codegen_initobj(L_40, sizeof(RuntimeObject *)); EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_41 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)__this->get_entries_1(); int32_t L_42 = V_3; NullCheck(L_41); uint64_t* L_43 = (uint64_t*)((L_41)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_42)))->get_address_of_value_3(); il2cpp_codegen_initobj(L_43, sizeof(uint64_t)); int32_t L_44 = V_3; __this->set_freeList_4(L_44); int32_t L_45 = (int32_t)__this->get_freeCount_5(); __this->set_freeCount_5(((int32_t)il2cpp_codegen_add((int32_t)L_45, (int32_t)1))); int32_t L_46 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_46, (int32_t)1))); return (bool)1; } IL_0142: { int32_t L_47 = V_3; V_2 = (int32_t)L_47; EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_48 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)__this->get_entries_1(); int32_t L_49 = V_3; NullCheck(L_48); int32_t L_50 = (int32_t)((L_48)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_49)))->get_next_1(); V_3 = (int32_t)L_50; } IL_0156: { int32_t L_51 = V_3; if ((((int32_t)L_51) >= ((int32_t)0))) { goto IL_004c; } } IL_015d: { return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::TryGetValue(TKey,TValue&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_mF5FA2F0779557B1E58CC42783230E3A47ABB747D_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, RuntimeObject * ___key0, uint64_t* ___value1, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; NullCheck((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0025; } } { uint64_t* L_3 = ___value1; EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_4 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); uint64_t L_6 = (uint64_t)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); *(uint64_t*)L_3 = L_6; return (bool)1; } IL_0025: { uint64_t* L_7 = ___value1; il2cpp_codegen_initobj(L_7, sizeof(uint64_t)); return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_get_IsReadOnly_mBC2B50826412A273837ADF1A70957381F1B8E094_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_CopyTo_m43D5DA8834EF37B5172419D67AC8B284C55BDBD3_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, KeyValuePair_2U5BU5D_t6405A1D453F0ABF336D2B7B434910B1778715C78* ___array0, int32_t ___index1, const RuntimeMethod* method) { { KeyValuePair_2U5BU5D_t6405A1D453F0ABF336D2B7B434910B1778715C78* L_0 = ___array0; int32_t L_1 = ___index1; NullCheck((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this); (( void (*) (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *, KeyValuePair_2U5BU5D_t6405A1D453F0ABF336D2B7B434910B1778715C78*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this, (KeyValuePair_2U5BU5D_t6405A1D453F0ABF336D2B7B434910B1778715C78*)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_ICollection_CopyTo_mFED6F7DEA4CAFDC1D3DA34E37084797453E24BB6_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_ICollection_CopyTo_mFED6F7DEA4CAFDC1D3DA34E37084797453E24BB6_MetadataUsageId); s_Il2CppMethodInitialized = true; } KeyValuePair_2U5BU5D_t6405A1D453F0ABF336D2B7B434910B1778715C78* V_0 = NULL; DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56* V_1 = NULL; EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* V_2 = NULL; int32_t V_3 = 0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_4 = NULL; int32_t V_5 = 0; EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* V_6 = NULL; int32_t V_7 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mFED6F7DEA4CAFDC1D3DA34E37084797453E24BB6_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; NullCheck((RuntimeArray *)L_2); int32_t L_3 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0027; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_4 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_4, (String_t*)_stringLiteral2D77BE6D598A0A9376398980E66D10E319F1B52A, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mFED6F7DEA4CAFDC1D3DA34E37084797453E24BB6_RuntimeMethod_var); } IL_0027: { RuntimeArray * L_5 = ___array0; NullCheck((RuntimeArray *)L_5); int32_t L_6 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)L_5, (int32_t)0, /*hidden argument*/NULL); if (!L_6) { goto IL_0040; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_7, (String_t*)_stringLiteralC363992023785AF013BBCF2E20C19D9835184F82, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mFED6F7DEA4CAFDC1D3DA34E37084797453E24BB6_RuntimeMethod_var); } IL_0040: { int32_t L_8 = ___index1; if ((((int32_t)L_8) < ((int32_t)0))) { goto IL_004d; } } { int32_t L_9 = ___index1; RuntimeArray * L_10 = ___array0; NullCheck((RuntimeArray *)L_10); int32_t L_11 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_10, /*hidden argument*/NULL); if ((((int32_t)L_9) <= ((int32_t)L_11))) { goto IL_0063; } } IL_004d: { int32_t L_12 = ___index1; int32_t L_13 = L_12; RuntimeObject * L_14 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_13); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_15 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_15, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, (RuntimeObject *)L_14, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mFED6F7DEA4CAFDC1D3DA34E37084797453E24BB6_RuntimeMethod_var); } IL_0063: { RuntimeArray * L_16 = ___array0; NullCheck((RuntimeArray *)L_16); int32_t L_17 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_16, /*hidden argument*/NULL); int32_t L_18 = ___index1; NullCheck((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this); int32_t L_19 = (( int32_t (*) (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)->methodPointer)((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_19))) { goto IL_007e; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_20 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_20, (String_t*)_stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mFED6F7DEA4CAFDC1D3DA34E37084797453E24BB6_RuntimeMethod_var); } IL_007e: { RuntimeArray * L_21 = ___array0; V_0 = (KeyValuePair_2U5BU5D_t6405A1D453F0ABF336D2B7B434910B1778715C78*)((KeyValuePair_2U5BU5D_t6405A1D453F0ABF336D2B7B434910B1778715C78*)IsInst((RuntimeObject*)L_21, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 38))); KeyValuePair_2U5BU5D_t6405A1D453F0ABF336D2B7B434910B1778715C78* L_22 = V_0; if (!L_22) { goto IL_0091; } } { KeyValuePair_2U5BU5D_t6405A1D453F0ABF336D2B7B434910B1778715C78* L_23 = V_0; int32_t L_24 = ___index1; NullCheck((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this); (( void (*) (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *, KeyValuePair_2U5BU5D_t6405A1D453F0ABF336D2B7B434910B1778715C78*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this, (KeyValuePair_2U5BU5D_t6405A1D453F0ABF336D2B7B434910B1778715C78*)L_23, (int32_t)L_24, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); return; } IL_0091: { RuntimeArray * L_25 = ___array0; if (!((DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56*)IsInst((RuntimeObject*)L_25, DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56_il2cpp_TypeInfo_var))) { goto IL_00fb; } } { RuntimeArray * L_26 = ___array0; V_1 = (DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56*)((DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56*)IsInst((RuntimeObject*)L_26, DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56_il2cpp_TypeInfo_var)); EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_27 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)__this->get_entries_1(); V_2 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)L_27; V_3 = (int32_t)0; goto IL_00f1; } IL_00ab: { EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_28 = V_2; int32_t L_29 = V_3; NullCheck(L_28); int32_t L_30 = (int32_t)((L_28)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_29)))->get_hashCode_0(); if ((((int32_t)L_30) < ((int32_t)0))) { goto IL_00ed; } } { DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56* L_31 = V_1; int32_t L_32 = ___index1; int32_t L_33 = (int32_t)L_32; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1)); EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_34 = V_2; int32_t L_35 = V_3; NullCheck(L_34); RuntimeObject * L_36 = (RuntimeObject *)((L_34)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_35)))->get_key_2(); EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_37 = V_2; int32_t L_38 = V_3; NullCheck(L_37); uint64_t L_39 = (uint64_t)((L_37)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_38)))->get_value_3(); uint64_t L_40 = L_39; RuntimeObject * L_41 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 23), &L_40); DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_42; memset((&L_42), 0, sizeof(L_42)); DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B((&L_42), (RuntimeObject *)L_36, (RuntimeObject *)L_41, /*hidden argument*/NULL); NullCheck(L_31); (L_31)->SetAt(static_cast<il2cpp_array_size_t>(L_33), (DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 )L_42); } IL_00ed: { int32_t L_43 = V_3; V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_43, (int32_t)1)); } IL_00f1: { int32_t L_44 = V_3; int32_t L_45 = (int32_t)__this->get_count_2(); if ((((int32_t)L_44) < ((int32_t)L_45))) { goto IL_00ab; } } { return; } IL_00fb: { RuntimeArray * L_46 = ___array0; V_4 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)L_46, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_47 = V_4; if (L_47) { goto IL_0117; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_48 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_48, (String_t*)_stringLiteralC44D4E6C6AF3517A1CC72EDF7D1A5FFD7E3368F1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_48, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mFED6F7DEA4CAFDC1D3DA34E37084797453E24BB6_RuntimeMethod_var); } IL_0117: { } IL_0118: try { // begin try (depth: 1) { int32_t L_49 = (int32_t)__this->get_count_2(); V_5 = (int32_t)L_49; EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_50 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)__this->get_entries_1(); V_6 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)L_50; V_7 = (int32_t)0; goto IL_0173; } IL_012d: { EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_51 = V_6; int32_t L_52 = V_7; NullCheck(L_51); int32_t L_53 = (int32_t)((L_51)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_52)))->get_hashCode_0(); if ((((int32_t)L_53) < ((int32_t)0))) { goto IL_016d; } } IL_013e: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_54 = V_4; int32_t L_55 = ___index1; int32_t L_56 = (int32_t)L_55; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_56, (int32_t)1)); EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_57 = V_6; int32_t L_58 = V_7; NullCheck(L_57); RuntimeObject * L_59 = (RuntimeObject *)((L_57)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_58)))->get_key_2(); EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_60 = V_6; int32_t L_61 = V_7; NullCheck(L_60); uint64_t L_62 = (uint64_t)((L_60)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_61)))->get_value_3(); KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 L_63; memset((&L_63), 0, sizeof(L_63)); KeyValuePair_2__ctor_m0F7C1AD545873E855BE321C3F5E7C9ABFF5D330D((&L_63), (RuntimeObject *)L_59, (uint64_t)L_62, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)); KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 L_64 = L_63; RuntimeObject * L_65 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 25), &L_64); NullCheck(L_54); ArrayElementTypeCheck (L_54, L_65); (L_54)->SetAt(static_cast<il2cpp_array_size_t>(L_56), (RuntimeObject *)L_65); } IL_016d: { int32_t L_66 = V_7; V_7 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_66, (int32_t)1)); } IL_0173: { int32_t L_67 = V_7; int32_t L_68 = V_5; if ((((int32_t)L_67) < ((int32_t)L_68))) { goto IL_012d; } } IL_0179: { goto IL_018c; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArrayTypeMismatchException_tE34C1032B089C37399200997F079C640D23D9499_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_017b; throw e; } CATCH_017b: { // begin catch(System.ArrayTypeMismatchException) ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_69 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_69, (String_t*)_stringLiteralC44D4E6C6AF3517A1CC72EDF7D1A5FFD7E3368F1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_69, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mFED6F7DEA4CAFDC1D3DA34E37084797453E24BB6_RuntimeMethod_var); } // end catch (depth: 1) IL_018c: { return; } } // System.Collections.IEnumerator System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_IEnumerable_GetEnumerator_m75AA0D22E0AC76C9B7F4B40289614C4C15752D80_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, const RuntimeMethod* method) { { Enumerator_t23E8A8D4CB9A08A309C7A8334B81C7D0A9F6EF9C L_0; memset((&L_0), 0, sizeof(L_0)); Enumerator__ctor_m79D4E6166225A38E07A9DA6D158C0D6F46E685C9((&L_0), (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 28)); Enumerator_t23E8A8D4CB9A08A309C7A8334B81C7D0A9F6EF9C L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 27), &L_1); return (RuntimeObject*)L_2; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::System.Collections.ICollection.get_IsSynchronized() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_ICollection_get_IsSynchronized_mFB36A9863E5D66B9D7A2EF6848C69F9C6AC7AF3C_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Object System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::System.Collections.ICollection.get_SyncRoot() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Dictionary_2_System_Collections_ICollection_get_SyncRoot_m97A4EC206BF4D92DD53389B7D32F56DAAFE15A05_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_ICollection_get_SyncRoot_m97A4EC206BF4D92DD53389B7D32F56DAAFE15A05_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = (RuntimeObject *)__this->get__syncRoot_9(); if (L_0) { goto IL_001a; } } { RuntimeObject ** L_1 = (RuntimeObject **)__this->get_address_of__syncRoot_9(); RuntimeObject * L_2 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_2, /*hidden argument*/NULL); InterlockedCompareExchangeImpl<RuntimeObject *>((RuntimeObject **)(RuntimeObject **)L_1, (RuntimeObject *)L_2, (RuntimeObject *)NULL); } IL_001a: { RuntimeObject * L_3 = (RuntimeObject *)__this->get__syncRoot_9(); return L_3; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::System.Collections.IDictionary.get_IsFixedSize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_IDictionary_get_IsFixedSize_m1898C33777A3933DD7A9D475B30BA1CBA3F6B762_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::System.Collections.IDictionary.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_IDictionary_get_IsReadOnly_mAE5552A308DD76D1AAB6E339567AF19B302DB0A2_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Collections.ICollection System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::System.Collections.IDictionary.get_Keys() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_IDictionary_get_Keys_m8879E62039C91B435E4878F73590C7B5BFA3958E_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, const RuntimeMethod* method) { { NullCheck((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this); KeyCollection_t5CCFEFE4D2B769236D5FE27DD98BD4C6CA1635DE * L_0 = (( KeyCollection_t5CCFEFE4D2B769236D5FE27DD98BD4C6CA1635DE * (*) (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 39)->methodPointer)((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 39)); return L_0; } } // System.Collections.ICollection System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::System.Collections.IDictionary.get_Values() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_IDictionary_get_Values_m5418E6AFD660F331F799FDE904256A00DDFF15A7_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, const RuntimeMethod* method) { { NullCheck((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this); ValueCollection_t0FD9940EACD4156D2E752000E6E2B514E45212D2 * L_0 = (( ValueCollection_t0FD9940EACD4156D2E752000E6E2B514E45212D2 * (*) (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 40)->methodPointer)((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 40)); return L_0; } } // System.Object System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::System.Collections.IDictionary.get_Item(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Dictionary_2_System_Collections_IDictionary_get_Item_mBCF108D4E0E6BD2E8F48871529164368EC1DAF6F_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; bool L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)); if (!L_1) { goto IL_0030; } } { RuntimeObject * L_2 = ___key0; NullCheck((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this); int32_t L_3 = (( int32_t (*) (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 33))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); V_0 = (int32_t)L_3; int32_t L_4 = V_0; if ((((int32_t)L_4) < ((int32_t)0))) { goto IL_0030; } } { EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F* L_5 = (EntryU5BU5D_t9F5695E933CD95117BD9D685601ECBC23310403F*)__this->get_entries_1(); int32_t L_6 = V_0; NullCheck(L_5); uint64_t L_7 = (uint64_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_value_3(); uint64_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 23), &L_8); return L_9; } IL_0030: { return NULL; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::System.Collections.IDictionary.set_Item(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_IDictionary_set_Item_mCE2F1DB4842905A261DDF806361A7D8F38B0FA9A_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_IDictionary_set_Item_mCE2F1DB4842905A261DDF806361A7D8F38B0FA9A_MetadataUsageId); s_Il2CppMethodInitialized = true; } uint64_t V_0 = 0; RuntimeObject * V_1 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_mCE2F1DB4842905A261DDF806361A7D8F38B0FA9A_RuntimeMethod_var); } IL_000e: { RuntimeObject * L_2 = ___value1; if (L_2) { goto IL_002c; } } { il2cpp_codegen_initobj((&V_0), sizeof(uint64_t)); } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_4, (String_t*)_stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_mCE2F1DB4842905A261DDF806361A7D8F38B0FA9A_RuntimeMethod_var); } IL_002c: { } IL_002d: try { // begin try (depth: 1) { RuntimeObject * L_5 = ___key0; V_1 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 33))); } IL_0034: try { // begin try (depth: 2) RuntimeObject * L_6 = V_1; RuntimeObject * L_7 = ___value1; NullCheck((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this); (( void (*) (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *, RuntimeObject *, uint64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 43)->methodPointer)((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this, (RuntimeObject *)L_6, (uint64_t)((*(uint64_t*)((uint64_t*)UnBox(L_7, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 23))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 43)); goto IL_0064; } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0043; throw e; } CATCH_0043: { // begin catch(System.InvalidCastException) RuntimeObject * L_8 = ___value1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_9 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 44)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_9, /*hidden argument*/NULL); String_t* L_11 = SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C((String_t*)_stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6, (RuntimeObject *)L_8, (RuntimeObject *)L_10, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_12, (String_t*)L_11, (String_t*)_stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_mCE2F1DB4842905A261DDF806361A7D8F38B0FA9A_RuntimeMethod_var); } // end catch (depth: 2) IL_0064: { goto IL_0087; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0066; throw e; } CATCH_0066: { // begin catch(System.InvalidCastException) RuntimeObject * L_13 = ___key0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 45)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_14, /*hidden argument*/NULL); String_t* L_16 = SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C((String_t*)_stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6, (RuntimeObject *)L_13, (RuntimeObject *)L_15, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_17 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_17, (String_t*)L_16, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_mCE2F1DB4842905A261DDF806361A7D8F38B0FA9A_RuntimeMethod_var); } // end catch (depth: 1) IL_0087: { return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::IsCompatibleKey(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_IsCompatibleKey_mB0EFB56206C113B0800BACC3020DEEB530BCFF44_gshared (RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_IsCompatibleKey_mB0EFB56206C113B0800BACC3020DEEB530BCFF44_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_IsCompatibleKey_mB0EFB56206C113B0800BACC3020DEEB530BCFF44_RuntimeMethod_var); } IL_000e: { RuntimeObject * L_2 = ___key0; return (bool)((!(((RuntimeObject*)(RuntimeObject *)((RuntimeObject *)IsInst((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 33)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::System.Collections.IDictionary.Add(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_IDictionary_Add_m2F0040800EF78AE1004704EC359A3BB82FC8AC07_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_IDictionary_Add_m2F0040800EF78AE1004704EC359A3BB82FC8AC07_MetadataUsageId); s_Il2CppMethodInitialized = true; } uint64_t V_0 = 0; RuntimeObject * V_1 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_System_Collections_IDictionary_Add_m2F0040800EF78AE1004704EC359A3BB82FC8AC07_RuntimeMethod_var); } IL_000e: { RuntimeObject * L_2 = ___value1; if (L_2) { goto IL_002c; } } { il2cpp_codegen_initobj((&V_0), sizeof(uint64_t)); } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_4, (String_t*)_stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2_System_Collections_IDictionary_Add_m2F0040800EF78AE1004704EC359A3BB82FC8AC07_RuntimeMethod_var); } IL_002c: { } IL_002d: try { // begin try (depth: 1) { RuntimeObject * L_5 = ___key0; V_1 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 33))); } IL_0034: try { // begin try (depth: 2) RuntimeObject * L_6 = V_1; RuntimeObject * L_7 = ___value1; NullCheck((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this); (( void (*) (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *, RuntimeObject *, uint64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this, (RuntimeObject *)L_6, (uint64_t)((*(uint64_t*)((uint64_t*)UnBox(L_7, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 23))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); goto IL_0064; } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0043; throw e; } CATCH_0043: { // begin catch(System.InvalidCastException) RuntimeObject * L_8 = ___value1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_9 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 44)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_9, /*hidden argument*/NULL); String_t* L_11 = SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C((String_t*)_stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6, (RuntimeObject *)L_8, (RuntimeObject *)L_10, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_12, (String_t*)L_11, (String_t*)_stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Dictionary_2_System_Collections_IDictionary_Add_m2F0040800EF78AE1004704EC359A3BB82FC8AC07_RuntimeMethod_var); } // end catch (depth: 2) IL_0064: { goto IL_0087; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0066; throw e; } CATCH_0066: { // begin catch(System.InvalidCastException) RuntimeObject * L_13 = ___key0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 45)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_14, /*hidden argument*/NULL); String_t* L_16 = SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C((String_t*)_stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6, (RuntimeObject *)L_13, (RuntimeObject *)L_15, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_17 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_17, (String_t*)L_16, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, NULL, Dictionary_2_System_Collections_IDictionary_Add_m2F0040800EF78AE1004704EC359A3BB82FC8AC07_RuntimeMethod_var); } // end catch (depth: 1) IL_0087: { return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::System.Collections.IDictionary.Contains(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_IDictionary_Contains_m972B99F5F20A0186CADF963B2CBAD459F9227174_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; bool L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)); if (!L_1) { goto IL_0015; } } { RuntimeObject * L_2 = ___key0; NullCheck((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this); bool L_3 = (( bool (*) (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 46)->methodPointer)((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 33))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 46)); return L_3; } IL_0015: { return (bool)0; } } // System.Collections.IDictionaryEnumerator System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::System.Collections.IDictionary.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_IDictionary_GetEnumerator_m2C14B8C4601C13369C7722ECACD20849A67A5278_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, const RuntimeMethod* method) { { Enumerator_t23E8A8D4CB9A08A309C7A8334B81C7D0A9F6EF9C L_0; memset((&L_0), 0, sizeof(L_0)); Enumerator__ctor_m79D4E6166225A38E07A9DA6D158C0D6F46E685C9((&L_0), (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this, (int32_t)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 28)); Enumerator_t23E8A8D4CB9A08A309C7A8334B81C7D0A9F6EF9C L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 27), &L_1); return (RuntimeObject*)L_2; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.UInt64>::System.Collections.IDictionary.Remove(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_IDictionary_Remove_mABF8C2C10E98751CAE728EA478A04E881302467C_gshared (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; bool L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)); if (!L_1) { goto IL_0015; } } { RuntimeObject * L_2 = ___key0; NullCheck((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this); (( bool (*) (Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)->methodPointer)((Dictionary_2_tD14DC5369F04F6A27624B63CA0AA72B82A07B712 *)__this, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 33))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); } IL_0015: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m0E5AC1CAA6ADA1EB07D67C310D26A207CF7BE9DD_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, const RuntimeMethod* method) { { NullCheck((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this); (( void (*) (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this, (int32_t)0, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m11E6199824980796994EFCB6EE36704A4E121A60_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, int32_t ___capacity0, const RuntimeMethod* method) { { int32_t L_0 = ___capacity0; NullCheck((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this); (( void (*) (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this, (int32_t)L_0, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m9D12144C60A5392102B017861A9735256BC24D9D_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___comparer0; NullCheck((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this); (( void (*) (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this, (int32_t)0, (RuntimeObject*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::.ctor(System.Int32,System.Collections.Generic.IEqualityComparer`1<TKey>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m23B99696F0973EC02C18FF3BF2E9DD4779285050_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, int32_t ___capacity0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2__ctor_m23B99696F0973EC02C18FF3BF2E9DD4779285050_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* G_B6_0 = NULL; Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * G_B6_1 = NULL; RuntimeObject* G_B5_0 = NULL; Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * G_B5_1 = NULL; { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); int32_t L_0 = ___capacity0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0020; } } { int32_t L_1 = ___capacity0; int32_t L_2 = L_1; RuntimeObject * L_3 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_2); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_4 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_4, (String_t*)_stringLiteral7CB1F56D3FBE09E809244FC8E13671CD876E3860, (RuntimeObject *)L_3, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2__ctor_m23B99696F0973EC02C18FF3BF2E9DD4779285050_RuntimeMethod_var); } IL_0020: { int32_t L_5 = ___capacity0; if ((((int32_t)L_5) <= ((int32_t)0))) { goto IL_002b; } } { int32_t L_6 = ___capacity0; NullCheck((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this); (( void (*) (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); } IL_002b: { RuntimeObject* L_7 = ___comparer1; RuntimeObject* L_8 = (RuntimeObject*)L_7; G_B5_0 = L_8; G_B5_1 = ((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)(__this)); if (L_8) { G_B6_0 = L_8; G_B6_1 = ((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)(__this)); goto IL_0036; } } { EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * L_9 = (( EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); G_B6_0 = ((RuntimeObject*)(L_9)); G_B6_1 = ((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)(G_B5_1)); } IL_0036: { NullCheck(G_B6_1); G_B6_1->set_comparer_6(G_B6_0); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::.ctor(System.Collections.Generic.IDictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m4EDAAD832F90131349AEBFF323293EBA1ED60AAE_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, RuntimeObject* ___dictionary0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___dictionary0; NullCheck((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this); (( void (*) (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *, RuntimeObject*, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this, (RuntimeObject*)L_0, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::.ctor(System.Collections.Generic.IDictionary`2<TKey,TValue>,System.Collections.Generic.IEqualityComparer`1<TKey>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m0F5805773DA24602490A61918467B23A0C415372_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, RuntimeObject* ___dictionary0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2__ctor_m0F5805773DA24602490A61918467B23A0C415372_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* V_1 = NULL; int32_t V_2 = 0; RuntimeObject* V_3 = NULL; KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 V_4; memset((&V_4), 0, sizeof(V_4)); Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * G_B2_0 = NULL; Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * G_B1_0 = NULL; int32_t G_B3_0 = 0; Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * G_B3_1 = NULL; { RuntimeObject* L_0 = ___dictionary0; G_B1_0 = ((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)(__this)); if (L_0) { G_B2_0 = ((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)(__this)); goto IL_0007; } } { G_B3_0 = 0; G_B3_1 = ((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)(G_B1_0)); goto IL_000d; } IL_0007: { RuntimeObject* L_1 = ___dictionary0; NullCheck((RuntimeObject*)L_1); int32_t L_2 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Collections.Generic.KeyValuePair`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>>::get_Count() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_1); G_B3_0 = L_2; G_B3_1 = ((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)(G_B2_0)); } IL_000d: { RuntimeObject* L_3 = ___comparer1; NullCheck((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)G_B3_1); (( void (*) (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)G_B3_1, (int32_t)G_B3_0, (RuntimeObject*)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); RuntimeObject* L_4 = ___dictionary0; if (L_4) { goto IL_0021; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_5 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_5, (String_t*)_stringLiteralF18BFB74E613AFB11F36BDD80CF05CD5DFAD98D6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Dictionary_2__ctor_m0F5805773DA24602490A61918467B23A0C415372_RuntimeMethod_var); } IL_0021: { RuntimeObject* L_6 = ___dictionary0; NullCheck((RuntimeObject *)L_6); Type_t * L_7 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60((RuntimeObject *)L_6, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_8 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 6)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_9 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_8, /*hidden argument*/NULL); bool L_10 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_7, (Type_t *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0085; } } { RuntimeObject* L_11 = ___dictionary0; Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * L_12 = (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)Castclass((RuntimeObject*)L_11, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))); NullCheck(L_12); int32_t L_13 = (int32_t)L_12->get_count_2(); V_0 = (int32_t)L_13; NullCheck(L_12); EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_14 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)L_12->get_entries_1(); V_1 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)L_14; V_2 = (int32_t)0; goto IL_0080; } IL_004f: { EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_15 = V_1; int32_t L_16 = V_2; NullCheck(L_15); int32_t L_17 = (int32_t)((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16)))->get_hashCode_0(); if ((((int32_t)L_17) < ((int32_t)0))) { goto IL_007c; } } { EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_18 = V_1; int32_t L_19 = V_2; NullCheck(L_18); RuntimeObject * L_20 = (RuntimeObject *)((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)))->get_key_2(); EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_21 = V_1; int32_t L_22 = V_2; NullCheck(L_21); NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 L_23 = (NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 )((L_21)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_22)))->get_value_3(); NullCheck((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this); (( void (*) (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *, RuntimeObject *, NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this, (RuntimeObject *)L_20, (NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 )L_23, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); } IL_007c: { int32_t L_24 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1)); } IL_0080: { int32_t L_25 = V_2; int32_t L_26 = V_0; if ((((int32_t)L_25) < ((int32_t)L_26))) { goto IL_004f; } } { return; } IL_0085: { RuntimeObject* L_27 = ___dictionary0; NullCheck((RuntimeObject*)L_27); RuntimeObject* L_28 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 9), (RuntimeObject*)L_27); V_3 = (RuntimeObject*)L_28; } IL_008c: try { // begin try (depth: 1) { goto IL_00aa; } IL_008e: { RuntimeObject* L_29 = V_3; NullCheck((RuntimeObject*)L_29); KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 L_30 = InterfaceFuncInvoker0< KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 10), (RuntimeObject*)L_29); V_4 = (KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 )L_30; RuntimeObject * L_31 = KeyValuePair_2_get_Key_mB917E774A987623D40C5DA2EBA21D45C3EB5C0F1_inline((KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 *)(KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 *)(&V_4), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 L_32 = KeyValuePair_2_get_Value_m195A8E1241A34205F7B6E149F05085770F740431_inline((KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 *)(KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 *)(&V_4), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); NullCheck((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this); (( void (*) (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *, RuntimeObject *, NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this, (RuntimeObject *)L_31, (NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 )L_32, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); } IL_00aa: { RuntimeObject* L_33 = V_3; NullCheck((RuntimeObject*)L_33); bool L_34 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, (RuntimeObject*)L_33); if (L_34) { goto IL_008e; } } IL_00b2: { IL2CPP_LEAVE(0xBE, FINALLY_00b4); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00b4; } FINALLY_00b4: { // begin finally (depth: 1) { RuntimeObject* L_35 = V_3; if (!L_35) { goto IL_00bd; } } IL_00b7: { RuntimeObject* L_36 = V_3; NullCheck((RuntimeObject*)L_36); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, (RuntimeObject*)L_36); } IL_00bd: { IL2CPP_END_FINALLY(180) } } // end finally (depth: 1) IL2CPP_CLEANUP(180) { IL2CPP_JUMP_TBL(0xBE, IL_00be) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_00be: { return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m51ED019A699CB2314427FF6FA0F0403C0B0DC489_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2__ctor_m51ED019A699CB2314427FF6FA0F0403C0B0DC489_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_0 = DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C_inline(/*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_1 = ___info0; NullCheck((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0); ConditionalWeakTable_2_Add_mCC3585BE91A7BDFC49EEFDE4C11173A36D1FB5FE((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0, (RuntimeObject *)__this, (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_1, /*hidden argument*/ConditionalWeakTable_2_Add_mCC3585BE91A7BDFC49EEFDE4C11173A36D1FB5FE_RuntimeMethod_var); return; } } // System.Int32 System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Dictionary_2_get_Count_m908DDF1CF797B7F15E5A25474DC09C941DDA68CD_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_count_2(); int32_t L_1 = (int32_t)__this->get_freeCount_5(); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)); } } // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::get_Keys() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyCollection_t5EC5AE8701559CAD8D6FE2C0D5EA5AF33617F16D * Dictionary_2_get_Keys_mCA83DE1D2D0F8B48FF8D09C9EC26CC171B817ADB_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, const RuntimeMethod* method) { { KeyCollection_t5EC5AE8701559CAD8D6FE2C0D5EA5AF33617F16D * L_0 = (KeyCollection_t5EC5AE8701559CAD8D6FE2C0D5EA5AF33617F16D *)__this->get_keys_7(); if (L_0) { goto IL_0014; } } { KeyCollection_t5EC5AE8701559CAD8D6FE2C0D5EA5AF33617F16D * L_1 = (KeyCollection_t5EC5AE8701559CAD8D6FE2C0D5EA5AF33617F16D *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 13)); (( void (*) (KeyCollection_t5EC5AE8701559CAD8D6FE2C0D5EA5AF33617F16D *, Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)->methodPointer)(L_1, (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)); __this->set_keys_7(L_1); } IL_0014: { KeyCollection_t5EC5AE8701559CAD8D6FE2C0D5EA5AF33617F16D * L_2 = (KeyCollection_t5EC5AE8701559CAD8D6FE2C0D5EA5AF33617F16D *)__this->get_keys_7(); return L_2; } } // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::get_Values() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueCollection_tC94120C5B491DF84E829416B86156893C29B845F * Dictionary_2_get_Values_m657A622EDEB72EDF65B4FED3481419448F77E449_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, const RuntimeMethod* method) { { ValueCollection_tC94120C5B491DF84E829416B86156893C29B845F * L_0 = (ValueCollection_tC94120C5B491DF84E829416B86156893C29B845F *)__this->get_values_8(); if (L_0) { goto IL_0014; } } { ValueCollection_tC94120C5B491DF84E829416B86156893C29B845F * L_1 = (ValueCollection_tC94120C5B491DF84E829416B86156893C29B845F *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 15)); (( void (*) (ValueCollection_tC94120C5B491DF84E829416B86156893C29B845F *, Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)->methodPointer)(L_1, (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)); __this->set_values_8(L_1); } IL_0014: { ValueCollection_tC94120C5B491DF84E829416B86156893C29B845F * L_2 = (ValueCollection_tC94120C5B491DF84E829416B86156893C29B845F *)__this->get_values_8(); return L_2; } } // TValue System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::get_Item(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 Dictionary_2_get_Item_mF410E9D589217CA977DCD104077E273FE3AAF8BB_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_get_Item_mF410E9D589217CA977DCD104077E273FE3AAF8BB_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; NullCheck((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_001e; } } { EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_3 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)__this->get_entries_1(); int32_t L_4 = V_0; NullCheck(L_3); NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 L_5 = (NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 )((L_3)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_4)))->get_value_3(); return L_5; } IL_001e: { KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2 * L_6 = (KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2 *)il2cpp_codegen_object_new(KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2_il2cpp_TypeInfo_var); KeyNotFoundException__ctor_mE9E1C6E6E21842095342C0A2ED65EC201FB4F3C8(L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Dictionary_2_get_Item_mF410E9D589217CA977DCD104077E273FE3AAF8BB_RuntimeMethod_var); } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::set_Item(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_mEE42BAA4BF662A122F9313CC31E26606E9467E16_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, RuntimeObject * ___key0, NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 ___value1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 L_1 = ___value1; NullCheck((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this); (( bool (*) (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *, RuntimeObject *, NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 , uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this, (RuntimeObject *)L_0, (NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 )L_1, (uint8_t)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::Add(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_m4DFCF43FBEB8BD34A448CD5E0556725D4E5D92DB_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, RuntimeObject * ___key0, NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 ___value1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 L_1 = ___value1; NullCheck((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this); (( bool (*) (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *, RuntimeObject *, NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 , uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this, (RuntimeObject *)L_0, (NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 )L_1, (uint8_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Add_m6885861F749385941C8E9283B42BF09D3A49FF14_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 ___keyValuePair0, const RuntimeMethod* method) { { RuntimeObject * L_0 = KeyValuePair_2_get_Key_mB917E774A987623D40C5DA2EBA21D45C3EB5C0F1_inline((KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 *)(KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 L_1 = KeyValuePair_2_get_Value_m195A8E1241A34205F7B6E149F05085770F740431_inline((KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 *)(KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); NullCheck((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this); (( void (*) (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *, RuntimeObject *, NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this, (RuntimeObject *)L_0, (NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Contains(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Contains_m7B4F4496D93AA7A610240E22F547D69961A0144A_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 ___keyValuePair0, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = KeyValuePair_2_get_Key_mB917E774A987623D40C5DA2EBA21D45C3EB5C0F1_inline((KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 *)(KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0038; } } { EqualityComparer_1_tEECFCAB1869EEE7F99E976A8E87C8CEC607C8AC5 * L_3 = (( EqualityComparer_1_tEECFCAB1869EEE7F99E976A8E87C8CEC607C8AC5 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)); EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_4 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 L_6 = (NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 )((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 L_7 = KeyValuePair_2_get_Value_m195A8E1241A34205F7B6E149F05085770F740431_inline((KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 *)(KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); NullCheck((EqualityComparer_1_tEECFCAB1869EEE7F99E976A8E87C8CEC607C8AC5 *)L_3); bool L_8 = VirtFuncInvoker2< bool, NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 , NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.Networking.NetworkBroadcastResult>::Equals(T,T) */, (EqualityComparer_1_tEECFCAB1869EEE7F99E976A8E87C8CEC607C8AC5 *)L_3, (NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 )L_6, (NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 )L_7); if (!L_8) { goto IL_0038; } } { return (bool)1; } IL_0038: { return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Remove_mA380E729FF2BE9EE82C9CE33241A1C47B3D9EE4A_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 ___keyValuePair0, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = KeyValuePair_2_get_Key_mB917E774A987623D40C5DA2EBA21D45C3EB5C0F1_inline((KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 *)(KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0046; } } { EqualityComparer_1_tEECFCAB1869EEE7F99E976A8E87C8CEC607C8AC5 * L_3 = (( EqualityComparer_1_tEECFCAB1869EEE7F99E976A8E87C8CEC607C8AC5 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)); EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_4 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 L_6 = (NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 )((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 L_7 = KeyValuePair_2_get_Value_m195A8E1241A34205F7B6E149F05085770F740431_inline((KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 *)(KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); NullCheck((EqualityComparer_1_tEECFCAB1869EEE7F99E976A8E87C8CEC607C8AC5 *)L_3); bool L_8 = VirtFuncInvoker2< bool, NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 , NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.Networking.NetworkBroadcastResult>::Equals(T,T) */, (EqualityComparer_1_tEECFCAB1869EEE7F99E976A8E87C8CEC607C8AC5 *)L_3, (NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 )L_6, (NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 )L_7); if (!L_8) { goto IL_0046; } } { RuntimeObject * L_9 = KeyValuePair_2_get_Key_mB917E774A987623D40C5DA2EBA21D45C3EB5C0F1_inline((KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 *)(KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this); (( bool (*) (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)->methodPointer)((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this, (RuntimeObject *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); return (bool)1; } IL_0046: { return (bool)0; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Clear_m5CC0BF483EF605C9E55B9C701DA7E7A40766D36A_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = (int32_t)__this->get_count_2(); if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_005a; } } { V_0 = (int32_t)0; goto IL_001a; } IL_000d: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_2 = V_0; NullCheck(L_1); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(L_2), (int32_t)(-1)); int32_t L_3 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)); } IL_001a: { int32_t L_4 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_5 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_5); if ((((int32_t)L_4) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length))))))) { goto IL_000d; } } { EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_6 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)__this->get_entries_1(); int32_t L_7 = (int32_t)__this->get_count_2(); Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_6, (int32_t)0, (int32_t)L_7, /*hidden argument*/NULL); __this->set_freeList_4((-1)); __this->set_count_2(0); __this->set_freeCount_5(0); int32_t L_8 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1))); } IL_005a: { return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::ContainsKey(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsKey_m6C59376F423673A15B1A2556F7FA1BCD3B0EB4EE_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; NullCheck((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); return (bool)((((int32_t)((((int32_t)L_1) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::ContainsValue(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsValue_m04CB59B4C5D1C8D3F4197A43496920A7A580E19E_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 ___value0, const RuntimeMethod* method) { int32_t V_0 = 0; EqualityComparer_1_tEECFCAB1869EEE7F99E976A8E87C8CEC607C8AC5 * V_1 = NULL; int32_t V_2 = 0; { goto IL_0049; } { V_0 = (int32_t)0; goto IL_003e; } IL_000c: { EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_1 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)__this->get_entries_1(); int32_t L_2 = V_0; NullCheck(L_1); int32_t L_3 = (int32_t)((L_1)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_2)))->get_hashCode_0(); if ((((int32_t)L_3) < ((int32_t)0))) { goto IL_003a; } } { EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_4 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 L_6 = (NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 )((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); goto IL_003a; } { return (bool)1; } IL_003a: { int32_t L_7 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)); } IL_003e: { int32_t L_8 = V_0; int32_t L_9 = (int32_t)__this->get_count_2(); if ((((int32_t)L_8) < ((int32_t)L_9))) { goto IL_000c; } } { goto IL_0090; } IL_0049: { EqualityComparer_1_tEECFCAB1869EEE7F99E976A8E87C8CEC607C8AC5 * L_10 = (( EqualityComparer_1_tEECFCAB1869EEE7F99E976A8E87C8CEC607C8AC5 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)); V_1 = (EqualityComparer_1_tEECFCAB1869EEE7F99E976A8E87C8CEC607C8AC5 *)L_10; V_2 = (int32_t)0; goto IL_0087; } IL_0053: { EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_11 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)__this->get_entries_1(); int32_t L_12 = V_2; NullCheck(L_11); int32_t L_13 = (int32_t)((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12)))->get_hashCode_0(); if ((((int32_t)L_13) < ((int32_t)0))) { goto IL_0083; } } { EqualityComparer_1_tEECFCAB1869EEE7F99E976A8E87C8CEC607C8AC5 * L_14 = V_1; EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_15 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)__this->get_entries_1(); int32_t L_16 = V_2; NullCheck(L_15); NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 L_17 = (NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 )((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16)))->get_value_3(); NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 L_18 = ___value0; NullCheck((EqualityComparer_1_tEECFCAB1869EEE7F99E976A8E87C8CEC607C8AC5 *)L_14); bool L_19 = VirtFuncInvoker2< bool, NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 , NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.Networking.NetworkBroadcastResult>::Equals(T,T) */, (EqualityComparer_1_tEECFCAB1869EEE7F99E976A8E87C8CEC607C8AC5 *)L_14, (NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 )L_17, (NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 )L_18); if (!L_19) { goto IL_0083; } } { return (bool)1; } IL_0083: { int32_t L_20 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1)); } IL_0087: { int32_t L_21 = V_2; int32_t L_22 = (int32_t)__this->get_count_2(); if ((((int32_t)L_21) < ((int32_t)L_22))) { goto IL_0053; } } IL_0090: { return (bool)0; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_CopyTo_m88949A91494196528145F6A5EF40E5E52B2942D4_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, KeyValuePair_2U5BU5D_tE9E64782D397CFFA60C8BDDFA88D4647AD8932C5* ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_CopyTo_m88949A91494196528145F6A5EF40E5E52B2942D4_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* V_1 = NULL; int32_t V_2 = 0; { KeyValuePair_2U5BU5D_tE9E64782D397CFFA60C8BDDFA88D4647AD8932C5* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_CopyTo_m88949A91494196528145F6A5EF40E5E52B2942D4_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___index1; KeyValuePair_2U5BU5D_tE9E64782D397CFFA60C8BDDFA88D4647AD8932C5* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))) { goto IL_002e; } } IL_0018: { int32_t L_5 = ___index1; int32_t L_6 = L_5; RuntimeObject * L_7 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_6); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_8, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, (RuntimeObject *)L_7, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Dictionary_2_CopyTo_m88949A91494196528145F6A5EF40E5E52B2942D4_RuntimeMethod_var); } IL_002e: { KeyValuePair_2U5BU5D_tE9E64782D397CFFA60C8BDDFA88D4647AD8932C5* L_9 = ___array0; NullCheck(L_9); int32_t L_10 = ___index1; NullCheck((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this); int32_t L_11 = (( int32_t (*) (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)->methodPointer)((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_11))) { goto IL_0046; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_12, (String_t*)_stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Dictionary_2_CopyTo_m88949A91494196528145F6A5EF40E5E52B2942D4_RuntimeMethod_var); } IL_0046: { int32_t L_13 = (int32_t)__this->get_count_2(); V_0 = (int32_t)L_13; EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_14 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)__this->get_entries_1(); V_1 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)L_14; V_2 = (int32_t)0; goto IL_0094; } IL_0058: { EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_15 = V_1; int32_t L_16 = V_2; NullCheck(L_15); int32_t L_17 = (int32_t)((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16)))->get_hashCode_0(); if ((((int32_t)L_17) < ((int32_t)0))) { goto IL_0090; } } { KeyValuePair_2U5BU5D_tE9E64782D397CFFA60C8BDDFA88D4647AD8932C5* L_18 = ___array0; int32_t L_19 = ___index1; int32_t L_20 = (int32_t)L_19; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1)); EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_21 = V_1; int32_t L_22 = V_2; NullCheck(L_21); RuntimeObject * L_23 = (RuntimeObject *)((L_21)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_22)))->get_key_2(); EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_24 = V_1; int32_t L_25 = V_2; NullCheck(L_24); NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 L_26 = (NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 )((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_value_3(); KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 L_27; memset((&L_27), 0, sizeof(L_27)); KeyValuePair_2__ctor_m83E76CCB593E8CF4512E011C4323169B8BC2E4BE((&L_27), (RuntimeObject *)L_23, (NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 )L_26, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)); NullCheck(L_18); (L_18)->SetAt(static_cast<il2cpp_array_size_t>(L_20), (KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 )L_27); } IL_0090: { int32_t L_28 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)1)); } IL_0094: { int32_t L_29 = V_2; int32_t L_30 = V_0; if ((((int32_t)L_29) < ((int32_t)L_30))) { goto IL_0058; } } { return; } } // System.Collections.Generic.Dictionary`2_Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tBB88D2BAC6A5B7E83EAF0774C620EF99949E9772 Dictionary_2_GetEnumerator_m057D42D46771A3BB314A168AACB509E1EC5BB98B_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, const RuntimeMethod* method) { { Enumerator_tBB88D2BAC6A5B7E83EAF0774C620EF99949E9772 L_0; memset((&L_0), 0, sizeof(L_0)); Enumerator__ctor_mBEEF2AAEEB4D901A3076AE8AEBD9FCD7E8D0E300((&L_0), (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 28)); return L_0; } } // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<TKey,TValue>> System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_Generic_IEnumerableU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_GetEnumerator_m1992010F70AFD838B2DD16DA366E91B39D94032F_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, const RuntimeMethod* method) { { Enumerator_tBB88D2BAC6A5B7E83EAF0774C620EF99949E9772 L_0; memset((&L_0), 0, sizeof(L_0)); Enumerator__ctor_mBEEF2AAEEB4D901A3076AE8AEBD9FCD7E8D0E300((&L_0), (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 28)); Enumerator_tBB88D2BAC6A5B7E83EAF0774C620EF99949E9772 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 27), &L_1); return (RuntimeObject*)L_2; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_GetObjectData_m8597240B3C52C2AFFBA62596E72D982DEDF9D413_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_GetObjectData_m8597240B3C52C2AFFBA62596E72D982DEDF9D413_MetadataUsageId); s_Il2CppMethodInitialized = true; } KeyValuePair_2U5BU5D_tE9E64782D397CFFA60C8BDDFA88D4647AD8932C5* V_0 = NULL; String_t* G_B4_0 = NULL; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * G_B4_1 = NULL; String_t* G_B3_0 = NULL; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * G_B3_1 = NULL; int32_t G_B5_0 = 0; String_t* G_B5_1 = NULL; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * G_B5_2 = NULL; { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_GetObjectData_m8597240B3C52C2AFFBA62596E72D982DEDF9D413_RuntimeMethod_var); } IL_000e: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0; int32_t L_3 = (int32_t)__this->get_version_3(); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2); SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2, (String_t*)_stringLiteral2DA600BF9404843107A9531694F654E5662959E0, (int32_t)L_3, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = ___info0; RuntimeObject* L_5 = (RuntimeObject*)__this->get_comparer_6(); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 29)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_6, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4, (String_t*)_stringLiteral8FC94E4F5B71CECE2565D72417AACC804EE27A0D, (RuntimeObject *)L_5, (Type_t *)L_7, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_8 = ___info0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_9 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); G_B3_0 = _stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60; G_B3_1 = L_8; if (!L_9) { G_B4_0 = _stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60; G_B4_1 = L_8; goto IL_0052; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_10 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_10); G_B5_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))); G_B5_1 = G_B3_0; G_B5_2 = G_B3_1; goto IL_0053; } IL_0052: { G_B5_0 = 0; G_B5_1 = G_B4_0; G_B5_2 = G_B4_1; } IL_0053: { NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)G_B5_2); SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)G_B5_2, (String_t*)G_B5_1, (int32_t)G_B5_0, /*hidden argument*/NULL); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_11 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (!L_11) { goto IL_008a; } } { NullCheck((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this); int32_t L_12 = (( int32_t (*) (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)->methodPointer)((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)); KeyValuePair_2U5BU5D_tE9E64782D397CFFA60C8BDDFA88D4647AD8932C5* L_13 = (KeyValuePair_2U5BU5D_tE9E64782D397CFFA60C8BDDFA88D4647AD8932C5*)(KeyValuePair_2U5BU5D_tE9E64782D397CFFA60C8BDDFA88D4647AD8932C5*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 30), (uint32_t)L_12); V_0 = (KeyValuePair_2U5BU5D_tE9E64782D397CFFA60C8BDDFA88D4647AD8932C5*)L_13; KeyValuePair_2U5BU5D_tE9E64782D397CFFA60C8BDDFA88D4647AD8932C5* L_14 = V_0; NullCheck((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this); (( void (*) (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *, KeyValuePair_2U5BU5D_tE9E64782D397CFFA60C8BDDFA88D4647AD8932C5*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this, (KeyValuePair_2U5BU5D_tE9E64782D397CFFA60C8BDDFA88D4647AD8932C5*)L_14, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_15 = ___info0; KeyValuePair_2U5BU5D_tE9E64782D397CFFA60C8BDDFA88D4647AD8932C5* L_16 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_17 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 32)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_18 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_17, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_15); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_15, (String_t*)_stringLiteral1D89254A2BC78C1FF41C2F6767A0E00EE126B3BF, (RuntimeObject *)(RuntimeObject *)L_16, (Type_t *)L_18, /*hidden argument*/NULL); } IL_008a: { return; } } // System.Int32 System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::FindEntry(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Dictionary_2_FindEntry_m7F388E90F7A6EB0002D84E433DA2DD7B72445C38_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_FindEntry_m7F388E90F7A6EB0002D84E433DA2DD7B72445C38_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0013; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_FindEntry_m7F388E90F7A6EB0002D84E433DA2DD7B72445C38_RuntimeMethod_var); } IL_0013: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (!L_2) { goto IL_008d; } } { RuntimeObject* L_3 = (RuntimeObject*)__this->get_comparer_6(); RuntimeObject * L_4 = ___key0; NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Object>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_3, (RuntimeObject *)L_4); V_0 = (int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL))); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_6 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_7 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_8); NullCheck(L_6); int32_t L_9 = ((int32_t)((int32_t)L_7%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))))); int32_t L_10 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); V_1 = (int32_t)L_10; goto IL_0089; } IL_0042: { EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_11 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)__this->get_entries_1(); int32_t L_12 = V_1; NullCheck(L_11); int32_t L_13 = (int32_t)((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12)))->get_hashCode_0(); int32_t L_14 = V_0; if ((!(((uint32_t)L_13) == ((uint32_t)L_14)))) { goto IL_0077; } } { RuntimeObject* L_15 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_16 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)__this->get_entries_1(); int32_t L_17 = V_1; NullCheck(L_16); RuntimeObject * L_18 = (RuntimeObject *)((L_16)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_17)))->get_key_2(); RuntimeObject * L_19 = ___key0; NullCheck((RuntimeObject*)L_15); bool L_20 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Object>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_15, (RuntimeObject *)L_18, (RuntimeObject *)L_19); if (!L_20) { goto IL_0077; } } { int32_t L_21 = V_1; return L_21; } IL_0077: { EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_22 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)__this->get_entries_1(); int32_t L_23 = V_1; NullCheck(L_22); int32_t L_24 = (int32_t)((L_22)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_23)))->get_next_1(); V_1 = (int32_t)L_24; } IL_0089: { int32_t L_25 = V_1; if ((((int32_t)L_25) >= ((int32_t)0))) { goto IL_0042; } } IL_008d: { return (-1); } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::Initialize(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Initialize_mC63B04F988FC29B61DE6BA8FF4B2D6DB3C54EE55_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, int32_t ___capacity0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Initialize_mC63B04F988FC29B61DE6BA8FF4B2D6DB3C54EE55_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___capacity0; IL2CPP_RUNTIME_CLASS_INIT(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var); int32_t L_1 = HashHelpers_GetPrime_m743D7006C2BCBADC1DC8CACF7C5B78C9F6B38297((int32_t)L_0, /*hidden argument*/NULL); V_0 = (int32_t)L_1; int32_t L_2 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_3 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_2); __this->set_buckets_0(L_3); V_1 = (int32_t)0; goto IL_0024; } IL_0017: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_4 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_5 = V_1; NullCheck(L_4); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (int32_t)(-1)); int32_t L_6 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)); } IL_0024: { int32_t L_7 = V_1; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_8); if ((((int32_t)L_7) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length))))))) { goto IL_0017; } } { int32_t L_9 = V_0; EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_10 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)(EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 35), (uint32_t)L_9); __this->set_entries_1(L_10); __this->set_freeList_4((-1)); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::TryInsert(TKey,TValue,System.Collections.Generic.InsertionBehavior) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryInsert_m785617CD4F8C51BB17E08B6DD1CFA5C9D88868CE_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, RuntimeObject * ___key0, NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 ___value1, uint8_t ___behavior2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_TryInsert_m785617CD4F8C51BB17E08B6DD1CFA5C9D88868CE_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0013; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_TryInsert_m785617CD4F8C51BB17E08B6DD1CFA5C9D88868CE_RuntimeMethod_var); } IL_0013: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (L_2) { goto IL_0022; } } { NullCheck((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this); (( void (*) (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); } IL_0022: { RuntimeObject* L_3 = (RuntimeObject*)__this->get_comparer_6(); RuntimeObject * L_4 = ___key0; NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Object>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_3, (RuntimeObject *)L_4); V_0 = (int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL))); int32_t L_6 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_7 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_7); V_1 = (int32_t)((int32_t)((int32_t)L_6%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length)))))); V_2 = (int32_t)0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_9 = V_1; NullCheck(L_8); int32_t L_10 = L_9; int32_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); V_4 = (int32_t)L_11; goto IL_00e1; } IL_0051: { EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_12 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)__this->get_entries_1(); int32_t L_13 = V_4; NullCheck(L_12); int32_t L_14 = (int32_t)((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_13)))->get_hashCode_0(); int32_t L_15 = V_0; if ((!(((uint32_t)L_14) == ((uint32_t)L_15)))) { goto IL_00c9; } } { RuntimeObject* L_16 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_17 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)__this->get_entries_1(); int32_t L_18 = V_4; NullCheck(L_17); RuntimeObject * L_19 = (RuntimeObject *)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->get_key_2(); RuntimeObject * L_20 = ___key0; NullCheck((RuntimeObject*)L_16); bool L_21 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Object>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_16, (RuntimeObject *)L_19, (RuntimeObject *)L_20); if (!L_21) { goto IL_00c9; } } { uint8_t L_22 = ___behavior2; if ((!(((uint32_t)L_22) == ((uint32_t)1)))) { goto IL_00ad; } } { EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_23 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)__this->get_entries_1(); int32_t L_24 = V_4; NullCheck(L_23); NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 L_25 = ___value1; ((L_23)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_24)))->set_value_3(L_25); int32_t L_26 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1))); return (bool)1; } IL_00ad: { uint8_t L_27 = ___behavior2; if ((!(((uint32_t)L_27) == ((uint32_t)2)))) { goto IL_00c7; } } { RuntimeObject * L_28 = ___key0; String_t* L_29 = SR_Format_mCDBB594267CC224AB2A69540BBA598151F0642C7((String_t*)_stringLiteral6FD577FD3A1BDC4DA28CD51D7A55EB397CEA3926, (RuntimeObject *)L_28, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_30 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_30, (String_t*)L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30, NULL, Dictionary_2_TryInsert_m785617CD4F8C51BB17E08B6DD1CFA5C9D88868CE_RuntimeMethod_var); } IL_00c7: { return (bool)0; } IL_00c9: { int32_t L_31 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)1)); EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_32 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)__this->get_entries_1(); int32_t L_33 = V_4; NullCheck(L_32); int32_t L_34 = (int32_t)((L_32)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_33)))->get_next_1(); V_4 = (int32_t)L_34; } IL_00e1: { int32_t L_35 = V_4; if ((((int32_t)L_35) >= ((int32_t)0))) { goto IL_0051; } } { int32_t L_36 = (int32_t)__this->get_freeCount_5(); if ((((int32_t)L_36) <= ((int32_t)0))) { goto IL_0120; } } { int32_t L_37 = (int32_t)__this->get_freeList_4(); V_3 = (int32_t)L_37; EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_38 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)__this->get_entries_1(); int32_t L_39 = V_3; NullCheck(L_38); int32_t L_40 = (int32_t)((L_38)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_39)))->get_next_1(); __this->set_freeList_4(L_40); int32_t L_41 = (int32_t)__this->get_freeCount_5(); __this->set_freeCount_5(((int32_t)il2cpp_codegen_subtract((int32_t)L_41, (int32_t)1))); goto IL_0156; } IL_0120: { int32_t L_42 = (int32_t)__this->get_count_2(); EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_43 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)__this->get_entries_1(); NullCheck(L_43); if ((!(((uint32_t)L_42) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_43)->max_length)))))))) { goto IL_0141; } } { NullCheck((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this); (( void (*) (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 36)->methodPointer)((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 36)); int32_t L_44 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_45 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_45); V_1 = (int32_t)((int32_t)((int32_t)L_44%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_45)->max_length)))))); } IL_0141: { int32_t L_46 = (int32_t)__this->get_count_2(); V_3 = (int32_t)L_46; int32_t L_47 = (int32_t)__this->get_count_2(); __this->set_count_2(((int32_t)il2cpp_codegen_add((int32_t)L_47, (int32_t)1))); } IL_0156: { EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_48 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)__this->get_entries_1(); int32_t L_49 = V_3; NullCheck(L_48); int32_t L_50 = V_0; ((L_48)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_49)))->set_hashCode_0(L_50); EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_51 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)__this->get_entries_1(); int32_t L_52 = V_3; NullCheck(L_51); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_53 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_54 = V_1; NullCheck(L_53); int32_t L_55 = L_54; int32_t L_56 = (L_53)->GetAt(static_cast<il2cpp_array_size_t>(L_55)); ((L_51)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_52)))->set_next_1(L_56); EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_57 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)__this->get_entries_1(); int32_t L_58 = V_3; NullCheck(L_57); RuntimeObject * L_59 = ___key0; ((L_57)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_58)))->set_key_2(L_59); EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_60 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)__this->get_entries_1(); int32_t L_61 = V_3; NullCheck(L_60); NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 L_62 = ___value1; ((L_60)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_61)))->set_value_3(L_62); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_63 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_64 = V_1; int32_t L_65 = V_3; NullCheck(L_63); (L_63)->SetAt(static_cast<il2cpp_array_size_t>(L_64), (int32_t)L_65); int32_t L_66 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_66, (int32_t)1))); int32_t L_67 = V_2; if ((((int32_t)L_67) <= ((int32_t)((int32_t)100)))) { goto IL_01ed; } } { RuntimeObject* L_68 = (RuntimeObject*)__this->get_comparer_6(); if (!((NonRandomizedStringEqualityComparer_t92C20503D9C5060A557792ABCCC06EF2DD77E5D9 *)IsInst((RuntimeObject*)L_68, NonRandomizedStringEqualityComparer_t92C20503D9C5060A557792ABCCC06EF2DD77E5D9_il2cpp_TypeInfo_var))) { goto IL_01ed; } } { EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137 * L_69 = EqualityComparer_1_get_Default_m85F378D7298050D5DF422363D5EB30A218B769B7(/*hidden argument*/EqualityComparer_1_get_Default_m85F378D7298050D5DF422363D5EB30A218B769B7_RuntimeMethod_var); __this->set_comparer_6(((RuntimeObject*)Castclass((RuntimeObject*)L_69, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34)))); EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_70 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)__this->get_entries_1(); NullCheck(L_70); NullCheck((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this); (( void (*) (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *, int32_t, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)->methodPointer)((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this, (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_70)->max_length)))), (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)); } IL_01ed: { return (bool)1; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::OnDeserialization(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_OnDeserialization_m2DFD0E9044A0DF3545435127F3CA928F249D996B_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, RuntimeObject * ___sender0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_OnDeserialization_m2DFD0E9044A0DF3545435127F3CA928F249D996B_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; KeyValuePair_2U5BU5D_tE9E64782D397CFFA60C8BDDFA88D4647AD8932C5* V_3 = NULL; int32_t V_4 = 0; int32_t V_5 = 0; { IL2CPP_RUNTIME_CLASS_INIT(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_0 = DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C_inline(/*hidden argument*/NULL); NullCheck((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0); ConditionalWeakTable_2_TryGetValue_mDFCB6C303807E3F8998D196F4573870680E81F8B((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0, (RuntimeObject *)__this, (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 **)(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 **)(&V_0), /*hidden argument*/ConditionalWeakTable_2_TryGetValue_mDFCB6C303807E3F8998D196F4573870680E81F8B_RuntimeMethod_var); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_1 = V_0; if (L_1) { goto IL_0012; } } { return; } IL_0012: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = V_0; NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2); int32_t L_3 = SerializationInfo_GetInt32_mB47BD46A0BDBBAF5B47BB62E6EFF8E092E3F3656((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2, (String_t*)_stringLiteral2DA600BF9404843107A9531694F654E5662959E0, /*hidden argument*/NULL); V_1 = (int32_t)L_3; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = V_0; NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4); int32_t L_5 = SerializationInfo_GetInt32_mB47BD46A0BDBBAF5B47BB62E6EFF8E092E3F3656((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4, (String_t*)_stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60, /*hidden argument*/NULL); V_2 = (int32_t)L_5; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_6 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 29)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_7, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_6); RuntimeObject * L_9 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_6, (String_t*)_stringLiteral8FC94E4F5B71CECE2565D72417AACC804EE27A0D, (Type_t *)L_8, /*hidden argument*/NULL); __this->set_comparer_6(((RuntimeObject*)Castclass((RuntimeObject*)L_9, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34)))); int32_t L_10 = V_2; if (!L_10) { goto IL_010c; } } { int32_t L_11 = V_2; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_12 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_11); __this->set_buckets_0(L_12); V_4 = (int32_t)0; goto IL_0071; } IL_0061: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_13 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_14 = V_4; NullCheck(L_13); (L_13)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (int32_t)(-1)); int32_t L_15 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_0071: { int32_t L_16 = V_4; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_17 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_17); if ((((int32_t)L_16) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length))))))) { goto IL_0061; } } { int32_t L_18 = V_2; EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_19 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)(EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 35), (uint32_t)L_18); __this->set_entries_1(L_19); __this->set_freeList_4((-1)); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_20 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_21 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 32)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_22 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_21, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_20); RuntimeObject * L_23 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_20, (String_t*)_stringLiteral1D89254A2BC78C1FF41C2F6767A0E00EE126B3BF, (Type_t *)L_22, /*hidden argument*/NULL); V_3 = (KeyValuePair_2U5BU5D_tE9E64782D397CFFA60C8BDDFA88D4647AD8932C5*)((KeyValuePair_2U5BU5D_tE9E64782D397CFFA60C8BDDFA88D4647AD8932C5*)Castclass((RuntimeObject*)L_23, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 38))); KeyValuePair_2U5BU5D_tE9E64782D397CFFA60C8BDDFA88D4647AD8932C5* L_24 = V_3; if (L_24) { goto IL_00b9; } } { SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * L_25 = (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 *)il2cpp_codegen_object_new(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var); SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1(L_25, (String_t*)_stringLiteral1EB7E67EA75FFC3FCB05A9685FA4F1578DCACCF6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, NULL, Dictionary_2_OnDeserialization_m2DFD0E9044A0DF3545435127F3CA928F249D996B_RuntimeMethod_var); } IL_00b9: { V_5 = (int32_t)0; goto IL_0103; } IL_00be: { KeyValuePair_2U5BU5D_tE9E64782D397CFFA60C8BDDFA88D4647AD8932C5* L_26 = V_3; int32_t L_27 = V_5; NullCheck(L_26); RuntimeObject * L_28 = KeyValuePair_2_get_Key_mB917E774A987623D40C5DA2EBA21D45C3EB5C0F1_inline((KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 *)(KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 *)((L_26)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_27))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); if (L_28) { goto IL_00dd; } } { SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * L_29 = (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 *)il2cpp_codegen_object_new(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var); SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1(L_29, (String_t*)_stringLiteralD6D1BC79DD62E9F1FB9A49A8F76F4BA8AB71AECD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_29, NULL, Dictionary_2_OnDeserialization_m2DFD0E9044A0DF3545435127F3CA928F249D996B_RuntimeMethod_var); } IL_00dd: { KeyValuePair_2U5BU5D_tE9E64782D397CFFA60C8BDDFA88D4647AD8932C5* L_30 = V_3; int32_t L_31 = V_5; NullCheck(L_30); RuntimeObject * L_32 = KeyValuePair_2_get_Key_mB917E774A987623D40C5DA2EBA21D45C3EB5C0F1_inline((KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 *)(KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 *)((L_30)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_31))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); KeyValuePair_2U5BU5D_tE9E64782D397CFFA60C8BDDFA88D4647AD8932C5* L_33 = V_3; int32_t L_34 = V_5; NullCheck(L_33); NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 L_35 = KeyValuePair_2_get_Value_m195A8E1241A34205F7B6E149F05085770F740431_inline((KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 *)(KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 *)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); NullCheck((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this); (( void (*) (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *, RuntimeObject *, NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this, (RuntimeObject *)L_32, (NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 )L_35, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); int32_t L_36 = V_5; V_5 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)1)); } IL_0103: { int32_t L_37 = V_5; KeyValuePair_2U5BU5D_tE9E64782D397CFFA60C8BDDFA88D4647AD8932C5* L_38 = V_3; NullCheck(L_38); if ((((int32_t)L_37) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_38)->max_length))))))) { goto IL_00be; } } { goto IL_0113; } IL_010c: { __this->set_buckets_0((Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)NULL); } IL_0113: { int32_t L_39 = V_1; __this->set_version_3(L_39); IL2CPP_RUNTIME_CLASS_INIT(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_40 = DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C_inline(/*hidden argument*/NULL); NullCheck((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_40); ConditionalWeakTable_2_Remove_mD69606977A8C793DEA91E373F7D886E4865D7FBD((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_40, (RuntimeObject *)__this, /*hidden argument*/ConditionalWeakTable_2_Remove_mD69606977A8C793DEA91E373F7D886E4865D7FBD_RuntimeMethod_var); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::Resize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Resize_mED41817D6F25447E50D9578901F75636120C1440_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Resize_mED41817D6F25447E50D9578901F75636120C1440_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_count_2(); IL2CPP_RUNTIME_CLASS_INIT(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var); int32_t L_1 = HashHelpers_ExpandPrime_m4245F4C95074EAA8F949FB3B734F611A533A6A0D((int32_t)L_0, /*hidden argument*/NULL); NullCheck((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this); (( void (*) (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *, int32_t, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)->methodPointer)((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this, (int32_t)L_1, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::Resize(System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Resize_mDEEA8CA4E3A0F37622013856B653423B8EC6AB11_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, int32_t ___newSize0, bool ___forceNewHashCodes1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Resize_mDEEA8CA4E3A0F37622013856B653423B8EC6AB11_MetadataUsageId); s_Il2CppMethodInitialized = true; } Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL; EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; { int32_t L_0 = ___newSize0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_0); V_0 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)L_1; V_2 = (int32_t)0; goto IL_0013; } IL_000b: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = V_0; int32_t L_3 = V_2; NullCheck(L_2); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (int32_t)(-1)); int32_t L_4 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)); } IL_0013: { int32_t L_5 = V_2; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_6 = V_0; NullCheck(L_6); if ((((int32_t)L_5) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length))))))) { goto IL_000b; } } { int32_t L_7 = ___newSize0; EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_8 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)(EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 35), (uint32_t)L_7); V_1 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)L_8; EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_9 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)__this->get_entries_1(); EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_10 = V_1; int32_t L_11 = (int32_t)__this->get_count_2(); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_9, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_10, (int32_t)0, (int32_t)L_11, /*hidden argument*/NULL); bool L_12 = ___forceNewHashCodes1; if (!L_12) { goto IL_0080; } } { V_3 = (int32_t)0; goto IL_0077; } IL_003b: { EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_13 = V_1; int32_t L_14 = V_3; NullCheck(L_13); int32_t L_15 = (int32_t)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_hashCode_0(); if ((((int32_t)L_15) == ((int32_t)(-1)))) { goto IL_0073; } } { EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_16 = V_1; int32_t L_17 = V_3; NullCheck(L_16); RuntimeObject* L_18 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_19 = V_1; int32_t L_20 = V_3; NullCheck(L_19); RuntimeObject * L_21 = (RuntimeObject *)((L_19)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_20)))->get_key_2(); NullCheck((RuntimeObject*)L_18); int32_t L_22 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Object>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_18, (RuntimeObject *)L_21); ((L_16)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_17)))->set_hashCode_0(((int32_t)((int32_t)L_22&(int32_t)((int32_t)2147483647LL)))); } IL_0073: { int32_t L_23 = V_3; V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); } IL_0077: { int32_t L_24 = V_3; int32_t L_25 = (int32_t)__this->get_count_2(); if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_003b; } } IL_0080: { V_4 = (int32_t)0; goto IL_00c3; } IL_0085: { EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_26 = V_1; int32_t L_27 = V_4; NullCheck(L_26); int32_t L_28 = (int32_t)((L_26)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_27)))->get_hashCode_0(); if ((((int32_t)L_28) < ((int32_t)0))) { goto IL_00bd; } } { EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_29 = V_1; int32_t L_30 = V_4; NullCheck(L_29); int32_t L_31 = (int32_t)((L_29)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_30)))->get_hashCode_0(); int32_t L_32 = ___newSize0; V_5 = (int32_t)((int32_t)((int32_t)L_31%(int32_t)L_32)); EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_33 = V_1; int32_t L_34 = V_4; NullCheck(L_33); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_35 = V_0; int32_t L_36 = V_5; NullCheck(L_35); int32_t L_37 = L_36; int32_t L_38 = (L_35)->GetAt(static_cast<il2cpp_array_size_t>(L_37)); ((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->set_next_1(L_38); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_39 = V_0; int32_t L_40 = V_5; int32_t L_41 = V_4; NullCheck(L_39); (L_39)->SetAt(static_cast<il2cpp_array_size_t>(L_40), (int32_t)L_41); } IL_00bd: { int32_t L_42 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1)); } IL_00c3: { int32_t L_43 = V_4; int32_t L_44 = (int32_t)__this->get_count_2(); if ((((int32_t)L_43) < ((int32_t)L_44))) { goto IL_0085; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_45 = V_0; __this->set_buckets_0(L_45); EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_46 = V_1; __this->set_entries_1(L_46); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::Remove(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_Remove_m50AF86E05FB664C11FE12CBDA65164C5C5BC878D_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Remove_m50AF86E05FB664C11FE12CBDA65164C5C5BC878D_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0013; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_Remove_m50AF86E05FB664C11FE12CBDA65164C5C5BC878D_RuntimeMethod_var); } IL_0013: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (!L_2) { goto IL_015d; } } { RuntimeObject* L_3 = (RuntimeObject*)__this->get_comparer_6(); RuntimeObject * L_4 = ___key0; NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Object>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_3, (RuntimeObject *)L_4); V_0 = (int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL))); int32_t L_6 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_7 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_7); V_1 = (int32_t)((int32_t)((int32_t)L_6%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length)))))); V_2 = (int32_t)(-1); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_9 = V_1; NullCheck(L_8); int32_t L_10 = L_9; int32_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); V_3 = (int32_t)L_11; goto IL_0156; } IL_004c: { EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_12 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)__this->get_entries_1(); int32_t L_13 = V_3; NullCheck(L_12); int32_t L_14 = (int32_t)((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_13)))->get_hashCode_0(); int32_t L_15 = V_0; if ((!(((uint32_t)L_14) == ((uint32_t)L_15)))) { goto IL_0142; } } { RuntimeObject* L_16 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_17 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)__this->get_entries_1(); int32_t L_18 = V_3; NullCheck(L_17); RuntimeObject * L_19 = (RuntimeObject *)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->get_key_2(); RuntimeObject * L_20 = ___key0; NullCheck((RuntimeObject*)L_16); bool L_21 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Object>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_16, (RuntimeObject *)L_19, (RuntimeObject *)L_20); if (!L_21) { goto IL_0142; } } { int32_t L_22 = V_2; if ((((int32_t)L_22) >= ((int32_t)0))) { goto IL_00a4; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_23 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_24 = V_1; EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_25 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)__this->get_entries_1(); int32_t L_26 = V_3; NullCheck(L_25); int32_t L_27 = (int32_t)((L_25)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_26)))->get_next_1(); NullCheck(L_23); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (int32_t)L_27); goto IL_00c6; } IL_00a4: { EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_28 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)__this->get_entries_1(); int32_t L_29 = V_2; NullCheck(L_28); EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_30 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)__this->get_entries_1(); int32_t L_31 = V_3; NullCheck(L_30); int32_t L_32 = (int32_t)((L_30)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_31)))->get_next_1(); ((L_28)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_29)))->set_next_1(L_32); } IL_00c6: { EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_33 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)__this->get_entries_1(); int32_t L_34 = V_3; NullCheck(L_33); ((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->set_hashCode_0((-1)); EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_35 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)__this->get_entries_1(); int32_t L_36 = V_3; NullCheck(L_35); int32_t L_37 = (int32_t)__this->get_freeList_4(); ((L_35)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_36)))->set_next_1(L_37); EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_38 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)__this->get_entries_1(); int32_t L_39 = V_3; NullCheck(L_38); RuntimeObject ** L_40 = (RuntimeObject **)((L_38)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_39)))->get_address_of_key_2(); il2cpp_codegen_initobj(L_40, sizeof(RuntimeObject *)); EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_41 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)__this->get_entries_1(); int32_t L_42 = V_3; NullCheck(L_41); NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 * L_43 = (NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 *)((L_41)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_42)))->get_address_of_value_3(); il2cpp_codegen_initobj(L_43, sizeof(NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 )); int32_t L_44 = V_3; __this->set_freeList_4(L_44); int32_t L_45 = (int32_t)__this->get_freeCount_5(); __this->set_freeCount_5(((int32_t)il2cpp_codegen_add((int32_t)L_45, (int32_t)1))); int32_t L_46 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_46, (int32_t)1))); return (bool)1; } IL_0142: { int32_t L_47 = V_3; V_2 = (int32_t)L_47; EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_48 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)__this->get_entries_1(); int32_t L_49 = V_3; NullCheck(L_48); int32_t L_50 = (int32_t)((L_48)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_49)))->get_next_1(); V_3 = (int32_t)L_50; } IL_0156: { int32_t L_51 = V_3; if ((((int32_t)L_51) >= ((int32_t)0))) { goto IL_004c; } } IL_015d: { return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::TryGetValue(TKey,TValue&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_m0E2B3866BEB725FB76457C8C332A2BA26D9161F9_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, RuntimeObject * ___key0, NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 * ___value1, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; NullCheck((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0025; } } { NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 * L_3 = ___value1; EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_4 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 L_6 = (NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 )((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); *(NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 *)L_3 = L_6; Il2CppCodeGenWriteBarrier((void**)&(((NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 *)L_3)->___serverAddress_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 *)L_3)->___broadcastData_1), (void*)NULL); #endif return (bool)1; } IL_0025: { NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 * L_7 = ___value1; il2cpp_codegen_initobj(L_7, sizeof(NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 )); return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_get_IsReadOnly_mEEEDB4A231C202760192F673A1273BACB9774953_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_CopyTo_m3BF5DD773A3C0F22023ECB42F4A79F689DB00EBF_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, KeyValuePair_2U5BU5D_tE9E64782D397CFFA60C8BDDFA88D4647AD8932C5* ___array0, int32_t ___index1, const RuntimeMethod* method) { { KeyValuePair_2U5BU5D_tE9E64782D397CFFA60C8BDDFA88D4647AD8932C5* L_0 = ___array0; int32_t L_1 = ___index1; NullCheck((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this); (( void (*) (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *, KeyValuePair_2U5BU5D_tE9E64782D397CFFA60C8BDDFA88D4647AD8932C5*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this, (KeyValuePair_2U5BU5D_tE9E64782D397CFFA60C8BDDFA88D4647AD8932C5*)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_ICollection_CopyTo_mD47FC355959333671A550C1BA2E4D55BBC6CEE0C_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_ICollection_CopyTo_mD47FC355959333671A550C1BA2E4D55BBC6CEE0C_MetadataUsageId); s_Il2CppMethodInitialized = true; } KeyValuePair_2U5BU5D_tE9E64782D397CFFA60C8BDDFA88D4647AD8932C5* V_0 = NULL; DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56* V_1 = NULL; EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* V_2 = NULL; int32_t V_3 = 0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_4 = NULL; int32_t V_5 = 0; EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* V_6 = NULL; int32_t V_7 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mD47FC355959333671A550C1BA2E4D55BBC6CEE0C_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; NullCheck((RuntimeArray *)L_2); int32_t L_3 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0027; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_4 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_4, (String_t*)_stringLiteral2D77BE6D598A0A9376398980E66D10E319F1B52A, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mD47FC355959333671A550C1BA2E4D55BBC6CEE0C_RuntimeMethod_var); } IL_0027: { RuntimeArray * L_5 = ___array0; NullCheck((RuntimeArray *)L_5); int32_t L_6 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)L_5, (int32_t)0, /*hidden argument*/NULL); if (!L_6) { goto IL_0040; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_7, (String_t*)_stringLiteralC363992023785AF013BBCF2E20C19D9835184F82, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mD47FC355959333671A550C1BA2E4D55BBC6CEE0C_RuntimeMethod_var); } IL_0040: { int32_t L_8 = ___index1; if ((((int32_t)L_8) < ((int32_t)0))) { goto IL_004d; } } { int32_t L_9 = ___index1; RuntimeArray * L_10 = ___array0; NullCheck((RuntimeArray *)L_10); int32_t L_11 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_10, /*hidden argument*/NULL); if ((((int32_t)L_9) <= ((int32_t)L_11))) { goto IL_0063; } } IL_004d: { int32_t L_12 = ___index1; int32_t L_13 = L_12; RuntimeObject * L_14 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_13); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_15 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_15, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, (RuntimeObject *)L_14, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mD47FC355959333671A550C1BA2E4D55BBC6CEE0C_RuntimeMethod_var); } IL_0063: { RuntimeArray * L_16 = ___array0; NullCheck((RuntimeArray *)L_16); int32_t L_17 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_16, /*hidden argument*/NULL); int32_t L_18 = ___index1; NullCheck((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this); int32_t L_19 = (( int32_t (*) (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)->methodPointer)((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_19))) { goto IL_007e; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_20 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_20, (String_t*)_stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mD47FC355959333671A550C1BA2E4D55BBC6CEE0C_RuntimeMethod_var); } IL_007e: { RuntimeArray * L_21 = ___array0; V_0 = (KeyValuePair_2U5BU5D_tE9E64782D397CFFA60C8BDDFA88D4647AD8932C5*)((KeyValuePair_2U5BU5D_tE9E64782D397CFFA60C8BDDFA88D4647AD8932C5*)IsInst((RuntimeObject*)L_21, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 38))); KeyValuePair_2U5BU5D_tE9E64782D397CFFA60C8BDDFA88D4647AD8932C5* L_22 = V_0; if (!L_22) { goto IL_0091; } } { KeyValuePair_2U5BU5D_tE9E64782D397CFFA60C8BDDFA88D4647AD8932C5* L_23 = V_0; int32_t L_24 = ___index1; NullCheck((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this); (( void (*) (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *, KeyValuePair_2U5BU5D_tE9E64782D397CFFA60C8BDDFA88D4647AD8932C5*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this, (KeyValuePair_2U5BU5D_tE9E64782D397CFFA60C8BDDFA88D4647AD8932C5*)L_23, (int32_t)L_24, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); return; } IL_0091: { RuntimeArray * L_25 = ___array0; if (!((DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56*)IsInst((RuntimeObject*)L_25, DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56_il2cpp_TypeInfo_var))) { goto IL_00fb; } } { RuntimeArray * L_26 = ___array0; V_1 = (DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56*)((DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56*)IsInst((RuntimeObject*)L_26, DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56_il2cpp_TypeInfo_var)); EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_27 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)__this->get_entries_1(); V_2 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)L_27; V_3 = (int32_t)0; goto IL_00f1; } IL_00ab: { EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_28 = V_2; int32_t L_29 = V_3; NullCheck(L_28); int32_t L_30 = (int32_t)((L_28)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_29)))->get_hashCode_0(); if ((((int32_t)L_30) < ((int32_t)0))) { goto IL_00ed; } } { DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56* L_31 = V_1; int32_t L_32 = ___index1; int32_t L_33 = (int32_t)L_32; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1)); EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_34 = V_2; int32_t L_35 = V_3; NullCheck(L_34); RuntimeObject * L_36 = (RuntimeObject *)((L_34)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_35)))->get_key_2(); EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_37 = V_2; int32_t L_38 = V_3; NullCheck(L_37); NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 L_39 = (NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 )((L_37)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_38)))->get_value_3(); NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 L_40 = L_39; RuntimeObject * L_41 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 23), &L_40); DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_42; memset((&L_42), 0, sizeof(L_42)); DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B((&L_42), (RuntimeObject *)L_36, (RuntimeObject *)L_41, /*hidden argument*/NULL); NullCheck(L_31); (L_31)->SetAt(static_cast<il2cpp_array_size_t>(L_33), (DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 )L_42); } IL_00ed: { int32_t L_43 = V_3; V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_43, (int32_t)1)); } IL_00f1: { int32_t L_44 = V_3; int32_t L_45 = (int32_t)__this->get_count_2(); if ((((int32_t)L_44) < ((int32_t)L_45))) { goto IL_00ab; } } { return; } IL_00fb: { RuntimeArray * L_46 = ___array0; V_4 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)L_46, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_47 = V_4; if (L_47) { goto IL_0117; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_48 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_48, (String_t*)_stringLiteralC44D4E6C6AF3517A1CC72EDF7D1A5FFD7E3368F1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_48, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mD47FC355959333671A550C1BA2E4D55BBC6CEE0C_RuntimeMethod_var); } IL_0117: { } IL_0118: try { // begin try (depth: 1) { int32_t L_49 = (int32_t)__this->get_count_2(); V_5 = (int32_t)L_49; EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_50 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)__this->get_entries_1(); V_6 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)L_50; V_7 = (int32_t)0; goto IL_0173; } IL_012d: { EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_51 = V_6; int32_t L_52 = V_7; NullCheck(L_51); int32_t L_53 = (int32_t)((L_51)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_52)))->get_hashCode_0(); if ((((int32_t)L_53) < ((int32_t)0))) { goto IL_016d; } } IL_013e: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_54 = V_4; int32_t L_55 = ___index1; int32_t L_56 = (int32_t)L_55; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_56, (int32_t)1)); EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_57 = V_6; int32_t L_58 = V_7; NullCheck(L_57); RuntimeObject * L_59 = (RuntimeObject *)((L_57)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_58)))->get_key_2(); EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_60 = V_6; int32_t L_61 = V_7; NullCheck(L_60); NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 L_62 = (NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 )((L_60)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_61)))->get_value_3(); KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 L_63; memset((&L_63), 0, sizeof(L_63)); KeyValuePair_2__ctor_m83E76CCB593E8CF4512E011C4323169B8BC2E4BE((&L_63), (RuntimeObject *)L_59, (NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 )L_62, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)); KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 L_64 = L_63; RuntimeObject * L_65 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 25), &L_64); NullCheck(L_54); ArrayElementTypeCheck (L_54, L_65); (L_54)->SetAt(static_cast<il2cpp_array_size_t>(L_56), (RuntimeObject *)L_65); } IL_016d: { int32_t L_66 = V_7; V_7 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_66, (int32_t)1)); } IL_0173: { int32_t L_67 = V_7; int32_t L_68 = V_5; if ((((int32_t)L_67) < ((int32_t)L_68))) { goto IL_012d; } } IL_0179: { goto IL_018c; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArrayTypeMismatchException_tE34C1032B089C37399200997F079C640D23D9499_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_017b; throw e; } CATCH_017b: { // begin catch(System.ArrayTypeMismatchException) ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_69 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_69, (String_t*)_stringLiteralC44D4E6C6AF3517A1CC72EDF7D1A5FFD7E3368F1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_69, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mD47FC355959333671A550C1BA2E4D55BBC6CEE0C_RuntimeMethod_var); } // end catch (depth: 1) IL_018c: { return; } } // System.Collections.IEnumerator System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_IEnumerable_GetEnumerator_m432E4572A9B1FC78E44AB3F00C493D4E3E18809A_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, const RuntimeMethod* method) { { Enumerator_tBB88D2BAC6A5B7E83EAF0774C620EF99949E9772 L_0; memset((&L_0), 0, sizeof(L_0)); Enumerator__ctor_mBEEF2AAEEB4D901A3076AE8AEBD9FCD7E8D0E300((&L_0), (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 28)); Enumerator_tBB88D2BAC6A5B7E83EAF0774C620EF99949E9772 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 27), &L_1); return (RuntimeObject*)L_2; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::System.Collections.ICollection.get_IsSynchronized() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_ICollection_get_IsSynchronized_m6A8C2E7DD19B5AD6BCDD8C95AED1240AC3AEA2B5_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Object System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::System.Collections.ICollection.get_SyncRoot() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Dictionary_2_System_Collections_ICollection_get_SyncRoot_mDDCECDA24B1F73C343BC83CB7EF2CEB7600CFD1F_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_ICollection_get_SyncRoot_mDDCECDA24B1F73C343BC83CB7EF2CEB7600CFD1F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = (RuntimeObject *)__this->get__syncRoot_9(); if (L_0) { goto IL_001a; } } { RuntimeObject ** L_1 = (RuntimeObject **)__this->get_address_of__syncRoot_9(); RuntimeObject * L_2 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_2, /*hidden argument*/NULL); InterlockedCompareExchangeImpl<RuntimeObject *>((RuntimeObject **)(RuntimeObject **)L_1, (RuntimeObject *)L_2, (RuntimeObject *)NULL); } IL_001a: { RuntimeObject * L_3 = (RuntimeObject *)__this->get__syncRoot_9(); return L_3; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::System.Collections.IDictionary.get_IsFixedSize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_IDictionary_get_IsFixedSize_m54BFC8BEE85AFE0A93D384656C9A8D65FC47EDD0_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::System.Collections.IDictionary.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_IDictionary_get_IsReadOnly_m68C1FC728855987A6F5425ACC9457FF221EECB69_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Collections.ICollection System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::System.Collections.IDictionary.get_Keys() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_IDictionary_get_Keys_mB5CE9A3FBF37EAACAF8DA72FA6B179836E340C92_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, const RuntimeMethod* method) { { NullCheck((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this); KeyCollection_t5EC5AE8701559CAD8D6FE2C0D5EA5AF33617F16D * L_0 = (( KeyCollection_t5EC5AE8701559CAD8D6FE2C0D5EA5AF33617F16D * (*) (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 39)->methodPointer)((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 39)); return L_0; } } // System.Collections.ICollection System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::System.Collections.IDictionary.get_Values() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_IDictionary_get_Values_m29D14BA916FF8EE76534A000BB783AF203A5BD3F_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, const RuntimeMethod* method) { { NullCheck((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this); ValueCollection_tC94120C5B491DF84E829416B86156893C29B845F * L_0 = (( ValueCollection_tC94120C5B491DF84E829416B86156893C29B845F * (*) (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 40)->methodPointer)((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 40)); return L_0; } } // System.Object System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::System.Collections.IDictionary.get_Item(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Dictionary_2_System_Collections_IDictionary_get_Item_m60E85D07F76A91334ECC855AAEFC68CAD4343F8F_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; bool L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)); if (!L_1) { goto IL_0030; } } { RuntimeObject * L_2 = ___key0; NullCheck((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this); int32_t L_3 = (( int32_t (*) (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 33))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); V_0 = (int32_t)L_3; int32_t L_4 = V_0; if ((((int32_t)L_4) < ((int32_t)0))) { goto IL_0030; } } { EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88* L_5 = (EntryU5BU5D_tE9FB7723A8A479BC69F202808FD3E442C3296F88*)__this->get_entries_1(); int32_t L_6 = V_0; NullCheck(L_5); NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 L_7 = (NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 )((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_value_3(); NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 23), &L_8); return L_9; } IL_0030: { return NULL; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::System.Collections.IDictionary.set_Item(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_IDictionary_set_Item_m51A6B9B2D9AFC065F0D45F5DE544A6718048FB00_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_IDictionary_set_Item_m51A6B9B2D9AFC065F0D45F5DE544A6718048FB00_MetadataUsageId); s_Il2CppMethodInitialized = true; } NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 V_0; memset((&V_0), 0, sizeof(V_0)); RuntimeObject * V_1 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_m51A6B9B2D9AFC065F0D45F5DE544A6718048FB00_RuntimeMethod_var); } IL_000e: { RuntimeObject * L_2 = ___value1; if (L_2) { goto IL_002c; } } { il2cpp_codegen_initobj((&V_0), sizeof(NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 )); } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_4, (String_t*)_stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_m51A6B9B2D9AFC065F0D45F5DE544A6718048FB00_RuntimeMethod_var); } IL_002c: { } IL_002d: try { // begin try (depth: 1) { RuntimeObject * L_5 = ___key0; V_1 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 33))); } IL_0034: try { // begin try (depth: 2) RuntimeObject * L_6 = V_1; RuntimeObject * L_7 = ___value1; NullCheck((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this); (( void (*) (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *, RuntimeObject *, NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 43)->methodPointer)((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this, (RuntimeObject *)L_6, (NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 )((*(NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 *)((NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 *)UnBox(L_7, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 23))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 43)); goto IL_0064; } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0043; throw e; } CATCH_0043: { // begin catch(System.InvalidCastException) RuntimeObject * L_8 = ___value1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_9 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 44)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_9, /*hidden argument*/NULL); String_t* L_11 = SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C((String_t*)_stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6, (RuntimeObject *)L_8, (RuntimeObject *)L_10, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_12, (String_t*)L_11, (String_t*)_stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_m51A6B9B2D9AFC065F0D45F5DE544A6718048FB00_RuntimeMethod_var); } // end catch (depth: 2) IL_0064: { goto IL_0087; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0066; throw e; } CATCH_0066: { // begin catch(System.InvalidCastException) RuntimeObject * L_13 = ___key0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 45)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_14, /*hidden argument*/NULL); String_t* L_16 = SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C((String_t*)_stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6, (RuntimeObject *)L_13, (RuntimeObject *)L_15, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_17 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_17, (String_t*)L_16, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_m51A6B9B2D9AFC065F0D45F5DE544A6718048FB00_RuntimeMethod_var); } // end catch (depth: 1) IL_0087: { return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::IsCompatibleKey(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_IsCompatibleKey_mC661C5FB0536EBEF169B249AD6F5B06A3C9C8480_gshared (RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_IsCompatibleKey_mC661C5FB0536EBEF169B249AD6F5B06A3C9C8480_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_IsCompatibleKey_mC661C5FB0536EBEF169B249AD6F5B06A3C9C8480_RuntimeMethod_var); } IL_000e: { RuntimeObject * L_2 = ___key0; return (bool)((!(((RuntimeObject*)(RuntimeObject *)((RuntimeObject *)IsInst((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 33)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::System.Collections.IDictionary.Add(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_IDictionary_Add_mD60409181D12CDB4602818461FA124AC78A109BB_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_IDictionary_Add_mD60409181D12CDB4602818461FA124AC78A109BB_MetadataUsageId); s_Il2CppMethodInitialized = true; } NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 V_0; memset((&V_0), 0, sizeof(V_0)); RuntimeObject * V_1 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_System_Collections_IDictionary_Add_mD60409181D12CDB4602818461FA124AC78A109BB_RuntimeMethod_var); } IL_000e: { RuntimeObject * L_2 = ___value1; if (L_2) { goto IL_002c; } } { il2cpp_codegen_initobj((&V_0), sizeof(NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 )); } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_4, (String_t*)_stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2_System_Collections_IDictionary_Add_mD60409181D12CDB4602818461FA124AC78A109BB_RuntimeMethod_var); } IL_002c: { } IL_002d: try { // begin try (depth: 1) { RuntimeObject * L_5 = ___key0; V_1 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 33))); } IL_0034: try { // begin try (depth: 2) RuntimeObject * L_6 = V_1; RuntimeObject * L_7 = ___value1; NullCheck((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this); (( void (*) (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *, RuntimeObject *, NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this, (RuntimeObject *)L_6, (NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 )((*(NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 *)((NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 *)UnBox(L_7, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 23))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); goto IL_0064; } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0043; throw e; } CATCH_0043: { // begin catch(System.InvalidCastException) RuntimeObject * L_8 = ___value1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_9 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 44)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_9, /*hidden argument*/NULL); String_t* L_11 = SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C((String_t*)_stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6, (RuntimeObject *)L_8, (RuntimeObject *)L_10, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_12, (String_t*)L_11, (String_t*)_stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Dictionary_2_System_Collections_IDictionary_Add_mD60409181D12CDB4602818461FA124AC78A109BB_RuntimeMethod_var); } // end catch (depth: 2) IL_0064: { goto IL_0087; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0066; throw e; } CATCH_0066: { // begin catch(System.InvalidCastException) RuntimeObject * L_13 = ___key0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 45)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_14, /*hidden argument*/NULL); String_t* L_16 = SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C((String_t*)_stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6, (RuntimeObject *)L_13, (RuntimeObject *)L_15, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_17 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_17, (String_t*)L_16, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, NULL, Dictionary_2_System_Collections_IDictionary_Add_mD60409181D12CDB4602818461FA124AC78A109BB_RuntimeMethod_var); } // end catch (depth: 1) IL_0087: { return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::System.Collections.IDictionary.Contains(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_IDictionary_Contains_mD5C33A20545AFE7CBE6BCC91F8BBA717E14A0722_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; bool L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)); if (!L_1) { goto IL_0015; } } { RuntimeObject * L_2 = ___key0; NullCheck((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this); bool L_3 = (( bool (*) (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 46)->methodPointer)((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 33))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 46)); return L_3; } IL_0015: { return (bool)0; } } // System.Collections.IDictionaryEnumerator System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::System.Collections.IDictionary.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_IDictionary_GetEnumerator_m64E0291A78FAB64D4ED8A2877DC933F47E3A0A50_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, const RuntimeMethod* method) { { Enumerator_tBB88D2BAC6A5B7E83EAF0774C620EF99949E9772 L_0; memset((&L_0), 0, sizeof(L_0)); Enumerator__ctor_mBEEF2AAEEB4D901A3076AE8AEBD9FCD7E8D0E300((&L_0), (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this, (int32_t)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 28)); Enumerator_tBB88D2BAC6A5B7E83EAF0774C620EF99949E9772 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 27), &L_1); return (RuntimeObject*)L_2; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>::System.Collections.IDictionary.Remove(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_IDictionary_Remove_mC4843788BA8C5CE0182934E147DE2D61E2BB6293_gshared (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; bool L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)); if (!L_1) { goto IL_0015; } } { RuntimeObject * L_2 = ___key0; NullCheck((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this); (( bool (*) (Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)->methodPointer)((Dictionary_2_tEE6BBCDFFD809D02509186008F9A51F438D4BF0C *)__this, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 33))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); } IL_0015: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m9C83A0643CC3D3FDEC96DAC03B355B0BFA9FB775_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, const RuntimeMethod* method) { { NullCheck((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this); (( void (*) (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this, (int32_t)0, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m4FDB25124CEDCEABFA8B5AF216BA104520FCE0D5_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, int32_t ___capacity0, const RuntimeMethod* method) { { int32_t L_0 = ___capacity0; NullCheck((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this); (( void (*) (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this, (int32_t)L_0, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m478ACBEB7E81175FC43408EB20B69FE5470FAC81_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___comparer0; NullCheck((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this); (( void (*) (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this, (int32_t)0, (RuntimeObject*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::.ctor(System.Int32,System.Collections.Generic.IEqualityComparer`1<TKey>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m01D40DEC3055F010D2E297DF8C52A2BCAFCECF7E_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, int32_t ___capacity0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2__ctor_m01D40DEC3055F010D2E297DF8C52A2BCAFCECF7E_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* G_B6_0 = NULL; Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * G_B6_1 = NULL; RuntimeObject* G_B5_0 = NULL; Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * G_B5_1 = NULL; { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); int32_t L_0 = ___capacity0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0020; } } { int32_t L_1 = ___capacity0; int32_t L_2 = L_1; RuntimeObject * L_3 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_2); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_4 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_4, (String_t*)_stringLiteral7CB1F56D3FBE09E809244FC8E13671CD876E3860, (RuntimeObject *)L_3, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2__ctor_m01D40DEC3055F010D2E297DF8C52A2BCAFCECF7E_RuntimeMethod_var); } IL_0020: { int32_t L_5 = ___capacity0; if ((((int32_t)L_5) <= ((int32_t)0))) { goto IL_002b; } } { int32_t L_6 = ___capacity0; NullCheck((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this); (( void (*) (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); } IL_002b: { RuntimeObject* L_7 = ___comparer1; RuntimeObject* L_8 = (RuntimeObject*)L_7; G_B5_0 = L_8; G_B5_1 = ((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)(__this)); if (L_8) { G_B6_0 = L_8; G_B6_1 = ((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)(__this)); goto IL_0036; } } { EqualityComparer_1_t5A44736F4237D4F477AE641C097FBDC592BEA03E * L_9 = (( EqualityComparer_1_t5A44736F4237D4F477AE641C097FBDC592BEA03E * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); G_B6_0 = ((RuntimeObject*)(L_9)); G_B6_1 = ((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)(G_B5_1)); } IL_0036: { NullCheck(G_B6_1); G_B6_1->set_comparer_6(G_B6_0); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::.ctor(System.Collections.Generic.IDictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m8F410DDE22852D39C10966C800EC160FA3B8D281_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, RuntimeObject* ___dictionary0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___dictionary0; NullCheck((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this); (( void (*) (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *, RuntimeObject*, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this, (RuntimeObject*)L_0, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::.ctor(System.Collections.Generic.IDictionary`2<TKey,TValue>,System.Collections.Generic.IEqualityComparer`1<TKey>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mFE05D6497178A10A9FEFFE992EEFFD1A6087398E_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, RuntimeObject* ___dictionary0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2__ctor_mFE05D6497178A10A9FEFFE992EEFFD1A6087398E_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* V_1 = NULL; int32_t V_2 = 0; RuntimeObject* V_3 = NULL; KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 V_4; memset((&V_4), 0, sizeof(V_4)); Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * G_B2_0 = NULL; Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * G_B1_0 = NULL; int32_t G_B3_0 = 0; Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * G_B3_1 = NULL; { RuntimeObject* L_0 = ___dictionary0; G_B1_0 = ((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)(__this)); if (L_0) { G_B2_0 = ((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)(__this)); goto IL_0007; } } { G_B3_0 = 0; G_B3_1 = ((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)(G_B1_0)); goto IL_000d; } IL_0007: { RuntimeObject* L_1 = ___dictionary0; NullCheck((RuntimeObject*)L_1); int32_t L_2 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Collections.Generic.KeyValuePair`2<System.UInt16,System.Object>>::get_Count() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_1); G_B3_0 = L_2; G_B3_1 = ((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)(G_B2_0)); } IL_000d: { RuntimeObject* L_3 = ___comparer1; NullCheck((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)G_B3_1); (( void (*) (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)G_B3_1, (int32_t)G_B3_0, (RuntimeObject*)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); RuntimeObject* L_4 = ___dictionary0; if (L_4) { goto IL_0021; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_5 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_5, (String_t*)_stringLiteralF18BFB74E613AFB11F36BDD80CF05CD5DFAD98D6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Dictionary_2__ctor_mFE05D6497178A10A9FEFFE992EEFFD1A6087398E_RuntimeMethod_var); } IL_0021: { RuntimeObject* L_6 = ___dictionary0; NullCheck((RuntimeObject *)L_6); Type_t * L_7 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60((RuntimeObject *)L_6, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_8 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 6)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_9 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_8, /*hidden argument*/NULL); bool L_10 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_7, (Type_t *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0085; } } { RuntimeObject* L_11 = ___dictionary0; Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * L_12 = (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)Castclass((RuntimeObject*)L_11, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))); NullCheck(L_12); int32_t L_13 = (int32_t)L_12->get_count_2(); V_0 = (int32_t)L_13; NullCheck(L_12); EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_14 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)L_12->get_entries_1(); V_1 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)L_14; V_2 = (int32_t)0; goto IL_0080; } IL_004f: { EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_15 = V_1; int32_t L_16 = V_2; NullCheck(L_15); int32_t L_17 = (int32_t)((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16)))->get_hashCode_0(); if ((((int32_t)L_17) < ((int32_t)0))) { goto IL_007c; } } { EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_18 = V_1; int32_t L_19 = V_2; NullCheck(L_18); uint16_t L_20 = (uint16_t)((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)))->get_key_2(); EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_21 = V_1; int32_t L_22 = V_2; NullCheck(L_21); RuntimeObject * L_23 = (RuntimeObject *)((L_21)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_22)))->get_value_3(); NullCheck((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this); (( void (*) (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *, uint16_t, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this, (uint16_t)L_20, (RuntimeObject *)L_23, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); } IL_007c: { int32_t L_24 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1)); } IL_0080: { int32_t L_25 = V_2; int32_t L_26 = V_0; if ((((int32_t)L_25) < ((int32_t)L_26))) { goto IL_004f; } } { return; } IL_0085: { RuntimeObject* L_27 = ___dictionary0; NullCheck((RuntimeObject*)L_27); RuntimeObject* L_28 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.UInt16,System.Object>>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 9), (RuntimeObject*)L_27); V_3 = (RuntimeObject*)L_28; } IL_008c: try { // begin try (depth: 1) { goto IL_00aa; } IL_008e: { RuntimeObject* L_29 = V_3; NullCheck((RuntimeObject*)L_29); KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 L_30 = InterfaceFuncInvoker0< KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt16,System.Object>>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 10), (RuntimeObject*)L_29); V_4 = (KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 )L_30; uint16_t L_31 = KeyValuePair_2_get_Key_mB51C4AA5BD683F1FB85101F403C825A315784C9F_inline((KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 *)(KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 *)(&V_4), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); RuntimeObject * L_32 = KeyValuePair_2_get_Value_m2FD5C0ECFDA6A2DD292C4DBC2E6F56F3F6E074C2_inline((KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 *)(KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 *)(&V_4), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); NullCheck((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this); (( void (*) (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *, uint16_t, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this, (uint16_t)L_31, (RuntimeObject *)L_32, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); } IL_00aa: { RuntimeObject* L_33 = V_3; NullCheck((RuntimeObject*)L_33); bool L_34 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, (RuntimeObject*)L_33); if (L_34) { goto IL_008e; } } IL_00b2: { IL2CPP_LEAVE(0xBE, FINALLY_00b4); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00b4; } FINALLY_00b4: { // begin finally (depth: 1) { RuntimeObject* L_35 = V_3; if (!L_35) { goto IL_00bd; } } IL_00b7: { RuntimeObject* L_36 = V_3; NullCheck((RuntimeObject*)L_36); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, (RuntimeObject*)L_36); } IL_00bd: { IL2CPP_END_FINALLY(180) } } // end finally (depth: 1) IL2CPP_CLEANUP(180) { IL2CPP_JUMP_TBL(0xBE, IL_00be) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_00be: { return; } } // System.Void System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m61621F7A1471FFD1440B317FD421AC492D9073E9_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2__ctor_m61621F7A1471FFD1440B317FD421AC492D9073E9_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_0 = DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C_inline(/*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_1 = ___info0; NullCheck((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0); ConditionalWeakTable_2_Add_mCC3585BE91A7BDFC49EEFDE4C11173A36D1FB5FE((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0, (RuntimeObject *)__this, (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_1, /*hidden argument*/ConditionalWeakTable_2_Add_mCC3585BE91A7BDFC49EEFDE4C11173A36D1FB5FE_RuntimeMethod_var); return; } } // System.Int32 System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Dictionary_2_get_Count_m5783C8AA5D59196678CF27051AFA70E3904404A6_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_count_2(); int32_t L_1 = (int32_t)__this->get_freeCount_5(); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)); } } // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::get_Keys() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyCollection_tA0E3081654BAAA7B8AA71F9DD07C233A9F9D75B4 * Dictionary_2_get_Keys_mF35C6063CCC13997AA3ACBE36FC5C685070AE51D_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, const RuntimeMethod* method) { { KeyCollection_tA0E3081654BAAA7B8AA71F9DD07C233A9F9D75B4 * L_0 = (KeyCollection_tA0E3081654BAAA7B8AA71F9DD07C233A9F9D75B4 *)__this->get_keys_7(); if (L_0) { goto IL_0014; } } { KeyCollection_tA0E3081654BAAA7B8AA71F9DD07C233A9F9D75B4 * L_1 = (KeyCollection_tA0E3081654BAAA7B8AA71F9DD07C233A9F9D75B4 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 13)); (( void (*) (KeyCollection_tA0E3081654BAAA7B8AA71F9DD07C233A9F9D75B4 *, Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)->methodPointer)(L_1, (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)); __this->set_keys_7(L_1); } IL_0014: { KeyCollection_tA0E3081654BAAA7B8AA71F9DD07C233A9F9D75B4 * L_2 = (KeyCollection_tA0E3081654BAAA7B8AA71F9DD07C233A9F9D75B4 *)__this->get_keys_7(); return L_2; } } // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::get_Values() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueCollection_tCEB02848E807536415449852101F0B4CEAB130B2 * Dictionary_2_get_Values_m776A4079BECBF8D00D1FA79DD58851F47DA95320_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, const RuntimeMethod* method) { { ValueCollection_tCEB02848E807536415449852101F0B4CEAB130B2 * L_0 = (ValueCollection_tCEB02848E807536415449852101F0B4CEAB130B2 *)__this->get_values_8(); if (L_0) { goto IL_0014; } } { ValueCollection_tCEB02848E807536415449852101F0B4CEAB130B2 * L_1 = (ValueCollection_tCEB02848E807536415449852101F0B4CEAB130B2 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 15)); (( void (*) (ValueCollection_tCEB02848E807536415449852101F0B4CEAB130B2 *, Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)->methodPointer)(L_1, (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)); __this->set_values_8(L_1); } IL_0014: { ValueCollection_tCEB02848E807536415449852101F0B4CEAB130B2 * L_2 = (ValueCollection_tCEB02848E807536415449852101F0B4CEAB130B2 *)__this->get_values_8(); return L_2; } } // TValue System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::get_Item(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Dictionary_2_get_Item_m0F77D41503815D1D209EBEE278FCCAE0A075C228_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, uint16_t ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_get_Item_m0F77D41503815D1D209EBEE278FCCAE0A075C228_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { uint16_t L_0 = ___key0; NullCheck((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *, uint16_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this, (uint16_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_001e; } } { EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_3 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)__this->get_entries_1(); int32_t L_4 = V_0; NullCheck(L_3); RuntimeObject * L_5 = (RuntimeObject *)((L_3)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_4)))->get_value_3(); return L_5; } IL_001e: { KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2 * L_6 = (KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2 *)il2cpp_codegen_object_new(KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2_il2cpp_TypeInfo_var); KeyNotFoundException__ctor_mE9E1C6E6E21842095342C0A2ED65EC201FB4F3C8(L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Dictionary_2_get_Item_m0F77D41503815D1D209EBEE278FCCAE0A075C228_RuntimeMethod_var); } } // System.Void System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::set_Item(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_mB5A51457B3D9B8A2F9776D0B45CB337CC7722900_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, uint16_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { { uint16_t L_0 = ___key0; RuntimeObject * L_1 = ___value1; NullCheck((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this); (( bool (*) (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *, uint16_t, RuntimeObject *, uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this, (uint16_t)L_0, (RuntimeObject *)L_1, (uint8_t)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::Add(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_mAD84417D3783D2DF68ED49FD74E6358AD2A21312_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, uint16_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { { uint16_t L_0 = ___key0; RuntimeObject * L_1 = ___value1; NullCheck((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this); (( bool (*) (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *, uint16_t, RuntimeObject *, uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this, (uint16_t)L_0, (RuntimeObject *)L_1, (uint8_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Add_m76D0E1B03D5C147C61852E5A628B8A7E0C3BDBC8_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 ___keyValuePair0, const RuntimeMethod* method) { { uint16_t L_0 = KeyValuePair_2_get_Key_mB51C4AA5BD683F1FB85101F403C825A315784C9F_inline((KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 *)(KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); RuntimeObject * L_1 = KeyValuePair_2_get_Value_m2FD5C0ECFDA6A2DD292C4DBC2E6F56F3F6E074C2_inline((KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 *)(KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); NullCheck((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this); (( void (*) (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *, uint16_t, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this, (uint16_t)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Contains(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Contains_m7523F8C87954D80AF6C1BCE9976E1BB5A1AB6520_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 ___keyValuePair0, const RuntimeMethod* method) { int32_t V_0 = 0; { uint16_t L_0 = KeyValuePair_2_get_Key_mB51C4AA5BD683F1FB85101F403C825A315784C9F_inline((KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 *)(KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *, uint16_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this, (uint16_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0038; } } { EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * L_3 = (( EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)); EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_4 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); RuntimeObject * L_6 = (RuntimeObject *)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); RuntimeObject * L_7 = KeyValuePair_2_get_Value_m2FD5C0ECFDA6A2DD292C4DBC2E6F56F3F6E074C2_inline((KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 *)(KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); NullCheck((EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_3); bool L_8 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(T,T) */, (EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_3, (RuntimeObject *)L_6, (RuntimeObject *)L_7); if (!L_8) { goto IL_0038; } } { return (bool)1; } IL_0038: { return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Remove_mCCF148CB2A744A8D84AA5F17585162E13962C5D1_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 ___keyValuePair0, const RuntimeMethod* method) { int32_t V_0 = 0; { uint16_t L_0 = KeyValuePair_2_get_Key_mB51C4AA5BD683F1FB85101F403C825A315784C9F_inline((KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 *)(KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *, uint16_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this, (uint16_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0046; } } { EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * L_3 = (( EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)); EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_4 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); RuntimeObject * L_6 = (RuntimeObject *)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); RuntimeObject * L_7 = KeyValuePair_2_get_Value_m2FD5C0ECFDA6A2DD292C4DBC2E6F56F3F6E074C2_inline((KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 *)(KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); NullCheck((EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_3); bool L_8 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(T,T) */, (EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_3, (RuntimeObject *)L_6, (RuntimeObject *)L_7); if (!L_8) { goto IL_0046; } } { uint16_t L_9 = KeyValuePair_2_get_Key_mB51C4AA5BD683F1FB85101F403C825A315784C9F_inline((KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 *)(KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this); (( bool (*) (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *, uint16_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)->methodPointer)((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this, (uint16_t)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); return (bool)1; } IL_0046: { return (bool)0; } } // System.Void System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Clear_m795277D3F806B0F9CEE6B6C27352B6065369D814_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = (int32_t)__this->get_count_2(); if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_005a; } } { V_0 = (int32_t)0; goto IL_001a; } IL_000d: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_2 = V_0; NullCheck(L_1); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(L_2), (int32_t)(-1)); int32_t L_3 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)); } IL_001a: { int32_t L_4 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_5 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_5); if ((((int32_t)L_4) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length))))))) { goto IL_000d; } } { EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_6 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)__this->get_entries_1(); int32_t L_7 = (int32_t)__this->get_count_2(); Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_6, (int32_t)0, (int32_t)L_7, /*hidden argument*/NULL); __this->set_freeList_4((-1)); __this->set_count_2(0); __this->set_freeCount_5(0); int32_t L_8 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1))); } IL_005a: { return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::ContainsKey(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsKey_m85AFC0A74ABE8EBA15572CA658F58B290DF7DBFF_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, uint16_t ___key0, const RuntimeMethod* method) { { uint16_t L_0 = ___key0; NullCheck((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *, uint16_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this, (uint16_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); return (bool)((((int32_t)((((int32_t)L_1) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::ContainsValue(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsValue_m09D1203A6E2F3BA4E7613F6F17F637C03A8831CC_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { int32_t V_0 = 0; EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * V_1 = NULL; int32_t V_2 = 0; { RuntimeObject * L_0 = ___value0; if (L_0) { goto IL_0049; } } { V_0 = (int32_t)0; goto IL_003e; } IL_000c: { EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_1 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)__this->get_entries_1(); int32_t L_2 = V_0; NullCheck(L_1); int32_t L_3 = (int32_t)((L_1)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_2)))->get_hashCode_0(); if ((((int32_t)L_3) < ((int32_t)0))) { goto IL_003a; } } { EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_4 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); RuntimeObject * L_6 = (RuntimeObject *)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); if (L_6) { goto IL_003a; } } { return (bool)1; } IL_003a: { int32_t L_7 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)); } IL_003e: { int32_t L_8 = V_0; int32_t L_9 = (int32_t)__this->get_count_2(); if ((((int32_t)L_8) < ((int32_t)L_9))) { goto IL_000c; } } { goto IL_0090; } IL_0049: { EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * L_10 = (( EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)); V_1 = (EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_10; V_2 = (int32_t)0; goto IL_0087; } IL_0053: { EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_11 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)__this->get_entries_1(); int32_t L_12 = V_2; NullCheck(L_11); int32_t L_13 = (int32_t)((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12)))->get_hashCode_0(); if ((((int32_t)L_13) < ((int32_t)0))) { goto IL_0083; } } { EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * L_14 = V_1; EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_15 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)__this->get_entries_1(); int32_t L_16 = V_2; NullCheck(L_15); RuntimeObject * L_17 = (RuntimeObject *)((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16)))->get_value_3(); RuntimeObject * L_18 = ___value0; NullCheck((EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_14); bool L_19 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(T,T) */, (EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_14, (RuntimeObject *)L_17, (RuntimeObject *)L_18); if (!L_19) { goto IL_0083; } } { return (bool)1; } IL_0083: { int32_t L_20 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1)); } IL_0087: { int32_t L_21 = V_2; int32_t L_22 = (int32_t)__this->get_count_2(); if ((((int32_t)L_21) < ((int32_t)L_22))) { goto IL_0053; } } IL_0090: { return (bool)0; } } // System.Void System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_CopyTo_mA0FFCCD54E213325146C71FBE0921ED03206B7AE_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, KeyValuePair_2U5BU5D_t973017D6141F6D8AD9DCE8E35F9369C5A391F9F3* ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_CopyTo_mA0FFCCD54E213325146C71FBE0921ED03206B7AE_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* V_1 = NULL; int32_t V_2 = 0; { KeyValuePair_2U5BU5D_t973017D6141F6D8AD9DCE8E35F9369C5A391F9F3* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_CopyTo_mA0FFCCD54E213325146C71FBE0921ED03206B7AE_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___index1; KeyValuePair_2U5BU5D_t973017D6141F6D8AD9DCE8E35F9369C5A391F9F3* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))) { goto IL_002e; } } IL_0018: { int32_t L_5 = ___index1; int32_t L_6 = L_5; RuntimeObject * L_7 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_6); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_8, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, (RuntimeObject *)L_7, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Dictionary_2_CopyTo_mA0FFCCD54E213325146C71FBE0921ED03206B7AE_RuntimeMethod_var); } IL_002e: { KeyValuePair_2U5BU5D_t973017D6141F6D8AD9DCE8E35F9369C5A391F9F3* L_9 = ___array0; NullCheck(L_9); int32_t L_10 = ___index1; NullCheck((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this); int32_t L_11 = (( int32_t (*) (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)->methodPointer)((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_11))) { goto IL_0046; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_12, (String_t*)_stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Dictionary_2_CopyTo_mA0FFCCD54E213325146C71FBE0921ED03206B7AE_RuntimeMethod_var); } IL_0046: { int32_t L_13 = (int32_t)__this->get_count_2(); V_0 = (int32_t)L_13; EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_14 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)__this->get_entries_1(); V_1 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)L_14; V_2 = (int32_t)0; goto IL_0094; } IL_0058: { EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_15 = V_1; int32_t L_16 = V_2; NullCheck(L_15); int32_t L_17 = (int32_t)((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16)))->get_hashCode_0(); if ((((int32_t)L_17) < ((int32_t)0))) { goto IL_0090; } } { KeyValuePair_2U5BU5D_t973017D6141F6D8AD9DCE8E35F9369C5A391F9F3* L_18 = ___array0; int32_t L_19 = ___index1; int32_t L_20 = (int32_t)L_19; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1)); EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_21 = V_1; int32_t L_22 = V_2; NullCheck(L_21); uint16_t L_23 = (uint16_t)((L_21)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_22)))->get_key_2(); EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_24 = V_1; int32_t L_25 = V_2; NullCheck(L_24); RuntimeObject * L_26 = (RuntimeObject *)((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_value_3(); KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 L_27; memset((&L_27), 0, sizeof(L_27)); KeyValuePair_2__ctor_m2243E70A292DD0A7C69C6B99BC34719F41FF650E((&L_27), (uint16_t)L_23, (RuntimeObject *)L_26, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)); NullCheck(L_18); (L_18)->SetAt(static_cast<il2cpp_array_size_t>(L_20), (KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 )L_27); } IL_0090: { int32_t L_28 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)1)); } IL_0094: { int32_t L_29 = V_2; int32_t L_30 = V_0; if ((((int32_t)L_29) < ((int32_t)L_30))) { goto IL_0058; } } { return; } } // System.Collections.Generic.Dictionary`2_Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t976B9B5D38C913E0FC1BBE5B6DE0F3DA69753796 Dictionary_2_GetEnumerator_mBF50C5F07CB3DB459F00A8D9D9A29FFD812459FA_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, const RuntimeMethod* method) { { Enumerator_t976B9B5D38C913E0FC1BBE5B6DE0F3DA69753796 L_0; memset((&L_0), 0, sizeof(L_0)); Enumerator__ctor_mE681F7DC74D4D64852C7667F5EDED38D8365707A((&L_0), (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 28)); return L_0; } } // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<TKey,TValue>> System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_Generic_IEnumerableU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_GetEnumerator_mCDF024B05BD07E5339B2859148306A3460C6CBE3_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, const RuntimeMethod* method) { { Enumerator_t976B9B5D38C913E0FC1BBE5B6DE0F3DA69753796 L_0; memset((&L_0), 0, sizeof(L_0)); Enumerator__ctor_mE681F7DC74D4D64852C7667F5EDED38D8365707A((&L_0), (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 28)); Enumerator_t976B9B5D38C913E0FC1BBE5B6DE0F3DA69753796 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 27), &L_1); return (RuntimeObject*)L_2; } } // System.Void System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_GetObjectData_m64D252EF211FE9FDE02E45E2DC5E78022338FB9F_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_GetObjectData_m64D252EF211FE9FDE02E45E2DC5E78022338FB9F_MetadataUsageId); s_Il2CppMethodInitialized = true; } KeyValuePair_2U5BU5D_t973017D6141F6D8AD9DCE8E35F9369C5A391F9F3* V_0 = NULL; String_t* G_B4_0 = NULL; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * G_B4_1 = NULL; String_t* G_B3_0 = NULL; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * G_B3_1 = NULL; int32_t G_B5_0 = 0; String_t* G_B5_1 = NULL; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * G_B5_2 = NULL; { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_GetObjectData_m64D252EF211FE9FDE02E45E2DC5E78022338FB9F_RuntimeMethod_var); } IL_000e: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0; int32_t L_3 = (int32_t)__this->get_version_3(); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2); SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2, (String_t*)_stringLiteral2DA600BF9404843107A9531694F654E5662959E0, (int32_t)L_3, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = ___info0; RuntimeObject* L_5 = (RuntimeObject*)__this->get_comparer_6(); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 29)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_6, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4, (String_t*)_stringLiteral8FC94E4F5B71CECE2565D72417AACC804EE27A0D, (RuntimeObject *)L_5, (Type_t *)L_7, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_8 = ___info0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_9 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); G_B3_0 = _stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60; G_B3_1 = L_8; if (!L_9) { G_B4_0 = _stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60; G_B4_1 = L_8; goto IL_0052; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_10 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_10); G_B5_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))); G_B5_1 = G_B3_0; G_B5_2 = G_B3_1; goto IL_0053; } IL_0052: { G_B5_0 = 0; G_B5_1 = G_B4_0; G_B5_2 = G_B4_1; } IL_0053: { NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)G_B5_2); SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)G_B5_2, (String_t*)G_B5_1, (int32_t)G_B5_0, /*hidden argument*/NULL); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_11 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (!L_11) { goto IL_008a; } } { NullCheck((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this); int32_t L_12 = (( int32_t (*) (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)->methodPointer)((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)); KeyValuePair_2U5BU5D_t973017D6141F6D8AD9DCE8E35F9369C5A391F9F3* L_13 = (KeyValuePair_2U5BU5D_t973017D6141F6D8AD9DCE8E35F9369C5A391F9F3*)(KeyValuePair_2U5BU5D_t973017D6141F6D8AD9DCE8E35F9369C5A391F9F3*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 30), (uint32_t)L_12); V_0 = (KeyValuePair_2U5BU5D_t973017D6141F6D8AD9DCE8E35F9369C5A391F9F3*)L_13; KeyValuePair_2U5BU5D_t973017D6141F6D8AD9DCE8E35F9369C5A391F9F3* L_14 = V_0; NullCheck((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this); (( void (*) (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *, KeyValuePair_2U5BU5D_t973017D6141F6D8AD9DCE8E35F9369C5A391F9F3*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this, (KeyValuePair_2U5BU5D_t973017D6141F6D8AD9DCE8E35F9369C5A391F9F3*)L_14, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_15 = ___info0; KeyValuePair_2U5BU5D_t973017D6141F6D8AD9DCE8E35F9369C5A391F9F3* L_16 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_17 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 32)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_18 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_17, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_15); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_15, (String_t*)_stringLiteral1D89254A2BC78C1FF41C2F6767A0E00EE126B3BF, (RuntimeObject *)(RuntimeObject *)L_16, (Type_t *)L_18, /*hidden argument*/NULL); } IL_008a: { return; } } // System.Int32 System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::FindEntry(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Dictionary_2_FindEntry_m7CDCCE2CE74F95943A73150DD4DDABFBD0D3543D_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, uint16_t ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_FindEntry_m7CDCCE2CE74F95943A73150DD4DDABFBD0D3543D_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { goto IL_0013; } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_FindEntry_m7CDCCE2CE74F95943A73150DD4DDABFBD0D3543D_RuntimeMethod_var); } IL_0013: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (!L_2) { goto IL_008d; } } { RuntimeObject* L_3 = (RuntimeObject*)__this->get_comparer_6(); uint16_t L_4 = ___key0; NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, uint16_t >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.UInt16>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_3, (uint16_t)L_4); V_0 = (int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL))); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_6 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_7 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_8); NullCheck(L_6); int32_t L_9 = ((int32_t)((int32_t)L_7%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))))); int32_t L_10 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); V_1 = (int32_t)L_10; goto IL_0089; } IL_0042: { EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_11 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)__this->get_entries_1(); int32_t L_12 = V_1; NullCheck(L_11); int32_t L_13 = (int32_t)((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12)))->get_hashCode_0(); int32_t L_14 = V_0; if ((!(((uint32_t)L_13) == ((uint32_t)L_14)))) { goto IL_0077; } } { RuntimeObject* L_15 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_16 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)__this->get_entries_1(); int32_t L_17 = V_1; NullCheck(L_16); uint16_t L_18 = (uint16_t)((L_16)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_17)))->get_key_2(); uint16_t L_19 = ___key0; NullCheck((RuntimeObject*)L_15); bool L_20 = InterfaceFuncInvoker2< bool, uint16_t, uint16_t >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.UInt16>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_15, (uint16_t)L_18, (uint16_t)L_19); if (!L_20) { goto IL_0077; } } { int32_t L_21 = V_1; return L_21; } IL_0077: { EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_22 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)__this->get_entries_1(); int32_t L_23 = V_1; NullCheck(L_22); int32_t L_24 = (int32_t)((L_22)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_23)))->get_next_1(); V_1 = (int32_t)L_24; } IL_0089: { int32_t L_25 = V_1; if ((((int32_t)L_25) >= ((int32_t)0))) { goto IL_0042; } } IL_008d: { return (-1); } } // System.Void System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::Initialize(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Initialize_m19CD536ADD67E21320D7367CB14B9559CF0535F3_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, int32_t ___capacity0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Initialize_m19CD536ADD67E21320D7367CB14B9559CF0535F3_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___capacity0; IL2CPP_RUNTIME_CLASS_INIT(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var); int32_t L_1 = HashHelpers_GetPrime_m743D7006C2BCBADC1DC8CACF7C5B78C9F6B38297((int32_t)L_0, /*hidden argument*/NULL); V_0 = (int32_t)L_1; int32_t L_2 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_3 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_2); __this->set_buckets_0(L_3); V_1 = (int32_t)0; goto IL_0024; } IL_0017: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_4 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_5 = V_1; NullCheck(L_4); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (int32_t)(-1)); int32_t L_6 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)); } IL_0024: { int32_t L_7 = V_1; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_8); if ((((int32_t)L_7) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length))))))) { goto IL_0017; } } { int32_t L_9 = V_0; EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_10 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)(EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 35), (uint32_t)L_9); __this->set_entries_1(L_10); __this->set_freeList_4((-1)); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::TryInsert(TKey,TValue,System.Collections.Generic.InsertionBehavior) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryInsert_mBC4B9C25BC643F5EA9E0C288F0F5D02E1D30492C_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, uint16_t ___key0, RuntimeObject * ___value1, uint8_t ___behavior2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_TryInsert_mBC4B9C25BC643F5EA9E0C288F0F5D02E1D30492C_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; { goto IL_0013; } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_TryInsert_mBC4B9C25BC643F5EA9E0C288F0F5D02E1D30492C_RuntimeMethod_var); } IL_0013: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (L_2) { goto IL_0022; } } { NullCheck((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this); (( void (*) (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); } IL_0022: { RuntimeObject* L_3 = (RuntimeObject*)__this->get_comparer_6(); uint16_t L_4 = ___key0; NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, uint16_t >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.UInt16>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_3, (uint16_t)L_4); V_0 = (int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL))); int32_t L_6 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_7 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_7); V_1 = (int32_t)((int32_t)((int32_t)L_6%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length)))))); V_2 = (int32_t)0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_9 = V_1; NullCheck(L_8); int32_t L_10 = L_9; int32_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); V_4 = (int32_t)L_11; goto IL_00e1; } IL_0051: { EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_12 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)__this->get_entries_1(); int32_t L_13 = V_4; NullCheck(L_12); int32_t L_14 = (int32_t)((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_13)))->get_hashCode_0(); int32_t L_15 = V_0; if ((!(((uint32_t)L_14) == ((uint32_t)L_15)))) { goto IL_00c9; } } { RuntimeObject* L_16 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_17 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)__this->get_entries_1(); int32_t L_18 = V_4; NullCheck(L_17); uint16_t L_19 = (uint16_t)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->get_key_2(); uint16_t L_20 = ___key0; NullCheck((RuntimeObject*)L_16); bool L_21 = InterfaceFuncInvoker2< bool, uint16_t, uint16_t >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.UInt16>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_16, (uint16_t)L_19, (uint16_t)L_20); if (!L_21) { goto IL_00c9; } } { uint8_t L_22 = ___behavior2; if ((!(((uint32_t)L_22) == ((uint32_t)1)))) { goto IL_00ad; } } { EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_23 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)__this->get_entries_1(); int32_t L_24 = V_4; NullCheck(L_23); RuntimeObject * L_25 = ___value1; ((L_23)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_24)))->set_value_3(L_25); int32_t L_26 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1))); return (bool)1; } IL_00ad: { uint8_t L_27 = ___behavior2; if ((!(((uint32_t)L_27) == ((uint32_t)2)))) { goto IL_00c7; } } { uint16_t L_28 = ___key0; uint16_t L_29 = L_28; RuntimeObject * L_30 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 33), &L_29); String_t* L_31 = SR_Format_mCDBB594267CC224AB2A69540BBA598151F0642C7((String_t*)_stringLiteral6FD577FD3A1BDC4DA28CD51D7A55EB397CEA3926, (RuntimeObject *)L_30, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_32 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_32, (String_t*)L_31, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_32, NULL, Dictionary_2_TryInsert_mBC4B9C25BC643F5EA9E0C288F0F5D02E1D30492C_RuntimeMethod_var); } IL_00c7: { return (bool)0; } IL_00c9: { int32_t L_33 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1)); EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_34 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)__this->get_entries_1(); int32_t L_35 = V_4; NullCheck(L_34); int32_t L_36 = (int32_t)((L_34)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_35)))->get_next_1(); V_4 = (int32_t)L_36; } IL_00e1: { int32_t L_37 = V_4; if ((((int32_t)L_37) >= ((int32_t)0))) { goto IL_0051; } } { int32_t L_38 = (int32_t)__this->get_freeCount_5(); if ((((int32_t)L_38) <= ((int32_t)0))) { goto IL_0120; } } { int32_t L_39 = (int32_t)__this->get_freeList_4(); V_3 = (int32_t)L_39; EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_40 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)__this->get_entries_1(); int32_t L_41 = V_3; NullCheck(L_40); int32_t L_42 = (int32_t)((L_40)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_41)))->get_next_1(); __this->set_freeList_4(L_42); int32_t L_43 = (int32_t)__this->get_freeCount_5(); __this->set_freeCount_5(((int32_t)il2cpp_codegen_subtract((int32_t)L_43, (int32_t)1))); goto IL_0156; } IL_0120: { int32_t L_44 = (int32_t)__this->get_count_2(); EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_45 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)__this->get_entries_1(); NullCheck(L_45); if ((!(((uint32_t)L_44) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_45)->max_length)))))))) { goto IL_0141; } } { NullCheck((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this); (( void (*) (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 36)->methodPointer)((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 36)); int32_t L_46 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_47 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_47); V_1 = (int32_t)((int32_t)((int32_t)L_46%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_47)->max_length)))))); } IL_0141: { int32_t L_48 = (int32_t)__this->get_count_2(); V_3 = (int32_t)L_48; int32_t L_49 = (int32_t)__this->get_count_2(); __this->set_count_2(((int32_t)il2cpp_codegen_add((int32_t)L_49, (int32_t)1))); } IL_0156: { EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_50 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)__this->get_entries_1(); int32_t L_51 = V_3; NullCheck(L_50); int32_t L_52 = V_0; ((L_50)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_51)))->set_hashCode_0(L_52); EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_53 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)__this->get_entries_1(); int32_t L_54 = V_3; NullCheck(L_53); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_55 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_56 = V_1; NullCheck(L_55); int32_t L_57 = L_56; int32_t L_58 = (L_55)->GetAt(static_cast<il2cpp_array_size_t>(L_57)); ((L_53)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_54)))->set_next_1(L_58); EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_59 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)__this->get_entries_1(); int32_t L_60 = V_3; NullCheck(L_59); uint16_t L_61 = ___key0; ((L_59)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_60)))->set_key_2(L_61); EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_62 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)__this->get_entries_1(); int32_t L_63 = V_3; NullCheck(L_62); RuntimeObject * L_64 = ___value1; ((L_62)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_63)))->set_value_3(L_64); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_65 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_66 = V_1; int32_t L_67 = V_3; NullCheck(L_65); (L_65)->SetAt(static_cast<il2cpp_array_size_t>(L_66), (int32_t)L_67); int32_t L_68 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_68, (int32_t)1))); int32_t L_69 = V_2; if ((((int32_t)L_69) <= ((int32_t)((int32_t)100)))) { goto IL_01ed; } } { RuntimeObject* L_70 = (RuntimeObject*)__this->get_comparer_6(); if (!((NonRandomizedStringEqualityComparer_t92C20503D9C5060A557792ABCCC06EF2DD77E5D9 *)IsInst((RuntimeObject*)L_70, NonRandomizedStringEqualityComparer_t92C20503D9C5060A557792ABCCC06EF2DD77E5D9_il2cpp_TypeInfo_var))) { goto IL_01ed; } } { EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137 * L_71 = EqualityComparer_1_get_Default_m85F378D7298050D5DF422363D5EB30A218B769B7(/*hidden argument*/EqualityComparer_1_get_Default_m85F378D7298050D5DF422363D5EB30A218B769B7_RuntimeMethod_var); __this->set_comparer_6(((RuntimeObject*)Castclass((RuntimeObject*)L_71, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34)))); EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_72 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)__this->get_entries_1(); NullCheck(L_72); NullCheck((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this); (( void (*) (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *, int32_t, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)->methodPointer)((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this, (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_72)->max_length)))), (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)); } IL_01ed: { return (bool)1; } } // System.Void System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::OnDeserialization(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_OnDeserialization_m02597AA473E216CF5531646FE7D8F2C8A2FCD8C5_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, RuntimeObject * ___sender0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_OnDeserialization_m02597AA473E216CF5531646FE7D8F2C8A2FCD8C5_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; KeyValuePair_2U5BU5D_t973017D6141F6D8AD9DCE8E35F9369C5A391F9F3* V_3 = NULL; int32_t V_4 = 0; int32_t V_5 = 0; { IL2CPP_RUNTIME_CLASS_INIT(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_0 = DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C_inline(/*hidden argument*/NULL); NullCheck((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0); ConditionalWeakTable_2_TryGetValue_mDFCB6C303807E3F8998D196F4573870680E81F8B((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0, (RuntimeObject *)__this, (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 **)(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 **)(&V_0), /*hidden argument*/ConditionalWeakTable_2_TryGetValue_mDFCB6C303807E3F8998D196F4573870680E81F8B_RuntimeMethod_var); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_1 = V_0; if (L_1) { goto IL_0012; } } { return; } IL_0012: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = V_0; NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2); int32_t L_3 = SerializationInfo_GetInt32_mB47BD46A0BDBBAF5B47BB62E6EFF8E092E3F3656((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2, (String_t*)_stringLiteral2DA600BF9404843107A9531694F654E5662959E0, /*hidden argument*/NULL); V_1 = (int32_t)L_3; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = V_0; NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4); int32_t L_5 = SerializationInfo_GetInt32_mB47BD46A0BDBBAF5B47BB62E6EFF8E092E3F3656((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4, (String_t*)_stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60, /*hidden argument*/NULL); V_2 = (int32_t)L_5; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_6 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 29)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_7, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_6); RuntimeObject * L_9 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_6, (String_t*)_stringLiteral8FC94E4F5B71CECE2565D72417AACC804EE27A0D, (Type_t *)L_8, /*hidden argument*/NULL); __this->set_comparer_6(((RuntimeObject*)Castclass((RuntimeObject*)L_9, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34)))); int32_t L_10 = V_2; if (!L_10) { goto IL_010c; } } { int32_t L_11 = V_2; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_12 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_11); __this->set_buckets_0(L_12); V_4 = (int32_t)0; goto IL_0071; } IL_0061: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_13 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_14 = V_4; NullCheck(L_13); (L_13)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (int32_t)(-1)); int32_t L_15 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_0071: { int32_t L_16 = V_4; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_17 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_17); if ((((int32_t)L_16) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length))))))) { goto IL_0061; } } { int32_t L_18 = V_2; EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_19 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)(EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 35), (uint32_t)L_18); __this->set_entries_1(L_19); __this->set_freeList_4((-1)); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_20 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_21 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 32)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_22 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_21, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_20); RuntimeObject * L_23 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_20, (String_t*)_stringLiteral1D89254A2BC78C1FF41C2F6767A0E00EE126B3BF, (Type_t *)L_22, /*hidden argument*/NULL); V_3 = (KeyValuePair_2U5BU5D_t973017D6141F6D8AD9DCE8E35F9369C5A391F9F3*)((KeyValuePair_2U5BU5D_t973017D6141F6D8AD9DCE8E35F9369C5A391F9F3*)Castclass((RuntimeObject*)L_23, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 38))); KeyValuePair_2U5BU5D_t973017D6141F6D8AD9DCE8E35F9369C5A391F9F3* L_24 = V_3; if (L_24) { goto IL_00b9; } } { SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * L_25 = (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 *)il2cpp_codegen_object_new(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var); SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1(L_25, (String_t*)_stringLiteral1EB7E67EA75FFC3FCB05A9685FA4F1578DCACCF6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, NULL, Dictionary_2_OnDeserialization_m02597AA473E216CF5531646FE7D8F2C8A2FCD8C5_RuntimeMethod_var); } IL_00b9: { V_5 = (int32_t)0; goto IL_0103; } IL_00be: { KeyValuePair_2U5BU5D_t973017D6141F6D8AD9DCE8E35F9369C5A391F9F3* L_26 = V_3; int32_t L_27 = V_5; NullCheck(L_26); uint16_t L_28 = KeyValuePair_2_get_Key_mB51C4AA5BD683F1FB85101F403C825A315784C9F_inline((KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 *)(KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 *)((L_26)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_27))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); goto IL_00dd; } { SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * L_29 = (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 *)il2cpp_codegen_object_new(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var); SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1(L_29, (String_t*)_stringLiteralD6D1BC79DD62E9F1FB9A49A8F76F4BA8AB71AECD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_29, NULL, Dictionary_2_OnDeserialization_m02597AA473E216CF5531646FE7D8F2C8A2FCD8C5_RuntimeMethod_var); } IL_00dd: { KeyValuePair_2U5BU5D_t973017D6141F6D8AD9DCE8E35F9369C5A391F9F3* L_30 = V_3; int32_t L_31 = V_5; NullCheck(L_30); uint16_t L_32 = KeyValuePair_2_get_Key_mB51C4AA5BD683F1FB85101F403C825A315784C9F_inline((KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 *)(KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 *)((L_30)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_31))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); KeyValuePair_2U5BU5D_t973017D6141F6D8AD9DCE8E35F9369C5A391F9F3* L_33 = V_3; int32_t L_34 = V_5; NullCheck(L_33); RuntimeObject * L_35 = KeyValuePair_2_get_Value_m2FD5C0ECFDA6A2DD292C4DBC2E6F56F3F6E074C2_inline((KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 *)(KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 *)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); NullCheck((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this); (( void (*) (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *, uint16_t, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this, (uint16_t)L_32, (RuntimeObject *)L_35, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); int32_t L_36 = V_5; V_5 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)1)); } IL_0103: { int32_t L_37 = V_5; KeyValuePair_2U5BU5D_t973017D6141F6D8AD9DCE8E35F9369C5A391F9F3* L_38 = V_3; NullCheck(L_38); if ((((int32_t)L_37) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_38)->max_length))))))) { goto IL_00be; } } { goto IL_0113; } IL_010c: { __this->set_buckets_0((Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)NULL); } IL_0113: { int32_t L_39 = V_1; __this->set_version_3(L_39); IL2CPP_RUNTIME_CLASS_INIT(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_40 = DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C_inline(/*hidden argument*/NULL); NullCheck((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_40); ConditionalWeakTable_2_Remove_mD69606977A8C793DEA91E373F7D886E4865D7FBD((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_40, (RuntimeObject *)__this, /*hidden argument*/ConditionalWeakTable_2_Remove_mD69606977A8C793DEA91E373F7D886E4865D7FBD_RuntimeMethod_var); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::Resize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Resize_m5B3FA7BD726CAC73DB274759C7AC6B37304C3BC9_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Resize_m5B3FA7BD726CAC73DB274759C7AC6B37304C3BC9_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_count_2(); IL2CPP_RUNTIME_CLASS_INIT(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var); int32_t L_1 = HashHelpers_ExpandPrime_m4245F4C95074EAA8F949FB3B734F611A533A6A0D((int32_t)L_0, /*hidden argument*/NULL); NullCheck((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this); (( void (*) (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *, int32_t, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)->methodPointer)((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this, (int32_t)L_1, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::Resize(System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Resize_m8C05107CC02D5E293D0C078D6E770696F1AE4731_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, int32_t ___newSize0, bool ___forceNewHashCodes1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Resize_m8C05107CC02D5E293D0C078D6E770696F1AE4731_MetadataUsageId); s_Il2CppMethodInitialized = true; } Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL; EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; { int32_t L_0 = ___newSize0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_0); V_0 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)L_1; V_2 = (int32_t)0; goto IL_0013; } IL_000b: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = V_0; int32_t L_3 = V_2; NullCheck(L_2); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (int32_t)(-1)); int32_t L_4 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)); } IL_0013: { int32_t L_5 = V_2; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_6 = V_0; NullCheck(L_6); if ((((int32_t)L_5) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length))))))) { goto IL_000b; } } { int32_t L_7 = ___newSize0; EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_8 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)(EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 35), (uint32_t)L_7); V_1 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)L_8; EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_9 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)__this->get_entries_1(); EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_10 = V_1; int32_t L_11 = (int32_t)__this->get_count_2(); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_9, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_10, (int32_t)0, (int32_t)L_11, /*hidden argument*/NULL); bool L_12 = ___forceNewHashCodes1; if (!L_12) { goto IL_0080; } } { V_3 = (int32_t)0; goto IL_0077; } IL_003b: { EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_13 = V_1; int32_t L_14 = V_3; NullCheck(L_13); int32_t L_15 = (int32_t)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_hashCode_0(); if ((((int32_t)L_15) == ((int32_t)(-1)))) { goto IL_0073; } } { EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_16 = V_1; int32_t L_17 = V_3; NullCheck(L_16); RuntimeObject* L_18 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_19 = V_1; int32_t L_20 = V_3; NullCheck(L_19); uint16_t L_21 = (uint16_t)((L_19)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_20)))->get_key_2(); NullCheck((RuntimeObject*)L_18); int32_t L_22 = InterfaceFuncInvoker1< int32_t, uint16_t >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.UInt16>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_18, (uint16_t)L_21); ((L_16)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_17)))->set_hashCode_0(((int32_t)((int32_t)L_22&(int32_t)((int32_t)2147483647LL)))); } IL_0073: { int32_t L_23 = V_3; V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); } IL_0077: { int32_t L_24 = V_3; int32_t L_25 = (int32_t)__this->get_count_2(); if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_003b; } } IL_0080: { V_4 = (int32_t)0; goto IL_00c3; } IL_0085: { EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_26 = V_1; int32_t L_27 = V_4; NullCheck(L_26); int32_t L_28 = (int32_t)((L_26)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_27)))->get_hashCode_0(); if ((((int32_t)L_28) < ((int32_t)0))) { goto IL_00bd; } } { EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_29 = V_1; int32_t L_30 = V_4; NullCheck(L_29); int32_t L_31 = (int32_t)((L_29)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_30)))->get_hashCode_0(); int32_t L_32 = ___newSize0; V_5 = (int32_t)((int32_t)((int32_t)L_31%(int32_t)L_32)); EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_33 = V_1; int32_t L_34 = V_4; NullCheck(L_33); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_35 = V_0; int32_t L_36 = V_5; NullCheck(L_35); int32_t L_37 = L_36; int32_t L_38 = (L_35)->GetAt(static_cast<il2cpp_array_size_t>(L_37)); ((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->set_next_1(L_38); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_39 = V_0; int32_t L_40 = V_5; int32_t L_41 = V_4; NullCheck(L_39); (L_39)->SetAt(static_cast<il2cpp_array_size_t>(L_40), (int32_t)L_41); } IL_00bd: { int32_t L_42 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1)); } IL_00c3: { int32_t L_43 = V_4; int32_t L_44 = (int32_t)__this->get_count_2(); if ((((int32_t)L_43) < ((int32_t)L_44))) { goto IL_0085; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_45 = V_0; __this->set_buckets_0(L_45); EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_46 = V_1; __this->set_entries_1(L_46); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::Remove(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_Remove_m6B46E19570DE9C473750683155789F7ADCFF24DE_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, uint16_t ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Remove_m6B46E19570DE9C473750683155789F7ADCFF24DE_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; { goto IL_0013; } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_Remove_m6B46E19570DE9C473750683155789F7ADCFF24DE_RuntimeMethod_var); } IL_0013: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (!L_2) { goto IL_015d; } } { RuntimeObject* L_3 = (RuntimeObject*)__this->get_comparer_6(); uint16_t L_4 = ___key0; NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, uint16_t >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.UInt16>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_3, (uint16_t)L_4); V_0 = (int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL))); int32_t L_6 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_7 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_7); V_1 = (int32_t)((int32_t)((int32_t)L_6%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length)))))); V_2 = (int32_t)(-1); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_9 = V_1; NullCheck(L_8); int32_t L_10 = L_9; int32_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); V_3 = (int32_t)L_11; goto IL_0156; } IL_004c: { EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_12 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)__this->get_entries_1(); int32_t L_13 = V_3; NullCheck(L_12); int32_t L_14 = (int32_t)((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_13)))->get_hashCode_0(); int32_t L_15 = V_0; if ((!(((uint32_t)L_14) == ((uint32_t)L_15)))) { goto IL_0142; } } { RuntimeObject* L_16 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_17 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)__this->get_entries_1(); int32_t L_18 = V_3; NullCheck(L_17); uint16_t L_19 = (uint16_t)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->get_key_2(); uint16_t L_20 = ___key0; NullCheck((RuntimeObject*)L_16); bool L_21 = InterfaceFuncInvoker2< bool, uint16_t, uint16_t >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.UInt16>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_16, (uint16_t)L_19, (uint16_t)L_20); if (!L_21) { goto IL_0142; } } { int32_t L_22 = V_2; if ((((int32_t)L_22) >= ((int32_t)0))) { goto IL_00a4; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_23 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_24 = V_1; EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_25 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)__this->get_entries_1(); int32_t L_26 = V_3; NullCheck(L_25); int32_t L_27 = (int32_t)((L_25)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_26)))->get_next_1(); NullCheck(L_23); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (int32_t)L_27); goto IL_00c6; } IL_00a4: { EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_28 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)__this->get_entries_1(); int32_t L_29 = V_2; NullCheck(L_28); EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_30 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)__this->get_entries_1(); int32_t L_31 = V_3; NullCheck(L_30); int32_t L_32 = (int32_t)((L_30)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_31)))->get_next_1(); ((L_28)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_29)))->set_next_1(L_32); } IL_00c6: { EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_33 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)__this->get_entries_1(); int32_t L_34 = V_3; NullCheck(L_33); ((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->set_hashCode_0((-1)); EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_35 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)__this->get_entries_1(); int32_t L_36 = V_3; NullCheck(L_35); int32_t L_37 = (int32_t)__this->get_freeList_4(); ((L_35)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_36)))->set_next_1(L_37); EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_38 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)__this->get_entries_1(); int32_t L_39 = V_3; NullCheck(L_38); uint16_t* L_40 = (uint16_t*)((L_38)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_39)))->get_address_of_key_2(); il2cpp_codegen_initobj(L_40, sizeof(uint16_t)); EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_41 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)__this->get_entries_1(); int32_t L_42 = V_3; NullCheck(L_41); RuntimeObject ** L_43 = (RuntimeObject **)((L_41)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_42)))->get_address_of_value_3(); il2cpp_codegen_initobj(L_43, sizeof(RuntimeObject *)); int32_t L_44 = V_3; __this->set_freeList_4(L_44); int32_t L_45 = (int32_t)__this->get_freeCount_5(); __this->set_freeCount_5(((int32_t)il2cpp_codegen_add((int32_t)L_45, (int32_t)1))); int32_t L_46 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_46, (int32_t)1))); return (bool)1; } IL_0142: { int32_t L_47 = V_3; V_2 = (int32_t)L_47; EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_48 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)__this->get_entries_1(); int32_t L_49 = V_3; NullCheck(L_48); int32_t L_50 = (int32_t)((L_48)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_49)))->get_next_1(); V_3 = (int32_t)L_50; } IL_0156: { int32_t L_51 = V_3; if ((((int32_t)L_51) >= ((int32_t)0))) { goto IL_004c; } } IL_015d: { return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::TryGetValue(TKey,TValue&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_m4D074835ECBB5885E552D43EFBC82E0562C715C8_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, uint16_t ___key0, RuntimeObject ** ___value1, const RuntimeMethod* method) { int32_t V_0 = 0; { uint16_t L_0 = ___key0; NullCheck((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *, uint16_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this, (uint16_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0025; } } { RuntimeObject ** L_3 = ___value1; EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_4 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); RuntimeObject * L_6 = (RuntimeObject *)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); *(RuntimeObject **)L_3 = L_6; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_3, (void*)L_6); return (bool)1; } IL_0025: { RuntimeObject ** L_7 = ___value1; il2cpp_codegen_initobj(L_7, sizeof(RuntimeObject *)); return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_get_IsReadOnly_m8FC6306CA03538B9D902C4E36B7574C1CCCA9CAC_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Void System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_CopyTo_m6D100DF7CA24D16188AAA32BF2B9796AEFCB2C71_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, KeyValuePair_2U5BU5D_t973017D6141F6D8AD9DCE8E35F9369C5A391F9F3* ___array0, int32_t ___index1, const RuntimeMethod* method) { { KeyValuePair_2U5BU5D_t973017D6141F6D8AD9DCE8E35F9369C5A391F9F3* L_0 = ___array0; int32_t L_1 = ___index1; NullCheck((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this); (( void (*) (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *, KeyValuePair_2U5BU5D_t973017D6141F6D8AD9DCE8E35F9369C5A391F9F3*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this, (KeyValuePair_2U5BU5D_t973017D6141F6D8AD9DCE8E35F9369C5A391F9F3*)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_ICollection_CopyTo_mA7AE7785CE0F04673211E514F558A1B5A47FAFA0_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_ICollection_CopyTo_mA7AE7785CE0F04673211E514F558A1B5A47FAFA0_MetadataUsageId); s_Il2CppMethodInitialized = true; } KeyValuePair_2U5BU5D_t973017D6141F6D8AD9DCE8E35F9369C5A391F9F3* V_0 = NULL; DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56* V_1 = NULL; EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* V_2 = NULL; int32_t V_3 = 0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_4 = NULL; int32_t V_5 = 0; EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* V_6 = NULL; int32_t V_7 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mA7AE7785CE0F04673211E514F558A1B5A47FAFA0_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; NullCheck((RuntimeArray *)L_2); int32_t L_3 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0027; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_4 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_4, (String_t*)_stringLiteral2D77BE6D598A0A9376398980E66D10E319F1B52A, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mA7AE7785CE0F04673211E514F558A1B5A47FAFA0_RuntimeMethod_var); } IL_0027: { RuntimeArray * L_5 = ___array0; NullCheck((RuntimeArray *)L_5); int32_t L_6 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)L_5, (int32_t)0, /*hidden argument*/NULL); if (!L_6) { goto IL_0040; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_7, (String_t*)_stringLiteralC363992023785AF013BBCF2E20C19D9835184F82, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mA7AE7785CE0F04673211E514F558A1B5A47FAFA0_RuntimeMethod_var); } IL_0040: { int32_t L_8 = ___index1; if ((((int32_t)L_8) < ((int32_t)0))) { goto IL_004d; } } { int32_t L_9 = ___index1; RuntimeArray * L_10 = ___array0; NullCheck((RuntimeArray *)L_10); int32_t L_11 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_10, /*hidden argument*/NULL); if ((((int32_t)L_9) <= ((int32_t)L_11))) { goto IL_0063; } } IL_004d: { int32_t L_12 = ___index1; int32_t L_13 = L_12; RuntimeObject * L_14 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_13); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_15 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_15, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, (RuntimeObject *)L_14, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mA7AE7785CE0F04673211E514F558A1B5A47FAFA0_RuntimeMethod_var); } IL_0063: { RuntimeArray * L_16 = ___array0; NullCheck((RuntimeArray *)L_16); int32_t L_17 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_16, /*hidden argument*/NULL); int32_t L_18 = ___index1; NullCheck((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this); int32_t L_19 = (( int32_t (*) (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)->methodPointer)((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_19))) { goto IL_007e; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_20 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_20, (String_t*)_stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mA7AE7785CE0F04673211E514F558A1B5A47FAFA0_RuntimeMethod_var); } IL_007e: { RuntimeArray * L_21 = ___array0; V_0 = (KeyValuePair_2U5BU5D_t973017D6141F6D8AD9DCE8E35F9369C5A391F9F3*)((KeyValuePair_2U5BU5D_t973017D6141F6D8AD9DCE8E35F9369C5A391F9F3*)IsInst((RuntimeObject*)L_21, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 38))); KeyValuePair_2U5BU5D_t973017D6141F6D8AD9DCE8E35F9369C5A391F9F3* L_22 = V_0; if (!L_22) { goto IL_0091; } } { KeyValuePair_2U5BU5D_t973017D6141F6D8AD9DCE8E35F9369C5A391F9F3* L_23 = V_0; int32_t L_24 = ___index1; NullCheck((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this); (( void (*) (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *, KeyValuePair_2U5BU5D_t973017D6141F6D8AD9DCE8E35F9369C5A391F9F3*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this, (KeyValuePair_2U5BU5D_t973017D6141F6D8AD9DCE8E35F9369C5A391F9F3*)L_23, (int32_t)L_24, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); return; } IL_0091: { RuntimeArray * L_25 = ___array0; if (!((DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56*)IsInst((RuntimeObject*)L_25, DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56_il2cpp_TypeInfo_var))) { goto IL_00fb; } } { RuntimeArray * L_26 = ___array0; V_1 = (DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56*)((DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56*)IsInst((RuntimeObject*)L_26, DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56_il2cpp_TypeInfo_var)); EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_27 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)__this->get_entries_1(); V_2 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)L_27; V_3 = (int32_t)0; goto IL_00f1; } IL_00ab: { EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_28 = V_2; int32_t L_29 = V_3; NullCheck(L_28); int32_t L_30 = (int32_t)((L_28)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_29)))->get_hashCode_0(); if ((((int32_t)L_30) < ((int32_t)0))) { goto IL_00ed; } } { DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56* L_31 = V_1; int32_t L_32 = ___index1; int32_t L_33 = (int32_t)L_32; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1)); EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_34 = V_2; int32_t L_35 = V_3; NullCheck(L_34); uint16_t L_36 = (uint16_t)((L_34)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_35)))->get_key_2(); uint16_t L_37 = L_36; RuntimeObject * L_38 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 33), &L_37); EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_39 = V_2; int32_t L_40 = V_3; NullCheck(L_39); RuntimeObject * L_41 = (RuntimeObject *)((L_39)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_40)))->get_value_3(); DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_42; memset((&L_42), 0, sizeof(L_42)); DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B((&L_42), (RuntimeObject *)L_38, (RuntimeObject *)L_41, /*hidden argument*/NULL); NullCheck(L_31); (L_31)->SetAt(static_cast<il2cpp_array_size_t>(L_33), (DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 )L_42); } IL_00ed: { int32_t L_43 = V_3; V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_43, (int32_t)1)); } IL_00f1: { int32_t L_44 = V_3; int32_t L_45 = (int32_t)__this->get_count_2(); if ((((int32_t)L_44) < ((int32_t)L_45))) { goto IL_00ab; } } { return; } IL_00fb: { RuntimeArray * L_46 = ___array0; V_4 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)L_46, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_47 = V_4; if (L_47) { goto IL_0117; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_48 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_48, (String_t*)_stringLiteralC44D4E6C6AF3517A1CC72EDF7D1A5FFD7E3368F1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_48, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mA7AE7785CE0F04673211E514F558A1B5A47FAFA0_RuntimeMethod_var); } IL_0117: { } IL_0118: try { // begin try (depth: 1) { int32_t L_49 = (int32_t)__this->get_count_2(); V_5 = (int32_t)L_49; EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_50 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)__this->get_entries_1(); V_6 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)L_50; V_7 = (int32_t)0; goto IL_0173; } IL_012d: { EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_51 = V_6; int32_t L_52 = V_7; NullCheck(L_51); int32_t L_53 = (int32_t)((L_51)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_52)))->get_hashCode_0(); if ((((int32_t)L_53) < ((int32_t)0))) { goto IL_016d; } } IL_013e: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_54 = V_4; int32_t L_55 = ___index1; int32_t L_56 = (int32_t)L_55; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_56, (int32_t)1)); EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_57 = V_6; int32_t L_58 = V_7; NullCheck(L_57); uint16_t L_59 = (uint16_t)((L_57)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_58)))->get_key_2(); EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_60 = V_6; int32_t L_61 = V_7; NullCheck(L_60); RuntimeObject * L_62 = (RuntimeObject *)((L_60)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_61)))->get_value_3(); KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 L_63; memset((&L_63), 0, sizeof(L_63)); KeyValuePair_2__ctor_m2243E70A292DD0A7C69C6B99BC34719F41FF650E((&L_63), (uint16_t)L_59, (RuntimeObject *)L_62, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)); KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 L_64 = L_63; RuntimeObject * L_65 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 25), &L_64); NullCheck(L_54); ArrayElementTypeCheck (L_54, L_65); (L_54)->SetAt(static_cast<il2cpp_array_size_t>(L_56), (RuntimeObject *)L_65); } IL_016d: { int32_t L_66 = V_7; V_7 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_66, (int32_t)1)); } IL_0173: { int32_t L_67 = V_7; int32_t L_68 = V_5; if ((((int32_t)L_67) < ((int32_t)L_68))) { goto IL_012d; } } IL_0179: { goto IL_018c; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArrayTypeMismatchException_tE34C1032B089C37399200997F079C640D23D9499_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_017b; throw e; } CATCH_017b: { // begin catch(System.ArrayTypeMismatchException) ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_69 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_69, (String_t*)_stringLiteralC44D4E6C6AF3517A1CC72EDF7D1A5FFD7E3368F1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_69, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mA7AE7785CE0F04673211E514F558A1B5A47FAFA0_RuntimeMethod_var); } // end catch (depth: 1) IL_018c: { return; } } // System.Collections.IEnumerator System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_IEnumerable_GetEnumerator_m8E4AF5F4C270B60F4441DEB4DBE5C32BDD3A3BB5_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, const RuntimeMethod* method) { { Enumerator_t976B9B5D38C913E0FC1BBE5B6DE0F3DA69753796 L_0; memset((&L_0), 0, sizeof(L_0)); Enumerator__ctor_mE681F7DC74D4D64852C7667F5EDED38D8365707A((&L_0), (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 28)); Enumerator_t976B9B5D38C913E0FC1BBE5B6DE0F3DA69753796 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 27), &L_1); return (RuntimeObject*)L_2; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::System.Collections.ICollection.get_IsSynchronized() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_ICollection_get_IsSynchronized_mF722469B824B28690AA40EDB3A2677082A6681DA_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Object System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::System.Collections.ICollection.get_SyncRoot() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Dictionary_2_System_Collections_ICollection_get_SyncRoot_m414EF9CB571B534885C323CDD56D5C26D21B93E6_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_ICollection_get_SyncRoot_m414EF9CB571B534885C323CDD56D5C26D21B93E6_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = (RuntimeObject *)__this->get__syncRoot_9(); if (L_0) { goto IL_001a; } } { RuntimeObject ** L_1 = (RuntimeObject **)__this->get_address_of__syncRoot_9(); RuntimeObject * L_2 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_2, /*hidden argument*/NULL); InterlockedCompareExchangeImpl<RuntimeObject *>((RuntimeObject **)(RuntimeObject **)L_1, (RuntimeObject *)L_2, (RuntimeObject *)NULL); } IL_001a: { RuntimeObject * L_3 = (RuntimeObject *)__this->get__syncRoot_9(); return L_3; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::System.Collections.IDictionary.get_IsFixedSize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_IDictionary_get_IsFixedSize_m82C89D8485025514376357409CF5026EFDE6C2F1_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::System.Collections.IDictionary.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_IDictionary_get_IsReadOnly_m210C697E9E6538E9A9075C96395E2AC1495BA765_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Collections.ICollection System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::System.Collections.IDictionary.get_Keys() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_IDictionary_get_Keys_mF8E82FF4509F3C53C9359B65D4BF7A42625B66BA_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, const RuntimeMethod* method) { { NullCheck((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this); KeyCollection_tA0E3081654BAAA7B8AA71F9DD07C233A9F9D75B4 * L_0 = (( KeyCollection_tA0E3081654BAAA7B8AA71F9DD07C233A9F9D75B4 * (*) (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 39)->methodPointer)((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 39)); return L_0; } } // System.Collections.ICollection System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::System.Collections.IDictionary.get_Values() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_IDictionary_get_Values_m5DFB54D891A0BE4846599ECF4D4CCA744AB91432_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, const RuntimeMethod* method) { { NullCheck((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this); ValueCollection_tCEB02848E807536415449852101F0B4CEAB130B2 * L_0 = (( ValueCollection_tCEB02848E807536415449852101F0B4CEAB130B2 * (*) (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 40)->methodPointer)((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 40)); return L_0; } } // System.Object System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::System.Collections.IDictionary.get_Item(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Dictionary_2_System_Collections_IDictionary_get_Item_m9A6595C82899FD1CA39EE5BB7B76F0EAA8F4C811_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; bool L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)); if (!L_1) { goto IL_0030; } } { RuntimeObject * L_2 = ___key0; NullCheck((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this); int32_t L_3 = (( int32_t (*) (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *, uint16_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this, (uint16_t)((*(uint16_t*)((uint16_t*)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 33))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); V_0 = (int32_t)L_3; int32_t L_4 = V_0; if ((((int32_t)L_4) < ((int32_t)0))) { goto IL_0030; } } { EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9* L_5 = (EntryU5BU5D_t17F03DBFB529B2EAC83CB31CCF1E8186F4EEA0A9*)__this->get_entries_1(); int32_t L_6 = V_0; NullCheck(L_5); RuntimeObject * L_7 = (RuntimeObject *)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_value_3(); return L_7; } IL_0030: { return NULL; } } // System.Void System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::System.Collections.IDictionary.set_Item(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_IDictionary_set_Item_m9D769A596FC26A0BDBFCE76DE2DC47961E4438A6_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_IDictionary_set_Item_m9D769A596FC26A0BDBFCE76DE2DC47961E4438A6_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; uint16_t V_1 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_m9D769A596FC26A0BDBFCE76DE2DC47961E4438A6_RuntimeMethod_var); } IL_000e: { RuntimeObject * L_2 = ___value1; if (L_2) { goto IL_002c; } } { il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *)); RuntimeObject * L_3 = V_0; if (!L_3) { goto IL_002c; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_4, (String_t*)_stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_m9D769A596FC26A0BDBFCE76DE2DC47961E4438A6_RuntimeMethod_var); } IL_002c: { } IL_002d: try { // begin try (depth: 1) { RuntimeObject * L_5 = ___key0; V_1 = (uint16_t)((*(uint16_t*)((uint16_t*)UnBox(L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 33))))); } IL_0034: try { // begin try (depth: 2) uint16_t L_6 = V_1; RuntimeObject * L_7 = ___value1; NullCheck((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this); (( void (*) (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *, uint16_t, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 43)->methodPointer)((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this, (uint16_t)L_6, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_7, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 23))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 43)); goto IL_0064; } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0043; throw e; } CATCH_0043: { // begin catch(System.InvalidCastException) RuntimeObject * L_8 = ___value1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_9 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 44)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_9, /*hidden argument*/NULL); String_t* L_11 = SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C((String_t*)_stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6, (RuntimeObject *)L_8, (RuntimeObject *)L_10, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_12, (String_t*)L_11, (String_t*)_stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_m9D769A596FC26A0BDBFCE76DE2DC47961E4438A6_RuntimeMethod_var); } // end catch (depth: 2) IL_0064: { goto IL_0087; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0066; throw e; } CATCH_0066: { // begin catch(System.InvalidCastException) RuntimeObject * L_13 = ___key0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 45)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_14, /*hidden argument*/NULL); String_t* L_16 = SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C((String_t*)_stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6, (RuntimeObject *)L_13, (RuntimeObject *)L_15, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_17 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_17, (String_t*)L_16, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_m9D769A596FC26A0BDBFCE76DE2DC47961E4438A6_RuntimeMethod_var); } // end catch (depth: 1) IL_0087: { return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::IsCompatibleKey(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_IsCompatibleKey_mA9F8666A3451963003ACFAC718CC230E88D6C412_gshared (RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_IsCompatibleKey_mA9F8666A3451963003ACFAC718CC230E88D6C412_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_IsCompatibleKey_mA9F8666A3451963003ACFAC718CC230E88D6C412_RuntimeMethod_var); } IL_000e: { RuntimeObject * L_2 = ___key0; return (bool)((!(((RuntimeObject*)(RuntimeObject *)((RuntimeObject *)IsInst((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 33)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); } } // System.Void System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::System.Collections.IDictionary.Add(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_IDictionary_Add_mBD404C39C8112FA541E066AECE257606B490FD9F_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_IDictionary_Add_mBD404C39C8112FA541E066AECE257606B490FD9F_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; uint16_t V_1 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_System_Collections_IDictionary_Add_mBD404C39C8112FA541E066AECE257606B490FD9F_RuntimeMethod_var); } IL_000e: { RuntimeObject * L_2 = ___value1; if (L_2) { goto IL_002c; } } { il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *)); RuntimeObject * L_3 = V_0; if (!L_3) { goto IL_002c; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_4, (String_t*)_stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2_System_Collections_IDictionary_Add_mBD404C39C8112FA541E066AECE257606B490FD9F_RuntimeMethod_var); } IL_002c: { } IL_002d: try { // begin try (depth: 1) { RuntimeObject * L_5 = ___key0; V_1 = (uint16_t)((*(uint16_t*)((uint16_t*)UnBox(L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 33))))); } IL_0034: try { // begin try (depth: 2) uint16_t L_6 = V_1; RuntimeObject * L_7 = ___value1; NullCheck((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this); (( void (*) (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *, uint16_t, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this, (uint16_t)L_6, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_7, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 23))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); goto IL_0064; } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0043; throw e; } CATCH_0043: { // begin catch(System.InvalidCastException) RuntimeObject * L_8 = ___value1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_9 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 44)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_9, /*hidden argument*/NULL); String_t* L_11 = SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C((String_t*)_stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6, (RuntimeObject *)L_8, (RuntimeObject *)L_10, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_12, (String_t*)L_11, (String_t*)_stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Dictionary_2_System_Collections_IDictionary_Add_mBD404C39C8112FA541E066AECE257606B490FD9F_RuntimeMethod_var); } // end catch (depth: 2) IL_0064: { goto IL_0087; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0066; throw e; } CATCH_0066: { // begin catch(System.InvalidCastException) RuntimeObject * L_13 = ___key0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 45)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_14, /*hidden argument*/NULL); String_t* L_16 = SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C((String_t*)_stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6, (RuntimeObject *)L_13, (RuntimeObject *)L_15, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_17 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_17, (String_t*)L_16, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, NULL, Dictionary_2_System_Collections_IDictionary_Add_mBD404C39C8112FA541E066AECE257606B490FD9F_RuntimeMethod_var); } // end catch (depth: 1) IL_0087: { return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::System.Collections.IDictionary.Contains(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_IDictionary_Contains_mC29E5CFF9334D38A34C4AACBE3916BDCB51C1498_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; bool L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)); if (!L_1) { goto IL_0015; } } { RuntimeObject * L_2 = ___key0; NullCheck((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this); bool L_3 = (( bool (*) (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *, uint16_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 46)->methodPointer)((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this, (uint16_t)((*(uint16_t*)((uint16_t*)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 33))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 46)); return L_3; } IL_0015: { return (bool)0; } } // System.Collections.IDictionaryEnumerator System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::System.Collections.IDictionary.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_IDictionary_GetEnumerator_mF6E752B1134F330000FEF9CD87B6A04D12FBDB17_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, const RuntimeMethod* method) { { Enumerator_t976B9B5D38C913E0FC1BBE5B6DE0F3DA69753796 L_0; memset((&L_0), 0, sizeof(L_0)); Enumerator__ctor_mE681F7DC74D4D64852C7667F5EDED38D8365707A((&L_0), (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this, (int32_t)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 28)); Enumerator_t976B9B5D38C913E0FC1BBE5B6DE0F3DA69753796 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 27), &L_1); return (RuntimeObject*)L_2; } } // System.Void System.Collections.Generic.Dictionary`2<System.UInt16,System.Object>::System.Collections.IDictionary.Remove(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_IDictionary_Remove_m929D30294C1DCA1B3B3BDD3EE30CB826C4116F7D_gshared (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; bool L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)); if (!L_1) { goto IL_0015; } } { RuntimeObject * L_2 = ___key0; NullCheck((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this); (( bool (*) (Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *, uint16_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)->methodPointer)((Dictionary_2_t230021F9E0FC2B2A957F86C0AEAA5E1EB32B672A *)__this, (uint16_t)((*(uint16_t*)((uint16_t*)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 33))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); } IL_0015: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m77846496C26983270E51FB59FF324AA096F2EB57_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, const RuntimeMethod* method) { { NullCheck((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this); (( void (*) (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this, (int32_t)0, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m7DFBD8570C5EA6008F721269AD13B16FF0B0E8DF_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, int32_t ___capacity0, const RuntimeMethod* method) { { int32_t L_0 = ___capacity0; NullCheck((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this); (( void (*) (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this, (int32_t)L_0, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m77D338CB69478BB9745DE9A20B913B00BCBD3701_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___comparer0; NullCheck((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this); (( void (*) (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this, (int32_t)0, (RuntimeObject*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::.ctor(System.Int32,System.Collections.Generic.IEqualityComparer`1<TKey>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m30A9E6851931D3AC18BAB22DF7F8D851833D1BA6_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, int32_t ___capacity0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2__ctor_m30A9E6851931D3AC18BAB22DF7F8D851833D1BA6_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* G_B6_0 = NULL; Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * G_B6_1 = NULL; RuntimeObject* G_B5_0 = NULL; Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * G_B5_1 = NULL; { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); int32_t L_0 = ___capacity0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0020; } } { int32_t L_1 = ___capacity0; int32_t L_2 = L_1; RuntimeObject * L_3 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_2); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_4 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_4, (String_t*)_stringLiteral7CB1F56D3FBE09E809244FC8E13671CD876E3860, (RuntimeObject *)L_3, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2__ctor_m30A9E6851931D3AC18BAB22DF7F8D851833D1BA6_RuntimeMethod_var); } IL_0020: { int32_t L_5 = ___capacity0; if ((((int32_t)L_5) <= ((int32_t)0))) { goto IL_002b; } } { int32_t L_6 = ___capacity0; NullCheck((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this); (( void (*) (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); } IL_002b: { RuntimeObject* L_7 = ___comparer1; RuntimeObject* L_8 = (RuntimeObject*)L_7; G_B5_0 = L_8; G_B5_1 = ((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)(__this)); if (L_8) { G_B6_0 = L_8; G_B6_1 = ((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)(__this)); goto IL_0036; } } { EqualityComparer_1_tDDD15C1EE67655D8910B42D856F52279F5E62114 * L_9 = (( EqualityComparer_1_tDDD15C1EE67655D8910B42D856F52279F5E62114 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); G_B6_0 = ((RuntimeObject*)(L_9)); G_B6_1 = ((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)(G_B5_1)); } IL_0036: { NullCheck(G_B6_1); G_B6_1->set_comparer_6(G_B6_0); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::.ctor(System.Collections.Generic.IDictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m4C8AA4441BB14113520CE5D86513C543308A036E_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, RuntimeObject* ___dictionary0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___dictionary0; NullCheck((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this); (( void (*) (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *, RuntimeObject*, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this, (RuntimeObject*)L_0, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::.ctor(System.Collections.Generic.IDictionary`2<TKey,TValue>,System.Collections.Generic.IEqualityComparer`1<TKey>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m9DCF474875A60FEE4C0C4A5231AA4B3A4F82ADEC_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, RuntimeObject* ___dictionary0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2__ctor_m9DCF474875A60FEE4C0C4A5231AA4B3A4F82ADEC_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* V_1 = NULL; int32_t V_2 = 0; RuntimeObject* V_3 = NULL; KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 V_4; memset((&V_4), 0, sizeof(V_4)); Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * G_B2_0 = NULL; Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * G_B1_0 = NULL; int32_t G_B3_0 = 0; Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * G_B3_1 = NULL; { RuntimeObject* L_0 = ___dictionary0; G_B1_0 = ((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)(__this)); if (L_0) { G_B2_0 = ((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)(__this)); goto IL_0007; } } { G_B3_0 = 0; G_B3_1 = ((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)(G_B1_0)); goto IL_000d; } IL_0007: { RuntimeObject* L_1 = ___dictionary0; NullCheck((RuntimeObject*)L_1); int32_t L_2 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>>::get_Count() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_1); G_B3_0 = L_2; G_B3_1 = ((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)(G_B2_0)); } IL_000d: { RuntimeObject* L_3 = ___comparer1; NullCheck((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)G_B3_1); (( void (*) (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)G_B3_1, (int32_t)G_B3_0, (RuntimeObject*)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); RuntimeObject* L_4 = ___dictionary0; if (L_4) { goto IL_0021; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_5 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_5, (String_t*)_stringLiteralF18BFB74E613AFB11F36BDD80CF05CD5DFAD98D6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Dictionary_2__ctor_m9DCF474875A60FEE4C0C4A5231AA4B3A4F82ADEC_RuntimeMethod_var); } IL_0021: { RuntimeObject* L_6 = ___dictionary0; NullCheck((RuntimeObject *)L_6); Type_t * L_7 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60((RuntimeObject *)L_6, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_8 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 6)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_9 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_8, /*hidden argument*/NULL); bool L_10 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_7, (Type_t *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0085; } } { RuntimeObject* L_11 = ___dictionary0; Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * L_12 = (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)Castclass((RuntimeObject*)L_11, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))); NullCheck(L_12); int32_t L_13 = (int32_t)L_12->get_count_2(); V_0 = (int32_t)L_13; NullCheck(L_12); EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_14 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)L_12->get_entries_1(); V_1 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)L_14; V_2 = (int32_t)0; goto IL_0080; } IL_004f: { EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_15 = V_1; int32_t L_16 = V_2; NullCheck(L_15); int32_t L_17 = (int32_t)((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16)))->get_hashCode_0(); if ((((int32_t)L_17) < ((int32_t)0))) { goto IL_007c; } } { EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_18 = V_1; int32_t L_19 = V_2; NullCheck(L_18); uint32_t L_20 = (uint32_t)((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)))->get_key_2(); EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_21 = V_1; int32_t L_22 = V_2; NullCheck(L_21); RuntimeObject * L_23 = (RuntimeObject *)((L_21)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_22)))->get_value_3(); NullCheck((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this); (( void (*) (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *, uint32_t, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this, (uint32_t)L_20, (RuntimeObject *)L_23, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); } IL_007c: { int32_t L_24 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1)); } IL_0080: { int32_t L_25 = V_2; int32_t L_26 = V_0; if ((((int32_t)L_25) < ((int32_t)L_26))) { goto IL_004f; } } { return; } IL_0085: { RuntimeObject* L_27 = ___dictionary0; NullCheck((RuntimeObject*)L_27); RuntimeObject* L_28 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 9), (RuntimeObject*)L_27); V_3 = (RuntimeObject*)L_28; } IL_008c: try { // begin try (depth: 1) { goto IL_00aa; } IL_008e: { RuntimeObject* L_29 = V_3; NullCheck((RuntimeObject*)L_29); KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 L_30 = InterfaceFuncInvoker0< KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 10), (RuntimeObject*)L_29); V_4 = (KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 )L_30; uint32_t L_31 = KeyValuePair_2_get_Key_m87471DF5ECE5A02E957745A3F6A64B5A40B1DAD2_inline((KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 *)(KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 *)(&V_4), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); RuntimeObject * L_32 = KeyValuePair_2_get_Value_m6256609EDAF20A0AC36F64B4E1B584B5D35B70A9_inline((KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 *)(KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 *)(&V_4), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); NullCheck((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this); (( void (*) (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *, uint32_t, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this, (uint32_t)L_31, (RuntimeObject *)L_32, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); } IL_00aa: { RuntimeObject* L_33 = V_3; NullCheck((RuntimeObject*)L_33); bool L_34 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, (RuntimeObject*)L_33); if (L_34) { goto IL_008e; } } IL_00b2: { IL2CPP_LEAVE(0xBE, FINALLY_00b4); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00b4; } FINALLY_00b4: { // begin finally (depth: 1) { RuntimeObject* L_35 = V_3; if (!L_35) { goto IL_00bd; } } IL_00b7: { RuntimeObject* L_36 = V_3; NullCheck((RuntimeObject*)L_36); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, (RuntimeObject*)L_36); } IL_00bd: { IL2CPP_END_FINALLY(180) } } // end finally (depth: 1) IL2CPP_CLEANUP(180) { IL2CPP_JUMP_TBL(0xBE, IL_00be) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_00be: { return; } } // System.Void System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m5D1E5B243085CE0E75B69BFAAA45DBA8966494E1_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2__ctor_m5D1E5B243085CE0E75B69BFAAA45DBA8966494E1_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_0 = DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C_inline(/*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_1 = ___info0; NullCheck((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0); ConditionalWeakTable_2_Add_mCC3585BE91A7BDFC49EEFDE4C11173A36D1FB5FE((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0, (RuntimeObject *)__this, (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_1, /*hidden argument*/ConditionalWeakTable_2_Add_mCC3585BE91A7BDFC49EEFDE4C11173A36D1FB5FE_RuntimeMethod_var); return; } } // System.Int32 System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Dictionary_2_get_Count_mB5AF54AA56D83855E3666EADFF66DB32A380F888_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_count_2(); int32_t L_1 = (int32_t)__this->get_freeCount_5(); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)); } } // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::get_Keys() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyCollection_tDB0CE6550164FA6B9F36F406E71DA592D0B03C55 * Dictionary_2_get_Keys_mD42DC5370FAA5AD1604DDAAF22888D5C5A7361B2_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, const RuntimeMethod* method) { { KeyCollection_tDB0CE6550164FA6B9F36F406E71DA592D0B03C55 * L_0 = (KeyCollection_tDB0CE6550164FA6B9F36F406E71DA592D0B03C55 *)__this->get_keys_7(); if (L_0) { goto IL_0014; } } { KeyCollection_tDB0CE6550164FA6B9F36F406E71DA592D0B03C55 * L_1 = (KeyCollection_tDB0CE6550164FA6B9F36F406E71DA592D0B03C55 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 13)); (( void (*) (KeyCollection_tDB0CE6550164FA6B9F36F406E71DA592D0B03C55 *, Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)->methodPointer)(L_1, (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)); __this->set_keys_7(L_1); } IL_0014: { KeyCollection_tDB0CE6550164FA6B9F36F406E71DA592D0B03C55 * L_2 = (KeyCollection_tDB0CE6550164FA6B9F36F406E71DA592D0B03C55 *)__this->get_keys_7(); return L_2; } } // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::get_Values() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueCollection_tA886702655DCF8ABB2A963CDEE146B3CE24FCF4A * Dictionary_2_get_Values_m0F2D1F9544A30C2064D20ECD91E4711D815B6E98_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, const RuntimeMethod* method) { { ValueCollection_tA886702655DCF8ABB2A963CDEE146B3CE24FCF4A * L_0 = (ValueCollection_tA886702655DCF8ABB2A963CDEE146B3CE24FCF4A *)__this->get_values_8(); if (L_0) { goto IL_0014; } } { ValueCollection_tA886702655DCF8ABB2A963CDEE146B3CE24FCF4A * L_1 = (ValueCollection_tA886702655DCF8ABB2A963CDEE146B3CE24FCF4A *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 15)); (( void (*) (ValueCollection_tA886702655DCF8ABB2A963CDEE146B3CE24FCF4A *, Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)->methodPointer)(L_1, (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)); __this->set_values_8(L_1); } IL_0014: { ValueCollection_tA886702655DCF8ABB2A963CDEE146B3CE24FCF4A * L_2 = (ValueCollection_tA886702655DCF8ABB2A963CDEE146B3CE24FCF4A *)__this->get_values_8(); return L_2; } } // TValue System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::get_Item(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Dictionary_2_get_Item_mD765FEF0BB3D9628BB736FCDEFA4F3C655AE7D58_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, uint32_t ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_get_Item_mD765FEF0BB3D9628BB736FCDEFA4F3C655AE7D58_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { uint32_t L_0 = ___key0; NullCheck((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *, uint32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this, (uint32_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_001e; } } { EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_3 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)__this->get_entries_1(); int32_t L_4 = V_0; NullCheck(L_3); RuntimeObject * L_5 = (RuntimeObject *)((L_3)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_4)))->get_value_3(); return L_5; } IL_001e: { KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2 * L_6 = (KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2 *)il2cpp_codegen_object_new(KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2_il2cpp_TypeInfo_var); KeyNotFoundException__ctor_mE9E1C6E6E21842095342C0A2ED65EC201FB4F3C8(L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Dictionary_2_get_Item_mD765FEF0BB3D9628BB736FCDEFA4F3C655AE7D58_RuntimeMethod_var); } } // System.Void System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::set_Item(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_m24CFD514A405E30E45FDC58E0CE7683E06242D30_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, uint32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { { uint32_t L_0 = ___key0; RuntimeObject * L_1 = ___value1; NullCheck((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this); (( bool (*) (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *, uint32_t, RuntimeObject *, uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this, (uint32_t)L_0, (RuntimeObject *)L_1, (uint8_t)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::Add(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_m0974BC2845953438B1375CBAA2358D27095D1FCA_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, uint32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { { uint32_t L_0 = ___key0; RuntimeObject * L_1 = ___value1; NullCheck((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this); (( bool (*) (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *, uint32_t, RuntimeObject *, uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this, (uint32_t)L_0, (RuntimeObject *)L_1, (uint8_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Add_m3C5271FB1F4C39F034A3F232042895A93AC08BDB_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 ___keyValuePair0, const RuntimeMethod* method) { { uint32_t L_0 = KeyValuePair_2_get_Key_m87471DF5ECE5A02E957745A3F6A64B5A40B1DAD2_inline((KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 *)(KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); RuntimeObject * L_1 = KeyValuePair_2_get_Value_m6256609EDAF20A0AC36F64B4E1B584B5D35B70A9_inline((KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 *)(KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); NullCheck((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this); (( void (*) (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *, uint32_t, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this, (uint32_t)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Contains(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Contains_m647E63045E3C9185F76EB12A9DBFDA6A2D0CB8D4_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 ___keyValuePair0, const RuntimeMethod* method) { int32_t V_0 = 0; { uint32_t L_0 = KeyValuePair_2_get_Key_m87471DF5ECE5A02E957745A3F6A64B5A40B1DAD2_inline((KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 *)(KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *, uint32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this, (uint32_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0038; } } { EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * L_3 = (( EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)); EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_4 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); RuntimeObject * L_6 = (RuntimeObject *)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); RuntimeObject * L_7 = KeyValuePair_2_get_Value_m6256609EDAF20A0AC36F64B4E1B584B5D35B70A9_inline((KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 *)(KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); NullCheck((EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_3); bool L_8 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(T,T) */, (EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_3, (RuntimeObject *)L_6, (RuntimeObject *)L_7); if (!L_8) { goto IL_0038; } } { return (bool)1; } IL_0038: { return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Remove_m9780D3F67DDAD06AD50B065DF3195E004A29CC31_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 ___keyValuePair0, const RuntimeMethod* method) { int32_t V_0 = 0; { uint32_t L_0 = KeyValuePair_2_get_Key_m87471DF5ECE5A02E957745A3F6A64B5A40B1DAD2_inline((KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 *)(KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *, uint32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this, (uint32_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0046; } } { EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * L_3 = (( EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)); EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_4 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); RuntimeObject * L_6 = (RuntimeObject *)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); RuntimeObject * L_7 = KeyValuePair_2_get_Value_m6256609EDAF20A0AC36F64B4E1B584B5D35B70A9_inline((KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 *)(KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); NullCheck((EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_3); bool L_8 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(T,T) */, (EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_3, (RuntimeObject *)L_6, (RuntimeObject *)L_7); if (!L_8) { goto IL_0046; } } { uint32_t L_9 = KeyValuePair_2_get_Key_m87471DF5ECE5A02E957745A3F6A64B5A40B1DAD2_inline((KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 *)(KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this); (( bool (*) (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *, uint32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)->methodPointer)((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this, (uint32_t)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); return (bool)1; } IL_0046: { return (bool)0; } } // System.Void System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Clear_mB3ED6D2DE12A9E90F1C0A558F9DE580C600CE832_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = (int32_t)__this->get_count_2(); if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_005a; } } { V_0 = (int32_t)0; goto IL_001a; } IL_000d: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_2 = V_0; NullCheck(L_1); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(L_2), (int32_t)(-1)); int32_t L_3 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)); } IL_001a: { int32_t L_4 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_5 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_5); if ((((int32_t)L_4) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length))))))) { goto IL_000d; } } { EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_6 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)__this->get_entries_1(); int32_t L_7 = (int32_t)__this->get_count_2(); Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_6, (int32_t)0, (int32_t)L_7, /*hidden argument*/NULL); __this->set_freeList_4((-1)); __this->set_count_2(0); __this->set_freeCount_5(0); int32_t L_8 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1))); } IL_005a: { return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::ContainsKey(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsKey_m0F51290850907845CA3599EF9362494F2CADD698_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, uint32_t ___key0, const RuntimeMethod* method) { { uint32_t L_0 = ___key0; NullCheck((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *, uint32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this, (uint32_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); return (bool)((((int32_t)((((int32_t)L_1) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::ContainsValue(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsValue_m86A0A5F064CC7BD569F7FF8CAB34BA4BB16B6242_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { int32_t V_0 = 0; EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * V_1 = NULL; int32_t V_2 = 0; { RuntimeObject * L_0 = ___value0; if (L_0) { goto IL_0049; } } { V_0 = (int32_t)0; goto IL_003e; } IL_000c: { EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_1 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)__this->get_entries_1(); int32_t L_2 = V_0; NullCheck(L_1); int32_t L_3 = (int32_t)((L_1)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_2)))->get_hashCode_0(); if ((((int32_t)L_3) < ((int32_t)0))) { goto IL_003a; } } { EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_4 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); RuntimeObject * L_6 = (RuntimeObject *)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); if (L_6) { goto IL_003a; } } { return (bool)1; } IL_003a: { int32_t L_7 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)); } IL_003e: { int32_t L_8 = V_0; int32_t L_9 = (int32_t)__this->get_count_2(); if ((((int32_t)L_8) < ((int32_t)L_9))) { goto IL_000c; } } { goto IL_0090; } IL_0049: { EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * L_10 = (( EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)); V_1 = (EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_10; V_2 = (int32_t)0; goto IL_0087; } IL_0053: { EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_11 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)__this->get_entries_1(); int32_t L_12 = V_2; NullCheck(L_11); int32_t L_13 = (int32_t)((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12)))->get_hashCode_0(); if ((((int32_t)L_13) < ((int32_t)0))) { goto IL_0083; } } { EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * L_14 = V_1; EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_15 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)__this->get_entries_1(); int32_t L_16 = V_2; NullCheck(L_15); RuntimeObject * L_17 = (RuntimeObject *)((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16)))->get_value_3(); RuntimeObject * L_18 = ___value0; NullCheck((EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_14); bool L_19 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(T,T) */, (EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_14, (RuntimeObject *)L_17, (RuntimeObject *)L_18); if (!L_19) { goto IL_0083; } } { return (bool)1; } IL_0083: { int32_t L_20 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1)); } IL_0087: { int32_t L_21 = V_2; int32_t L_22 = (int32_t)__this->get_count_2(); if ((((int32_t)L_21) < ((int32_t)L_22))) { goto IL_0053; } } IL_0090: { return (bool)0; } } // System.Void System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_CopyTo_m0532DFD20D13C815D8095B3615B8B5B6BC4C8A7E_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, KeyValuePair_2U5BU5D_tE5534F12D5421E2FFAE5C6743851D7EF64257399* ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_CopyTo_m0532DFD20D13C815D8095B3615B8B5B6BC4C8A7E_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* V_1 = NULL; int32_t V_2 = 0; { KeyValuePair_2U5BU5D_tE5534F12D5421E2FFAE5C6743851D7EF64257399* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_CopyTo_m0532DFD20D13C815D8095B3615B8B5B6BC4C8A7E_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___index1; KeyValuePair_2U5BU5D_tE5534F12D5421E2FFAE5C6743851D7EF64257399* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))) { goto IL_002e; } } IL_0018: { int32_t L_5 = ___index1; int32_t L_6 = L_5; RuntimeObject * L_7 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_6); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_8, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, (RuntimeObject *)L_7, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Dictionary_2_CopyTo_m0532DFD20D13C815D8095B3615B8B5B6BC4C8A7E_RuntimeMethod_var); } IL_002e: { KeyValuePair_2U5BU5D_tE5534F12D5421E2FFAE5C6743851D7EF64257399* L_9 = ___array0; NullCheck(L_9); int32_t L_10 = ___index1; NullCheck((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this); int32_t L_11 = (( int32_t (*) (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)->methodPointer)((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_11))) { goto IL_0046; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_12, (String_t*)_stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Dictionary_2_CopyTo_m0532DFD20D13C815D8095B3615B8B5B6BC4C8A7E_RuntimeMethod_var); } IL_0046: { int32_t L_13 = (int32_t)__this->get_count_2(); V_0 = (int32_t)L_13; EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_14 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)__this->get_entries_1(); V_1 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)L_14; V_2 = (int32_t)0; goto IL_0094; } IL_0058: { EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_15 = V_1; int32_t L_16 = V_2; NullCheck(L_15); int32_t L_17 = (int32_t)((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16)))->get_hashCode_0(); if ((((int32_t)L_17) < ((int32_t)0))) { goto IL_0090; } } { KeyValuePair_2U5BU5D_tE5534F12D5421E2FFAE5C6743851D7EF64257399* L_18 = ___array0; int32_t L_19 = ___index1; int32_t L_20 = (int32_t)L_19; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1)); EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_21 = V_1; int32_t L_22 = V_2; NullCheck(L_21); uint32_t L_23 = (uint32_t)((L_21)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_22)))->get_key_2(); EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_24 = V_1; int32_t L_25 = V_2; NullCheck(L_24); RuntimeObject * L_26 = (RuntimeObject *)((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_value_3(); KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 L_27; memset((&L_27), 0, sizeof(L_27)); KeyValuePair_2__ctor_mDA92DF498E64672BF241C716D0F12E7ACF270931((&L_27), (uint32_t)L_23, (RuntimeObject *)L_26, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)); NullCheck(L_18); (L_18)->SetAt(static_cast<il2cpp_array_size_t>(L_20), (KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 )L_27); } IL_0090: { int32_t L_28 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)1)); } IL_0094: { int32_t L_29 = V_2; int32_t L_30 = V_0; if ((((int32_t)L_29) < ((int32_t)L_30))) { goto IL_0058; } } { return; } } // System.Collections.Generic.Dictionary`2_Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tA11260A645393E5618D53A0300464DC6031C83B8 Dictionary_2_GetEnumerator_m19103A463387D2BF5704F1D10781794D531497DC_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, const RuntimeMethod* method) { { Enumerator_tA11260A645393E5618D53A0300464DC6031C83B8 L_0; memset((&L_0), 0, sizeof(L_0)); Enumerator__ctor_m0FA9E16264810D7DCC03216F7CA61C2F9FD8451A((&L_0), (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 28)); return L_0; } } // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<TKey,TValue>> System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_Generic_IEnumerableU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_GetEnumerator_mE96BB92C2B0ADAC3BB8B6C66474CD64269561146_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, const RuntimeMethod* method) { { Enumerator_tA11260A645393E5618D53A0300464DC6031C83B8 L_0; memset((&L_0), 0, sizeof(L_0)); Enumerator__ctor_m0FA9E16264810D7DCC03216F7CA61C2F9FD8451A((&L_0), (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 28)); Enumerator_tA11260A645393E5618D53A0300464DC6031C83B8 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 27), &L_1); return (RuntimeObject*)L_2; } } // System.Void System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_GetObjectData_m24D6623031D22FD2F0088E2B08BC68DCCC3419A1_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_GetObjectData_m24D6623031D22FD2F0088E2B08BC68DCCC3419A1_MetadataUsageId); s_Il2CppMethodInitialized = true; } KeyValuePair_2U5BU5D_tE5534F12D5421E2FFAE5C6743851D7EF64257399* V_0 = NULL; String_t* G_B4_0 = NULL; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * G_B4_1 = NULL; String_t* G_B3_0 = NULL; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * G_B3_1 = NULL; int32_t G_B5_0 = 0; String_t* G_B5_1 = NULL; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * G_B5_2 = NULL; { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_GetObjectData_m24D6623031D22FD2F0088E2B08BC68DCCC3419A1_RuntimeMethod_var); } IL_000e: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0; int32_t L_3 = (int32_t)__this->get_version_3(); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2); SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2, (String_t*)_stringLiteral2DA600BF9404843107A9531694F654E5662959E0, (int32_t)L_3, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = ___info0; RuntimeObject* L_5 = (RuntimeObject*)__this->get_comparer_6(); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 29)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_6, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4, (String_t*)_stringLiteral8FC94E4F5B71CECE2565D72417AACC804EE27A0D, (RuntimeObject *)L_5, (Type_t *)L_7, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_8 = ___info0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_9 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); G_B3_0 = _stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60; G_B3_1 = L_8; if (!L_9) { G_B4_0 = _stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60; G_B4_1 = L_8; goto IL_0052; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_10 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_10); G_B5_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))); G_B5_1 = G_B3_0; G_B5_2 = G_B3_1; goto IL_0053; } IL_0052: { G_B5_0 = 0; G_B5_1 = G_B4_0; G_B5_2 = G_B4_1; } IL_0053: { NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)G_B5_2); SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)G_B5_2, (String_t*)G_B5_1, (int32_t)G_B5_0, /*hidden argument*/NULL); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_11 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (!L_11) { goto IL_008a; } } { NullCheck((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this); int32_t L_12 = (( int32_t (*) (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)->methodPointer)((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)); KeyValuePair_2U5BU5D_tE5534F12D5421E2FFAE5C6743851D7EF64257399* L_13 = (KeyValuePair_2U5BU5D_tE5534F12D5421E2FFAE5C6743851D7EF64257399*)(KeyValuePair_2U5BU5D_tE5534F12D5421E2FFAE5C6743851D7EF64257399*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 30), (uint32_t)L_12); V_0 = (KeyValuePair_2U5BU5D_tE5534F12D5421E2FFAE5C6743851D7EF64257399*)L_13; KeyValuePair_2U5BU5D_tE5534F12D5421E2FFAE5C6743851D7EF64257399* L_14 = V_0; NullCheck((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this); (( void (*) (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *, KeyValuePair_2U5BU5D_tE5534F12D5421E2FFAE5C6743851D7EF64257399*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this, (KeyValuePair_2U5BU5D_tE5534F12D5421E2FFAE5C6743851D7EF64257399*)L_14, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_15 = ___info0; KeyValuePair_2U5BU5D_tE5534F12D5421E2FFAE5C6743851D7EF64257399* L_16 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_17 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 32)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_18 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_17, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_15); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_15, (String_t*)_stringLiteral1D89254A2BC78C1FF41C2F6767A0E00EE126B3BF, (RuntimeObject *)(RuntimeObject *)L_16, (Type_t *)L_18, /*hidden argument*/NULL); } IL_008a: { return; } } // System.Int32 System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::FindEntry(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Dictionary_2_FindEntry_m7FD085D0F4556908286645CB9B230FB555595EDA_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, uint32_t ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_FindEntry_m7FD085D0F4556908286645CB9B230FB555595EDA_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { goto IL_0013; } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_FindEntry_m7FD085D0F4556908286645CB9B230FB555595EDA_RuntimeMethod_var); } IL_0013: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (!L_2) { goto IL_008d; } } { RuntimeObject* L_3 = (RuntimeObject*)__this->get_comparer_6(); uint32_t L_4 = ___key0; NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, uint32_t >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.UInt32>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_3, (uint32_t)L_4); V_0 = (int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL))); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_6 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_7 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_8); NullCheck(L_6); int32_t L_9 = ((int32_t)((int32_t)L_7%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))))); int32_t L_10 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); V_1 = (int32_t)L_10; goto IL_0089; } IL_0042: { EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_11 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)__this->get_entries_1(); int32_t L_12 = V_1; NullCheck(L_11); int32_t L_13 = (int32_t)((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12)))->get_hashCode_0(); int32_t L_14 = V_0; if ((!(((uint32_t)L_13) == ((uint32_t)L_14)))) { goto IL_0077; } } { RuntimeObject* L_15 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_16 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)__this->get_entries_1(); int32_t L_17 = V_1; NullCheck(L_16); uint32_t L_18 = (uint32_t)((L_16)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_17)))->get_key_2(); uint32_t L_19 = ___key0; NullCheck((RuntimeObject*)L_15); bool L_20 = InterfaceFuncInvoker2< bool, uint32_t, uint32_t >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.UInt32>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_15, (uint32_t)L_18, (uint32_t)L_19); if (!L_20) { goto IL_0077; } } { int32_t L_21 = V_1; return L_21; } IL_0077: { EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_22 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)__this->get_entries_1(); int32_t L_23 = V_1; NullCheck(L_22); int32_t L_24 = (int32_t)((L_22)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_23)))->get_next_1(); V_1 = (int32_t)L_24; } IL_0089: { int32_t L_25 = V_1; if ((((int32_t)L_25) >= ((int32_t)0))) { goto IL_0042; } } IL_008d: { return (-1); } } // System.Void System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::Initialize(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Initialize_mBA741BEB822AAA5CB9672151CAB6DA91CD5A8BBD_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, int32_t ___capacity0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Initialize_mBA741BEB822AAA5CB9672151CAB6DA91CD5A8BBD_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___capacity0; IL2CPP_RUNTIME_CLASS_INIT(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var); int32_t L_1 = HashHelpers_GetPrime_m743D7006C2BCBADC1DC8CACF7C5B78C9F6B38297((int32_t)L_0, /*hidden argument*/NULL); V_0 = (int32_t)L_1; int32_t L_2 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_3 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_2); __this->set_buckets_0(L_3); V_1 = (int32_t)0; goto IL_0024; } IL_0017: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_4 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_5 = V_1; NullCheck(L_4); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (int32_t)(-1)); int32_t L_6 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)); } IL_0024: { int32_t L_7 = V_1; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_8); if ((((int32_t)L_7) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length))))))) { goto IL_0017; } } { int32_t L_9 = V_0; EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_10 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)(EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 35), (uint32_t)L_9); __this->set_entries_1(L_10); __this->set_freeList_4((-1)); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::TryInsert(TKey,TValue,System.Collections.Generic.InsertionBehavior) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryInsert_mA123B572AE3884B0C5A98E56BE8A550F632104D7_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, uint32_t ___key0, RuntimeObject * ___value1, uint8_t ___behavior2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_TryInsert_mA123B572AE3884B0C5A98E56BE8A550F632104D7_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; { goto IL_0013; } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_TryInsert_mA123B572AE3884B0C5A98E56BE8A550F632104D7_RuntimeMethod_var); } IL_0013: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (L_2) { goto IL_0022; } } { NullCheck((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this); (( void (*) (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); } IL_0022: { RuntimeObject* L_3 = (RuntimeObject*)__this->get_comparer_6(); uint32_t L_4 = ___key0; NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, uint32_t >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.UInt32>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_3, (uint32_t)L_4); V_0 = (int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL))); int32_t L_6 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_7 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_7); V_1 = (int32_t)((int32_t)((int32_t)L_6%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length)))))); V_2 = (int32_t)0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_9 = V_1; NullCheck(L_8); int32_t L_10 = L_9; int32_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); V_4 = (int32_t)L_11; goto IL_00e1; } IL_0051: { EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_12 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)__this->get_entries_1(); int32_t L_13 = V_4; NullCheck(L_12); int32_t L_14 = (int32_t)((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_13)))->get_hashCode_0(); int32_t L_15 = V_0; if ((!(((uint32_t)L_14) == ((uint32_t)L_15)))) { goto IL_00c9; } } { RuntimeObject* L_16 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_17 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)__this->get_entries_1(); int32_t L_18 = V_4; NullCheck(L_17); uint32_t L_19 = (uint32_t)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->get_key_2(); uint32_t L_20 = ___key0; NullCheck((RuntimeObject*)L_16); bool L_21 = InterfaceFuncInvoker2< bool, uint32_t, uint32_t >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.UInt32>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_16, (uint32_t)L_19, (uint32_t)L_20); if (!L_21) { goto IL_00c9; } } { uint8_t L_22 = ___behavior2; if ((!(((uint32_t)L_22) == ((uint32_t)1)))) { goto IL_00ad; } } { EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_23 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)__this->get_entries_1(); int32_t L_24 = V_4; NullCheck(L_23); RuntimeObject * L_25 = ___value1; ((L_23)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_24)))->set_value_3(L_25); int32_t L_26 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1))); return (bool)1; } IL_00ad: { uint8_t L_27 = ___behavior2; if ((!(((uint32_t)L_27) == ((uint32_t)2)))) { goto IL_00c7; } } { uint32_t L_28 = ___key0; uint32_t L_29 = L_28; RuntimeObject * L_30 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 33), &L_29); String_t* L_31 = SR_Format_mCDBB594267CC224AB2A69540BBA598151F0642C7((String_t*)_stringLiteral6FD577FD3A1BDC4DA28CD51D7A55EB397CEA3926, (RuntimeObject *)L_30, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_32 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_32, (String_t*)L_31, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_32, NULL, Dictionary_2_TryInsert_mA123B572AE3884B0C5A98E56BE8A550F632104D7_RuntimeMethod_var); } IL_00c7: { return (bool)0; } IL_00c9: { int32_t L_33 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1)); EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_34 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)__this->get_entries_1(); int32_t L_35 = V_4; NullCheck(L_34); int32_t L_36 = (int32_t)((L_34)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_35)))->get_next_1(); V_4 = (int32_t)L_36; } IL_00e1: { int32_t L_37 = V_4; if ((((int32_t)L_37) >= ((int32_t)0))) { goto IL_0051; } } { int32_t L_38 = (int32_t)__this->get_freeCount_5(); if ((((int32_t)L_38) <= ((int32_t)0))) { goto IL_0120; } } { int32_t L_39 = (int32_t)__this->get_freeList_4(); V_3 = (int32_t)L_39; EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_40 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)__this->get_entries_1(); int32_t L_41 = V_3; NullCheck(L_40); int32_t L_42 = (int32_t)((L_40)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_41)))->get_next_1(); __this->set_freeList_4(L_42); int32_t L_43 = (int32_t)__this->get_freeCount_5(); __this->set_freeCount_5(((int32_t)il2cpp_codegen_subtract((int32_t)L_43, (int32_t)1))); goto IL_0156; } IL_0120: { int32_t L_44 = (int32_t)__this->get_count_2(); EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_45 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)__this->get_entries_1(); NullCheck(L_45); if ((!(((uint32_t)L_44) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_45)->max_length)))))))) { goto IL_0141; } } { NullCheck((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this); (( void (*) (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 36)->methodPointer)((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 36)); int32_t L_46 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_47 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_47); V_1 = (int32_t)((int32_t)((int32_t)L_46%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_47)->max_length)))))); } IL_0141: { int32_t L_48 = (int32_t)__this->get_count_2(); V_3 = (int32_t)L_48; int32_t L_49 = (int32_t)__this->get_count_2(); __this->set_count_2(((int32_t)il2cpp_codegen_add((int32_t)L_49, (int32_t)1))); } IL_0156: { EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_50 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)__this->get_entries_1(); int32_t L_51 = V_3; NullCheck(L_50); int32_t L_52 = V_0; ((L_50)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_51)))->set_hashCode_0(L_52); EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_53 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)__this->get_entries_1(); int32_t L_54 = V_3; NullCheck(L_53); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_55 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_56 = V_1; NullCheck(L_55); int32_t L_57 = L_56; int32_t L_58 = (L_55)->GetAt(static_cast<il2cpp_array_size_t>(L_57)); ((L_53)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_54)))->set_next_1(L_58); EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_59 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)__this->get_entries_1(); int32_t L_60 = V_3; NullCheck(L_59); uint32_t L_61 = ___key0; ((L_59)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_60)))->set_key_2(L_61); EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_62 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)__this->get_entries_1(); int32_t L_63 = V_3; NullCheck(L_62); RuntimeObject * L_64 = ___value1; ((L_62)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_63)))->set_value_3(L_64); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_65 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_66 = V_1; int32_t L_67 = V_3; NullCheck(L_65); (L_65)->SetAt(static_cast<il2cpp_array_size_t>(L_66), (int32_t)L_67); int32_t L_68 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_68, (int32_t)1))); int32_t L_69 = V_2; if ((((int32_t)L_69) <= ((int32_t)((int32_t)100)))) { goto IL_01ed; } } { RuntimeObject* L_70 = (RuntimeObject*)__this->get_comparer_6(); if (!((NonRandomizedStringEqualityComparer_t92C20503D9C5060A557792ABCCC06EF2DD77E5D9 *)IsInst((RuntimeObject*)L_70, NonRandomizedStringEqualityComparer_t92C20503D9C5060A557792ABCCC06EF2DD77E5D9_il2cpp_TypeInfo_var))) { goto IL_01ed; } } { EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137 * L_71 = EqualityComparer_1_get_Default_m85F378D7298050D5DF422363D5EB30A218B769B7(/*hidden argument*/EqualityComparer_1_get_Default_m85F378D7298050D5DF422363D5EB30A218B769B7_RuntimeMethod_var); __this->set_comparer_6(((RuntimeObject*)Castclass((RuntimeObject*)L_71, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34)))); EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_72 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)__this->get_entries_1(); NullCheck(L_72); NullCheck((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this); (( void (*) (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *, int32_t, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)->methodPointer)((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this, (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_72)->max_length)))), (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)); } IL_01ed: { return (bool)1; } } // System.Void System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::OnDeserialization(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_OnDeserialization_mB8DCE02B77C584485486186EC1E4401A48E41B09_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, RuntimeObject * ___sender0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_OnDeserialization_mB8DCE02B77C584485486186EC1E4401A48E41B09_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; KeyValuePair_2U5BU5D_tE5534F12D5421E2FFAE5C6743851D7EF64257399* V_3 = NULL; int32_t V_4 = 0; int32_t V_5 = 0; { IL2CPP_RUNTIME_CLASS_INIT(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_0 = DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C_inline(/*hidden argument*/NULL); NullCheck((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0); ConditionalWeakTable_2_TryGetValue_mDFCB6C303807E3F8998D196F4573870680E81F8B((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0, (RuntimeObject *)__this, (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 **)(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 **)(&V_0), /*hidden argument*/ConditionalWeakTable_2_TryGetValue_mDFCB6C303807E3F8998D196F4573870680E81F8B_RuntimeMethod_var); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_1 = V_0; if (L_1) { goto IL_0012; } } { return; } IL_0012: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = V_0; NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2); int32_t L_3 = SerializationInfo_GetInt32_mB47BD46A0BDBBAF5B47BB62E6EFF8E092E3F3656((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2, (String_t*)_stringLiteral2DA600BF9404843107A9531694F654E5662959E0, /*hidden argument*/NULL); V_1 = (int32_t)L_3; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = V_0; NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4); int32_t L_5 = SerializationInfo_GetInt32_mB47BD46A0BDBBAF5B47BB62E6EFF8E092E3F3656((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4, (String_t*)_stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60, /*hidden argument*/NULL); V_2 = (int32_t)L_5; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_6 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 29)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_7, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_6); RuntimeObject * L_9 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_6, (String_t*)_stringLiteral8FC94E4F5B71CECE2565D72417AACC804EE27A0D, (Type_t *)L_8, /*hidden argument*/NULL); __this->set_comparer_6(((RuntimeObject*)Castclass((RuntimeObject*)L_9, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34)))); int32_t L_10 = V_2; if (!L_10) { goto IL_010c; } } { int32_t L_11 = V_2; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_12 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_11); __this->set_buckets_0(L_12); V_4 = (int32_t)0; goto IL_0071; } IL_0061: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_13 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_14 = V_4; NullCheck(L_13); (L_13)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (int32_t)(-1)); int32_t L_15 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_0071: { int32_t L_16 = V_4; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_17 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_17); if ((((int32_t)L_16) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length))))))) { goto IL_0061; } } { int32_t L_18 = V_2; EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_19 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)(EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 35), (uint32_t)L_18); __this->set_entries_1(L_19); __this->set_freeList_4((-1)); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_20 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_21 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 32)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_22 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_21, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_20); RuntimeObject * L_23 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_20, (String_t*)_stringLiteral1D89254A2BC78C1FF41C2F6767A0E00EE126B3BF, (Type_t *)L_22, /*hidden argument*/NULL); V_3 = (KeyValuePair_2U5BU5D_tE5534F12D5421E2FFAE5C6743851D7EF64257399*)((KeyValuePair_2U5BU5D_tE5534F12D5421E2FFAE5C6743851D7EF64257399*)Castclass((RuntimeObject*)L_23, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 38))); KeyValuePair_2U5BU5D_tE5534F12D5421E2FFAE5C6743851D7EF64257399* L_24 = V_3; if (L_24) { goto IL_00b9; } } { SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * L_25 = (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 *)il2cpp_codegen_object_new(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var); SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1(L_25, (String_t*)_stringLiteral1EB7E67EA75FFC3FCB05A9685FA4F1578DCACCF6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, NULL, Dictionary_2_OnDeserialization_mB8DCE02B77C584485486186EC1E4401A48E41B09_RuntimeMethod_var); } IL_00b9: { V_5 = (int32_t)0; goto IL_0103; } IL_00be: { KeyValuePair_2U5BU5D_tE5534F12D5421E2FFAE5C6743851D7EF64257399* L_26 = V_3; int32_t L_27 = V_5; NullCheck(L_26); uint32_t L_28 = KeyValuePair_2_get_Key_m87471DF5ECE5A02E957745A3F6A64B5A40B1DAD2_inline((KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 *)(KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 *)((L_26)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_27))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); goto IL_00dd; } { SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * L_29 = (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 *)il2cpp_codegen_object_new(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var); SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1(L_29, (String_t*)_stringLiteralD6D1BC79DD62E9F1FB9A49A8F76F4BA8AB71AECD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_29, NULL, Dictionary_2_OnDeserialization_mB8DCE02B77C584485486186EC1E4401A48E41B09_RuntimeMethod_var); } IL_00dd: { KeyValuePair_2U5BU5D_tE5534F12D5421E2FFAE5C6743851D7EF64257399* L_30 = V_3; int32_t L_31 = V_5; NullCheck(L_30); uint32_t L_32 = KeyValuePair_2_get_Key_m87471DF5ECE5A02E957745A3F6A64B5A40B1DAD2_inline((KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 *)(KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 *)((L_30)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_31))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); KeyValuePair_2U5BU5D_tE5534F12D5421E2FFAE5C6743851D7EF64257399* L_33 = V_3; int32_t L_34 = V_5; NullCheck(L_33); RuntimeObject * L_35 = KeyValuePair_2_get_Value_m6256609EDAF20A0AC36F64B4E1B584B5D35B70A9_inline((KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 *)(KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 *)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); NullCheck((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this); (( void (*) (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *, uint32_t, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this, (uint32_t)L_32, (RuntimeObject *)L_35, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); int32_t L_36 = V_5; V_5 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)1)); } IL_0103: { int32_t L_37 = V_5; KeyValuePair_2U5BU5D_tE5534F12D5421E2FFAE5C6743851D7EF64257399* L_38 = V_3; NullCheck(L_38); if ((((int32_t)L_37) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_38)->max_length))))))) { goto IL_00be; } } { goto IL_0113; } IL_010c: { __this->set_buckets_0((Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)NULL); } IL_0113: { int32_t L_39 = V_1; __this->set_version_3(L_39); IL2CPP_RUNTIME_CLASS_INIT(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_40 = DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C_inline(/*hidden argument*/NULL); NullCheck((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_40); ConditionalWeakTable_2_Remove_mD69606977A8C793DEA91E373F7D886E4865D7FBD((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_40, (RuntimeObject *)__this, /*hidden argument*/ConditionalWeakTable_2_Remove_mD69606977A8C793DEA91E373F7D886E4865D7FBD_RuntimeMethod_var); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::Resize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Resize_m70730CC590EF0364362F2C8C1B9CDFE9E8FE40E3_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Resize_m70730CC590EF0364362F2C8C1B9CDFE9E8FE40E3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_count_2(); IL2CPP_RUNTIME_CLASS_INIT(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var); int32_t L_1 = HashHelpers_ExpandPrime_m4245F4C95074EAA8F949FB3B734F611A533A6A0D((int32_t)L_0, /*hidden argument*/NULL); NullCheck((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this); (( void (*) (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *, int32_t, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)->methodPointer)((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this, (int32_t)L_1, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::Resize(System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Resize_mFAA9AE955EADBD9A2CD0F57AFAD770FB095ACE09_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, int32_t ___newSize0, bool ___forceNewHashCodes1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Resize_mFAA9AE955EADBD9A2CD0F57AFAD770FB095ACE09_MetadataUsageId); s_Il2CppMethodInitialized = true; } Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL; EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; { int32_t L_0 = ___newSize0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_0); V_0 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)L_1; V_2 = (int32_t)0; goto IL_0013; } IL_000b: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = V_0; int32_t L_3 = V_2; NullCheck(L_2); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (int32_t)(-1)); int32_t L_4 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)); } IL_0013: { int32_t L_5 = V_2; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_6 = V_0; NullCheck(L_6); if ((((int32_t)L_5) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length))))))) { goto IL_000b; } } { int32_t L_7 = ___newSize0; EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_8 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)(EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 35), (uint32_t)L_7); V_1 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)L_8; EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_9 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)__this->get_entries_1(); EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_10 = V_1; int32_t L_11 = (int32_t)__this->get_count_2(); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_9, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_10, (int32_t)0, (int32_t)L_11, /*hidden argument*/NULL); bool L_12 = ___forceNewHashCodes1; if (!L_12) { goto IL_0080; } } { V_3 = (int32_t)0; goto IL_0077; } IL_003b: { EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_13 = V_1; int32_t L_14 = V_3; NullCheck(L_13); int32_t L_15 = (int32_t)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_hashCode_0(); if ((((int32_t)L_15) == ((int32_t)(-1)))) { goto IL_0073; } } { EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_16 = V_1; int32_t L_17 = V_3; NullCheck(L_16); RuntimeObject* L_18 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_19 = V_1; int32_t L_20 = V_3; NullCheck(L_19); uint32_t L_21 = (uint32_t)((L_19)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_20)))->get_key_2(); NullCheck((RuntimeObject*)L_18); int32_t L_22 = InterfaceFuncInvoker1< int32_t, uint32_t >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.UInt32>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_18, (uint32_t)L_21); ((L_16)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_17)))->set_hashCode_0(((int32_t)((int32_t)L_22&(int32_t)((int32_t)2147483647LL)))); } IL_0073: { int32_t L_23 = V_3; V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); } IL_0077: { int32_t L_24 = V_3; int32_t L_25 = (int32_t)__this->get_count_2(); if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_003b; } } IL_0080: { V_4 = (int32_t)0; goto IL_00c3; } IL_0085: { EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_26 = V_1; int32_t L_27 = V_4; NullCheck(L_26); int32_t L_28 = (int32_t)((L_26)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_27)))->get_hashCode_0(); if ((((int32_t)L_28) < ((int32_t)0))) { goto IL_00bd; } } { EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_29 = V_1; int32_t L_30 = V_4; NullCheck(L_29); int32_t L_31 = (int32_t)((L_29)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_30)))->get_hashCode_0(); int32_t L_32 = ___newSize0; V_5 = (int32_t)((int32_t)((int32_t)L_31%(int32_t)L_32)); EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_33 = V_1; int32_t L_34 = V_4; NullCheck(L_33); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_35 = V_0; int32_t L_36 = V_5; NullCheck(L_35); int32_t L_37 = L_36; int32_t L_38 = (L_35)->GetAt(static_cast<il2cpp_array_size_t>(L_37)); ((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->set_next_1(L_38); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_39 = V_0; int32_t L_40 = V_5; int32_t L_41 = V_4; NullCheck(L_39); (L_39)->SetAt(static_cast<il2cpp_array_size_t>(L_40), (int32_t)L_41); } IL_00bd: { int32_t L_42 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1)); } IL_00c3: { int32_t L_43 = V_4; int32_t L_44 = (int32_t)__this->get_count_2(); if ((((int32_t)L_43) < ((int32_t)L_44))) { goto IL_0085; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_45 = V_0; __this->set_buckets_0(L_45); EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_46 = V_1; __this->set_entries_1(L_46); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::Remove(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_Remove_mBBF21C84D264E876D572E4BC4E48A9A02BE96E6E_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, uint32_t ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Remove_mBBF21C84D264E876D572E4BC4E48A9A02BE96E6E_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; { goto IL_0013; } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_Remove_mBBF21C84D264E876D572E4BC4E48A9A02BE96E6E_RuntimeMethod_var); } IL_0013: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (!L_2) { goto IL_015d; } } { RuntimeObject* L_3 = (RuntimeObject*)__this->get_comparer_6(); uint32_t L_4 = ___key0; NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, uint32_t >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.UInt32>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_3, (uint32_t)L_4); V_0 = (int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL))); int32_t L_6 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_7 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_7); V_1 = (int32_t)((int32_t)((int32_t)L_6%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length)))))); V_2 = (int32_t)(-1); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_9 = V_1; NullCheck(L_8); int32_t L_10 = L_9; int32_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); V_3 = (int32_t)L_11; goto IL_0156; } IL_004c: { EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_12 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)__this->get_entries_1(); int32_t L_13 = V_3; NullCheck(L_12); int32_t L_14 = (int32_t)((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_13)))->get_hashCode_0(); int32_t L_15 = V_0; if ((!(((uint32_t)L_14) == ((uint32_t)L_15)))) { goto IL_0142; } } { RuntimeObject* L_16 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_17 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)__this->get_entries_1(); int32_t L_18 = V_3; NullCheck(L_17); uint32_t L_19 = (uint32_t)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->get_key_2(); uint32_t L_20 = ___key0; NullCheck((RuntimeObject*)L_16); bool L_21 = InterfaceFuncInvoker2< bool, uint32_t, uint32_t >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.UInt32>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 34), (RuntimeObject*)L_16, (uint32_t)L_19, (uint32_t)L_20); if (!L_21) { goto IL_0142; } } { int32_t L_22 = V_2; if ((((int32_t)L_22) >= ((int32_t)0))) { goto IL_00a4; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_23 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_24 = V_1; EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_25 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)__this->get_entries_1(); int32_t L_26 = V_3; NullCheck(L_25); int32_t L_27 = (int32_t)((L_25)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_26)))->get_next_1(); NullCheck(L_23); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (int32_t)L_27); goto IL_00c6; } IL_00a4: { EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_28 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)__this->get_entries_1(); int32_t L_29 = V_2; NullCheck(L_28); EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_30 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)__this->get_entries_1(); int32_t L_31 = V_3; NullCheck(L_30); int32_t L_32 = (int32_t)((L_30)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_31)))->get_next_1(); ((L_28)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_29)))->set_next_1(L_32); } IL_00c6: { EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_33 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)__this->get_entries_1(); int32_t L_34 = V_3; NullCheck(L_33); ((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->set_hashCode_0((-1)); EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_35 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)__this->get_entries_1(); int32_t L_36 = V_3; NullCheck(L_35); int32_t L_37 = (int32_t)__this->get_freeList_4(); ((L_35)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_36)))->set_next_1(L_37); EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_38 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)__this->get_entries_1(); int32_t L_39 = V_3; NullCheck(L_38); uint32_t* L_40 = (uint32_t*)((L_38)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_39)))->get_address_of_key_2(); il2cpp_codegen_initobj(L_40, sizeof(uint32_t)); EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_41 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)__this->get_entries_1(); int32_t L_42 = V_3; NullCheck(L_41); RuntimeObject ** L_43 = (RuntimeObject **)((L_41)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_42)))->get_address_of_value_3(); il2cpp_codegen_initobj(L_43, sizeof(RuntimeObject *)); int32_t L_44 = V_3; __this->set_freeList_4(L_44); int32_t L_45 = (int32_t)__this->get_freeCount_5(); __this->set_freeCount_5(((int32_t)il2cpp_codegen_add((int32_t)L_45, (int32_t)1))); int32_t L_46 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_46, (int32_t)1))); return (bool)1; } IL_0142: { int32_t L_47 = V_3; V_2 = (int32_t)L_47; EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_48 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)__this->get_entries_1(); int32_t L_49 = V_3; NullCheck(L_48); int32_t L_50 = (int32_t)((L_48)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_49)))->get_next_1(); V_3 = (int32_t)L_50; } IL_0156: { int32_t L_51 = V_3; if ((((int32_t)L_51) >= ((int32_t)0))) { goto IL_004c; } } IL_015d: { return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::TryGetValue(TKey,TValue&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_m8B422BD91F7A9B7BB719295D3FA0D0DFC6C32048_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, uint32_t ___key0, RuntimeObject ** ___value1, const RuntimeMethod* method) { int32_t V_0 = 0; { uint32_t L_0 = ___key0; NullCheck((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *, uint32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this, (uint32_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0025; } } { RuntimeObject ** L_3 = ___value1; EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_4 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); RuntimeObject * L_6 = (RuntimeObject *)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); *(RuntimeObject **)L_3 = L_6; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_3, (void*)L_6); return (bool)1; } IL_0025: { RuntimeObject ** L_7 = ___value1; il2cpp_codegen_initobj(L_7, sizeof(RuntimeObject *)); return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_get_IsReadOnly_mBE91D48B8B836261C69702521DAE32CD97F3479F_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Void System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_CopyTo_m14FF59492177337AD17FD2EA7126A37AA29CF828_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, KeyValuePair_2U5BU5D_tE5534F12D5421E2FFAE5C6743851D7EF64257399* ___array0, int32_t ___index1, const RuntimeMethod* method) { { KeyValuePair_2U5BU5D_tE5534F12D5421E2FFAE5C6743851D7EF64257399* L_0 = ___array0; int32_t L_1 = ___index1; NullCheck((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this); (( void (*) (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *, KeyValuePair_2U5BU5D_tE5534F12D5421E2FFAE5C6743851D7EF64257399*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this, (KeyValuePair_2U5BU5D_tE5534F12D5421E2FFAE5C6743851D7EF64257399*)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_ICollection_CopyTo_mAEB91880DCBD52840A58742DA1C838B7D180D2A5_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_ICollection_CopyTo_mAEB91880DCBD52840A58742DA1C838B7D180D2A5_MetadataUsageId); s_Il2CppMethodInitialized = true; } KeyValuePair_2U5BU5D_tE5534F12D5421E2FFAE5C6743851D7EF64257399* V_0 = NULL; DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56* V_1 = NULL; EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* V_2 = NULL; int32_t V_3 = 0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_4 = NULL; int32_t V_5 = 0; EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* V_6 = NULL; int32_t V_7 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mAEB91880DCBD52840A58742DA1C838B7D180D2A5_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; NullCheck((RuntimeArray *)L_2); int32_t L_3 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0027; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_4 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_4, (String_t*)_stringLiteral2D77BE6D598A0A9376398980E66D10E319F1B52A, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mAEB91880DCBD52840A58742DA1C838B7D180D2A5_RuntimeMethod_var); } IL_0027: { RuntimeArray * L_5 = ___array0; NullCheck((RuntimeArray *)L_5); int32_t L_6 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)L_5, (int32_t)0, /*hidden argument*/NULL); if (!L_6) { goto IL_0040; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_7, (String_t*)_stringLiteralC363992023785AF013BBCF2E20C19D9835184F82, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mAEB91880DCBD52840A58742DA1C838B7D180D2A5_RuntimeMethod_var); } IL_0040: { int32_t L_8 = ___index1; if ((((int32_t)L_8) < ((int32_t)0))) { goto IL_004d; } } { int32_t L_9 = ___index1; RuntimeArray * L_10 = ___array0; NullCheck((RuntimeArray *)L_10); int32_t L_11 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_10, /*hidden argument*/NULL); if ((((int32_t)L_9) <= ((int32_t)L_11))) { goto IL_0063; } } IL_004d: { int32_t L_12 = ___index1; int32_t L_13 = L_12; RuntimeObject * L_14 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_13); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_15 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_15, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, (RuntimeObject *)L_14, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mAEB91880DCBD52840A58742DA1C838B7D180D2A5_RuntimeMethod_var); } IL_0063: { RuntimeArray * L_16 = ___array0; NullCheck((RuntimeArray *)L_16); int32_t L_17 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_16, /*hidden argument*/NULL); int32_t L_18 = ___index1; NullCheck((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this); int32_t L_19 = (( int32_t (*) (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)->methodPointer)((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_19))) { goto IL_007e; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_20 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_20, (String_t*)_stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mAEB91880DCBD52840A58742DA1C838B7D180D2A5_RuntimeMethod_var); } IL_007e: { RuntimeArray * L_21 = ___array0; V_0 = (KeyValuePair_2U5BU5D_tE5534F12D5421E2FFAE5C6743851D7EF64257399*)((KeyValuePair_2U5BU5D_tE5534F12D5421E2FFAE5C6743851D7EF64257399*)IsInst((RuntimeObject*)L_21, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 38))); KeyValuePair_2U5BU5D_tE5534F12D5421E2FFAE5C6743851D7EF64257399* L_22 = V_0; if (!L_22) { goto IL_0091; } } { KeyValuePair_2U5BU5D_tE5534F12D5421E2FFAE5C6743851D7EF64257399* L_23 = V_0; int32_t L_24 = ___index1; NullCheck((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this); (( void (*) (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *, KeyValuePair_2U5BU5D_tE5534F12D5421E2FFAE5C6743851D7EF64257399*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this, (KeyValuePair_2U5BU5D_tE5534F12D5421E2FFAE5C6743851D7EF64257399*)L_23, (int32_t)L_24, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); return; } IL_0091: { RuntimeArray * L_25 = ___array0; if (!((DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56*)IsInst((RuntimeObject*)L_25, DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56_il2cpp_TypeInfo_var))) { goto IL_00fb; } } { RuntimeArray * L_26 = ___array0; V_1 = (DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56*)((DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56*)IsInst((RuntimeObject*)L_26, DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56_il2cpp_TypeInfo_var)); EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_27 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)__this->get_entries_1(); V_2 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)L_27; V_3 = (int32_t)0; goto IL_00f1; } IL_00ab: { EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_28 = V_2; int32_t L_29 = V_3; NullCheck(L_28); int32_t L_30 = (int32_t)((L_28)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_29)))->get_hashCode_0(); if ((((int32_t)L_30) < ((int32_t)0))) { goto IL_00ed; } } { DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56* L_31 = V_1; int32_t L_32 = ___index1; int32_t L_33 = (int32_t)L_32; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1)); EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_34 = V_2; int32_t L_35 = V_3; NullCheck(L_34); uint32_t L_36 = (uint32_t)((L_34)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_35)))->get_key_2(); uint32_t L_37 = L_36; RuntimeObject * L_38 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 33), &L_37); EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_39 = V_2; int32_t L_40 = V_3; NullCheck(L_39); RuntimeObject * L_41 = (RuntimeObject *)((L_39)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_40)))->get_value_3(); DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_42; memset((&L_42), 0, sizeof(L_42)); DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B((&L_42), (RuntimeObject *)L_38, (RuntimeObject *)L_41, /*hidden argument*/NULL); NullCheck(L_31); (L_31)->SetAt(static_cast<il2cpp_array_size_t>(L_33), (DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 )L_42); } IL_00ed: { int32_t L_43 = V_3; V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_43, (int32_t)1)); } IL_00f1: { int32_t L_44 = V_3; int32_t L_45 = (int32_t)__this->get_count_2(); if ((((int32_t)L_44) < ((int32_t)L_45))) { goto IL_00ab; } } { return; } IL_00fb: { RuntimeArray * L_46 = ___array0; V_4 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)L_46, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_47 = V_4; if (L_47) { goto IL_0117; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_48 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_48, (String_t*)_stringLiteralC44D4E6C6AF3517A1CC72EDF7D1A5FFD7E3368F1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_48, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mAEB91880DCBD52840A58742DA1C838B7D180D2A5_RuntimeMethod_var); } IL_0117: { } IL_0118: try { // begin try (depth: 1) { int32_t L_49 = (int32_t)__this->get_count_2(); V_5 = (int32_t)L_49; EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_50 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)__this->get_entries_1(); V_6 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)L_50; V_7 = (int32_t)0; goto IL_0173; } IL_012d: { EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_51 = V_6; int32_t L_52 = V_7; NullCheck(L_51); int32_t L_53 = (int32_t)((L_51)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_52)))->get_hashCode_0(); if ((((int32_t)L_53) < ((int32_t)0))) { goto IL_016d; } } IL_013e: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_54 = V_4; int32_t L_55 = ___index1; int32_t L_56 = (int32_t)L_55; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_56, (int32_t)1)); EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_57 = V_6; int32_t L_58 = V_7; NullCheck(L_57); uint32_t L_59 = (uint32_t)((L_57)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_58)))->get_key_2(); EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_60 = V_6; int32_t L_61 = V_7; NullCheck(L_60); RuntimeObject * L_62 = (RuntimeObject *)((L_60)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_61)))->get_value_3(); KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 L_63; memset((&L_63), 0, sizeof(L_63)); KeyValuePair_2__ctor_mDA92DF498E64672BF241C716D0F12E7ACF270931((&L_63), (uint32_t)L_59, (RuntimeObject *)L_62, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)); KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 L_64 = L_63; RuntimeObject * L_65 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 25), &L_64); NullCheck(L_54); ArrayElementTypeCheck (L_54, L_65); (L_54)->SetAt(static_cast<il2cpp_array_size_t>(L_56), (RuntimeObject *)L_65); } IL_016d: { int32_t L_66 = V_7; V_7 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_66, (int32_t)1)); } IL_0173: { int32_t L_67 = V_7; int32_t L_68 = V_5; if ((((int32_t)L_67) < ((int32_t)L_68))) { goto IL_012d; } } IL_0179: { goto IL_018c; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArrayTypeMismatchException_tE34C1032B089C37399200997F079C640D23D9499_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_017b; throw e; } CATCH_017b: { // begin catch(System.ArrayTypeMismatchException) ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_69 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_69, (String_t*)_stringLiteralC44D4E6C6AF3517A1CC72EDF7D1A5FFD7E3368F1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_69, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mAEB91880DCBD52840A58742DA1C838B7D180D2A5_RuntimeMethod_var); } // end catch (depth: 1) IL_018c: { return; } } // System.Collections.IEnumerator System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_IEnumerable_GetEnumerator_m7EE60EFA22A490AE47FBA19A467DE7C5F78944BA_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, const RuntimeMethod* method) { { Enumerator_tA11260A645393E5618D53A0300464DC6031C83B8 L_0; memset((&L_0), 0, sizeof(L_0)); Enumerator__ctor_m0FA9E16264810D7DCC03216F7CA61C2F9FD8451A((&L_0), (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 28)); Enumerator_tA11260A645393E5618D53A0300464DC6031C83B8 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 27), &L_1); return (RuntimeObject*)L_2; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::System.Collections.ICollection.get_IsSynchronized() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_ICollection_get_IsSynchronized_m8C735BBB87746C7C4136F268DAA86DB1D22C27A9_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Object System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::System.Collections.ICollection.get_SyncRoot() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Dictionary_2_System_Collections_ICollection_get_SyncRoot_m769E44673458A7E9F4BB9D8904F3A6EAEFD38E2F_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_ICollection_get_SyncRoot_m769E44673458A7E9F4BB9D8904F3A6EAEFD38E2F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = (RuntimeObject *)__this->get__syncRoot_9(); if (L_0) { goto IL_001a; } } { RuntimeObject ** L_1 = (RuntimeObject **)__this->get_address_of__syncRoot_9(); RuntimeObject * L_2 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_2, /*hidden argument*/NULL); InterlockedCompareExchangeImpl<RuntimeObject *>((RuntimeObject **)(RuntimeObject **)L_1, (RuntimeObject *)L_2, (RuntimeObject *)NULL); } IL_001a: { RuntimeObject * L_3 = (RuntimeObject *)__this->get__syncRoot_9(); return L_3; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::System.Collections.IDictionary.get_IsFixedSize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_IDictionary_get_IsFixedSize_m65E42573DB38DAE8992528F8C2B97649069C62D2_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::System.Collections.IDictionary.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_IDictionary_get_IsReadOnly_m478398ADC3EFDD8BC15CAAC663D6E11EF91F0C06_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Collections.ICollection System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::System.Collections.IDictionary.get_Keys() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_IDictionary_get_Keys_m7BA8C81D2E44CA111FABE9D8CCD27F962A8032FB_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, const RuntimeMethod* method) { { NullCheck((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this); KeyCollection_tDB0CE6550164FA6B9F36F406E71DA592D0B03C55 * L_0 = (( KeyCollection_tDB0CE6550164FA6B9F36F406E71DA592D0B03C55 * (*) (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 39)->methodPointer)((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 39)); return L_0; } } // System.Collections.ICollection System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::System.Collections.IDictionary.get_Values() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_IDictionary_get_Values_mF2E1FC35046AA3410DCC6CC50AF58E2946C01FEF_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, const RuntimeMethod* method) { { NullCheck((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this); ValueCollection_tA886702655DCF8ABB2A963CDEE146B3CE24FCF4A * L_0 = (( ValueCollection_tA886702655DCF8ABB2A963CDEE146B3CE24FCF4A * (*) (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 40)->methodPointer)((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 40)); return L_0; } } // System.Object System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::System.Collections.IDictionary.get_Item(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Dictionary_2_System_Collections_IDictionary_get_Item_m7AD5406C31A6F9C150549BDCE9DBD832140CAFE3_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; bool L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)); if (!L_1) { goto IL_0030; } } { RuntimeObject * L_2 = ___key0; NullCheck((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this); int32_t L_3 = (( int32_t (*) (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *, uint32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this, (uint32_t)((*(uint32_t*)((uint32_t*)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 33))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); V_0 = (int32_t)L_3; int32_t L_4 = V_0; if ((((int32_t)L_4) < ((int32_t)0))) { goto IL_0030; } } { EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A* L_5 = (EntryU5BU5D_t7EC1B13F1E8C271E1FE89F250BDB2E1344F4733A*)__this->get_entries_1(); int32_t L_6 = V_0; NullCheck(L_5); RuntimeObject * L_7 = (RuntimeObject *)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_value_3(); return L_7; } IL_0030: { return NULL; } } // System.Void System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::System.Collections.IDictionary.set_Item(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_IDictionary_set_Item_mE870470B83F6D8EA0B2E7603625C0CC35F63D3A3_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_IDictionary_set_Item_mE870470B83F6D8EA0B2E7603625C0CC35F63D3A3_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; uint32_t V_1 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_mE870470B83F6D8EA0B2E7603625C0CC35F63D3A3_RuntimeMethod_var); } IL_000e: { RuntimeObject * L_2 = ___value1; if (L_2) { goto IL_002c; } } { il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *)); RuntimeObject * L_3 = V_0; if (!L_3) { goto IL_002c; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_4, (String_t*)_stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_mE870470B83F6D8EA0B2E7603625C0CC35F63D3A3_RuntimeMethod_var); } IL_002c: { } IL_002d: try { // begin try (depth: 1) { RuntimeObject * L_5 = ___key0; V_1 = (uint32_t)((*(uint32_t*)((uint32_t*)UnBox(L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 33))))); } IL_0034: try { // begin try (depth: 2) uint32_t L_6 = V_1; RuntimeObject * L_7 = ___value1; NullCheck((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this); (( void (*) (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *, uint32_t, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 43)->methodPointer)((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this, (uint32_t)L_6, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_7, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 23))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 43)); goto IL_0064; } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0043; throw e; } CATCH_0043: { // begin catch(System.InvalidCastException) RuntimeObject * L_8 = ___value1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_9 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 44)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_9, /*hidden argument*/NULL); String_t* L_11 = SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C((String_t*)_stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6, (RuntimeObject *)L_8, (RuntimeObject *)L_10, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_12, (String_t*)L_11, (String_t*)_stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_mE870470B83F6D8EA0B2E7603625C0CC35F63D3A3_RuntimeMethod_var); } // end catch (depth: 2) IL_0064: { goto IL_0087; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0066; throw e; } CATCH_0066: { // begin catch(System.InvalidCastException) RuntimeObject * L_13 = ___key0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 45)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_14, /*hidden argument*/NULL); String_t* L_16 = SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C((String_t*)_stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6, (RuntimeObject *)L_13, (RuntimeObject *)L_15, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_17 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_17, (String_t*)L_16, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_mE870470B83F6D8EA0B2E7603625C0CC35F63D3A3_RuntimeMethod_var); } // end catch (depth: 1) IL_0087: { return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::IsCompatibleKey(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_IsCompatibleKey_m6C3739FC4C462F3F5C0AA12BD9C3291F5A2CEEC9_gshared (RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_IsCompatibleKey_m6C3739FC4C462F3F5C0AA12BD9C3291F5A2CEEC9_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_IsCompatibleKey_m6C3739FC4C462F3F5C0AA12BD9C3291F5A2CEEC9_RuntimeMethod_var); } IL_000e: { RuntimeObject * L_2 = ___key0; return (bool)((!(((RuntimeObject*)(RuntimeObject *)((RuntimeObject *)IsInst((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 33)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); } } // System.Void System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::System.Collections.IDictionary.Add(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_IDictionary_Add_m019E55F1DB5592DA1F0A9DB58C7E4BE0A20C1ADB_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_IDictionary_Add_m019E55F1DB5592DA1F0A9DB58C7E4BE0A20C1ADB_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; uint32_t V_1 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_System_Collections_IDictionary_Add_m019E55F1DB5592DA1F0A9DB58C7E4BE0A20C1ADB_RuntimeMethod_var); } IL_000e: { RuntimeObject * L_2 = ___value1; if (L_2) { goto IL_002c; } } { il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *)); RuntimeObject * L_3 = V_0; if (!L_3) { goto IL_002c; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_4, (String_t*)_stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2_System_Collections_IDictionary_Add_m019E55F1DB5592DA1F0A9DB58C7E4BE0A20C1ADB_RuntimeMethod_var); } IL_002c: { } IL_002d: try { // begin try (depth: 1) { RuntimeObject * L_5 = ___key0; V_1 = (uint32_t)((*(uint32_t*)((uint32_t*)UnBox(L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 33))))); } IL_0034: try { // begin try (depth: 2) uint32_t L_6 = V_1; RuntimeObject * L_7 = ___value1; NullCheck((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this); (( void (*) (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *, uint32_t, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this, (uint32_t)L_6, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_7, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 23))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); goto IL_0064; } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0043; throw e; } CATCH_0043: { // begin catch(System.InvalidCastException) RuntimeObject * L_8 = ___value1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_9 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 44)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_9, /*hidden argument*/NULL); String_t* L_11 = SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C((String_t*)_stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6, (RuntimeObject *)L_8, (RuntimeObject *)L_10, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_12, (String_t*)L_11, (String_t*)_stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Dictionary_2_System_Collections_IDictionary_Add_m019E55F1DB5592DA1F0A9DB58C7E4BE0A20C1ADB_RuntimeMethod_var); } // end catch (depth: 2) IL_0064: { goto IL_0087; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0066; throw e; } CATCH_0066: { // begin catch(System.InvalidCastException) RuntimeObject * L_13 = ___key0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 45)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_14, /*hidden argument*/NULL); String_t* L_16 = SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C((String_t*)_stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6, (RuntimeObject *)L_13, (RuntimeObject *)L_15, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_17 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_17, (String_t*)L_16, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, NULL, Dictionary_2_System_Collections_IDictionary_Add_m019E55F1DB5592DA1F0A9DB58C7E4BE0A20C1ADB_RuntimeMethod_var); } // end catch (depth: 1) IL_0087: { return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::System.Collections.IDictionary.Contains(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_IDictionary_Contains_mE629A480198A181958ACF14D9255A6D37848DFAF_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; bool L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)); if (!L_1) { goto IL_0015; } } { RuntimeObject * L_2 = ___key0; NullCheck((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this); bool L_3 = (( bool (*) (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *, uint32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 46)->methodPointer)((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this, (uint32_t)((*(uint32_t*)((uint32_t*)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 33))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 46)); return L_3; } IL_0015: { return (bool)0; } } // System.Collections.IDictionaryEnumerator System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::System.Collections.IDictionary.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_IDictionary_GetEnumerator_mD01BA7D83CD65E9BCFDEDE3B6E160CADED8C6FA7_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, const RuntimeMethod* method) { { Enumerator_tA11260A645393E5618D53A0300464DC6031C83B8 L_0; memset((&L_0), 0, sizeof(L_0)); Enumerator__ctor_m0FA9E16264810D7DCC03216F7CA61C2F9FD8451A((&L_0), (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this, (int32_t)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 28)); Enumerator_tA11260A645393E5618D53A0300464DC6031C83B8 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 27), &L_1); return (RuntimeObject*)L_2; } } // System.Void System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::System.Collections.IDictionary.Remove(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_IDictionary_Remove_mACCC9C4FA5F8D9010744473DB848C855969C81C4_gshared (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; bool L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 41)); if (!L_1) { goto IL_0015; } } { RuntimeObject * L_2 = ___key0; NullCheck((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this); (( bool (*) (Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *, uint32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)->methodPointer)((Dictionary_2_tA04C0C5C8CC1B93793DBB27FBA9C324693B6755F *)__this, (uint32_t)((*(uint32_t*)((uint32_t*)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 33))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); } IL_0015: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C_inline (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05CGenerics12_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_0 = ((DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_StaticFields*)il2cpp_codegen_static_fields_for(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var))->get_U3CSerializationInfoTableU3Ek__BackingField_0(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m919A5B9C9E01A407D8DA9F3F08FB35620A76C296_gshared_inline (KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_key_0(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Value_mF3D2172C37CF753F9BDDAE1C214BAD43E3FB620A_gshared_inline (KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_value_1(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_mB084E92B140BFFC0B05807BEF67E3078B444B51A_gshared_inline (KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_key_0(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int64_t KeyValuePair_2_get_Value_mA67EB2ECE4D2556965A4E43E66589F6EEE19B182_gshared_inline (KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 * __this, const RuntimeMethod* method) { { int64_t L_0 = (int64_t)__this->get_value_1(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m9D4E9BCBAB1BE560871A0889C851FC22A09975F4_gshared_inline (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_key_0(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m8C7B882C4D425535288FAAD08EAF11D289A43AEC_gshared_inline (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_value_1(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m5D7C176AE453D032C109972EBB10C20605DAE036_gshared_inline (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_key_0(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C KeyValuePair_2_get_Value_m48979A8E8026569BC75639CDE453011950B84356_gshared_inline (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * __this, const RuntimeMethod* method) { { ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_0 = (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )__this->get_value_1(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_mF0C24D70ED98A551C33B48F08966A9B0F2BA3FF5_gshared_inline (KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_key_0(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR uint64_t KeyValuePair_2_get_Value_mDA274D6518BE8D259246751EE0C3DDAEAFECF9D1_gshared_inline (KeyValuePair_2_t806AE9DCACA9EEDC1E6009A8AEFB298500AA6D42 * __this, const RuntimeMethod* method) { { uint64_t L_0 = (uint64_t)__this->get_value_1(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_mB917E774A987623D40C5DA2EBA21D45C3EB5C0F1_gshared_inline (KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_key_0(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 KeyValuePair_2_get_Value_m195A8E1241A34205F7B6E149F05085770F740431_gshared_inline (KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 * __this, const RuntimeMethod* method) { { NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 L_0 = (NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 )__this->get_value_1(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR uint16_t KeyValuePair_2_get_Key_mB51C4AA5BD683F1FB85101F403C825A315784C9F_gshared_inline (KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 * __this, const RuntimeMethod* method) { { uint16_t L_0 = (uint16_t)__this->get_key_0(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m2FD5C0ECFDA6A2DD292C4DBC2E6F56F3F6E074C2_gshared_inline (KeyValuePair_2_t7277A94AE89CF1471D43EECA4D011DE7EE601968 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_value_1(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR uint32_t KeyValuePair_2_get_Key_m87471DF5ECE5A02E957745A3F6A64B5A40B1DAD2_gshared_inline (KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 * __this, const RuntimeMethod* method) { { uint32_t L_0 = (uint32_t)__this->get_key_0(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m6256609EDAF20A0AC36F64B4E1B584B5D35B70A9_gshared_inline (KeyValuePair_2_t6BF1E752AABA93EFFF1F9326F85B35DA1EF5EB30 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_value_1(); return L_0; } }
[ "Jamesc890116@gmail.com" ]
Jamesc890116@gmail.com
dc1851cf399ccb4373c1be11e43ad9d856ef3b65
6e3cdfc2bcecd7c74c3e981147b6aa73f92478a7
/main/main.cpp
b250a34d3a13032a168bbe7d05df31ed0dd9ae79
[ "Apache-2.0" ]
permissive
susiloharjo/esp32-custom-vision
30d3ac268688ebc4e3f7f83905a2673a1b7a8f3c
d3c35229640adf7a8655224ec5d32f6d3dc47d6a
refs/heads/master
2020-04-22T09:13:05.491556
2019-02-10T13:05:27
2019-02-10T13:05:27
null
0
0
null
null
null
null
UTF-8
C++
false
false
9,523
cpp
#include <esp_log.h> #include "sdkconfig.h" #include "secrets.h" #include "app_camera.hpp" #include "esp_http_server.h" #include "CustomVisionClient.h" #define TAG "APP" #define STREAM_PREDICTION_INTERVAL 10000000 //10 seconds // For streaming-related #define PART_BOUNDARY "123456789000000000000987654321" static const char* _STREAM_CONTENT_TYPE = "multipart/x-mixed-replace;boundary=" PART_BOUNDARY; static const char* _STREAM_BOUNDARY = "\r\n--" PART_BOUNDARY "\r\n"; static const char* _STREAM_PART = "Content-Type: image/jpeg\r\nContent-Length: %u\r\n\r\n"; static const char* DETECTING_MESSAGE = "Recognizing..."; static const char* DETECT_NO_RESULT_MESSAGE = "Nobody there :("; typedef enum { APP_BEGAN, APP_WAIT_FOR_CONNECT, APP_WIFI_CONNECTED, APP_START_DETECT, APP_START_RECOGNITION, APP_DONE_RECOGNITION, APP_START_ENROLL, APP_START_DELETE, } app_state_e; extern "C" { void app_main(void); } CustomVisionClient *cvc = NULL; httpd_handle_t camera_httpd = NULL; app_state_e app_state = APP_BEGAN; static esp_err_t index_handler(httpd_req_t *req){ httpd_resp_set_type(req, "text/plain"); return httpd_resp_send(req, "hello", 5); } static esp_err_t capture_handler(httpd_req_t *req){ esp_err_t res = ESP_OK; camera_fb_t *fb = esp_camera_fb_get(); if (!fb) { ESP_LOGE(TAG, "Camera buffer is not accessible"); httpd_resp_send_500(req); res = ESP_FAIL; } else { if (fb->format == PIXFORMAT_JPEG) { httpd_resp_set_type(req, "image/jpeg"); httpd_resp_set_hdr(req, "Content-Disposition", "inline; filename=capture.jpg"); res = httpd_resp_send(req, (const char *)fb->buf, fb->len); } } esp_camera_fb_return(fb); return res; } static esp_err_t recog_handler(httpd_req_t *req){ esp_err_t res = ESP_OK; camera_fb_t *fb = esp_camera_fb_get(); if (!fb) { ESP_LOGE(TAG, "Camera buffer is not accessible"); httpd_resp_send_500(req); res = ESP_FAIL; } else { if (fb->format == PIXFORMAT_JPEG) { httpd_resp_set_type(req, "image/jpeg"); httpd_resp_set_hdr(req, "Content-Disposition", "inline; filename=capture.jpg"); uint8_t *out_buff = fb->buf; size_t out_len = fb->len; // To do object detection CustomVisionClient *_cvc = (CustomVisionClient*)req->user_ctx; if (_cvc != NULL) { // Alternative 1 res = _cvc->detect(fb, NULL, NULL, true, &out_buff, &out_len); if (res != ESP_OK) { // request->send(500, "text/plain", "Prediction is failed"); // return; } // Alternative 2 // box_array_t *box_list = nullptr; // char label[64]; // res = _cvc->predict(fb, &box_list, label); // if (res == ESP_OK) { // _cvc->putInfoOnFrame(fb, box_list, label, &out_buff, &out_len); // free(box_list->box); // free(box_list); // } } res = httpd_resp_send(req, (const char *)out_buff, out_len); } } esp_camera_fb_return(fb); return res; } static esp_err_t stream_handler(httpd_req_t *req){ camera_fb_t * fb = NULL; esp_err_t res = ESP_OK; char * part_buf[64]; size_t _jpg_buf_len = 0; uint8_t * _jpg_buf = NULL; res = httpd_resp_set_type(req, _STREAM_CONTENT_TYPE); CustomVisionClient *_cvc = (CustomVisionClient*)req->user_ctx; int64_t _nextPredictTime = esp_timer_get_time() + STREAM_PREDICTION_INTERVAL/2; int64_t _showInfoUntil = 0; CustomVisionClient::CustomVisionDetectionResult_t _predRes = {}; camera_fb_t *_asyncDetectFb = NULL; while(true){ fb = esp_camera_fb_get(); if (!fb) { ESP_LOGE(TAG, "Camera capture failed"); res = ESP_FAIL; break; } if (fb->format != PIXFORMAT_JPEG) { ESP_LOGE(TAG, "Camera captured images is not JPEG"); res = ESP_FAIL; } else { // _jpg_buf_len = fb->len; // _jpg_buf = fb->buf; } if(res == ESP_OK) { if (esp_timer_get_time() > _nextPredictTime) { if (_cvc != NULL) { // Clear prev box if any if (_predRes.box_list != NULL) { free(_predRes.box_list->box); free(_predRes.box_list); _predRes.box_list = NULL; free(_predRes.label); _predRes.label = NULL; } // Copy camera framebuffer to be sent for detection _asyncDetectFb = (camera_fb_t*)malloc(sizeof(camera_fb_t)); _asyncDetectFb->len = fb->len; _asyncDetectFb->width = fb->width; _asyncDetectFb->height = fb->height; _asyncDetectFb->format = fb->format; _asyncDetectFb->buf = (uint8_t*)malloc(fb->len); memcpy(_asyncDetectFb->buf, fb->buf, fb->len); // Do detection asynchronously, so the video stream not interrupted res = _cvc->detectAsync(_asyncDetectFb); app_state = APP_START_RECOGNITION; _showInfoUntil = esp_timer_get_time() + 3000000; _nextPredictTime = esp_timer_get_time() + (STREAM_PREDICTION_INTERVAL); // vTaskDelay(50/portTICK_PERIOD_MS); ESP_LOGI(TAG, "Free heap before pred: %ul", esp_get_free_heap_size()); } } // Check queue from aysnc prediction if (app_state == APP_START_RECOGNITION && _cvc->detectionQueue) { if (xQueueReceive(_cvc->detectionQueue, &_predRes, 5) != pdFALSE) { ESP_LOGI(TAG, "Got async-ed detection result. label: %s", _predRes.label); app_state = APP_DONE_RECOGNITION; _showInfoUntil = esp_timer_get_time() + STREAM_PREDICTION_INTERVAL/2; // Update next prediction time _nextPredictTime = esp_timer_get_time() + (STREAM_PREDICTION_INTERVAL); // Free prev resource used for detection if (_asyncDetectFb != NULL) { free(_asyncDetectFb->buf); _asyncDetectFb->buf = NULL; free(_asyncDetectFb); _asyncDetectFb = NULL; } ESP_LOGI(TAG, "Free heap after pred: %ul", esp_get_free_heap_size()); } } if (app_state == APP_START_RECOGNITION && (esp_timer_get_time() < _showInfoUntil)) { int32_t x = (fb->width - (strlen(DETECTING_MESSAGE) * 14)) / 2; int32_t y = 10; _cvc->putLabelOnFrame(fb, DETECTING_MESSAGE, x, y, FACE_COLOR_YELLOW, &_jpg_buf, &_jpg_buf_len); } if (app_state == APP_DONE_RECOGNITION && (esp_timer_get_time() < _showInfoUntil)) { if (_predRes.box_list != NULL) { // If box is there, meaning there's prediction, draw it _cvc->putInfoOnFrame(fb, _predRes.box_list, _predRes.label, &_jpg_buf, &_jpg_buf_len); } else { int32_t x = (fb->width - (strlen(DETECT_NO_RESULT_MESSAGE) * 14)) / 2; int32_t y = 10; _cvc->putLabelOnFrame(fb, DETECT_NO_RESULT_MESSAGE, x, y, FACE_COLOR_RED, &_jpg_buf, &_jpg_buf_len); } } } // If still NULL, just use camera framebuffer if (_jpg_buf == NULL) { _jpg_buf_len = fb->len; _jpg_buf = fb->buf; } if (res == ESP_OK) { size_t hlen = snprintf((char *)part_buf, 64, _STREAM_PART, _jpg_buf_len); res = httpd_resp_send_chunk(req, (const char *)part_buf, hlen); } if (res == ESP_OK) { res = httpd_resp_send_chunk(req, (const char *)_jpg_buf, _jpg_buf_len); } if (res == ESP_OK) { res = httpd_resp_send_chunk(req, _STREAM_BOUNDARY, strlen(_STREAM_BOUNDARY)); } if (fb) { // This should happen when _jpg_buf is NOT coming from camera's framebuffer. Important to free it. if (fb->buf != _jpg_buf) { free(_jpg_buf); } _jpg_buf = NULL; esp_camera_fb_return(fb); fb = NULL; } else { if (_jpg_buf) { free(_jpg_buf); _jpg_buf = NULL; } } if (res != ESP_OK) { break; } } // Clear last box if (_predRes.box_list != NULL) { free(_predRes.box_list->box); free(_predRes.box_list); _predRes.box_list = NULL; free(_predRes.label); _predRes.label = NULL; } // if (asyncPredictFb != NULL) { // free(asyncPredictFb->buf); // free(asyncPredictFb); // asyncPredictFb = NULL; // } // Shit happens! if (res != ESP_OK) { httpd_resp_send_500(req); } return res; } #include "DXWiFi.h" void startHttpd() { // Start WiFi connection app_state = APP_WAIT_FOR_CONNECT; DXWiFi *wifi = DXWiFi::GetInstance(WIFI_MODE_STA); wifi->ConnectSync(SSID_NAME, SSID_PASS, portMAX_DELAY); app_state = APP_WIFI_CONNECTED; httpd_config_t config = HTTPD_DEFAULT_CONFIG(); // config.max_open_sockets = 10; // config.send_wait_timeout = 30; // config.recv_wait_timeout = 30; httpd_uri_t index_uri = { .uri = "/", .method = HTTP_GET, .handler = index_handler, .user_ctx = NULL }; httpd_uri_t capture_uri = { .uri = "/capture", .method = HTTP_GET, .handler = capture_handler, .user_ctx = NULL }; httpd_uri_t recog_uri = { .uri = "/recog", .method = HTTP_GET, .handler = recog_handler, .user_ctx = cvc }; httpd_uri_t stream_uri = { .uri = "/stream", .method = HTTP_GET, .handler = stream_handler, .user_ctx = cvc }; ESP_LOGI(TAG, "Starting web server on port: '%d'", config.server_port); if (httpd_start(&camera_httpd, &config) == ESP_OK) { httpd_register_uri_handler(camera_httpd, &index_uri); httpd_register_uri_handler(camera_httpd, &capture_uri); httpd_register_uri_handler(camera_httpd, &recog_uri); httpd_register_uri_handler(camera_httpd, &stream_uri); } } void app_main(void) { esp_err_t res = camera_init(); if (res != ESP_OK) { ESP_LOGE(TAG, "Camera init failed. Exiting app."); return; } else { ESP_LOGI(TAG, "Camera init SUCCESS!"); } CustomVisionClient::CustomVisionClientConfig_t cvcConfig = { AZURE_CV_HOST, //Host AZURE_CV_PREDICTION_KEY, //Prediction key AZURE_CV_ITERATION_ID, //Iteration ID AZURE_CV_PROJECT_ID //Project ID }; cvc = new CustomVisionClient(cvcConfig); // Start HTTP server to serve the UI startHttpd(); }
[ "an.dri@me.com" ]
an.dri@me.com
a823d08d2e653ceb81c47a3d33e51c8ed7810f86
f9ba67dbf7d720e31252e2bb968f16cb79a6f4e2
/include/Editor/RoomView.h
2dab04bf58eccb51a7635e2a79709fb508046b37
[]
no_license
Sixmorphugus/Roommaker-Studio
d600172f56ad65d6fe89ef738bf9b38e6a344671
59ce8670a834d8db1da3540db86820eb06a1175d
refs/heads/master
2021-01-20T08:46:37.663393
2017-10-05T01:32:06
2017-10-05T01:32:06
101,572,677
0
0
null
null
null
null
UTF-8
C++
false
false
749
h
// Copyright Chris Sixsmith 2017. All Rights Reserved. #pragma once #include "SFMLCanvas.h" enum ScrollMode { UpDown, LeftRight, InOut }; class RMSRoomView : public RMSSFMLCanvas { private: sf::Texture m_RmsLogoTexture; sf::Texture m_RmsGradientTexture; float m_ViewXOffset, m_ViewYOffset; float m_ViewZoom; bool m_PullingView; int m_LastMouseX, m_LastMouseY; ScrollMode m_ScrollMode; sf::Vector2f CamPos; public: RMSRoomView(wxWindow* Parent = NULL, wxWindowID Id = -1, const wxPoint& Position = wxDefaultPosition, const wxSize& Size = wxDefaultSize, long Style = 0); protected: virtual sf::View GetViewSetup(); void OnPaint(wxPaintEvent& event); void OnUpdateUI(wxUpdateUIEvent& event); private: DECLARE_EVENT_TABLE() };
[ "chris6smith@yahoo.co.uk" ]
chris6smith@yahoo.co.uk
545a6416ec1e09789b08dd53417027701b30017f
8a9de0c3692e82286815dc28c48a9a03cb4a9f15
/SPOJ/courier.cpp
295c3bfcfd336752eefc43b9c117fe7560b227ca
[]
no_license
antoshkaplus/CompetitiveProgramming
49f6660fa5fdb6e41764e2989f7e10b5b03dda36
fccbf0e5c1dc64c68edc1ba14cfb177cff473c47
refs/heads/master
2023-06-09T01:22:42.220841
2023-06-06T02:27:39
2023-06-06T02:27:39
24,638,566
0
0
null
null
null
null
UTF-8
C++
false
false
8,757
cpp
#include <iostream> #include <string> #include <cmath> #include <cstdio> #include <set> #include <limits> #include <vector> #include <queue> #include <map> #include <algorithm> #include <functional> #include <bitset> #include <fstream> using namespace std; using Index = int; using Count = int; using Int = int; template<class Key> class IndexMap { public: IndexMap() : newIndex_(0) {} Index index(const Key& key) { auto p = m_.emplace(key, newIndex_); if (p.second) { ++newIndex_; } return p.first->second; } Index index(const Key& key) const { return m_.at(key); } auto begin() const { return m_.begin(); } auto end() const { return m_.end(); } int size() const { return m_.size(); } private: Index newIndex_; std::map<Key, Index> m_; }; template<class T> struct Grid { using value_type = T; typename std::vector<T>::const_iterator begin() const { return grid_.begin(); } typename std::vector<T>::iterator begin() { return grid_.begin(); } typename std::vector<T>::const_iterator end() const { return grid_.end(); } typename std::vector<T>::iterator end() { return grid_.end(); } Grid() : Grid(0, 0) {} Grid(Count row_count, Count col_count) : row_count_(row_count), col_count_(col_count), grid_(row_count*col_count) {} Grid(Count row_count, Count col_count, const T& value_type) : row_count_(row_count), col_count_(col_count), grid_(row_count*col_count, value_type) {} void resize(Count row_count, Count col_count) { row_count_ = row_count; col_count_ = col_count; grid_.resize(row_count*col_count); } void fill(const T& t) { std::fill(grid_.begin(), grid_.end(), t); } Count row_count() const { return row_count_; } Count col_count() const { return col_count_; } Count cell_count() const { return row_count()*col_count(); } T& operator()(Int row, Int col) { return grid_[row*col_count_ + col]; } const T& operator()(Int row, Int col) const { return grid_[row*col_count_ + col]; } // function takes in element template<class Process> void ForEach(Process& proc) { for (Index r = 0; r < row_count(); ++r) { for (Index c = 0; c < col_count(); ++c) { proc((*this)(r, c)); } } } private: Count row_count_, col_count_; std::vector<T> grid_; friend struct const_iterator; template<class U> friend bool operator==(const Grid<U>& g_0, const Grid<U>& g_1); }; // finds shortest distances between all pairs of nodes in O(N^3) time template<class Value> class FloydWarshall { Grid<Value> dist_; Value max_; int node_count() const { return dist_.row_count(); } const static Value LIMIT; public: FloydWarshall(int node_count) : dist_(node_count, node_count, LIMIT), max_(0) {} void AddDirectedDist(int from, int to, Value val) { dist_(from, to) = val; max_ += val; } void Compute() { max_ += 1; for (auto& d : dist_) { if (d == LIMIT) d = max_; } auto V = node_count(); for (auto i = 0; i < V; ++i) { dist_(i, i) = 0; } /* Add all vertices one by one to the set of intermediate vertices. ---> Before start of a iteration, we have shortest distances between all pairs of vertices such that the shortest distances consider only the vertices in set {0, 1, 2, .. k-1} as intermediate vertices. ----> After the end of a iteration, vertex no. k is added to the set of intermediate vertices and the set becomes {0, 1, 2, .. k} */ for (auto k = 0; k < V; k++) { // Pick all vertices as source one by one for (auto i = 0; i < V; i++) { // Pick all vertices as destination for the // above picked source for (auto j = 0; j < V; j++) { // If vertex k is on the shortest path from // i to j, then update the value of dist[i][j] if (dist_(i, k) + dist_(k, j) < dist_(i, j)) { dist_(i, j) = dist_(i, k) + dist_(k, j); } } } } } bool Exists(int from, int to) const { return dist_(from, to) != max_; } Value Dist(int from, int to) const { return dist_(from, to); } }; template <class Value> const Value FloydWarshall<Value>::LIMIT = std::numeric_limits<Value>::max(); using Delivery = std::bitset<12>; struct Order { int i_1, i_2; int count; // start index int bit_index; // count of bits that represent left overs int bit_count; }; int get(Order& d, Delivery& del) { int c = 0; for (auto i = d.bit_count-1; i >= 0; --i) { c <<= 1; c |= del[d.bit_index + i]; } return c; } void put(const Order& d, Delivery& del, int t) { Delivery b(t); for (auto i = 0; i < d.bit_count; ++i) { del[d.bit_index + i] = b[i]; } } Delivery Produce(vector<Order>& orders) { auto bitsNeeded = [](int t) { return int(ceil(log2(t))); }; int start = 0; auto fillBits = [&](Order& r) { r.bit_index = start; // + zero value r.bit_count = bitsNeeded(r.count+1); start += r.bit_count; }; for_each(orders.begin(), orders.end(), fillBits); Delivery del; for (auto& r : orders) { put(r, del, r.count); } return del; } struct Solver { Solver(vector<Order>& orders, const Grid<int>& dist, int home) : orders_(orders), dist_(dist), home_(home) { fill_n((int*)t, 11 * (1 << 11), -1); } int solve() { auto del = Produce(orders_); return solve(home_, del); } private: // returns shortest distance to travel // city is current city int solve(int city, const Delivery& del) { if (del.none()) { return dist_(city, home_); } auto& cell = t[city][del.to_ulong()]; if (cell != -1) { return cell; } const static int MAX_DIST = numeric_limits<int>::max(); int min_dist = MAX_DIST; for (auto& d : orders_) { auto del_new = del; //cout << del_new << endl; auto c = get(d, del_new); if (c == 0) continue; --c; put(d, del_new, c); //cout << del_new << endl; auto y = solve(d.i_2, del_new) + dist_(d.i_1, d.i_2) + dist_(city, d.i_1); if (y < min_dist) { min_dist = y; } } return cell = min_dist; } private: vector<Order>& orders_; const Grid<int> dist_; int home_; int t[11][1 << 11]; }; // return grid with distances Grid<int> Reduce(const FloydWarshall<int>& fw, const IndexMap<int>& m) { auto sz = m.size(); Grid<int> r(sz, sz); for (auto p_1 : m) { for (auto p_2 : m) { r(p_1.second, p_2.second) = fw.Dist(p_1.first, p_2.first); } } return r; } int main(int argc, char **argv) { //ifstream cin("../in.txt"); int T; cin >> T; for (int t = 0; t < T; ++t) { int N, M, B; cin >> N >> M >> B; --B; FloydWarshall<int> paths(N); for (auto i = 0; i < M; ++i) { int i_1, i_2, d; cin >> i_1 >> i_2 >> d; --i_1; --i_2; if (d < paths.Dist(i_1, i_2)) { paths.AddDirectedDist(i_1, i_2, d); paths.AddDirectedDist(i_2, i_1, d); } } paths.Compute(); int order_count; cin >> order_count; vector<Order> orders(order_count); // so we map old stuff to new stuff // 5 orders => 10 cities IndexMap<int> m; for (auto& d : orders) { cin >> d.i_1 >> d.i_2 >> d.count; --d.i_1; --d.i_2; d.i_1 = m.index(d.i_1); d.i_2 = m.index(d.i_2); } auto home = m.index(B); auto ds = Reduce(paths, m); Solver s(orders, ds, home); cout << s.solve() << endl; } }
[ "antoshkaplus@gmail.com" ]
antoshkaplus@gmail.com
2f302c039a9b9f17603ca55a5de08c68656f0942
04d52f0d134745e63eafbd91d15f7faf0fefa502
/2017/project4/medusa.cpp
a7a7a61162aa2b3fabc6bfa7492f7b81244f4f50
[]
no_license
allenfo/Assignments-Projects
2cd859ab09cda3871e864940882c36060c2c8045
c9047c539e3390479582a8dc0f9d8ee6037d1d95
refs/heads/master
2020-04-16T21:03:49.631242
2019-04-02T16:59:30
2019-04-02T16:59:30
165,913,421
0
0
null
null
null
null
UTF-8
C++
false
false
401
cpp
#include"medusa.hpp" #include<cstdlib> #include<iostream> int Medusa::attack() { int total = 0; total += rand() % 6 + 1; total += rand() % 6 + 1; if (total == 12) { std::cout << "Medusa used glare and turned the other player into stone.\n"; total = 100; return total; } else { return total; } } int Medusa::defense() { int total = 0; total = rand() % 6 + 1; return total; }
[ "35274045+allenfo@users.noreply.github.com" ]
35274045+allenfo@users.noreply.github.com
ed772ab6d1ffe27dfa4018577f076f7b686dc28d
9de18ef120a8ae68483b866c1d4c7b9c2fbef46e
/third_party/libunwindstack/include/unwindstack/RegsArm64.h
2bbba6334889b1bcb07a863badcc248d99c31ddf
[ "BSD-2-Clause", "LicenseRef-scancode-free-unknown", "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
google/orbit
02a5b4556cd2f979f377b87c24dd2b0a90dff1e2
68c4ae85a6fe7b91047d020259234f7e4961361c
refs/heads/main
2023-09-03T13:14:49.830576
2023-08-25T06:28:36
2023-08-25T06:28:36
104,358,587
2,680
325
BSD-2-Clause
2023-08-25T06:28:37
2017-09-21T14:28:35
C++
UTF-8
C++
false
false
1,889
h
/* * Copyright (C) 2016 The Android Open Source Project * * 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. */ #pragma once #include <stdint.h> #include <functional> #include <unwindstack/Elf.h> #include <unwindstack/MachineArm64.h> #include <unwindstack/Regs.h> namespace unwindstack { // Forward declarations. class Memory; class RegsArm64 : public RegsImpl<uint64_t> { public: RegsArm64(); virtual ~RegsArm64() = default; ArchEnum Arch() override final; bool SetPcFromReturnAddress(Memory* process_memory) override; bool StepIfSignalHandler(uint64_t object_offset, Object* object, Memory* process_memory) override; void IterateRegisters(std::function<void(const char*, uint64_t)>) override final; uint64_t pc() override; uint64_t sp() override; void set_pc(uint64_t pc) override; void set_sp(uint64_t sp) override; void fallback_pc() override; void ResetPseudoRegisters() override; bool SetPseudoRegister(uint16_t id, uint64_t value) override; bool GetPseudoRegister(uint16_t id, uint64_t* value) override; bool IsRASigned(); void SetPACMask(uint64_t mask); Regs* Clone() override final; static Regs* Read(void* data); static Regs* CreateFromUcontext(void* ucontext); protected: uint64_t pseudo_regs_[Arm64Reg::ARM64_PREG_LAST - Arm64Reg::ARM64_PREG_FIRST]; uint64_t pac_mask_; }; } // namespace unwindstack
[ "noreply@github.com" ]
noreply@github.com
2d2978ef8c5e1b1f9e295bd8f118e676706c6919
a0906d07cc149db5e8ff2ec12964728a27a6d47c
/requesthandlerwidget.h
ea9f61702729b380417153e5f0f51d0327d61a60
[]
no_license
jaybdub/KeystoneVisionSystem
2005ab5801d40b710c62d5ad63fead9b033077a1
340ddc85a5ed78e46f7dfa3a03dfa9ee6f8e409a
refs/heads/master
2016-09-10T15:39:57.492027
2014-11-24T03:00:35
2014-11-24T03:00:35
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,177
h
#ifndef REQUESTHANDLERWIDGET_H #define REQUESTHANDLERWIDGET_H #include <QWidget> #include <QByteArray> #include <QString> #include <QTime> #include "serialportwidget.h" #include "markerrequest.h" /*class MarkerRequest { public: MarkerRequest(int markerId, QTime requestTime){ this->markerId = markerId; this->requestTime = requestTime; } int markerId; QTime requestTime; };*/ class RequestHandlerWidget : public QWidget { Q_OBJECT public: explicit RequestHandlerWidget(QWidget *parent = 0); signals: void dataSent(QByteArray data); void requestReceived(MarkerRequest r); void stateChanged(int state); public slots: void resetState(); void handleDataReceived(QByteArray data); void handleMarkersDetected(int markers); void handleRequestReceived(MarkerRequest r); private: void handleNewChar(char c); QList<int> parseRequestString(QString rs); void removeFromQueue(int markerId); int state; QList<MarkerRequest> queue; QString requestString; SerialPortWidget *serialPortWidget; QWidget *markerDetectorWidget; }; #endif // REQUESTHANDLERWIDGET_H
[ "jbmy13@gmail.com" ]
jbmy13@gmail.com
f7cd027c0564c6dc736d86e0d2ead1d3af2e2e54
a76cfebebfe17ae4ad91a8faf08c45fff6994471
/mqp/Implementation/Server/GameServerConfiguration.cpp
a6fa52631691df78d49d90eda54f802e8523ff25
[]
no_license
pete0877/wpi
b5e3163852ab6359bcb838c6ec9cafbaddac4004
9841753596c6e72facec7f4236d37a9d35b66c0b
refs/heads/master
2021-01-02T08:21:47.787986
2015-04-03T21:17:56
2015-04-03T21:17:56
33,380,551
0
0
null
null
null
null
UTF-8
C++
false
false
3,694
cpp
// GameServerConfiguration.cpp // // TODOS: // save() & load() #include "stdafx.h" #include "GameServerConfiguration.h" #include <afx.h> GameServerConfiguration::GameServerConfiguration() { port = 0; serverName = ""; serverDescription = ""; serverOwner = ""; maxClients = 0; maxClientsPerGameType = 0; maxDecisionTime = 0; maxGamePly = 0; } GameServerConfiguration::GameServerConfiguration(const GameServerConfiguration& new_gameserverconfiguration) { port = new_gameserverconfiguration.port; serverName = new_gameserverconfiguration.serverName; serverDescription = new_gameserverconfiguration.serverDescription; serverOwner = new_gameserverconfiguration.serverOwner; maxClients = new_gameserverconfiguration.maxClients; maxClientsPerGameType = new_gameserverconfiguration.maxClientsPerGameType; maxDecisionTime = new_gameserverconfiguration.maxDecisionTime; maxGamePly = new_gameserverconfiguration.maxGamePly; } int GameServerConfiguration::getPort() { return port; } void GameServerConfiguration::setPort(int new_port) { port = new_port; } CString GameServerConfiguration::getServerName() { return this->serverName; } void GameServerConfiguration::setServerName(const CString& new_servername) { this->serverName = new_servername; } CString GameServerConfiguration::getServerDescription() { return this->serverDescription; } void GameServerConfiguration::setServerDescription(const CString& new_serverdescription) { this->serverDescription = new_serverdescription; } CString GameServerConfiguration::getServerOwner() { return this->serverOwner; } void GameServerConfiguration::setServerOwner(const CString& new_serverowner) { this->serverOwner = new_serverowner; } int GameServerConfiguration::getMaxClients() { return this->maxClients; } void GameServerConfiguration::setMaxClients(int new_max) { this->maxClients = new_max; } int GameServerConfiguration::getMaxClientsPerGameType() { return this->maxClientsPerGameType; } void GameServerConfiguration::setMaxClientsPerGameType(int new_max) { this->maxClientsPerGameType = new_max; } long GameServerConfiguration::getMaxDecisionTime() { return this->maxDecisionTime; } void GameServerConfiguration::setMaxDecisionTime(long new_max) { this->maxDecisionTime = new_max; } int GameServerConfiguration::getMaxGamePly() { return this->maxGamePly; } void GameServerConfiguration::setMaxGamePly(int new_max) { this->maxGamePly = new_max; } CString GameServerConfiguration::getWelcomeMessage() { CString result = ""; result = result + "SERVER NAME: " + this->serverName + "\n"; result = result + "OWNER : " + this->serverOwner + "\n"; result = result + "DESCRIPTION: " + this->serverDescription + "\n"; return result; } void GameServerConfiguration::save(const CFile& file) { } void GameServerConfiguration::load(const CFile& filepath) { } const GameServerConfiguration& GameServerConfiguration::operator=(const GameServerConfiguration& new_gameserverconfiguration) { port = new_gameserverconfiguration.port; serverName = new_gameserverconfiguration.serverName; serverDescription = new_gameserverconfiguration.serverDescription; serverOwner = new_gameserverconfiguration.serverOwner; maxClients = new_gameserverconfiguration.maxClients; maxClientsPerGameType = new_gameserverconfiguration.maxClientsPerGameType; maxDecisionTime = new_gameserverconfiguration.maxDecisionTime; maxGamePly = new_gameserverconfiguration.maxGamePly; return *this; }
[ "pete@pixability.com" ]
pete@pixability.com
3547fdff39da09606f01df7a4e0a7b5dd3e58622
cf440e299f576604880d201c480ccd641e3ccf0b
/cpp/spectrum/SpectrumException.h
9b7ff8a3dae1f71781a0c5e57fa2f810af58df31
[ "MIT" ]
permissive
facebookincubator/spectrum
03c22fa0dad157d35e084ec500aebeb456f50f27
f955ddbc5f992915a60f4ee35f8a336a08f7781a
refs/heads/main
2023-08-25T19:57:05.211461
2023-08-23T22:34:45
2023-08-23T22:34:45
151,472,642
1,938
177
MIT
2023-07-11T00:57:02
2018-10-03T19:58:50
C++
UTF-8
C++
false
false
1,175
h
// Copyright (c) Facebook, Inc. and its 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 <folly/Optional.h> #include <folly/Range.h> namespace facebook { namespace spectrum { namespace error { extern const folly::StringPiece Unknown; } // namespace error class SpectrumException : public std::exception { public: /** Name that groups similar exceptions together (e.g. all compressor * failures) */ const std::string name; /** The specific error message (e.g. input forms no valid JPEG stream) */ const folly::Optional<std::string> message; /** The location of the error including method and line number */ const std::string location; /** Additional verbose descriptions (e.g. the functions parameters and state) */ const std::string description; SpectrumException( const folly::StringPiece& name, const folly::Optional<std::string>& message, const char* const function, const unsigned int line); virtual const char* what() const noexcept override; }; } // namespace spectrum } // namespace facebook
[ "facebook-github-bot@users.noreply.github.com" ]
facebook-github-bot@users.noreply.github.com
6dd93b1245a3c598e04a97d476b1004407519ff7
6abb92d99ff4218866eafab64390653addbf0d64
/AtCoder/abc/abc112/c.cpp
65f2953b0cf84962c6818f3971f2806e91d4951b
[]
no_license
Johannyjm/c-pro
38a7b81aff872b2246e5c63d6e49ef3dfb0789ae
770f2ac419b31bb0d47c4ee93c717c0c98c1d97d
refs/heads/main
2023-08-18T01:02:23.761499
2023-08-07T15:13:58
2023-08-07T15:13:58
217,938,272
0
0
null
2023-06-25T15:11:37
2019-10-28T00:51:09
C++
UTF-8
C++
false
false
939
cpp
#include <iostream> #include <vector> using namespace std; int calc_height(int h, int cx, int cy, int x, int y){ return max(h-abs(x-cx)-abs(y-cy), 0); } int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int n; cin >> n; vector<int> x(n), y(n), h(n); for(int i = 0; i < n; ++i) cin >> x[i] >> y[i] >> h[i]; int ptr = 0; while(h[ptr] == 0) ++ptr; for(int cx = ptr; cx <= 100; ++cx){ for(int cy = ptr; cy <= 100; ++cy){ int h_cand = h[ptr] + abs(cx-x[ptr]) + abs(cy-y[ptr]); bool flg = true; for(int i = 0; i < n; ++i){ if(calc_height(h_cand, cx, cy, x[i], y[i]) != h[i]){ flg = false; break; } } if(flg){ cout << cx << " " << cy << " " << h_cand << endl; return 0; } } } }
[ "meetpastarts@gmail.com" ]
meetpastarts@gmail.com
894ca626f3b7572e761dd9e0c80a4dae3756c9b0
b367fe5f0c2c50846b002b59472c50453e1629bc
/xbox_leak_may_2020/xbox trunk/xbox/private/ui/maxsdk/SAMPLES/Modifier/Morpher/wM3.h
73ff6207394aa16f2a8aba822df8b58fc15abc16
[]
no_license
sgzwiz/xbox_leak_may_2020
11b441502a659c8da8a1aa199f89f6236dd59325
fd00b4b3b2abb1ea6ef9ac64b755419741a3af00
refs/heads/master
2022-12-23T16:14:54.706755
2020-09-27T18:24:48
2020-09-27T18:24:48
null
0
0
null
null
null
null
UTF-8
C++
false
false
16,508
h
/*===========================================================================*\ | | FILE: wM3.h | Weighted Morpher for MAX R3 | Main header file | | AUTH: Harry Denholm | Copyright(c) Kinetix 1999 | All Rights Reserved. | | HIST: Started 22-5-98 | \*===========================================================================*/ #ifndef __MORPHR3__H #define __MORPHR3__H #define MorphExport __declspec( dllexport ) #include <Max.h> #include <istdplug.h> #include <meshadj.h> #include <modstack.h> #include <imtl.h> #include <texutil.h> #include <stdmat.h> #include <macrorec.h> #include "resource.h" static Class_ID M3MatClassID(0x4b9937e0, 0x3a1c3da4); #define MR3_CLASS_ID Class_ID(0x17bb6854, 0xa5cba2a3) #define MR3_NUM_CHANNELS 100 #define MR3_MORPHERVERSION 010 // Save codes for the morphChannel class #define MR3_POINTCOUNT 0x0100 #define MR3_SELARRAY 0x0110 #define MR3_NAME 0x0120 #define MR3_PARAMS 0x0130 #define MR3_POINTDATA_MP 0x0140 #define MR3_POINTDATA_MW 0x0150 #define MR3_POINTDATA_MD 0x0160 #define MR3_POINTDATA_MO 0x0170 // Save codes for the MorphR3 class #define MR3_MARKERNAME 0x0180 #define MR3_MARKERINDEX 0x0185 #define MR3_MC_CHUNK 0x0190 #define MR3_MC_SUBCHUNK 0x0200 #define MR3_FLAGS 0x0210 // paramblock index table #define PB_OV_USELIMITS 0 #define PB_OV_SPINMIN 1 #define PB_OV_SPINMAX 2 #define PB_OV_USESEL 3 #define PB_AD_VALUEINC 4 #define PB_CL_AUTOLOAD 5 // Channel operation flags #define OP_MOVE 0 #define OP_SWAP 1 // two handy macros to set cursors for busy or normal operation #define UI_MAKEBUSY SetCursor(LoadCursor(NULL, IDC_WAIT)); #define UI_MAKEFREE SetCursor(LoadCursor(NULL, IDC_ARROW)); // Morph Material ui defines #define NSUBMTL 10 // Updater flags #define UD_NORM 0 #define UD_LINK 1 extern ClassDesc* GetMorphR3Desc(); extern ClassDesc* GetM3MatDesc(); extern HINSTANCE hInstance; TCHAR *GetString(int id); // SV Integration // *----------------* extern HIMAGELIST hIcons32, hIcons16; extern COLORREF bkColor; enum IconIndex {II_MORPHER}; void LoadIcons(COLORREF bkColor); // *----------------* class MorphR3; class M3Mat; class M3MatDlg; class MCRestore; // Dialog handlers BOOL CALLBACK Legend_DlgProc (HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam); BOOL CALLBACK Globals_DlgProc (HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam); BOOL CALLBACK Advanced_DlgProc (HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam); BOOL CALLBACK ChannelParams_DlgProc (HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam); BOOL CALLBACK ChannelList_DlgProc (HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam); BOOL CALLBACK IMPORT_DlgProc (HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam); BOOL CALLBACK EXPORT_DlgProc (HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam); BOOL CALLBACK ChannelOpDlgProc (HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam); BOOL CALLBACK BindProc (HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam); BOOL CALLBACK NameDlgProc (HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam); /*===========================================================================*\ | Morph channel manager class | Storage for all the morph data needed \*===========================================================================*/ class morphChannel { public: // Construct/Destruct ~morphChannel(); morphChannel(); MorphR3 *mp; // Number of points and morphable points int nPts; int nmPts; // Actual morphable points Point3* mPoints; Point3* mDeltas; double* mWeights; // Point indicies that are different from the host // mesh. This is a simple but efficient way to speed up the // morphing process. int* mOptdata; // BitArray to check against for point selection BitArray mSel; // INode that we use to update and reload from, if possible INode* mConnection; // Name for the morph channel TSTR mName; // Various, non-animatable stuff // mActive is TRUE if the channel has data in it in some form // mModded is TRUE if the channel has been changed in SOME form, // ie, had its name changed or similar BOOL mActive, mModded, mUseLimit, mUseSel; float mSpinmin,mSpinmax; // TRUE if the channel has been marked as bad. It will not be // considered when building the morph results. BOOL mInvalid; // Channel enabled/disabled BOOL mActiveOverride; // paramblock for the morph channels values IParamBlock* cblock; // Delete and reset channel MorphExport void ResetMe(); MorphExport void AllocBuffers( int sizeA, int sizeB ); // Do some rough calculations about how much space this channel // takes up // This isn't meant to be fast or terribly accurate! MorphExport float getMemSize(); // The rebuildChannel call will recalculate the optimization data // and refill the mSel selection array. This will be called each time a // targeted node is changed, or any of the 'Update Target' buttons is // pressed on the UI MorphExport void rebuildChannel(); // Initialize a channel using a scene node MorphExport void buildFromNode( INode *node , BOOL resetTime=TRUE , TimeValue t=0 ); // Transfer data to another channel MorphExport morphChannel& operator=(morphChannel& from); // Load/Save channel to stream MorphExport IOResult Save(ISave* isave); MorphExport IOResult Load(ILoad* iload); }; // Used for picking a morph target from the scene class GetMorphNode : public PickModeCallback, public PickNodeCallback { public: MorphR3 *mp; BOOL isPicking; GetMorphNode() { mp=NULL; isPicking=FALSE; } BOOL HitTest(IObjParam *ip,HWND hWnd,ViewExp *vpt,IPoint2 m,int flags); BOOL Pick(IObjParam *ip,ViewExp *vpt); BOOL Filter(INode *node); BOOL RightClick(IObjParam *ip,ViewExp *vpt) {return TRUE;} void EnterMode(IObjParam *ip); void ExitMode(IObjParam *ip); PickNodeCallback *GetFilter() {return this;} }; static GetMorphNode thePickMode; // Internally-used local object morph cache class morphCache { public: BOOL CacheValid; Point3* oPoints; double* oWeights; BitArray sel; int Count; morphCache (); ~morphCache () { NukeCache(); } MorphExport void MakeCache(Object *obj); MorphExport void NukeCache(); MorphExport BOOL AreWeCached(); }; /*===========================================================================*\ | Morph Channel restore object \*===========================================================================*/ class MCRestore : public RestoreObj { public: MorphR3 *mp; morphChannel undoMC; int mcIndex; // Constructor MCRestore(MorphR3 *mpi, int idx); // Called when Undo is selected void Restore(int isUndo); // Called when Redo is selected void Redo(); // Called to return the size in bytes of this RestoreObj int Size(); }; /*===========================================================================*\ | Modifer class definition \*===========================================================================*/ class MorphR3 : public Modifier, TimeChangeCallback { public: // Access to the interface static IObjParam *ip; // Pointer to the morph channels morphChannel *chanBank; // Currently selected channel (0-9) int chanSel; // Currently viewable channel banks (0-99) int chanNum; // Spinners from main page ISpinnerControl *chanSpins[10]; // Spinners from global settings page ISpinnerControl *glSpinmin,*glSpinmax; // Spinners from the channel params dlg ISpinnerControl *cSpinmin,*cSpinmax; // Global parameter block IParamBlock *pblock; // The window handles for the 4 rollout pages HWND hwGlobalParams, hwChannelList, hwChannelParams, hwAdvanced, hwLegend; // For the namer dialog ICustEdit *newname; // Morph Cache morphCache MC_Local; BOOL tccI; char trimD[50]; // 'Save as Current' support BOOL recordModifications; int recordTarget; // Marker support Tab<int> markerIndex; NameTab markerName; int markerSel; // Channel operation flag for dialog use int cOp; int srcIdx; //Constructor/Destructor MorphR3(); ~MorphR3(); // TimeChangeCallback void TimeChanged(TimeValue t) { if(hwChannelList) Update_channelValues(); Interval valid=FOREVER; int itmp; Interface *Cip = GetCOREInterface(); if(pblock&&Cip) { pblock->GetValue(PB_CL_AUTOLOAD, 0, itmp, valid); if(itmp==1) NotifyDependents(FOREVER, PART_OBJ, REFMSG_CHANGE); } } // From Animatable void DeleteThis() { delete this; } void GetClassName(TSTR& s) { s= TSTR(GetString(IDS_CLASS_NAME)); } virtual Class_ID ClassID() { return MR3_CLASS_ID;} RefTargetHandle Clone(RemapDir& remap = NoRemap()); TCHAR *GetObjectName() { return GetString(IDS_CLASS_NAME); } IOResult Load(ILoad *iload); IOResult Save(ISave *isave); //From Modifier ChannelMask ChannelsUsed() { return PART_GEOM|PART_TOPO|SELECT_CHANNEL; } ChannelMask ChannelsChanged() { return PART_GEOM; } void ModifyObject(TimeValue t, ModContext &mc, ObjectState *os, INode *node); Class_ID InputType() { // removed the following // it was screwing with modstack evaluation severely! //Interface *ip = GetCOREInterface(); //if(ip&&ip->GetSelNodeCount()>1) return Class_ID(0,0); return defObjectClassID; } Interval LocalValidity(TimeValue t); void NotifyInputChanged(Interval changeInt, PartID partID, RefMessage message, ModContext *mc); // From BaseObject BOOL ChangeTopology() {return FALSE;} int GetParamBlockIndex(int id) {return id;} //From ReferenceMaker int NumRefs(); RefTargetHandle GetReference(int i); void SetReference(int i, RefTargetHandle rtarg); int NumSubs(); Animatable* SubAnim(int i); TSTR SubAnimName(int i); RefResult NotifyRefChanged( Interval changeInt,RefTargetHandle hTarget, PartID& partID, RefMessage message); CreateMouseCallBack* GetCreateMouseCallBack() {return NULL;} void BeginEditParams(IObjParam *ip, ULONG flags,Animatable *prev); void EndEditParams(IObjParam *ip, ULONG flags,Animatable *next); Interval GetValidity(TimeValue t); ParamDimension *GetParameterDim(int pbIndex); TSTR GetParameterName(int pbIndex); // Handles the scroll bar on the channel list UI MorphExport void VScroll(int code, short int cpos ); // Clamps channel number to valid range MorphExport void Clamp_chanNum(); MorphExport void ChannelOp(int src, int targ, int flags); MorphExport void Update_globalParams(); MorphExport void Update_advancedParams(); MorphExport void Update_channelParams(); // evaluate the value increments setting MorphExport float GetIncrements(); // SetScale on the channel list spinners MorphExport void Update_SpinnerIncrements(); // Functions to update the channel list dialog box: MorphExport void Update_colorIndicators(); MorphExport void Update_channelNames(); MorphExport void Update_channelValues(); MorphExport void Update_channelLimits(); MorphExport void Update_channelInfo(); MorphExport void Update_channelMarkers(); // Seperated cause this function is pretty expensive // Lots done, complete update - calls all functions above MorphExport void Update_channelFULL(); // Used to trim fp values to a number of decimal points MorphExport float TrimDown(float value, int decimalpts); BOOL inRender; int RenderBegin(TimeValue t, ULONG flags) { inRender = TRUE; return 1; } int RenderEnd(TimeValue t) { inRender = FALSE; return 1; } }; /*===========================================================================*\ | | Morph Material definitions | \*===========================================================================*/ class M3MatDlg : public ParamDlg { public: HWND hwmedit; IMtlParams *ip; M3Mat *theMtl; HWND hPanel; ICustButton *iBut[NSUBMTL]; ICustButton *bBut; ICustButton *pickBut; MtlDADMgr dadMgr; BOOL valid; M3MatDlg(HWND hwMtlEdit, IMtlParams *imp, M3Mat *m); ~M3MatDlg(); BOOL WndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam); void Invalidate(); void DragAndDrop(int ifrom, int ito); void UpdateSubMtlNames(); void ActivateDlg(BOOL onOff) {} // methods inherited from ParamDlg: void ReloadDialog(); Class_ID ClassID() {return M3MatClassID;} void SetThing(ReferenceTarget *m); ReferenceTarget* GetThing() { return (ReferenceTarget *)theMtl; } void DeleteThis() { delete this; } void SetTime(TimeValue t) {Invalidate();} int FindSubMtlFromHWND(HWND hw); MorphExport void VScroll(int code, short int cpos ); MorphExport void Clamp_listSel(); MorphExport void UpdateMorphInfo(int upFlag); }; class M3Mat : public Mtl { public: M3MatDlg *dlg; // 100 materials for 100 morph channels, plus 1 base material Mtl *mTex[101]; BOOL mapOn[100]; BOOL inRender; // Morph mod pointer MorphR3 *morphp; TSTR obName; // Temp node pointer used in the mtl pickmode INode *Wnode; IParamBlock *pblock; Interval ivalid; int listSel; M3Mat(BOOL loading); void NotifyChanged() {NotifyDependents(FOREVER, PART_ALL, REFMSG_CHANGE);} // From MtlBase and Mtl void SetAmbient(Color c, TimeValue t) {} void SetDiffuse(Color c, TimeValue t) {} void SetSpecular(Color c, TimeValue t) {} void SetShininess(float v, TimeValue t) {} Color GetAmbient(int mtlNum=0, BOOL backFace=FALSE); Color GetDiffuse(int mtlNum=0, BOOL backFace=FALSE); Color GetSpecular(int mtlNum=0, BOOL backFace=FALSE); float GetXParency(int mtlNum=0, BOOL backFace=FALSE); float GetShininess(int mtlNum=0, BOOL backFace=FALSE); float GetShinStr(int mtlNum=0, BOOL backFace=FALSE); float WireSize(int mtlNum=0, BOOL backFace=FALSE); ParamDlg* CreateParamDlg(HWND hwMtlEdit, IMtlParams *imp); void Shade(ShadeContext& sc); float EvalDisplacement(ShadeContext& sc); Interval DisplacementValidity(TimeValue t); void Update(TimeValue t, Interval& valid); void Reset(); Interval Validity(TimeValue t); Class_ID ClassID() {return M3MatClassID; } SClass_ID SuperClassID() {return MATERIAL_CLASS_ID;} void GetClassName(TSTR& s) {s=GetString(IDS_MORPHMTL);} void DeleteThis() {delete this;} // Methods to access sub-materials of meta-materials int NumSubMtls() {return 101;} Mtl* GetSubMtl(int i) {return mTex[i];} void SetSubMtl(int i, Mtl *m) { ReplaceReference(i,m); if (dlg) dlg->UpdateSubMtlNames(); } TSTR GetSubMtlSlotName(int i) { if(i==100) return GetString(IDS_MTL_BASENAME); char s[25]; if(morphp) sprintf(s,"Mtl %i (%s)",i+1,morphp->chanBank[i].mName); else sprintf(s,GetString(IDS_MTL_MAPNAME),i+1); if(i<101) return s; return _T("x"); } int NumSubs() {return 101;} Animatable* SubAnim(int i); TSTR SubAnimName(int i); int SubNumToRefNum(int subNum) {return subNum;} // From ref int NumRefs() {return 103;} RefTargetHandle GetReference(int i); void SetReference(int i, RefTargetHandle rtarg); RefTargetHandle Clone(RemapDir &remap = NoRemap()); RefResult NotifyRefChanged(Interval changeInt, RefTargetHandle hTarget, PartID& partID, RefMessage message); int RenderBegin(TimeValue t, ULONG flags) { if(flags!=RENDERBEGIN_IN_MEDIT) inRender = TRUE; return 1; } int RenderEnd(TimeValue t) { inRender = FALSE; return 1; } // IO IOResult Save(ISave *isave); IOResult Load(ILoad *iload); }; // Used for picking a morph modifier from the Morph Material class GetMorphMod : public PickObjectProc { public: M3Mat *mp; BOOL isPicking; GetMorphMod() { mp=NULL; isPicking=FALSE; } BOOL Pick(INode *node); BOOL Filter(INode *node); void EnterMode(); void ExitMode(); }; static GetMorphMod theModPickmode; #endif
[ "benjamin.barratt@icloud.com" ]
benjamin.barratt@icloud.com
a9e7633c789480997322d7fd33dd02be3ff5401e
f697fab58be8b9519a71e0ca8eeeed5774aa5297
/Composition_by_value.cpp
fced6fdb8af38eff957ccf5461d3044a4881681b
[]
no_license
mbkhan721/ObjectOrientedProgrammingET580
96eacf6895aac9459d6f771667ca4b776682d74e
d7112b3f289bae27b3a5e7e7d81ffd31dc655517
refs/heads/master
2023-06-28T19:45:08.588557
2021-08-11T19:07:00
2021-08-11T19:07:00
382,126,678
0
0
null
null
null
null
UTF-8
C++
false
false
3,919
cpp
#include<iostream> using namespace std; /* // Class Composition by Value // Purpose: Classes can contain data of other classes types composition is a has-a object relationship. // Ex: a course has-a professor // a car has-an engine // Here we have a course with two variables in it, one is an number, one is a professor. // Professor must be declared first class Professor { private: string name; public: Professor(): name("Staff") {} // Constructor 1 Professor(string n): name(n) {} // Constructor 2 with single parameter string getName() const {return name;} // Accessor function void setName(string n) {name = n;} // Mutator function }; // Course must be declared second, after Professor type is known class Course { private: int number; // Professor &prof; Professor prof; // Course contains a member of type Professor // Memory space for Course includes a professor public: // The 1st constructor is default, initializes number with a value 0. // Then initializes a professor object // prof() calls constructor 1 for Professor which then initializes name with "Staff" inside // the Professor prof; object from line 27 inside our Course object. Course(): number(0), prof() {} // prof() calls Professor default constructor // Single parameter constructor works the same, except that number comes from n. Course(int n): number(n), prof() {} // prof() calls Professor default constructor // Dual parameter constructor accepts an int, and a string. // The int is used to populate the number, string p is sent ot professor. // This will call constructor 2 from Professor class with a single parameter. // Professor(string n): name(n) {} // // While in constructor 2, the value of p is copied to n, // the value of n is copied to name which is a private member. // And therefore, we populate the professor object from the variable p. // // "Dr. Smith" gets copied to p by value, p is sent to constructor 2 function, the value of p is copied // to name. Course(int n, string p): number(n), prof(p) {} // prof(p) calls Professor 1-param constructor // This one accepts a Professor object by reference. // Then it calls a constructor. But we don't have a constructor that accepts a Professor object. // prof(o) calls something known as a copy constructor. // If you do not code a copy constructor, the compiler will code one for you. // Instead of creating a professor from a string, prof(o) creates an object from an existing professor object. // // It creates a clone and a new object is created with all the same details as Professor &o object. Course(int n, Professor &o): number(n), prof(o) {} // Professor object is copied by value to prof int getNumber() const {return number;} // accessor string getProfessor() const {return prof.getName();} // Call the professor name accessor Professor& getProfObj() {return prof;} // Included for demonstration purposes }; int main() { Course c1{}; cout << c1.getNumber() << "\n"; cout << c1.getProfessor() << "\n\n"; Course c2{580, "Dr. Smith"}; cout << c2.getNumber() << "\n"; cout << c2.getProfessor() << "\n\n"; Professor p1{"Dr. Jones"}; // Creates a Professor object p1 cout << &p1 << "\n\n"; // Prints memory address of p1 Course c3{574, p1}; // Create c2 using object p1 cout << c3.getNumber() << "\n"; cout << c3.getProfessor() << "\n"; cout << &(c3.getProfObj()) << "\n"; cout << "\n"; } */
[ "muhammad.khan33@student.qcc.cuny.edu" ]
muhammad.khan33@student.qcc.cuny.edu
7c4d134e17f27e4fbfa097acb38116cc26dadcd0
01202c1b773ea3b3c4ebdbf216ad962e0597c102
/BattleTank/Source/BattleTank/Private/TankTrack.cpp
7399650e70a92228753f5dac48437516fd15cea1
[]
no_license
Dreamseeker5/Battle-Tank
90ccbea84df4c7d4c10dc771635ccf8432ce6725
4e28fd0d0e4c23b50044cbc3f39a91ebd9b1c3c0
refs/heads/master
2020-12-02T22:21:19.870581
2017-09-14T02:30:38
2017-09-14T02:30:38
96,119,656
0
0
null
null
null
null
UTF-8
C++
false
false
1,757
cpp
// Fill out your copyright notice in the Description page of Project Settings. #include "BattleTank.h" #include "TankTrack.h" UTankTrack::UTankTrack() { PrimaryComponentTick.bCanEverTick = false; } void UTankTrack::BeginPlay() { OnComponentHit.AddDynamic(this, &UTankTrack::OnHit); } void UTankTrack::OnHit(UPrimitiveComponent* HitComponent, AActor* OtherActor, UPrimitiveComponent* OtherComponent, FVector NormalImpulse, const FHitResult& Hit) { ApplySidewaysForce(); DriveTrack(); CurrentThrottle = 0; } void UTankTrack::ApplySidewaysForce() { // Work-out the required acceleration this frame to correct auto SlippageSpeed = FVector::DotProduct(GetRightVector(), GetComponentVelocity()); auto DeltaTime = GetWorld()->GetDeltaSeconds(); auto CorrectionAcceleration = -SlippageSpeed / DeltaTime * GetRightVector(); // Calculate and apply sideways (F = m a) auto TankRoot = Cast<UStaticMeshComponent>(GetOwner()->GetRootComponent()); auto CorrectionForce = (TankRoot->GetMass() * CorrectionAcceleration) / 2; // Two tracks TankRoot->AddForce(CorrectionForce); } void UTankTrack::SetThrottle(float Throttle) { CurrentThrottle = FMath::Clamp<float>(CurrentThrottle + Throttle, -1, 1); } void UTankTrack::DriveTrack() { //Force vector that'll be applied to the tank auto ForceApplied = GetForwardVector() * CurrentThrottle * TrackMaxDrivingForce; //The location where the force is going to be applied (track's edges) auto ForceLocation = GetComponentLocation(); //Getting the tank mesh //Downcast to a primitive component auto TankRoot = Cast<UPrimitiveComponent>(GetOwner()->GetRootComponent()); //Applying the force vector to the tank on a specific location of it TankRoot->AddForceAtLocation(ForceApplied, ForceLocation); }
[ "riseofagamer@gmail.com" ]
riseofagamer@gmail.com
2ffd0bf3833d16f1ae5acf8d5e31a6505ed781fa
f83ef53177180ebfeb5a3e230aa29794f52ce1fc
/ACE/ACE_wrappers/TAO/orbsvcs/orbsvcs/Notify/MonitorControlExt/MonitorProxyPushSupplier.h
e1b4a41102a688f50f1e57d68a256c3b4c179573
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference", "LicenseRef-scancode-proprietary-license", "LicenseRef-scancode-sun-iiop" ]
permissive
msrLi/portingSources
fe7528b3fd08eed4a1b41383c88ee5c09c2294ef
57d561730ab27804a3172b33807f2bffbc9e52ae
refs/heads/master
2021-07-08T01:22:29.604203
2019-07-10T13:07:06
2019-07-10T13:07:06
196,183,165
2
1
Apache-2.0
2020-10-13T14:30:53
2019-07-10T10:16:46
null
UTF-8
C++
false
false
881
h
#ifndef MONITORPROXYPUSHSUPPLIER_H #define MONITORPROXYPUSHSUPPLIER_H #include /**/ "ace/pre.h" #include "orbsvcs/Notify/MonitorControlExt/notify_mc_ext_export.h" #if !defined (ACE_LACKS_PRAGMA_ONCE) # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ #include "ace/SString.h" #include "orbsvcs/Notify/Any/ProxyPushSupplier.h" #include "orbsvcs/Notify/MonitorControlExt/MonitorProxySupplier_T.h" TAO_BEGIN_VERSIONED_NAMESPACE_DECL #if defined (TAO_HAS_MONITOR_FRAMEWORK) && (TAO_HAS_MONITOR_FRAMEWORK == 1) class TAO_Notify_MC_Ext_Export TAO_MonitorProxyPushSupplier : public TAO_MonitorProxySupplier_T<TAO_Notify_ProxyPushSupplier> { // No implementation needed at this level // we're just mixing in the MonitorProxySupplier }; TAO_END_VERSIONED_NAMESPACE_DECL #endif // TAO_HAS_MONITOR_FRAMEWORK == 1 #include /**/ "ace/post.h" #endif /* MONITORPROXYPUSHSUPPLIER_H */
[ "lihuibin705@163.com" ]
lihuibin705@163.com
8fd2df24d099e71f4d7ba75d840099533f464471
711e5c8b643dd2a93fbcbada982d7ad489fb0169
/XPSP1/NT/base/crts/crtw32/stdcpp64/xlock.cpp
8bba1959136fb54a05f087f0698520db99cb09a6
[]
no_license
aurantst/windows-XP-SP1
629a7763c082fd04d3b881e0d32a1cfbd523b5ce
d521b6360fcff4294ae6c5651c539f1b9a6cbb49
refs/heads/master
2023-03-21T01:08:39.870106
2020-09-28T08:10:11
2020-09-28T08:10:11
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,783
cpp
/*** *xlock.cpp - thread lock class * * Copyright (c) 1996-2001, Microsoft Corporation. All rights reserved. * *Purpose: * Define lock class used to make STD C++ Library thread-safe. * *Revision History: * 08-28-96 GJF Module created, MGHMOM. * *******************************************************************************/ #ifdef _MT #include <xstddef> #include <windows.h> _STD_BEGIN static CRITICAL_SECTION _CritSec; static long _InitFlag = 0L; static void _CleanUp() { long InitFlagValue; if ( InitFlagValue = InterlockedExchange( &_InitFlag, 3L ) == 2L ) // Should be okay to delete critical section DeleteCriticalSection( &_CritSec ); } _Lockit::_Lockit() { // Most common case - just enter the critical section if ( _InitFlag == 2L ) { EnterCriticalSection( &_CritSec ); return; } // Critical section either needs to be initialized. if ( _InitFlag == 0L ) { long InitFlagVal; if ( (InitFlagVal = InterlockedExchange( &_InitFlag, 1L )) == 0L ) { InitializeCriticalSection( &_CritSec ); atexit( _CleanUp ); _InitFlag = 2L; } else if ( InitFlagVal == 2L ) _InitFlag = 2L; } // If necessary, wait while another thread finishes initializing the // critical section while ( _InitFlag == 1L ) Sleep( 1 ); if ( _InitFlag == 2L ) EnterCriticalSection( &_CritSec ); } _Lockit::~_Lockit() { if ( _InitFlag == 2L ) LeaveCriticalSection( &_CritSec ); } _STD_END #endif
[ "112426112@qq.com" ]
112426112@qq.com
7b77780f83226fca10fcad39823ab14503ab33a1
5ff4f5f04532a30f5bf66b4ffcb8a355ae477b1a
/c_src/erlv8_get.cc
aebac939e2454f8aee33d62d9672a2ded6db1f72
[ "BSD-2-Clause" ]
permissive
mknofe/erlv8
8335e83cd177493844eb970f43e3d40463ca5585
688e5036864eed01f7aefb6ee8b3a4c22961012f
refs/heads/master
2021-01-17T05:30:35.795865
2011-01-17T18:32:03
2011-01-17T18:32:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,674
cc
#include "erlv8.hh" TickHandler(GetTickHandler) { ErlNifEnv *ref_env = enif_alloc_env(); ERL_NIF_TERM get_ref = enif_make_copy(ref_env, tick_ref); val_res_t *obj_res; if (enif_get_resource(vm->env,array[1],val_resource,(void **)(&obj_res))) { LHCS(obj_res->ctx); v8::Local<v8::Value> get_result = obj_res->val->ToObject()->Get(term_to_js(vm->env,array[2])); SEND(vm->server, enif_make_tuple3(env, enif_make_atom(env,"result"), enif_make_copy(env,get_ref), js_to_term(env,get_result))); } enif_free_env(ref_env); return DONE; } TickHandler(GetInternalTickHandler) { ErlNifEnv *ref_env = enif_alloc_env(); ERL_NIF_TERM get_ref = enif_make_copy(ref_env, tick_ref); val_res_t *obj_res; if (enif_get_resource(vm->env,array[1],val_resource,(void **)(&obj_res))) { LHCS(obj_res->ctx); int index; enif_get_int(vm->env, array[2], &index); if (index < 0 || (index + 1 > obj_res->val->ToObject()->InternalFieldCount())) { SEND(vm->server, enif_make_tuple3(env, enif_make_atom(env,"result"), enif_make_copy(env,get_ref), enif_make_atom(env,"error"))); } else { v8::Local<v8::Value> get_result = obj_res->val->ToObject()->GetInternalField(index); if (get_result->IsExternal()) { SEND(vm->server, enif_make_tuple3(env, enif_make_atom(env,"result"), enif_make_copy(env,get_ref), external_to_term(get_result))); } else { SEND(vm->server, enif_make_tuple3(env, enif_make_atom(env,"result"), enif_make_copy(env,get_ref), js_to_term(env,get_result))); } } } enif_free_env(ref_env); return DONE; }
[ "yrashk@gmail.com" ]
yrashk@gmail.com
e67ac8b15b3e359d1c03247c7f1cbd0e186f8ca8
cd51017ec71c642f3ad5df33b7677ae194630748
/lamps.cpp
d848e486a34c6de008e293d1f4a5da61302ad249
[]
no_license
luyangkk/usaco-training
790c8956d74e47fb9b58f97ad95b4f438d4eb060
42d2efed3053b402d35d1b8332a01265fac5a2f2
refs/heads/master
2020-04-22T16:33:09.506208
2014-11-09T14:28:03
2014-11-09T14:28:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,131
cpp
/* ID: luyangk1 PROG: lamps LANG: C++ */ #include <cstdio> #include <cstring> #include <cstdlib> //#include <cmath> //#include <cctype> //#include <iostream> //#include <fstream> #include <set> #include <string> //#include <sstream> //#include <map> //#include <deque> //#include <vector> //#include <algorithm> //#include <functional> using namespace std; int n, c, l, on[128], off[128], f[8], s[8], a, b; set<string> ans; void func1() { for (int i = 1; i <= 6; i++) s[i] = 1 - s[i]; } void func2() { for (int i = 1; i <= 6; i += 2) s[i] = 1 - s[i]; } void func3() { for (int i = 2; i <= 6; i += 2) s[i] = 1 - s[i]; } void func4() { s[1] = 1 - s[1]; s[4] = 1 - s[4]; } void (*func[])(void) = {func1, func2, func3, func4}; void dfs(int cur) { if (cur == c) { for (int i = 0; i < a; i++) { if (s[(on[i] - 1) % 6 + 1] != 1) return; } for (int i = 0; i < b; i++) { if (s[(off[i] - 1) % 6 + 1] != 0) return; } string m; for (int i = 1; i <= 6; i++) m += s[i] + '0'; ans.insert(m); return; } for (int i = 0; i < 4; i++) { func[i](); dfs(cur + 1); func[i](); dfs(cur + 1); } } int main(int argc, char* argv[]) { freopen("lamps.in", "r", stdin); freopen("lamps.out", "w", stdout); //ifstream fin("preface.in"); //ofstream fout("preface.out"); scanf("%d %d", &n, &c); c %= 8; while (scanf("%d", &l) && l != -1) on[a++] = l; while (scanf("%d", &l) && l != -1) off[b++] = l; for (int i = 1; i <= 6; i++) s[i] = 1; dfs(0); if (ans.empty()) { printf("IMPOSSIBLE\n"); } else { for (set<string>::iterator iter = ans.begin(); iter != ans.end(); iter++) { const string &v = *iter; for (int i = 0, k = 0; i < n; i++) { printf("%c", v[k]); if (++k == 6) k = 0; } printf("\n"); } } return 0; }
[ "luyangkk@gmail.com" ]
luyangkk@gmail.com
4e7e3a37d1d18de5ba90ea9fcd4e992c6d5662df
842307fcb7954fbf3d8471d08619a09cf8a8be23
/components/supervised_user/core/common/pref_names.h
dcb632531ccd83b1d28865e70d53dcdc1085f85c
[ "BSD-3-Clause" ]
permissive
wahello/chromium
3e2ecac308f746c1ee36562776506c2ea991d606
4b228fefd9c51cc19978f023b96d9858e7d1da95
refs/heads/main
2023-04-06T02:10:37.393447
2023-03-25T04:12:57
2023-03-25T04:12:57
131,737,050
0
0
null
null
null
null
UTF-8
C++
false
false
1,336
h
// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_SUPERVISED_USER_CORE_COMMON_PREF_NAMES_H_ #define COMPONENTS_SUPERVISED_USER_CORE_COMMON_PREF_NAMES_H_ namespace prefs { extern const char kSupervisedUserCustodianEmail[]; extern const char kSupervisedUserCustodianName[]; extern const char kSupervisedUserCustodianObfuscatedGaiaId[]; extern const char kSupervisedUserCustodianProfileImageURL[]; extern const char kSupervisedUserCustodianProfileURL[]; extern const char kSupervisedUserSecondCustodianEmail[]; extern const char kSupervisedUserSecondCustodianName[]; extern const char kSupervisedUserSecondCustodianObfuscatedGaiaId[]; extern const char kSupervisedUserSecondCustodianProfileImageURL[]; extern const char kSupervisedUserSecondCustodianProfileURL[]; extern const char kSupervisedUserExtensionsMayRequestPermissions[]; extern const char kSupervisedUserManualHosts[]; extern const char kSupervisedUserManualURLs[]; extern const char kSupervisedUserMetricsDayId[]; extern const char kSupervisedUserSafeSites[]; extern const char kSupervisedUserSharedSettings[]; extern const char kDefaultSupervisedUserFilteringBehavior[]; } // namespace prefs #endif // COMPONENTS_SUPERVISED_USER_CORE_COMMON_PREF_NAMES_H_
[ "chromium-scoped@luci-project-accounts.iam.gserviceaccount.com" ]
chromium-scoped@luci-project-accounts.iam.gserviceaccount.com
6938b37b7da90c184603dd88d5577fa7e0b97c83
060a43801eea5e7ab723de043a63e6c8bad99666
/Trees/BinaryTree.cpp
c8cc843e2921c27fcb3f5983754d19f5a28b28c4
[]
no_license
RandeepSinghMonga/geeksforgeeks
1b71e8bb85b7db19d22ccfe13cc3d639582d701d
3797dd523c6427dcd906248f7212f4b225f140d1
refs/heads/master
2016-09-13T12:43:20.299338
2016-05-03T12:10:14
2016-05-03T12:10:14
56,374,970
0
0
null
null
null
null
UTF-8
C++
false
false
6,074
cpp
#include <iostream> #include <cstdlib> using namespace std; struct node{ int data; node *left; node *right; }; node* createNode(int data){ node *head = new node; head->data = data; head->left = NULL; head->right = NULL; return head; } void preorderTraversal(node *head){ if(head==NULL)return; cout<<head->data<<" "; preorderTraversal(head->left); preorderTraversal(head->right); } void postorderTraversal(node *head){ if(head==NULL)return; preorderTraversal(head->left); preorderTraversal(head->right); cout<<head->data<<" "; } void inorderTraversal(node *head){ if(head==NULL)return; preorderTraversal(head->left); cout<<head->data<<" "; preorderTraversal(head->right); } int sizeOfTree(node *head){ if(head == NULL){ return 0; } return sizeOfTree(head->left)+sizeOfTree(head->right)+1; } bool Identical(node *head,node *head1){ if(head == NULL && head1 == NULL){ return true; } if((head == NULL && head1 != NULL) && (head != NULL && head1 == NULL)){ return false; } if(head->data == head1->data && Identical(head->left,head1->left) && Identical(head->right,head1->right)){ return true; } return false; } int max(int a,int b){ return a>b ? a : b; } int heightOfTree(node *head){ if(head == NULL){ return 0; } return max(heightOfTree(head->left),heightOfTree(head->right)) + 1; } void DeleteTree(node *head){ if(head == NULL){ return; } DeleteTree(head->left); DeleteTree(head->right); free(head); } void Mirror(node *head){ if(head==NULL){ return; } Mirror(head->left); Mirror(head->right); node *temp; temp = head->left; head->left = head->right; head->right = temp; } void printRootToLeaf(node *head,int arr[],int n){ if(head == NULL) return; arr[n] = head->data; n++; if(head->left==NULL && head->right==NULL){ for(int i=0;i<n;i++){ cout<<arr[i]<<" "; } cout<<endl; return; } printRootToLeaf(head->left,arr,n); printRootToLeaf(head->right,arr,n); return; } int countLeafNodes(node *head){ if(head == NULL){ return 0; } if(head->left == NULL && head->right == NULL){ return 1; } return countLeafNodes(head->left) + countLeafNodes(head->right); } int diameterOfTree(node *head){ if(head==NULL){ return 0; } int largest = max(max(diameterOfTree(head->left),diameterOfTree(head->right)),1+heightOfTree(head->left)+heightOfTree(head->right)); return largest; } void printGivenLevel(node* head,int i){ if(head==NULL){ return; } if(i==0){ cout<<head->data; return; } else{ printGivenLevel(head->left,i-1); printGivenLevel(head->right,i-1); return; } } void printLevelOrder(node *head){ for(int i=0;i<heightOfTree(head);i++){ printGivenLevel(head,i); } cout<<endl; } int ChildrenSumProperty(node *head){ int left=0,right=0; if(head==NULL || head->left==NULL && head->right==NULL){ return 1; } else{ if(head->left!=NULL){ left = head->left->data; } if(head->right!=NULL){ right = head->right->data; } if(head->data == head->left->data+head->right->data && ChildrenSumProperty(head->left) && ChildrenSumProperty(head->right) ){ return 1; } return 0; } } int isHeightBalanced(node* head){ if(head==NULL)return 1; if(heightOfTree(head->left)-heightOfTree(head->right)<=1 && heightOfTree(head->left)-heightOfTree(head->right)>=-1 && isHeightBalanced(head->left) && isHeightBalanced(head->right) ) return 1; return 0; } int main(){ node *head = new node; head = createNode(1); head->left = createNode(2); head->right = createNode(3); cout<<"PreOrder Traversal"<<endl; preorderTraversal(head);cout<<endl; cout<<"PostOrder Traversal"<<endl; postorderTraversal(head);cout<<endl; cout<<"InOrder Traversal"<<endl; inorderTraversal(head);cout<<endl; cout<<"--------------------"<<endl; cout<<"Size of Tree"<<endl; cout<<sizeOfTree(head)<<endl; node *head1 = new node; head1 = createNode(1); head1->left = createNode(2); head1->right = createNode(3); if(Identical(head,head1)){ cout<<"Identical!"<<endl; } else{ cout<<"Not Identical!"<<endl; } cout<<"--------------------"<<endl; cout<<"Height of Tree"<<endl; cout<<heightOfTree(head)<<endl; cout<<"--------------------"<<endl; cout<<"Diameter of Tree"<<endl; cout<<diameterOfTree(head)<<endl; cout<<"--------------------"<<endl; cout<<"Delete Tree"<<endl; DeleteTree(head1); cout<<"--------------------"<<endl; cout<<"Mirror Tree"<<endl; Mirror(head); inorderTraversal(head);cout<<endl; cout<<"--------------------"<<endl; cout<<"Printing Root To Leaf"<<endl; int arr[100]; printRootToLeaf(head,arr,0); cout<<"--------------------"<<endl; cout<<"Counting leaf Nodes"<<endl; cout<<countLeafNodes(head)<<endl; cout<<"--------------------"<<endl; cout<<"Level Order Traversal"<<endl; printLevelOrder(head);//For spiral just have a flag cout<<"--------------------"<<endl; cout<<"Children Sum Property"<<endl; if(ChildrenSumProperty(head)){ cout<<"Children Sum Property holds"<<endl; } else{ cout<<"Children Sum Property doesn't hold"<<endl; } cout<<"--------------------"<<endl; cout<<"Height Balanced"<<endl; if(isHeightBalanced(head)){ cout<<"Tree is height balanced"<<endl; } else{ cout<<"Tree is not height balanced"<<endl; } cout<<"--------------------"<<endl; cout<<"Convert to Child Sum Property"<<endl; convertChildSumProperty(head); return 0; }
[ "monga.randeep@gmail.com" ]
monga.randeep@gmail.com
3d4c24ab9c256ad8f6e230d01d9aa5885ae894d2
b6cbc4c3df5b1460b1217c25cd095d9b661f714f
/module_7/draft/ex02/includes/Array.class.tpp
47b86dc524839466427af34daae9514170f1e4da
[]
no_license
Bressack/CPP-piscine
dd28a64c5ebfbadbd99c88fe542e14e3a5963127
1d27f9ccaa53eb5671a1ee28b637b243722294a7
refs/heads/master
2023-06-16T23:50:42.526171
2021-07-13T15:30:01
2021-07-13T15:30:01
380,235,881
0
0
null
null
null
null
UTF-8
C++
false
false
3,923
tpp
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Array.class.tpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: tharchen <tharchen@student.42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2021/06/17 15:33:57 by tharchen #+# #+# */ /* Updated: 2021/07/12 19:12:52 by tharchen ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef ARRAY_CLASS_HPP # define ARRAY_CLASS_HPP # include <dispatcher.hpp> class BufferOverflowException: public std::exception { public: BufferOverflowException(void) {} const char * what() const throw() { return ("access to unreachable cell of array"); } }; template<typename T> class Array { typedef T* pointer; protected: // PROTECTED MEMBERS ATRIBUTE : PROMA // PROTECTED MEMBERS FUNCTION : PROMF private: // PRIVATE MEMBERS ATRIBUTE : PRIMA pointer _arr; size_t _size; // PRIVATE MEMBERS FUNCTION : PRIMF void clone_arr(const Array &src) { if (this->_arr != NULL) { delete[] this->_arr; this->_arr = NULL; this->_size = 0; } if (src.get__size() > 0) { this->_size = src.get__size(); this->_arr = new T[this->_size]; for (size_t i = 0; i < this->_size; i++) this->_arr[i] = src._arr[i]; // this->_arr[i] = (src.get__arr())[i]; } } public: // CONSTRUCTOR / DESTRUCTOR : CD Array(void) // constructor { this->_arr = new T[0]; this->_size = 0; std::cout << "[ default constructor ] { Array } (_arr: " << this->_arr << ", _size: " << this->_size << ")" << std::endl; } Array(size_t size) // constructor { this->_arr = new T[size]; for (size_t i = 0; i < size; i++) bzero(static_cast<void *>(&this->_arr[i]), sizeof(T)); this->_size = size; std::cout << "[ param constructor ] { Array } (_arr: " << this->_arr << ", _size: " << this->_size << ")" << std::endl; } Array(const Array<T> &src) // constructor by copy { this->_arr = NULL; this->_size = 0; clone_arr(src); std::cout << "[ copy constructor ] { Array } (_arr: " << this->_arr << ", _size: " << this->_size << ")" << std::endl; } virtual ~Array(void) // destructor { delete[] this->_arr; std::cout << "[ destructor ] { Array } (_arr: " << this->_arr << ", _size: " << this->_size << ")" << std::endl; } // OVERLOADED OPERATORS : OVOP Array & operator=(const Array &rhs) { std::cout << "[ operator= before assignment ] { Array } (" << *this << ")" << std::endl; clone_arr(rhs); std::cout << "[ operator= after assignment ] { Array } (" << *this << ")" << std::endl; return (*this); } T & operator[](size_t index) { if (index >= this->get__size()) throw (BufferOverflowException()); return (this->_arr[index]); } std::ostream &dbl_leftshift(std::ostream &o) const { for (size_t j = 0; j < this->get__size(); j++) { o << "["C_G_RED << this->_arr[j] << C_RES"]"; } return (o); } // GETTERS / SETTERS : GS size_t get__size(void) const { return (this->_size); } const pointer & get__arr(void) const { return (this->_arr); } // PUBLIC MEMBERS ATRIBUTE : PUMA // PUBLIC MEMBERS FUNCTION : PUMF size_t size(void) const { return (this->get__size()); } }; template<typename T> std::ostream &operator<<(std::ostream &o, const Array<T> &i) { return (i.dbl_leftshift(o)); } #endif
[ "tharchen@student.42.fr" ]
tharchen@student.42.fr
ba0a12865805077776b0e96c5f6470b8d16486ba
50ee92bbe66ad4f2e6ef05009ce43ff28a47353f
/lab6/lab6.cpp
aa1872054a8084c341fd6df5fde28053dece69a9
[]
no_license
steven2795/JamesJohnson-CSCI20-Fall2016
e81b77a0120a0522c6aa97a0b36b9d674249cc12
e90d3fdde5eb8a0d557c2041a35ab9bb74ea9732
refs/heads/master
2020-12-05T13:05:12.668175
2017-01-30T16:11:38
2017-01-30T16:11:38
66,293,872
0
0
null
null
null
null
UTF-8
C++
false
false
2,249
cpp
#include <iostream> using namespace std; int asci(){ string name; int year; cout << "* *" << endl; cout << " * * Copyright James Johnson 2016"<< endl; cout << " *** " << endl; } struct MonsterStruct { string Name; string Head; string Eyes; string Ears; string Nose; string Mouth; }; int main (){ MonsterStruct monster1; MonsterStruct monster2; MonsterStruct monster3; MonsterStruct monster4; cout << "Please name your monster." << endl; cin >> monster1.Name; cout << "Please choose a head for your monster." << endl; cin >> monster1.Head; cout << "Please choose eyes for your monster." << endl; cin >> monster1.Eyes; cout << "Please choose ears for your monster." << endl; cin >> monster1.Ears; cout << "Please choose a nose for your monster." << endl; cin >> monster1.Nose; cout << "Please choose a mouth for your monster." << endl; cin >> monster1.Mouth; monster2.Name = "craig"; monster2.Head = "zombus"; monster2.Eyes = "wackus"; monster2.Ears = "vegitas"; monster2.Nose = "wackus"; monster2.Mouth = "spitem"; monster3.Name = "Dr.PC"; monster3.Head = "wackus"; monster3.Eyes = "spritem"; monster3.Ears = "wackus"; monster3.Nose = "vegitas"; monster3.Mouth = "spitem"; monster4.Name = "zomboni"; monster4.Head = "zombus"; monster4.Eyes = "wackus"; monster4.Ears = "franken"; monster4.Nose = "vegitas"; monster4.Mouth = "wackus"; cout << monster1.Name << ": " << monster1.Head << ", " << monster1.Eyes << ", " << monster1.Ears << ", " << monster1.Nose << ", " << monster1.Mouth << endl; cout << monster2.Name << ": " << monster2.Head << ", " << monster2.Eyes << ", " << monster2.Ears << ", " << monster2.Nose << ", " << monster2.Mouth << endl; cout << monster3.Name << ": " << monster3.Head << ", " << monster3.Eyes << ", " << monster3.Ears << ", " << monster3.Nose << ", " << monster3.Mouth << endl; cout << monster4.Name << ": " << monster4.Head << ", " << monster4.Eyes << ", " << monster4.Ears << ", " << monster4.Nose << ", " << monster4.Mouth << endl; asci(); }
[ "johnson20201@hotmail.com" ]
johnson20201@hotmail.com
c6fff492db24d36d581de8651285fe1bffc9fcd5
cd5ea5c1189f4a680ea8c800b8fe7d6311b13844
/PankkitomaattiUIVALMIS/build-Pankkiautomaatti-Desktop-Release/ui_paasivu.h
5248011ecb28ba0cead7f8f197c985fea2ccf498
[]
no_license
t4tuan00/PankkitomaattiWalmis
ea5e32d56fb774f8a0e587e26c2d5fb93da708ac
057d30a61926ae129a9ebea1ea076e995be7f3ac
refs/heads/master
2021-01-12T10:23:36.185860
2016-12-21T07:00:39
2016-12-21T07:00:39
76,443,393
0
0
null
null
null
null
UTF-8
C++
false
false
5,240
h
/******************************************************************************** ** Form generated from reading UI file 'paasivu.ui' ** ** Created by: Qt User Interface Compiler version 5.3.2 ** ** WARNING! All changes made in this file will be lost when recompiling UI file! ********************************************************************************/ #ifndef UI_PAASIVU_H #define UI_PAASIVU_H #include <QtCore/QVariant> #include <QtWidgets/QAction> #include <QtWidgets/QApplication> #include <QtWidgets/QButtonGroup> #include <QtWidgets/QDialog> #include <QtWidgets/QGridLayout> #include <QtWidgets/QHeaderView> #include <QtWidgets/QPushButton> #include <QtWidgets/QSpacerItem> #include <QtWidgets/QVBoxLayout> QT_BEGIN_NAMESPACE class Ui_Paasivu { public: QGridLayout *gridLayout; QVBoxLayout *verticalLayout; QPushButton *pushButton_Saldo; QSpacerItem *verticalSpacer; QPushButton *pushButton_Tilitapahtumat; QSpacerItem *verticalSpacer_2; QPushButton *pushButton_Nosto; QSpacerItem *verticalSpacer_3; QPushButton *pushButton_Peruuta; void setupUi(QDialog *Paasivu) { if (Paasivu->objectName().isEmpty()) Paasivu->setObjectName(QStringLiteral("Paasivu")); Paasivu->resize(1227, 858); Paasivu->setStyleSheet(QStringLiteral("background-color: rgb(255, 151, 0);")); gridLayout = new QGridLayout(Paasivu); gridLayout->setObjectName(QStringLiteral("gridLayout")); verticalLayout = new QVBoxLayout(); verticalLayout->setObjectName(QStringLiteral("verticalLayout")); pushButton_Saldo = new QPushButton(Paasivu); pushButton_Saldo->setObjectName(QStringLiteral("pushButton_Saldo")); QSizePolicy sizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); sizePolicy.setHorizontalStretch(0); sizePolicy.setVerticalStretch(0); sizePolicy.setHeightForWidth(pushButton_Saldo->sizePolicy().hasHeightForWidth()); pushButton_Saldo->setSizePolicy(sizePolicy); pushButton_Saldo->setMaximumSize(QSize(300, 100)); QFont font; font.setPointSize(20); pushButton_Saldo->setFont(font); pushButton_Saldo->setStyleSheet(QStringLiteral("background-color: rgb(255, 255, 255);")); verticalLayout->addWidget(pushButton_Saldo); verticalSpacer = new QSpacerItem(20, 30, QSizePolicy::Minimum, QSizePolicy::Fixed); verticalLayout->addItem(verticalSpacer); pushButton_Tilitapahtumat = new QPushButton(Paasivu); pushButton_Tilitapahtumat->setObjectName(QStringLiteral("pushButton_Tilitapahtumat")); sizePolicy.setHeightForWidth(pushButton_Tilitapahtumat->sizePolicy().hasHeightForWidth()); pushButton_Tilitapahtumat->setSizePolicy(sizePolicy); pushButton_Tilitapahtumat->setMaximumSize(QSize(300, 100)); pushButton_Tilitapahtumat->setFont(font); pushButton_Tilitapahtumat->setStyleSheet(QStringLiteral("background-color: rgb(255, 255, 255);")); verticalLayout->addWidget(pushButton_Tilitapahtumat); verticalSpacer_2 = new QSpacerItem(20, 30, QSizePolicy::Minimum, QSizePolicy::Fixed); verticalLayout->addItem(verticalSpacer_2); pushButton_Nosto = new QPushButton(Paasivu); pushButton_Nosto->setObjectName(QStringLiteral("pushButton_Nosto")); sizePolicy.setHeightForWidth(pushButton_Nosto->sizePolicy().hasHeightForWidth()); pushButton_Nosto->setSizePolicy(sizePolicy); pushButton_Nosto->setMaximumSize(QSize(300, 100)); pushButton_Nosto->setFont(font); pushButton_Nosto->setStyleSheet(QStringLiteral("background-color: rgb(255, 255, 255);")); verticalLayout->addWidget(pushButton_Nosto); verticalSpacer_3 = new QSpacerItem(20, 30, QSizePolicy::Minimum, QSizePolicy::Fixed); verticalLayout->addItem(verticalSpacer_3); pushButton_Peruuta = new QPushButton(Paasivu); pushButton_Peruuta->setObjectName(QStringLiteral("pushButton_Peruuta")); sizePolicy.setHeightForWidth(pushButton_Peruuta->sizePolicy().hasHeightForWidth()); pushButton_Peruuta->setSizePolicy(sizePolicy); pushButton_Peruuta->setMaximumSize(QSize(300, 100)); pushButton_Peruuta->setFont(font); pushButton_Peruuta->setStyleSheet(QStringLiteral("background-color: rgb(255, 255, 255);")); verticalLayout->addWidget(pushButton_Peruuta); gridLayout->addLayout(verticalLayout, 0, 0, 1, 1); retranslateUi(Paasivu); QMetaObject::connectSlotsByName(Paasivu); } // setupUi void retranslateUi(QDialog *Paasivu) { Paasivu->setWindowTitle(QApplication::translate("Paasivu", "Dialog", 0)); pushButton_Saldo->setText(QApplication::translate("Paasivu", "Saldo", 0)); pushButton_Tilitapahtumat->setText(QApplication::translate("Paasivu", "Tilitapahtumat", 0)); pushButton_Nosto->setText(QApplication::translate("Paasivu", "Nosto", 0)); pushButton_Peruuta->setText(QApplication::translate("Paasivu", "Kirjaudu ulos", 0)); } // retranslateUi }; namespace Ui { class Paasivu: public Ui_Paasivu {}; } // namespace Ui QT_END_NAMESPACE #endif // UI_PAASIVU_H
[ "noreply@github.com" ]
noreply@github.com
e277dacaed753da785fef802c15eb036321faf94
de01cb554c2292b0fbb79b4d5413a2f6414ea472
/algorithms/Medium/1432.max-difference-you-can-get-from-changing-an-integer.cpp
d8820b4e004204657b7625030ac93f0e442391bc
[]
no_license
h4hany/yeet-the-leet
98292017eadd3dde98a079aafcd7648aa98701b4
563d779467ef5a7cc85cbe954eeaf3c1f5463313
refs/heads/master
2022-12-10T08:35:39.830260
2020-09-02T23:12:15
2020-09-02T23:12:15
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,772
cpp
/* * @lc app=leetcode id=1432 lang=cpp * * [1432] Max Difference You Can Get From Changing an Integer * * https://leetcode.com/problems/max-difference-you-can-get-from-changing-an-integer/description/ * * algorithms * Medium (42.92%) * Total Accepted: 8.3K * Total Submissions: 19.2K * Testcase Example: '555' * * You are given an integer num. You will apply the following steps exactly two * times: * * * Pick a digit x (0 <= x <= 9). * Pick another digit y (0 <= y <= 9). The digit y can be equal to x. * Replace all the occurrences of x in the decimal representation of num by * y. * The new integer cannot have any leading zeros, also the new integer cannot * be 0. * * * Let a and b be the results of applying the operations to num the first and * second times, respectively. * * Return the max difference between a and b. * * * Example 1: * * * Input: num = 555 * Output: 888 * Explanation: The first time pick x = 5 and y = 9 and store the new integer * in a. * The second time pick x = 5 and y = 1 and store the new integer in b. * We have now a = 999 and b = 111 and max difference = 888 * * * Example 2: * * * Input: num = 9 * Output: 8 * Explanation: The first time pick x = 9 and y = 9 and store the new integer * in a. * The second time pick x = 9 and y = 1 and store the new integer in b. * We have now a = 9 and b = 1 and max difference = 8 * * * Example 3: * * * Input: num = 123456 * Output: 820000 * * * Example 4: * * * Input: num = 10000 * Output: 80000 * * * Example 5: * * * Input: num = 9288 * Output: 8700 * * * * Constraints: * * * 1 <= num <= 10^8 * * */ class Solution { public: int maxDiff(int num) { } };
[ "kevin.wkmiao@gmail.com" ]
kevin.wkmiao@gmail.com
e471434b7dbe3d4324fbb3d9a5d2ace56b555a0d
74fc7c5d39baa6c30aa929e629ff60bf40500c61
/test/unit-tests/metafs/include/mf_lock_type_mock.h
1b3c5c23ee25e555fdfb59dd1194c7ec9b8e1491
[ "BSD-3-Clause" ]
permissive
jhyunleehi/poseidonos
e472be680d0e85dc62f0e2c0d7356dbee74a3bd6
1d90e4320855d61742ff37af8c0148da579d95d4
refs/heads/develop
2023-07-13T03:37:29.754509
2021-08-23T15:26:08
2021-08-23T15:26:08
393,203,347
0
0
BSD-3-Clause
2021-08-20T00:04:14
2021-08-06T00:30:35
C
UTF-8
C++
false
false
124
h
#include <gmock/gmock.h> #include <list> #include <string> #include <vector> #include "src/metafs/include/mf_lock_type.h"
[ "kyuho.son@samsung.com" ]
kyuho.son@samsung.com
2027c6c7cca0c923e2b2825859ee4f371de58108
267b5b75ffe7a8a9e22a65c9f5da8ebbd220bb86
/draw_line/draw_line.cpp
e91dcad8bcbe374feabc18b1630b09504db43bae
[]
no_license
avandolder/cs3520
85625e811062ae35a8cdc985a07c61304e12a518
58924068e7d52250cdfeaf73a4e266f584c9b345
refs/heads/master
2022-04-10T05:37:36.962157
2020-04-03T18:20:48
2020-04-03T18:20:48
233,110,453
0
0
null
null
null
null
UTF-8
C++
false
false
3,973
cpp
#include <algorithm> #include <cmath> #include <cstdlib> #include <unistd.h> #include <utility> #include <GL/freeglut.h> #include <GL/gl.h> enum class Key: unsigned char { Escape = 27, }; const int WIDTH = 500, HEIGHT = 500; int mx = WIDTH / 2, my = HEIGHT / 2; void dda_line(int x1, int y1, int x2, int y2) { // Draw line from (x1, y1) to (x2, y2) using the DDA algorithm. glBegin(GL_POINTS); if (x1 == x2) { // Special case for a vertical line. for (int y = std::min(y1, y2); y <= std::max(y1, y2); y++) { glVertex2f(x1, y); } } else { const double m = (double)(y1 - y2) / (double)(x1 - x2); if (std::abs(m) <= 1) { if (x1 > x2) { std::swap(x1, x2); std::swap(y1, y2); } for (double x = x1, y = y1; x <= x2; x++, y += m) { glVertex2f(x, y); } } else { if (y1 > y2) { std::swap(x1, x2); std::swap(y1, y2); } for (double x = x1, y = y1; y <= y2; x += 1/m, y++) { glVertex2f(x, y); } } } glEnd(); } void bresenham_line(int x1, int y1, int x2, int y2) { // Draw a line from (x1, y1) to (x2, y2) using Bresenham's algorithm. glBegin(GL_POINTS); const int dx = x2 - x1; const int dy = y2 - y1; const int dx2 = std::abs(2 * dx); const int dy2 = std::abs(2 * dy); const double m = (double)dy / (double)dx; const int step = (m > 0) ? 1 : -1; if (dx == 0) { // Vertical line. for (int y = std::min(y1, y2); y <= std::max(y1, y2); ++y) { glVertex2f(x1, y); } } else if (dy == 0) { // Horizontal line. for (int x = std::min(x1, x2); x <= std::max(x1, x2); ++x) { glVertex2f(x, y1); } } else if (std::abs(m) < 1) { // Slope is between -1 and 1, so step by x. const int diff = dy2 - dx2; int p = dy2 - dx; if (x1 > x2) { std::swap(x1, x2); std::swap(y1, y2); } for (int x = x1, y = y1; x <= x2; ++x) { glVertex2f(x, y); if (p < 0) { p += dy2; } else { y += step; p += diff; } } } else { // Slope is outside of -1 to 1, so step by y. const int diff = dx2 - dy2; int p = dx2 - dy; if (y1 > y2) { std::swap(x1, x2); std::swap(y1, y2); } for (int x = x1, y = y1; y <= y2; ++y) { glVertex2f(x, y); if (p < 0) { p += dx2; } else { x += step; p += diff; } } } glEnd(); } void handle_mouse_movement(int x, int y) { mx = x; my = HEIGHT - y; } void handle_key(unsigned char key, int x, int y) { switch (static_cast<Key>(key)) { case Key::Escape: std::exit(0); } } void show_screen() { glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); // Draw various lines using Bresenham's algorithm. glColor3f(0.0, 0.0, 1.0); bresenham_line(0, 0, 250, 125); bresenham_line(0, 125, 250, 0); glColor3f(1.0, 0, 0); bresenham_line(0, 250, 125, 500); bresenham_line(0, 500, 125, 250); glColor3f(0, 1, 0); bresenham_line(500, 250, 0, 250); bresenham_line(250, 0, 250, 500); glColor3f(1, 1, 0); bresenham_line(250, 250, 500, 500); bresenham_line(500, 250, 250, 500); // Draw a line from the center of the window to the mouse. glColor3f(1.0, 1.0, 1.0); bresenham_line(WIDTH / 2, HEIGHT / 2, mx, my); glutSwapBuffers(); usleep(10000); glutPostRedisplay(); } int main (int argc, char **argv) { // Initialize glut. glutInit(&argc, argv); glutInitDisplayMode(GLUT_RGBA); glutInitWindowSize(WIDTH, HEIGHT); glutInitWindowPosition(0, 0); glutCreateWindow("Draw Line"); // Initialize OpenGL. glClearColor(0.0, 0.0, 0.0, 0.0); glPointSize(1.0); glMatrixMode(GL_PROJECTION); glOrtho(0, WIDTH, 0, HEIGHT, -1, 1); // Add the appropriate callbacks. glutDisplayFunc(show_screen); glutMotionFunc(handle_mouse_movement); glutPassiveMotionFunc(handle_mouse_movement); glutKeyboardFunc(handle_key); glutMainLoop(); return 0; }
[ "adam.vandolder@gmail.com" ]
adam.vandolder@gmail.com
4f937a0955774762ffc16a02d798ec5d9fd938ea
c85a8f88fc89ec4c72bb42a6c21f1456567fd9bb
/projects/common/tools/db_compiler/stdafx.h
0fc264d8aa98f6de385acd47b789dfe9201ab75c
[]
no_license
Bia10/clrn
e7f24f617513399b89ee17bc318697f8fe148d63
4d036069018da734f9e68b38e7d86e43c3ae19c1
refs/heads/master
2016-09-01T07:03:28.081683
2013-07-08T17:40:28
2013-07-08T17:40:28
50,362,475
2
0
null
null
null
null
UTF-8
C++
false
false
500
h
#ifndef stdafx_h__ #define stdafx_h__ #include "SQLiteDB.h" #include "Log.h" #include "Exception.h" #include "Modules.h" #include <vector> #include <string> #include <iostream> #pragma warning(push) #pragma warning(disable : 4512) #include <boost/program_options.hpp> #pragma warning(pop) #include <boost/foreach.hpp> #include <boost/filesystem.hpp> #include <boost/exception_ptr.hpp> static const unsigned int CURRENT_MODULE_ID = Modules::Tools; #endif // stdafx_h__
[ "clrnmail@gmail.com" ]
clrnmail@gmail.com
bf5a89f90f8fa4f0bb620630d20b25c379f57b5b
0fd92b91f5e45373b2465e5854ec6306a0ed41b9
/cmd/experiment/libnbre_decycle.cpp
6e2c095ff913ce3c8a2841f5548fd55fba2180bd
[]
no_license
xchmwang/libubre
6a677181e80f3efeac8aa5b83630ed043da7fbd2
14a825145fb94108dc4434c40b64a2cf3e402593
refs/heads/master
2022-04-22T14:53:32.614449
2020-04-18T04:03:27
2020-04-18T04:03:27
216,299,856
0
0
null
null
null
null
UTF-8
C++
false
false
10,597
cpp
// Copyright (C) 2018 go-nebulas authors // // This file is part of the go-nebulas library. // // the go-nebulas library 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. // // the go-nebulas library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with the go-nebulas library. If not, see // <http://www.gnu.org/licenses/>. // #include "common/address.h" #include "common/common.h" #include "common/math/internal/math_extension.h" #include "runtime/nr/graph/graph.h" #include <stack> #include <string> using namespace neb::rt; void remove_a_cycle( transaction_graph::internal_graph_t &graph, const std::vector<transaction_graph::edge_descriptor_t> &edges) { neb::wei_t min_w = -1; for (auto it = edges.begin(); it != edges.end(); it++) { neb::wei_t w = boost::get(boost::edge_weight_t(), graph, *it); min_w = (min_w == -1 ? w : neb::math::min(min_w, w)); } for (auto it = edges.begin(); it != edges.end(); it++) { neb::wei_t w = boost::get(boost::edge_weight_t(), graph, *it); boost::put(boost::edge_weight_t(), graph, *it, w - min_w); if (w == min_w) { boost::remove_edge(*it, graph); } } } void dfs_find_a_cycle_from_vertex_based_on_time_sequence( const transaction_graph::internal_graph_t &graph, const transaction_graph::vertex_descriptor_t &s, const transaction_graph::vertex_descriptor_t &v, const std::unordered_set<transaction_graph::vertex_descriptor_t> &dead_v, bool &has_cycle, std::unordered_map<transaction_graph::vertex_descriptor_t, bool> &visited, std::vector<transaction_graph::edge_descriptor_t> &edges, std::vector<transaction_graph::edge_descriptor_t> &ret) { auto in_time_order = [&graph, &edges](const transaction_graph::oeiterator_t &oei) -> bool { if (!edges.empty()) { int64_t ts = boost::get(boost::edge_timestamp_t(), graph, edges.back()); int64_t ts_next = boost::get(boost::edge_timestamp_t(), graph, *oei); if (ts >= ts_next) { return false; } } return true; }; auto exit_cond = [&has_cycle, &edges, &ret](const transaction_graph::oeiterator_t &oei) { edges.push_back(*oei); has_cycle = true; for (auto it = edges.begin(); it != edges.end(); it++) { ret.push_back(*it); } }; transaction_graph::oeiterator_t oei, oei_end; for (boost::tie(oei, oei_end) = boost::out_edges(v, graph); oei != oei_end; oei++) { if (has_cycle) { return; } auto target = boost::target(*oei, graph); if (dead_v.find(target) != dead_v.end()) { continue; } if (target == s) { if (!in_time_order(oei)) { continue; } exit_cond(oei); return; } if (visited[target]) { if (!in_time_order(oei)) { continue; } for (auto it = edges.begin(); it != edges.end();) { auto t = boost::target(*it, graph); it = edges.erase(it); if (t == target) { break; } } exit_cond(oei); return; } visited[target] = true; if (edges.empty() || (!edges.empty() && in_time_order(oei))) { edges.push_back(*oei); dfs_find_a_cycle_from_vertex_based_on_time_sequence( graph, s, target, dead_v, has_cycle, visited, edges, ret); edges.pop_back(); } visited[target] = false; } return; } std::vector<transaction_graph::edge_descriptor_t> find_a_cycle_from_vertex_based_on_time_sequence( const transaction_graph::internal_graph_t &graph, const transaction_graph::vertex_descriptor_t &v, const std::unordered_set<transaction_graph::vertex_descriptor_t> &dead_v) { std::vector<transaction_graph::edge_descriptor_t> ret; std::vector<transaction_graph::edge_descriptor_t> edges; std::unordered_map<transaction_graph::vertex_descriptor_t, bool> visited; bool has_cycle = false; visited[v] = true; dfs_find_a_cycle_from_vertex_based_on_time_sequence( graph, v, v, dead_v, has_cycle, visited, edges, ret); return ret; } std::vector<transaction_graph::edge_descriptor_t> find_a_cycle_based_on_time_sequence( const transaction_graph::internal_graph_t &graph, const std::unordered_set<transaction_graph::vertex_descriptor_t> &dead_v) { std::vector<transaction_graph::edge_descriptor_t> ret; std::vector<transaction_graph::vertex_descriptor_t> to_visit; transaction_graph::viterator_t vi, vi_end; for (boost::tie(vi, vi_end) = boost::vertices(graph); vi != vi_end; vi++) { if (dead_v.find(*vi) == dead_v.end()) { to_visit.push_back(*vi); } } for (auto it = to_visit.begin(); it != to_visit.end(); it++) { auto ret = find_a_cycle_from_vertex_based_on_time_sequence(graph, *it, dead_v); if (!ret.empty()) { return ret; } } return ret; } void bfs_decrease_graph_edges( const transaction_graph::internal_graph_t &graph, const std::unordered_set<transaction_graph::vertex_descriptor_t> &dead_v, std::unordered_set<transaction_graph::vertex_descriptor_t> &tmp_dead, std::unordered_map<transaction_graph::vertex_descriptor_t, size_t> &dead_to, std::unordered_map<transaction_graph::vertex_descriptor_t, size_t> &to_dead) { std::queue<transaction_graph::vertex_descriptor_t> q; auto update_dead_to = [&graph, &dead_v, &tmp_dead, &dead_to]( const transaction_graph::vertex_descriptor_t &v) { transaction_graph::oeiterator_t oei, oei_end; for (boost::tie(oei, oei_end) = boost::out_edges(v, graph); oei != oei_end; oei++) { auto target = boost::target(*oei, graph); if (dead_v.find(target) == dead_v.end() && tmp_dead.find(target) == tmp_dead.end()) { if (dead_to.find(target) != dead_to.end()) { dead_to[target]++; } else { dead_to.insert(std::make_pair(target, 1)); } } } }; auto update_to_dead = [&graph, &dead_v, &tmp_dead, &to_dead]( const transaction_graph::vertex_descriptor_t &v) { transaction_graph::ieiterator_t iei, iei_end; for (boost::tie(iei, iei_end) = boost::in_edges(v, graph); iei != iei_end; iei++) { auto source = boost::source(*iei, graph); if (dead_v.find(source) == dead_v.end() && tmp_dead.find(source) == tmp_dead.end()) { if (to_dead.find(source) != to_dead.end()) { to_dead[source]++; } else { to_dead.insert(std::make_pair(source, 1)); } } } }; for (auto &v : tmp_dead) { q.push(v); update_dead_to(v); update_to_dead(v); } while (!q.empty()) { auto &v = q.front(); q.pop(); transaction_graph::oeiterator_t oei, oei_end; for (boost::tie(oei, oei_end) = boost::out_edges(v, graph); oei != oei_end; oei++) { auto target = boost::target(*oei, graph); if (dead_v.find(target) == dead_v.end() && tmp_dead.find(target) == tmp_dead.end()) { auto ret = boost::in_degree(target, graph); if (ret && dead_to.find(target) != dead_to.end() && ret == dead_to[target]) { q.push(target); tmp_dead.insert(target); update_dead_to(target); } } } transaction_graph::ieiterator_t iei, iei_end; for (boost::tie(iei, iei_end) = boost::in_edges(v, graph); iei != iei_end; iei++) { auto source = boost::source(*iei, graph); if (dead_v.find(source) == dead_v.end() && tmp_dead.find(source) == tmp_dead.end()) { auto ret = boost::out_degree(source, graph); if (ret && to_dead.find(source) != to_dead.end() && ret == to_dead[source]) { q.push(source); tmp_dead.insert(source); update_to_dead(source); } } } } } bool decrease_graph_edges( const transaction_graph::internal_graph_t &graph, std::unordered_set<transaction_graph::vertex_descriptor_t> &dead_v, std::unordered_map<transaction_graph::vertex_descriptor_t, size_t> &dead_to, std::unordered_map<transaction_graph::vertex_descriptor_t, size_t> &to_dead) { std::unordered_set<transaction_graph::vertex_descriptor_t> tmp_dead; transaction_graph::viterator_t vi, vi_end; for (boost::tie(vi, vi_end) = boost::vertices(graph); vi != vi_end; vi++) { if (dead_v.find(*vi) == dead_v.end()) { auto ins = boost::in_degree(*vi, graph); auto outs = boost::out_degree(*vi, graph); if (!ins || !outs) { tmp_dead.insert(*vi); } } } bfs_decrease_graph_edges(graph, dead_v, tmp_dead, dead_to, to_dead); for (auto &tmp : tmp_dead) { dead_v.insert(tmp); } return boost::num_vertices(graph) != dead_v.size(); } void remove_cycles_based_on_time_sequence( transaction_graph::internal_graph_t &graph) { std::vector<transaction_graph::edge_descriptor_t> ret; std::unordered_set<transaction_graph::vertex_descriptor_t> dead_v; std::unordered_map<transaction_graph::vertex_descriptor_t, size_t> dead_to; std::unordered_map<transaction_graph::vertex_descriptor_t, size_t> to_dead; while (true) { if (!decrease_graph_edges(graph, dead_v, dead_to, to_dead)) { break; } ret = find_a_cycle_based_on_time_sequence(graph, dead_v); if (ret.empty()) { break; } remove_a_cycle(graph, ret); } } void non_recursive_remove_cycles_based_on_time_sequence( transaction_graph::internal_graph_t &graph) { remove_cycles_based_on_time_sequence(graph); } extern int entry_point_lib(const char *msg); std::string entry_point_exp(const std::string &msg) { neb::rt::transaction_graph tg; tg.add_edge(neb::to_address("a"), neb::to_address("a"), 1, 1); tg.add_edge(neb::to_address("a"), neb::to_address("b"), 2, 2); tg.add_edge(neb::to_address("b"), neb::to_address("c"), 3, 3); tg.add_edge(neb::to_address("c"), neb::to_address("a"), 4, 4); non_recursive_remove_cycles_based_on_time_sequence(tg.internal_graph()); entry_point_lib(msg.c_str()); return msg; } int main() { auto ret = entry_point_exp("decycle"); // std::cout << ret << std::endl; return 0; }
[ "chmwang@zju.edu.cn" ]
chmwang@zju.edu.cn
e596b570068a3b6524b1b86d624065cd5c3b1182
4bc40d60c146300030512b11e375cb8abbf2f5b3
/LiteX/software/Doom/mc1-doom/src/m_random.c
cbca2fab6396aeb80e57e956fd5a5bad9226887e
[ "BSD-3-Clause", "GPL-1.0-or-later", "LicenseRef-scancode-proprietary-license" ]
permissive
BrunoLevy/learn-fpga
fd18ea8a67cfc46d29fac9ad417ae7990b135118
fd954b06f6dc57ee042d0c82e9418e83c4b261b4
refs/heads/master
2023-08-23T06:15:43.195975
2023-08-04T06:41:22
2023-08-04T06:41:22
267,350,664
2,036
191
BSD-3-Clause
2023-06-23T13:41:44
2020-05-27T15:04:05
C++
UTF-8
C++
false
false
2,568
c
// Emacs style mode select -*- C++ -*- //----------------------------------------------------------------------------- // // Copyright (C) 1993-1996 by id Software, Inc. // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; either version 2 // of the License, or (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // DESCRIPTION: // Random number LUT. // //----------------------------------------------------------------------------- // // M_Random // Returns a 0-255 number // unsigned char rndtable[256] = { 0, 8, 109, 220, 222, 241, 149, 107, 75, 248, 254, 140, 16, 66 , 74, 21, 211, 47, 80, 242, 154, 27, 205, 128, 161, 89, 77, 36 , 95, 110, 85, 48, 212, 140, 211, 249, 22, 79, 200, 50, 28, 188 , 52, 140, 202, 120, 68, 145, 62, 70, 184, 190, 91, 197, 152, 224 , 149, 104, 25, 178, 252, 182, 202, 182, 141, 197, 4, 81, 181, 242 , 145, 42, 39, 227, 156, 198, 225, 193, 219, 93, 122, 175, 249, 0 , 175, 143, 70, 239, 46, 246, 163, 53, 163, 109, 168, 135, 2, 235 , 25, 92, 20, 145, 138, 77, 69, 166, 78, 176, 173, 212, 166, 113 , 94, 161, 41, 50, 239, 49, 111, 164, 70, 60, 2, 37, 171, 75 , 136, 156, 11, 56, 42, 146, 138, 229, 73, 146, 77, 61, 98, 196 , 135, 106, 63, 197, 195, 86, 96, 203, 113, 101, 170, 247, 181, 113 , 80, 250, 108, 7, 255, 237, 129, 226, 79, 107, 112, 166, 103, 241 , 24, 223, 239, 120, 198, 58, 60, 82, 128, 3, 184, 66, 143, 224 , 145, 224, 81, 206, 163, 45, 63, 90, 168, 114, 59, 33, 159, 95 , 28, 139, 123, 98, 125, 196, 15, 70, 194, 253, 54, 14, 109, 226 , 71, 17, 161, 93, 186, 87, 244, 138, 20, 52, 123, 251, 26, 36 , 17, 46, 52, 231, 232, 76, 31, 221, 84, 37, 216, 165, 212, 106 , 197, 242, 98, 43, 39, 175, 254, 145, 190, 84, 118, 222, 187, 136 , 120, 163, 236, 249 }; int rndindex = 0; int prndindex = 0; // Which one is deterministic? int P_Random (void) { prndindex = (prndindex+1)&0xff; return rndtable[prndindex]; } int M_Random (void) { rndindex = (rndindex+1)&0xff; return rndtable[rndindex]; } void M_ClearRandom (void) { rndindex = prndindex = 0; }
[ "Bruno.Levy@inria.fr" ]
Bruno.Levy@inria.fr
1c821eecb3467db5c4e979b4bc84524d5c107397
41499f73e807ac9fee5e2ff96a8894d08d967293
/FORKS/C++/OpenPGP/tree/Packets/Tag2.cpp
fb08e5599c4e56cb6498fd886c7c423cd891586a
[ "MIT", "LicenseRef-scancode-unknown-license-reference", "WTFPL", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
lordnynex/CLEANUP
c9f3058ec96674696339e7e936170a8645ddc09b
77e8e3cad25ce740fefb42859d9945cc482e009a
refs/heads/master
2021-01-10T07:35:08.071207
2016-04-10T22:02:57
2016-04-10T22:02:57
55,870,021
5
1
WTFPL
2023-03-20T11:55:51
2016-04-09T22:36:23
C++
UTF-8
C++
false
false
17,567
cpp
#include "Tag2.h" Tag2::Tag2(): Packet(2), type(0), pka(0), hash(0), mpi(), left16(), time(0), keyid(), hashed_subpackets(), unhashed_subpackets() {} Tag2::Tag2(const Tag2 & copy): Packet(copy), type(copy.type), pka(copy.pka), hash(copy.hash), mpi(copy.mpi), left16(copy.left16), time(copy.time), keyid(copy.keyid), hashed_subpackets(copy.get_hashed_subpackets_clone()), unhashed_subpackets(copy.get_unhashed_subpackets_clone()) {} Tag2::Tag2(std::string & data): Tag2() { read(data); } Tag2::~Tag2(){ hashed_subpackets.clear(); unhashed_subpackets.clear(); } // Extracts Subpacket data for figuring which subpacket type to create // Some data is consumed in the process std::string Tag2::read_subpacket(std::string & data){ uint32_t length = 0; uint8_t first_octet = static_cast <unsigned char> (data[0]); if (first_octet < 192){ length = first_octet; data = data.substr(1, data.size() - 1); } else if ((192 <= first_octet) && (first_octet < 255)){ length = toint(data.substr(0, 2), 256) - (192 << 8) + 192; data = data.substr(2, data.size() - 2); } else if (first_octet == 255){ length = toint(data.substr(1, 4), 256); data = data.substr(5, data.size() - 5); } std::string out = data.substr(0, length); // includes subpacket type data = data.substr(length, data.size() - length); // remove subpacket from main data return out; } std::vector <Tag2Subpacket::Ptr> Tag2::read_subpackets(std::string & data){ std::vector <Tag2Subpacket::Ptr> out; while (data.size()){ Tag2Subpacket::Ptr temp; std::string subpacket_data = read_subpacket(data); uint8_t sub = subpacket_data[0]; subpacket_data = subpacket_data.substr(1, subpacket_data.size() - 1); switch (sub){ // reserved sub values will crash the program case 2: temp = std::make_shared<Tag2Sub2>(); break; case 3: temp = std::make_shared<Tag2Sub3>(); break; case 4: temp = std::make_shared<Tag2Sub4>(); break; case 5: temp = std::make_shared<Tag2Sub5>(); break; case 6: temp = std::make_shared<Tag2Sub6>(); break; case 9: temp = std::make_shared<Tag2Sub9>(); break; case 10: temp = std::make_shared<Tag2Sub10>(); break; case 11: temp = std::make_shared<Tag2Sub11>(); break; case 12: temp = std::make_shared<Tag2Sub12>(); break; case 16: temp = std::make_shared<Tag2Sub16>(); break; case 20: temp = std::make_shared<Tag2Sub20>(); break; case 21: temp = std::make_shared<Tag2Sub21>(); break; case 22: temp = std::make_shared<Tag2Sub22>(); break; case 23: temp = std::make_shared<Tag2Sub23>(); break; case 24: temp = std::make_shared<Tag2Sub24>(); break; case 25: temp = std::make_shared<Tag2Sub25>(); break; case 26: temp = std::make_shared<Tag2Sub26>(); break; case 27: temp = std::make_shared<Tag2Sub27>(); break; case 28: temp = std::make_shared<Tag2Sub28>(); break; case 29: temp = std::make_shared<Tag2Sub29>(); break; case 30: temp = std::make_shared<Tag2Sub30>(); break; case 31: temp = std::make_shared<Tag2Sub31>(); break; case 32: temp = std::make_shared<Tag2Sub32>(); break; default: std::cerr << "Error: Unknown subpacket tag: " << static_cast <unsigned int> (sub) << " Ignoring." << std::endl; continue; break; } temp -> read(subpacket_data); out.push_back(temp); } return out; } void Tag2::read(std::string & data, const uint8_t part){ size = data.size(); tag = 2; version = data[0]; if (version < 4){ if (data[1] != 5){ throw std::runtime_error("Error: Length of hashed material must be 5."); } type = data[2]; time = toint(data.substr(3, 4), 256); keyid = data.substr(7, 8); pka = data[15]; hash = data[16]; left16 = data.substr(17, 2); data = data.substr(19, data.size() - 19); if (pka < 4){ mpi.push_back(read_MPI(data)); // RSA m**d mod n } if (pka == 17){ mpi.push_back(read_MPI(data)); // DSA r mpi.push_back(read_MPI(data)); // DSA s } } else if (version == 4){ type = data[1]; pka = data[2]; hash = data[3]; uint16_t hashed_size = toint(data.substr(4, 2), 256); data = data.substr(6, data.size() - 6); // hashed subpackets std::string hashed = data.substr(0, hashed_size); data = data.substr(hashed_size, data.size() - hashed_size); hashed_subpackets = read_subpackets(hashed); // unhashed subpacketss uint16_t unhashed_size = toint(data.substr(0, 2), 256); data = data.substr(2, data.size() - 2); std::string unhashed = data.substr(0, unhashed_size); data = data.substr(unhashed_size, data.size() - unhashed_size); unhashed_subpackets = read_subpackets(unhashed); left16 = data.substr(0, 2); data = data.substr(2, data.size() - 2); // if (pka < 4) mpi.push_back(read_MPI(data)); // RSA m**d mod n if (pka == 17){ // mpi.push_back(read_MPI(data)); // DSA r mpi.push_back(read_MPI(data)); // DSA s } } else{ std::stringstream s; s << static_cast <unsigned int> (version); throw std::runtime_error("Error: Tag2 Unknown version: " + s.str()); } } std::string Tag2::show(const uint8_t indents, const uint8_t indent_size) const{ unsigned int tab = indents * indent_size; std::stringstream out; out << std::string(tab, ' ') << show_title() << "\n" << std::string(tab, ' ') << " Version: " << static_cast <unsigned int> (version) << "\n"; if (version < 4){ out << std::string(tab, ' ') << " Hashed Material:\n" << std::string(tab, ' ') << " Signature Type: " << Signature_Types.at(type) << " (type 0x" << makehex(type, 2) << ")\n" << std::string(tab, ' ') << " Creation Time: " << show_time(time) << "\n" << std::string(tab, ' ') << " Signer's Key ID: " << hexlify(keyid) << "\n" << std::string(tab, ' ') << " Public Key Algorithm: " << Public_Key_Algorithms.at(pka) << " (pka " << static_cast <unsigned int> (pka) << ")\n" << std::string(tab, ' ') << " Hash Algorithm: " << Hash_Algorithms.at(hash) << " (hash " << static_cast <unsigned int> (hash) << ")\n"; } if (version == 4){ out << std::string(tab, ' ') << " Signature Type: " << Signature_Types.at(type) << " (type 0x" << makehex(type, 2) << ")\n" << std::string(tab, ' ') << " Public Key Algorithm: " << Public_Key_Algorithms.at(pka) << " (pka " << static_cast <unsigned int> (pka) << ")\n" << std::string(tab, ' ') << " Hash Algorithm: " << Hash_Algorithms.at(hash) << " (hash " << static_cast <unsigned int> (hash) << ")"; if (hashed_subpackets.size()){ out << "\n" << std::string(tab, ' ') << " Hashed Sub:"; for(Tag2Subpacket::Ptr const & s : hashed_subpackets){ out << "\n" << s -> show(indents, indent_size); } } if (unhashed_subpackets.size()){ out << "\n" << std::string(tab, ' ') << " Unhashed Sub:"; for(Tag2Subpacket::Ptr const & s : unhashed_subpackets){ out << "\n" << s -> show(indents, indent_size); } } } out << "\n" << std::string(tab, ' ') << " Hash Left 16 Bits: " << hexlify(left16); if (pka < 4){ out << "\n" << std::string(tab, ' ') << " RSA m**d mod n (" << bitsize(mpi[0]) << " bits): " << mpitohex(mpi[0]); } else if (pka == 17){ out << "\n" << std::string(tab, ' ') << " DSA r (" << bitsize(mpi[0]) << " bits): " << mpitohex(mpi[0]) << "\n" << std::string(tab, ' ') << " DSA s (" << bitsize(mpi[1]) << " bits): " << mpitohex(mpi[1]); } return out.str(); } std::string Tag2::raw() const{ std::string out(1, version); if (version < 4){// to recreate older keys out += "\x05" + std::string(1, type) + unhexlify(makehex(time, 8)) + keyid + std::string(1, pka) + std::string(1, hash) + left16; } if (version == 4){ std::string hashed_str = ""; for(Tag2Subpacket::Ptr const & s : hashed_subpackets){ hashed_str += s -> write(); } std::string unhashed_str = ""; for(Tag2Subpacket::Ptr const & s : unhashed_subpackets){ unhashed_str += s -> write(); } out += std::string(1, type) + std::string(1, pka) + std::string(1, hash) + unhexlify(makehex(hashed_str.size(), 4)) + hashed_str + unhexlify(makehex(unhashed_str.size(), 4)) + unhashed_str + left16; } for(PGPMPI const & i : mpi){ out += write_MPI(i); } return out; } uint8_t Tag2::get_type() const{ return type; } uint8_t Tag2::get_pka() const{ return pka; } uint8_t Tag2::get_hash() const{ return hash; } std::string Tag2::get_left16() const{ return left16; } std::vector <PGPMPI> Tag2::get_mpi() const{ return mpi; } uint32_t Tag2::get_time() const{ if (version == 3){ return time; } else if (version == 4){ for(Subpacket::Ptr const & s : hashed_subpackets){ if (s -> get_type() == 2){ std::string data = s -> raw(); Tag2Sub2 sub2(data); return sub2.get_time(); } } } return 0; } std::string Tag2::get_keyid() const{ if (version == 3){ return keyid; } else if (version == 4){ // usually found in unhashed subpackets for(Tag2Subpacket::Ptr const & s : unhashed_subpackets){ if (s -> get_type() == 16){ std::string data = s -> raw(); Tag2Sub16 sub16(data); return sub16.get_keyid(); } } // search hashed subpackets if necessary for(Tag2Subpacket::Ptr const & s : hashed_subpackets){ if (s -> get_type() == 16){ std::string data = s -> raw(); Tag2Sub16 sub16(data); return sub16.get_keyid(); } } } else{ std::stringstream s; s << static_cast <unsigned int> (version); throw std::runtime_error("Error: Signature Packet version " + s.str() + " not defined."); } return ""; // should never reach here; mainly just to remove compiler warnings } std::vector <Tag2Subpacket::Ptr> Tag2::get_hashed_subpackets() const{ return hashed_subpackets; } std::vector <Tag2Subpacket::Ptr> Tag2::get_hashed_subpackets_clone() const{ std::vector <Tag2Subpacket::Ptr> out; for(Tag2Subpacket::Ptr const & s : hashed_subpackets){ out.push_back(s -> clone()); } return out; } std::vector <Tag2Subpacket::Ptr> Tag2::get_unhashed_subpackets() const{ return unhashed_subpackets; } std::vector <Tag2Subpacket::Ptr> Tag2::get_unhashed_subpackets_clone() const{ std::vector <Tag2Subpacket::Ptr> out; for(Tag2Subpacket::Ptr const & s : unhashed_subpackets){ out.push_back(s -> clone()); } return out; } std::string Tag2::get_up_to_hashed() const{ if (version == 3){ return "\x03" + std::string(1, type) + unhexlify(makehex(time, 8)); } else if (version == 4){ std::string hashed = ""; for(Subpacket::Ptr const & s : hashed_subpackets){ hashed += s -> write(); } return "\x04" + std::string(1, type) + std::string(1, pka) + std::string(1, hash) + unhexlify(makehex(hashed.size(), 4)) + hashed; } else{ std::stringstream s; s << static_cast <unsigned int> (version); throw std::runtime_error("Error: Signature packet version " + s.str() + " not defined."); } return ""; // should never reach here; mainly just to remove compiler warnings } std::string Tag2::get_without_unhashed() const{ std::string out(1, version); if (version < 4){// to recreate older keys out += "\x05" + std::string(1, type) + unhexlify(makehex(time, 8)) + keyid + std::string(1, pka) + std::string(1, hash) + left16; } if (version == 4){ std::string hashed_str = ""; for(Subpacket::Ptr const & s : hashed_subpackets){ hashed_str += s -> write(); } out += std::string(1, type) + std::string(1, pka) + std::string(1, hash) + unhexlify(makehex(hashed_str.size(), 4)) + hashed_str + zero + zero + left16; } for(PGPMPI const & i : mpi){ out += write_MPI(i); } return out; } void Tag2::set_pka(const uint8_t p){ pka = p; size = raw().size(); } void Tag2::set_type(const uint8_t t){ type = t; size = raw().size(); } void Tag2::set_hash(const uint8_t h){ hash = h; size = raw().size(); } void Tag2::set_left16(const std::string & l){ left16 = l; size = raw().size(); } void Tag2::set_mpi(const std::vector <PGPMPI> & m){ mpi = m; size = raw().size(); } void Tag2::set_time(const uint32_t t){ if (version == 3){ time = t; } else if (version == 4){ unsigned int i; for(i = 0; i < hashed_subpackets.size(); i++){ if (hashed_subpackets[i] -> get_type() == 2){ break; } } Tag2Sub2::Ptr sub2 = std::make_shared<Tag2Sub2>(); sub2 -> set_time(t); if (i == hashed_subpackets.size()){ // not found hashed_subpackets.push_back(sub2); } else{ // found hashed_subpackets[i] = sub2; } } size = raw().size(); } void Tag2::set_keyid(const std::string & k){ if (k.size() != 8){ throw std::runtime_error("Error: Key ID must be 8 octets."); } if (version == 3){ keyid = k; } else if (version == 4){ unsigned int i; for(i = 0; i < unhashed_subpackets.size(); i++){ if (unhashed_subpackets[i] -> get_type() == 16){ break; } } Tag2Sub16::Ptr sub16 = std::make_shared<Tag2Sub16>(); sub16 -> set_keyid(k); if (i == unhashed_subpackets.size()){ // not found unhashed_subpackets.push_back(sub16); } else{ // found unhashed_subpackets[i] = sub16; } } size = raw().size(); } void Tag2::set_hashed_subpackets(const std::vector <Tag2Subpacket::Ptr> & h){ hashed_subpackets.clear(); for(Tag2Subpacket::Ptr const & s : h){ hashed_subpackets.push_back(s -> clone()); } size = raw().size(); } void Tag2::set_unhashed_subpackets(const std::vector <Tag2Subpacket::Ptr> & u){ unhashed_subpackets.clear(); for(Tag2Subpacket::Ptr const & s : u){ unhashed_subpackets.push_back(s -> clone()); } size = raw().size(); } std::string Tag2::find_subpacket(const uint8_t sub) const{ /* 5.2.4.1. Subpacket Hints It is certainly possible for a signature to contain conflicting information in subpackets. For example, a signature may contain multiple copies of a preference or multiple expiration times. In most cases, an implementation SHOULD use the last subpacket in the signature, but MAY use any conflict resolution scheme that makes more sense. */ std::string out; for(Tag2Subpacket::Ptr const & s : hashed_subpackets){ if (s -> get_type() == sub){ out = s -> raw(); break; } } for(Tag2Subpacket::Ptr const & s : unhashed_subpackets){ if (s -> get_type() == sub){ out = s -> raw(); break; } } return out; } Packet::Ptr Tag2::clone() const{ Ptr out = std::make_shared <Tag2> (*this); out -> hashed_subpackets = get_hashed_subpackets_clone(); out -> unhashed_subpackets = get_unhashed_subpackets_clone(); return out; } Tag2 & Tag2::operator =(const Tag2 & copy){ Packet::operator =(copy); type = copy.type; pka = copy.pka; hash = copy.hash; mpi = copy.mpi; left16 = copy.left16; time = copy.time; keyid = copy.keyid; hashed_subpackets = copy.get_hashed_subpackets_clone(); unhashed_subpackets = copy.get_unhashed_subpackets_clone(); return *this; }
[ "lordnynex@gmail.com" ]
lordnynex@gmail.com
f4589ab995babfb158c563806b4e8f3451c0b029
69c340aed4412535dd6e185ade0d3e2b6147418e
/Back-Trackingand Recursion/wine_selling_RECURSION.cpp
bbd312d42b1887c442fa3ceb5ff5c1f2111d2ad6
[]
no_license
Meaha7/DSA-Marathon
656f1c1505adf24d2a3501a1f216e2fcb9aa3e32
9fb5c4d16a0192cb35f3da5c0a09b67ea2906dbd
refs/heads/main
2023-07-11T07:14:01.912316
2021-08-21T21:25:05
2021-08-21T21:25:05
null
0
0
null
null
null
null
UTF-8
C++
false
false
439
cpp
#include <iostream> using namespace std; int profit(int a[],int n,int y,int left,int right) { if(left==right) { return y*a[left]; } else { return max(a[left]*y+profit(a,n,y+1,left+1,right),a[right]*y+profit(a,n,y+1,left,right-1)); } } int main() { int n,i; cin>>n; int a[n]; for(i=0;i<n;i++) { cin>>a[i]; } int ans=profit(a,n,1,0,n-1); cout<<ans; return 0; }
[ "noreply@github.com" ]
noreply@github.com
5df6f24964be2fd0151272d9fb04036ee0f04dce
88ae8695987ada722184307301e221e1ba3cc2fa
/third_party/perfetto/src/traceconv/trace_to_hprof.cc
5bf1b019c21c7e43af69d763028f5e3e92fc3f3b
[ "BSD-3-Clause", "Apache-2.0", "LicenseRef-scancode-unknown-license-reference", "LGPL-2.0-or-later", "MIT", "GPL-1.0-or-later" ]
permissive
iridium-browser/iridium-browser
71d9c5ff76e014e6900b825f67389ab0ccd01329
5ee297f53dc7f8e70183031cff62f37b0f19d25f
refs/heads/master
2023-08-03T16:44:16.844552
2023-07-20T15:17:00
2023-07-23T16:09:30
220,016,632
341
40
BSD-3-Clause
2021-08-13T13:54:45
2019-11-06T14:32:31
null
UTF-8
C++
false
false
10,045
cc
/* * Copyright (C) 2020 The Android Open Source Project * * 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 "src/traceconv/trace_to_hprof.h" #include <algorithm> #include <limits> #include <optional> #include <string> #include <unordered_map> #include <unordered_set> #include <vector> #include "perfetto/base/logging.h" #include "perfetto/ext/base/endian.h" #include "perfetto/ext/base/string_utils.h" #include "src/traceconv/utils.h" // Spec // http://hg.openjdk.java.net/jdk6/jdk6/jdk/raw-file/tip/src/share/demo/jvmti/hprof/manual.html#Basic_Type // Parser // https://cs.android.com/android/platform/superproject/+/master:art/tools/ahat/src/main/com/android/ahat/heapdump/Parser.java namespace perfetto { namespace trace_to_text { namespace { constexpr char kHeader[] = "PERFETTO_JAVA_HEAP"; constexpr uint32_t kIdSz = 8; constexpr uint32_t kStackTraceSerialNumber = 1; class BigEndianBuffer { public: void WriteId(uint64_t val) { WriteU8(val); } void WriteU8(uint64_t val) { val = base::HostToBE64(val); Write(reinterpret_cast<char*>(&val), sizeof(uint64_t)); } void WriteU4(uint32_t val) { val = base::HostToBE32(val); Write(reinterpret_cast<char*>(&val), sizeof(uint32_t)); } void SetU4(uint32_t val, size_t pos) { val = base::HostToBE32(val); PERFETTO_CHECK(pos + 4 <= buf_.size()); memcpy(buf_.data() + pos, &val, sizeof(uint32_t)); } // Uncomment when needed // void WriteU2(uint16_t val) { // val = base::HostToBE16(val); // Write(reinterpret_cast<char*>(&val), sizeof(uint16_t)); // } void WriteByte(uint8_t val) { buf_.emplace_back(val); } void Write(const char* val, uint32_t sz) { const char* end = val + sz; while (val < end) { WriteByte(static_cast<uint8_t>(*val)); val++; } } size_t written() const { return buf_.size(); } void Flush(std::ostream* out) const { out->write(buf_.data(), static_cast<std::streamsize>(buf_.size())); } private: std::vector<char> buf_; }; class HprofWriter { public: HprofWriter(std::ostream* output) : output_(output) {} void WriteBuffer(const BigEndianBuffer& buf) { buf.Flush(output_); } void WriteRecord(const uint8_t type, const std::function<void(BigEndianBuffer*)>&& writer) { BigEndianBuffer buf; buf.WriteByte(type); // ts offset buf.WriteU4(0); // size placeholder buf.WriteU4(0); writer(&buf); uint32_t record_sz = static_cast<uint32_t>(buf.written() - 9); buf.SetU4(record_sz, 5); WriteBuffer(buf); } private: std::ostream* output_; }; // A Class from the heap dump. class ClassData { public: explicit ClassData(uint64_t class_name_string_id) : class_name_string_id_(class_name_string_id) {} // Writes a HPROF LOAD_CLASS record for this Class void WriteHprofLoadClass(HprofWriter* writer, uint64_t class_object_id, uint32_t class_serial_number) const { writer->WriteRecord(0x02, [class_object_id, class_serial_number, this](BigEndianBuffer* buf) { buf->WriteU4(class_serial_number); buf->WriteId(class_object_id); buf->WriteU4(kStackTraceSerialNumber); buf->WriteId(class_name_string_id_); }); } private: uint64_t class_name_string_id_; }; // Ingested data from a Java Heap Profile for a name, location pair. // We need to support multiple class datas per pair as name, location is // not unique. Classloader should guarantee uniqueness but is not available // until S. class RawClassData { public: void AddClass(uint64_t id, std::optional<uint64_t> superclass_id) { ids_.push_back(std::make_pair(id, superclass_id)); } void AddTemplate(uint64_t template_id) { template_ids_.push_back(template_id); } // Transforms the raw data into one or more ClassData and adds them to the // parameter map. void ToClassData(std::unordered_map<uint64_t, ClassData>* id_to_class, uint64_t class_name_string_id) const { // TODO(dinoderek) assert the two vectors have same length, iterate on both for (auto it_ids = ids_.begin(); it_ids != ids_.end(); ++it_ids) { // TODO(dinoderek) more data will be needed to write CLASS_DUMP id_to_class->emplace(it_ids->first, ClassData(class_name_string_id)); } } private: // Pair contains class ID and super class ID. std::vector<std::pair<uint64_t, std::optional<uint64_t>>> ids_; // Class id of the template std::vector<uint64_t> template_ids_; }; // The Heap Dump data class HeapDump { public: explicit HeapDump(trace_processor::TraceProcessor* tp) : tp_(tp) {} void Ingest() { IngestClasses(); } void Write(HprofWriter* writer) { WriteStrings(writer); WriteLoadClass(writer); } private: trace_processor::TraceProcessor* tp_; // String IDs start from 1 as 0 appears to be reserved. uint64_t next_string_id_ = 1; // Strings to corresponding String ID std::unordered_map<std::string, uint64_t> string_to_id_; // Type ID to corresponding Class std::unordered_map<uint64_t, ClassData> id_to_class_; // Ingests and processes the class data from the heap dump. void IngestClasses() { // TODO(dinoderek): heap_graph_class does not support pid or ts filtering std::map<std::pair<uint64_t, std::string>, RawClassData> raw_classes; auto it = tp_->ExecuteQuery(R"(SELECT id, IFNULL(deobfuscated_name, name), superclass_id, location FROM heap_graph_class )"); while (it.Next()) { uint64_t id = static_cast<uint64_t>(it.Get(0).AsLong()); std::string raw_dname(it.Get(1).AsString()); std::string dname; bool is_template_class = base::StartsWith(raw_dname, std::string("java.lang.Class<")); if (is_template_class) { dname = raw_dname.substr(17, raw_dname.size() - 18); } else { dname = raw_dname; } uint64_t name_id = IngestString(dname); auto raw_super_id = it.Get(2); std::optional<uint64_t> maybe_super_id = raw_super_id.is_null() ? std::nullopt : std::optional<uint64_t>( static_cast<uint64_t>(raw_super_id.AsLong())); std::string location(it.Get(3).AsString()); auto raw_classes_it = raw_classes.emplace(std::make_pair(name_id, location), RawClassData()) .first; if (is_template_class) { raw_classes_it->second.AddTemplate(id); } else { raw_classes_it->second.AddClass(id, maybe_super_id); } } for (const auto& raw : raw_classes) { auto class_name_string_id = raw.first.first; raw.second.ToClassData(&id_to_class_, class_name_string_id); } } // Ingests the parameter string and returns the HPROF ID for the string. uint64_t IngestString(const std::string& s) { auto maybe_id = string_to_id_.find(s); if (maybe_id != string_to_id_.end()) { return maybe_id->second; } else { auto id = next_string_id_; next_string_id_ += 1; string_to_id_[s] = id; return id; } } // Writes STRING sections to the output void WriteStrings(HprofWriter* writer) { for (const auto& it : string_to_id_) { writer->WriteRecord(0x01, [it](BigEndianBuffer* buf) { buf->WriteId(it.second); // TODO(dinoderek): UTF-8 encoding buf->Write(it.first.c_str(), static_cast<uint32_t>(it.first.length())); }); } } // Writes LOAD CLASS sections to the output void WriteLoadClass(HprofWriter* writer) { uint32_t class_serial_number = 1; for (const auto& it : id_to_class_) { it.second.WriteHprofLoadClass(writer, it.first, class_serial_number); class_serial_number += 1; } } }; void WriteHeaderAndStack(HprofWriter* writer) { BigEndianBuffer header; header.Write(kHeader, sizeof(kHeader)); // Identifier size header.WriteU4(kIdSz); // walltime high (unused) header.WriteU4(0); // walltime low (unused) header.WriteU4(0); writer->WriteBuffer(header); // Add placeholder stack trace (required by the format). writer->WriteRecord(0x05, [](BigEndianBuffer* buf) { buf->WriteU4(kStackTraceSerialNumber); buf->WriteU4(0); buf->WriteU4(0); }); } } // namespace int TraceToHprof(trace_processor::TraceProcessor* tp, std::ostream* output, uint64_t pid, uint64_t ts) { PERFETTO_DCHECK(tp != nullptr && pid != 0 && ts != 0); HprofWriter writer(output); HeapDump dump(tp); dump.Ingest(); WriteHeaderAndStack(&writer); dump.Write(&writer); return 0; } int TraceToHprof(std::istream* input, std::ostream* output, uint64_t pid, std::vector<uint64_t> timestamps) { // TODO: Simplify this for cmdline users. For example, if there is a single // heap graph, use this, and only fail when there is ambiguity. if (pid == 0) { PERFETTO_ELOG("Must specify pid"); return -1; } if (timestamps.size() != 1) { PERFETTO_ELOG("Must specify single timestamp"); return -1; } trace_processor::Config config; std::unique_ptr<trace_processor::TraceProcessor> tp = trace_processor::TraceProcessor::CreateInstance(config); if (!ReadTraceUnfinalized(tp.get(), input)) return false; tp->NotifyEndOfFile(); return TraceToHprof(tp.get(), output, pid, timestamps[0]); } } // namespace trace_to_text } // namespace perfetto
[ "jengelh@inai.de" ]
jengelh@inai.de
edebc3fbfce58a18c82f2258e78081051896ce76
8a05dd92fa6c25c08c4a868ca48099d43a54a27d
/src/texture.hpp
6e5893588c1e27f570c3c97d92a626ee4b0391ff
[]
no_license
franco-cheung/gProject
2c6264586e9e5c29610497eefc7fadec214cf707
3b73e7e50b3008b6512280cda56094569a00a002
refs/heads/master
2016-08-11T05:13:05.456524
2015-10-08T01:00:24
2015-10-08T01:00:24
43,853,327
0
0
null
null
null
null
UTF-8
C++
false
false
466
hpp
#ifndef CS488_TEXTURE_HPP #define CS488_TEXTURE_HPP #include <GL/glu.h> #include <iostream> #include "./ImageMagick/include/ImageMagick-6/Magick++.h" #include <QOpenGLFunctions_3_3_Core> class Texture { public: Texture(GLenum TextureTarget, const std::string& FileName); bool Load(); void Bind(GLenum TextureUnit); private: std::string m_fileName; GLenum m_textureTarget; GLuint m_textureObj; Magick::Image m_image; Magick::Blob m_blob; }; #endif
[ "franco_59@msn.com" ]
franco_59@msn.com
271b386c7befbf761d1c669e9ff09dda438f141a
90c3a3f2882fe0c23b50217d48ab2d2e89efc45c
/0062.不同路径/0062-不同路径.cpp
6ac9477a50944e615703a3a0022a95aac1d95515
[]
no_license
MIABLACKLL/Leetcode
1639350ab6edaf5a0a0e81d2bb087a70c8df9198
a7fe43e5fe9ecc3b2fb2a96e27adbfbd1dde93d5
refs/heads/master
2020-04-06T21:38:41.737624
2019-09-03T05:37:30
2019-09-03T05:37:30
157,809,307
1
0
null
null
null
null
UTF-8
C++
false
false
248
cpp
class Solution { public: int uniquePaths(int m, int n) { long step = m+n-2; long result=1; int min = m>n?n:m; for(int i=1;i<min;i++) result=(result*step--)/i; return result; } };
[ "noreply@github.com" ]
noreply@github.com
c9ea140d015f8ad2a1dc5f2558dc6564740304a6
b5557b07a4c7b946bba61a597c3f108d4e18df3f
/6.1/barndp.cpp
1ed984af213a17f2b69e2ce1f587ccbf3e4a9f80
[]
no_license
ZeroNerodaHero/USACO-Training-Gateway
831d8711f09eab09ce325d0f4b4beab5e091b94c
2c6bbe9cc4a90ebcda06bcb8b8c61ea8a0664188
refs/heads/master
2022-04-09T19:06:46.239649
2020-02-17T03:10:33
2020-02-17T03:10:33
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,777
cpp
/* ID: billyz43 PROG: rectbarn LANG: C++11 */ #include <iostream> #include <fstream> #include <algorithm> #include <stack> #include <cstring> #include <unordered_map> #include <list> #define MAXN 100005 using namespace std; std::ifstream in("rectbarn.in"); std::ofstream out("rectbarn.out"); int R,C,P; bool g[3001][3001]; int ch[3002];; int l[3002],r[3002]; int marea = 0; void print(){ for(int i = 1; i <= C; i++) cout << ch[i] << ' '; cout << endl; for(int i = 1; i <= C; i++) cout << l[i] << ' '; cout << endl; for(int i = 1; i <= C; i++) cout << r[i] << ' '; cout << endl; } int main(){ in >> R>>C>>P; for(int i = 0; i < P; i++){ int a, b; in >> a >> b; g[a][b] = 1; } for(int i = 1; i <= R; i++){ int w = 0; for(int j = 1; j <= C; j++){ if(g[i][j]){ ch[j] = 0; l[j] = r[j] = 0; w = 0; } else{ ch[j]++; w++; if(ch[j] == 1){ l[j] = w; } else{ l[j] = min(l[j],w); } } } w = 0; for(int j = C; j >= 1; j--){ if(g[i][j]){ w = 0; } else{ w++; if(ch[j] == 1){ r[j] = w; } else{ r[j] = min(r[j],w); } } } // print(); for(int j = 1; j <= C; j++){ int area = ch[j] * (l[j] + r[j] - 1); // cout << area << ' '; marea = max(marea,area); } // cout << endl; // cout << endl; } out << marea << endl; }
[ "billyz404meter@gmail.com" ]
billyz404meter@gmail.com
fab8a9b352eb3238e6dc1fde4d3f5a0b57c99737
b09200ab4d26b5379f6fd54822b0c9a3cf7b5b6e
/lib/tgchat/ext/td/tdutils/td/utils/MapNode.h
3fe99f0af48b67910b4215a5c6a71cfd97a4bb01
[ "JSON", "LicenseRef-scancode-unknown-license-reference", "BSL-1.0", "MIT" ]
permissive
d99kris/nchat
b1dec017162c41add3e549c6b54c4bc4d667cd78
8a0a55f636b8b127d41c94ae72d19428dd439acb
refs/heads/master
2023-08-28T13:17:18.735491
2023-07-01T03:10:03
2023-07-01T03:10:03
171,477,951
241
24
MIT
2023-08-03T21:10:12
2019-02-19T13:24:47
C++
UTF-8
C++
false
false
3,679
h
// // Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2023 // // 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 "td/utils/common.h" #include "td/utils/HashTableUtils.h" #include <new> #include <type_traits> #include <utility> namespace td { template <class KeyT, class ValueT, class Enable = void> struct MapNode { using first_type = KeyT; using second_type = ValueT; using public_key_type = KeyT; using public_type = MapNode; KeyT first{}; union { ValueT second; }; const KeyT &key() const { return first; } MapNode &get_public() { return *this; } const MapNode &get_public() const { return *this; } MapNode() { } MapNode(KeyT key, ValueT value) : first(std::move(key)) { new (&second) ValueT(std::move(value)); DCHECK(!empty()); } MapNode(const MapNode &other) = delete; MapNode &operator=(const MapNode &other) = delete; MapNode(MapNode &&other) noexcept { *this = std::move(other); } void operator=(MapNode &&other) noexcept { DCHECK(empty()); DCHECK(!other.empty()); first = std::move(other.first); other.first = KeyT(); new (&second) ValueT(std::move(other.second)); other.second.~ValueT(); } ~MapNode() { if (!empty()) { second.~ValueT(); } } void copy_from(const MapNode &other) { DCHECK(empty()); DCHECK(!other.empty()); first = other.first; new (&second) ValueT(other.second); } bool empty() const { return is_hash_table_key_empty(first); } void clear() { DCHECK(!empty()); first = KeyT(); second.~ValueT(); DCHECK(empty()); } template <class... ArgsT> void emplace(KeyT key, ArgsT &&...args) { DCHECK(empty()); first = std::move(key); new (&second) ValueT(std::forward<ArgsT>(args)...); DCHECK(!empty()); } }; template <class KeyT, class ValueT> struct MapNode<KeyT, ValueT, typename std::enable_if_t<(sizeof(KeyT) + sizeof(ValueT) > 28 * sizeof(void *))>> { struct Impl { using first_type = KeyT; using second_type = ValueT; KeyT first{}; union { ValueT second; }; template <class InputKeyT, class... ArgsT> Impl(InputKeyT &&key, ArgsT &&...args) : first(std::forward<InputKeyT>(key)) { new (&second) ValueT(std::forward<ArgsT>(args)...); DCHECK(!is_hash_table_key_empty(first)); } Impl(const Impl &other) = delete; Impl &operator=(const Impl &other) = delete; Impl(Impl &&other) = delete; void operator=(Impl &&other) = delete; ~Impl() { second.~ValueT(); } }; using first_type = KeyT; using second_type = ValueT; using public_key_type = KeyT; using public_type = Impl; unique_ptr<Impl> impl_; const KeyT &key() const { DCHECK(!empty()); return impl_->first; } Impl &get_public() { return *impl_; } const Impl &get_public() const { return *impl_; } MapNode() { } MapNode(KeyT key, ValueT value) : impl_(td::make_unique<Impl>(std::move(key), std::move(value))) { } void copy_from(const MapNode &other) { DCHECK(empty()); DCHECK(!other.empty()); impl_ = td::make_unique<Impl>(other.impl_->first, other.impl_->second); } bool empty() const { return impl_ == nullptr; } void clear() { DCHECK(!empty()); impl_ = nullptr; } template <class... ArgsT> void emplace(KeyT key, ArgsT &&...args) { DCHECK(empty()); impl_ = td::make_unique<Impl>(std::move(key), std::forward<ArgsT>(args)...); } }; } // namespace td
[ "kristofer.berggren@gmail.com" ]
kristofer.berggren@gmail.com
156fd6c1679055fb350269ffa9dee721a0bf5696
476eda0aa1b1ecc70079c8f147d49c11e62f70fc
/QueryServer.cpp
00d78fec52c0dcdda5889532516adb5cde6f9b6b
[]
no_license
kaifeiyucha/CorrectWord_Chinese
a5c629237c98b1a76a65993becfd7383b86ded81
39f5c6c4f09dd12a23f837666ab9e0ceacc7c4cf
refs/heads/master
2021-05-15T01:25:24.242111
2018-01-02T01:55:08
2018-01-02T01:55:08
23,151,097
0
0
null
null
null
null
UTF-8
C++
false
false
1,037
cpp
#include "QueryServer.h" #include <string> using namespace std; using namespace std::placeholders; QueryServer::QueryServer(const InetAddress &addr, const string &filename) :server_(addr), query_(filename), pool_(100,4) { server_.setConnection(bind(&QueryServer::onConnection, this, _1)); server_.setMessage(bind(&QueryServer::onMessage, this, _1)); } void QueryServer::onConnection(const TcpConnectionPtr &conn){ conn->send("please input word:\r\n"); } void QueryServer::onMessage(const TcpConnectionPtr &conn){ string word(conn->receive()); pool_.addTask(bind(&QueryServer::runQuery, this, word, conn)); } void QueryServer::runQuery(const string &s, const TcpConnectionPtr &conn){ string word = s; if(word.substr(word.size()-2, 2)=="\r\n"){ word.erase(word.size()-1); word.erase(word.size()-1); } string res = query_.run_query(word); conn->send(res + "\r\n"); } void QueryServer::start(){ pool_.start(); server_.start(); }
[ "liyuzhuoc_code@163.com" ]
liyuzhuoc_code@163.com
c1f2308a82bd73446d1b6b5bb77f991678022a03
46638da4eff385f1258bb809c8a41704a64378f9
/main.cpp
38e7a8c87a758e6ef95ccc689a891607c04cd19f
[ "OpenSSL", "MIT", "LicenseRef-scancode-openssl", "LicenseRef-scancode-ssleay-windows" ]
permissive
justincjack/HTTPieces
7d4594dbfb6a3e07e5afb366b0b95d7f015bb5ca
ff044c9618e759e0ed45c6e903aabdb63b111a64
refs/heads/master
2022-02-01T19:08:23.223865
2019-08-10T20:21:09
2019-08-10T20:21:09
196,218,425
0
0
null
null
null
null
UTF-8
C++
false
false
4,111
cpp
/* * HTTPieces is a multi-threaded HTTP(S) server build to server the * CyberOnline software platform. * * HTTPieces makes collaboration easier by being able to * have the server compile the HTML document before serves the request * by reading special INCLUDE comment directives in the source code and * including the specified files into the served documents. * * For example: * * "Bob" and "Alice" are working on an HTML project. Bob is tasked with * creating the main page and Alice is tasked with designing a certain dialog * window that pops up when Bob's javascript calls a certain function. To * keep the project clean, Bob puts a directive into his code telling HTTPieces * to load Alice's work into his own: * * <!-- include: alices_popup.html --> * * When HTTPieces serves the request, it will replace the directive with the * contents of Alice's files making all the functions available to Bob's code. * * * * * * */ #include "main.h" //#include <stdint.h> //#include "md5.h" //#include <arpa/inet.h> //#include <ifaddrs.h> //#include <net/if.h> /* * Notes: * * Handle command-line directives * Check if we're already running. * Load settings. * Create initial thread pool. * Start server(s) * Handle Signals * Clean up * */ int main(int argc, char **argv) { /* Set up signaling semaphores */ sem_t *shutdown_semaphore; PCERTIFICATE_INFO certs = 0; int i = 0, r = 0; int okay_to_run = 1; SETTINGS s("/home/justin/httpieces.conf"); char misc[100]; /* Semaphore signalled when a SIGNAL comes in */ shutdown_semaphore = configure_shutdown_signals( &okay_to_run ); if (shutdown_semaphore == HTP_SIG_FAILURE) { htp_error("Failed to configure execution control semaphore!\n"); return EXIT_FAILURE; } printf("HTTPieces PID: %zu\n", getpid()); /******* Testing settings here ********/ for (i = 0; s.listener(i); i++) { if (s.listener(i)->http_cors.count() > 0) { printf("HTTP CORS domains:\n"); printf("------------------\n"); for (r = 0; s.listener(i)->http_cors.index(r); r++) { printf("%s\n", s.listener(i)->http_cors.index(r)->val()); } printf("\n\n"); } else { printf("No HTTP CORS policy for this listener.\n"); } } printf("Press [ENTER] when debugger is attached."); do { misc[0] = getchar(); } while (misc[0] != 0x0a && misc[0] != 0x0d); printf("Breakpoint...\n"); printf("\n"); return 0; while (okay_to_run) { /* If we're restarting... * * (Lots of work to do here) * */ if (shutdown_all_listeners() == HTPCM_ERROR_STOP_LISTENERS) { htp_error("Error shutting down network listeners!\n\n"); return EXIT_FAILURE; } /* Loop through listener types creating them *****************************************************************/ for (i = 0; s.listener(i); i++) { r = start_listening(s.listener(i)); if (r != HTPCM_SUCCESS) { error("Failed to launch listener named \"%s\"\n", ((s.listener(i)->name.length() > 0)?"<< Unnamed >>":s.listener(i)->name.val())); } } /*** End listener creation loop *****************************************************************************/ /* Wait for the signal to shut down or restart */ htp_debug(1, "**** Waiting on CTRL-C to be pressed, or a signal ****\n"); sem_wait(shutdown_semaphore); } /* Shut down all threads in a connection info list */ if (shutdown_all_listeners() == HTPCM_ERROR_STOP_LISTENERS) { htp_error("Error shutting down network listeners!\n\n"); return EXIT_FAILURE; } htp_debug(3, "Shutdown all listeners!\n"); /* Clean up and exit */ sem_destroy(shutdown_semaphore); return (EXIT_SUCCESS); }
[ "justin@justinjack.com" ]
justin@justinjack.com
76d8f0e3635e571d293e16bfe4c95f2e3a2ed0bd
6dfeeb8049e717caf575c11e2f7b9ceb3b9d9d09
/Source/Ch17/set.cpp
a917353bd58cc74f223fd4f1f836c8670dda8e6a
[]
no_license
Kwooley/CS-V13
b91620a0b9eaa21ee57a907700fea8e40feaa53c
b8d5672477576a4796a64d09e1bb877e2abefc91
refs/heads/master
2023-04-28T09:02:09.049312
2021-05-20T04:27:15
2021-05-20T04:27:15
288,804,443
2
6
null
null
null
null
UTF-8
C++
false
false
2,148
cpp
// This is the implementation file set.cpp. // This is the implementation of the class Set. #include <iostream> #include "listtools.h" #include "set.h" using std::cout; using std::endl; using LinkedListSavitch::Node; using LinkedListSavitch::search; using LinkedListSavitch::headInsert; namespace SetSavitch { template<class T> Set<T>::Set() { head = NULL; } template<class T> Set<T>::~Set() { Node<T> *toDelete = head; while (head != NULL) { head = head->getLink( ); delete toDelete; toDelete = head; } } template<class T> bool Set<T>::contains(T target) const { Node<T>* result = search(head, target); if (result == NULL) return false; else return true; } template<class T> void Set<T>::output() { Node<T> *iterator = head; while (iterator != NULL) { cout << iterator->getData( ) << " "; iterator = iterator->getLink( ); } cout << endl; } template<class T> void Set<T>::add(T item) { if (search(head, item)==NULL) { // Only add the target if it's not in the list headInsert(head, item); } } template<class T> Set<T>* Set<T>::setUnion(const Set<T>& otherSet) { Set<T> *unionSet = new Set<T>(); Node<T>* iterator = head; while (iterator != NULL) { unionSet->add(iterator->getData( )); iterator = iterator->getLink( ); } iterator = otherSet.head; while (iterator != NULL) { unionSet->add(iterator->getData( )); iterator = iterator->getLink( ); } return unionSet; } template<class T> Set<T>* Set<T>::setIntersection(const Set<T>& otherSet) { Set<T> *interSet = new Set<T>(); Node<T>* iterator = head; while (iterator != NULL) { if (otherSet.contains(iterator->getData( ))) { interSet->add(iterator->getData( )); } iterator = iterator->getLink( ); } return interSet; } } // SetSavitch
[ "kwooler@gmail.com" ]
kwooler@gmail.com
31914a2cb852e0660b9a10fa79cf18549fcfe35f
8a7ae4d828f76878ab04baa732c53076f37fc077
/Engine/Graphics/RendererAPI.cpp
41dc19b97eaeb843d7a2d42a67d0873c010d3e21
[ "MIT" ]
permissive
jsj2008/Neon-Engine
cee0b7212ff92dad72d073eb9d9b7518bc68203c
5c8880222dd3b5fd3cda97ab54485d852d537f6e
refs/heads/master
2020-09-19T21:45:43.060371
2019-07-31T06:21:17
2019-07-31T06:21:17
224,305,450
0
1
MIT
2019-11-26T23:36:30
2019-11-26T23:36:29
null
UTF-8
C++
false
false
452
cpp
#include "stdafx.h" #include "RendererAPI.h" #include "OpenGL/OpenGLRendererAPI.h" #include "Core/Log.h" namespace Neon { namespace Graphics { GraphicsAPI RendererAPI::m_RendererAPI = GraphicsAPI::OpenGL; std::shared_ptr<RendererAPI> RendererAPI::Create() { switch (m_RendererAPI) { case None: Log::Warn("No Graphics API set!"); break; case OpenGL: return std::make_shared<OpenGLRendererAPI>(); } return nullptr; } } }
[ "geoster3d@gmail.com" ]
geoster3d@gmail.com
7313d4331625d63e267b1f286350ec1e592363bc
33546aee6429d5b8f19a02e14699b6ebb5b34af8
/src/ui/gfx/image/image_skia_unittest.cc
15337a863a9d34dfffbd05bf44e6999065057a0d
[ "BSD-3-Clause" ]
permissive
mYoda/CustomBrs
bdbf992c0db0bf2fd1821fa1fd0120ac77ffc011
493fc461eb7ea7321c51c6831fe737cfb21fdd3e
refs/heads/master
2022-11-22T09:11:37.873894
2022-11-10T10:02:49
2022-11-10T10:02:49
24,951,822
0
1
null
2022-11-02T14:39:34
2014-10-08T17:22:30
C++
UTF-8
C++
false
false
18,143
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 "ui/gfx/image/image_skia.h" #include "base/command_line.h" #include "base/logging.h" #include "base/threading/simple_thread.h" #include "testing/gtest/include/gtest/gtest.h" #include "third_party/skia/include/core/SkBitmap.h" #include "ui/gfx/image/image_skia_rep.h" #include "ui/gfx/image/image_skia_source.h" #include "ui/gfx/size.h" #include "ui/gfx/switches.h" // Duplicated from base/threading/non_thread_safe.h so that we can be // good citizens there and undef the macro. #if (!defined(NDEBUG) || defined(DCHECK_ALWAYS_ON)) #define ENABLE_NON_THREAD_SAFE 1 #else #define ENABLE_NON_THREAD_SAFE 0 #endif namespace gfx { namespace { class FixedSource : public ImageSkiaSource { public: FixedSource(const ImageSkiaRep& image) : image_(image) {} virtual ~FixedSource() { } virtual ImageSkiaRep GetImageForScale(float scale) OVERRIDE { return image_; } private: ImageSkiaRep image_; DISALLOW_COPY_AND_ASSIGN(FixedSource); }; class DynamicSource : public ImageSkiaSource { public: DynamicSource(const gfx::Size& size) : size_(size), last_requested_scale_(0.0f) {} virtual ~DynamicSource() { } virtual ImageSkiaRep GetImageForScale(float scale) OVERRIDE { last_requested_scale_ = scale; return gfx::ImageSkiaRep(size_, scale); } float GetLastRequestedScaleAndReset() { float result = last_requested_scale_; last_requested_scale_ = 0.0f; return result; } private: gfx::Size size_; float last_requested_scale_; DISALLOW_COPY_AND_ASSIGN(DynamicSource); }; class NullSource: public ImageSkiaSource { public: NullSource() { } virtual ~NullSource() { } virtual ImageSkiaRep GetImageForScale(float scale) OVERRIDE { return gfx::ImageSkiaRep(); } private: DISALLOW_COPY_AND_ASSIGN(NullSource); }; } // namespace namespace test { class TestOnThread : public base::SimpleThread { public: explicit TestOnThread(ImageSkia* image_skia) : SimpleThread("image_skia_on_thread"), image_skia_(image_skia), can_read_(false), can_modify_(false) { } virtual void Run() OVERRIDE { can_read_ = image_skia_->CanRead(); can_modify_ = image_skia_->CanModify(); if (can_read_) image_skia_->image_reps(); } void StartAndJoin() { Start(); Join(); } bool can_read() const { return can_read_; } bool can_modify() const { return can_modify_; } private: ImageSkia* image_skia_; bool can_read_; bool can_modify_; DISALLOW_COPY_AND_ASSIGN(TestOnThread); }; } // namespace test class ImageSkiaTest : public testing::Test { public: ImageSkiaTest() { // In the test, we assume that we support 1.0f and 2.0f DSFs. old_scales_ = ImageSkia::GetSupportedScales(); // Sets the list of scale factors supported by resource bundle. std::vector<float> supported_scales; supported_scales.push_back(1.0f); supported_scales.push_back(2.0f); ImageSkia::SetSupportedScales(supported_scales); } virtual ~ImageSkiaTest() { ImageSkia::SetSupportedScales(old_scales_); } private: std::vector<float> old_scales_; DISALLOW_COPY_AND_ASSIGN(ImageSkiaTest); }; TEST_F(ImageSkiaTest, FixedSource) { ImageSkiaRep image(Size(100, 200), 1.0f); ImageSkia image_skia(new FixedSource(image), Size(100, 200)); EXPECT_EQ(0U, image_skia.image_reps().size()); const ImageSkiaRep& result_100p = image_skia.GetRepresentation(1.0f); EXPECT_EQ(100, result_100p.GetWidth()); EXPECT_EQ(200, result_100p.GetHeight()); EXPECT_EQ(1.0f, result_100p.scale()); EXPECT_EQ(1U, image_skia.image_reps().size()); const ImageSkiaRep& result_200p = image_skia.GetRepresentation(2.0f); EXPECT_EQ(100, result_200p.GetWidth()); EXPECT_EQ(200, result_200p.GetHeight()); EXPECT_EQ(100, result_200p.pixel_width()); EXPECT_EQ(200, result_200p.pixel_height()); EXPECT_EQ(1.0f, result_200p.scale()); EXPECT_EQ(1U, image_skia.image_reps().size()); // Get the representation again and make sure it doesn't // generate new image skia rep. image_skia.GetRepresentation(1.0f); image_skia.GetRepresentation(2.0f); EXPECT_EQ(1U, image_skia.image_reps().size()); } TEST_F(ImageSkiaTest, DynamicSource) { ImageSkia image_skia(new DynamicSource(Size(100, 200)), Size(100, 200)); EXPECT_EQ(0U, image_skia.image_reps().size()); const ImageSkiaRep& result_100p = image_skia.GetRepresentation(1.0f); EXPECT_EQ(100, result_100p.GetWidth()); EXPECT_EQ(200, result_100p.GetHeight()); EXPECT_EQ(1.0f, result_100p.scale()); EXPECT_EQ(1U, image_skia.image_reps().size()); const ImageSkiaRep& result_200p = image_skia.GetRepresentation(2.0f); EXPECT_EQ(100, result_200p.GetWidth()); EXPECT_EQ(200, result_200p.GetHeight()); EXPECT_EQ(200, result_200p.pixel_width()); EXPECT_EQ(400, result_200p.pixel_height()); EXPECT_EQ(2.0f, result_200p.scale()); EXPECT_EQ(2U, image_skia.image_reps().size()); // Get the representation again and make sure it doesn't // generate new image skia rep. image_skia.GetRepresentation(1.0f); EXPECT_EQ(2U, image_skia.image_reps().size()); image_skia.GetRepresentation(2.0f); EXPECT_EQ(2U, image_skia.image_reps().size()); } // Tests that image_reps returns all of the representations in the // image when there are multiple representations for a scale factor. // This currently is the case with ImageLoader::LoadImages. TEST_F(ImageSkiaTest, ManyRepsPerScaleFactor) { const int kSmallIcon1x = 16; const int kSmallIcon2x = 32; const int kLargeIcon1x = 32; ImageSkia image(new NullSource(), gfx::Size(kSmallIcon1x, kSmallIcon1x)); // Simulate a source which loads images on a delay. Upon // GetImageForScaleFactor, it immediately returns null and starts loading // image reps slowly. image.GetRepresentation(1.0f); image.GetRepresentation(2.0f); // After a lengthy amount of simulated time, finally loaded image reps. image.AddRepresentation(ImageSkiaRep( gfx::Size(kSmallIcon1x, kSmallIcon1x), 1.0f)); image.AddRepresentation(ImageSkiaRep( gfx::Size(kSmallIcon2x, kSmallIcon2x), 2.0f)); image.AddRepresentation(ImageSkiaRep( gfx::Size(kLargeIcon1x, kLargeIcon1x), 1.0f)); std::vector<ImageSkiaRep> image_reps = image.image_reps(); EXPECT_EQ(3u, image_reps.size()); int num_1x = 0; int num_2x = 0; for (size_t i = 0; i < image_reps.size(); ++i) { if (image_reps[i].scale() == 1.0f) num_1x++; else if (image_reps[i].scale() == 2.0f) num_2x++; } EXPECT_EQ(2, num_1x); EXPECT_EQ(1, num_2x); } TEST_F(ImageSkiaTest, GetBitmap) { ImageSkia image_skia(new DynamicSource(Size(100, 200)), Size(100, 200)); const SkBitmap* bitmap = image_skia.bitmap(); EXPECT_NE(static_cast<SkBitmap*>(NULL), bitmap); EXPECT_FALSE(bitmap->isNull()); } TEST_F(ImageSkiaTest, GetBitmapFromEmpty) { // Create an image with 1 representation and remove it so the ImageSkiaStorage // is left with no representations. ImageSkia empty_image(ImageSkiaRep(Size(100, 200), 1.0f)); ImageSkia empty_image_copy(empty_image); empty_image.RemoveRepresentation(1.0f); // Check that ImageSkia::bitmap() still returns a valid SkBitmap pointer for // the image and all its copies. const SkBitmap* bitmap = empty_image_copy.bitmap(); ASSERT_NE(static_cast<SkBitmap*>(NULL), bitmap); EXPECT_TRUE(bitmap->isNull()); EXPECT_TRUE(bitmap->empty()); } TEST_F(ImageSkiaTest, BackedBySameObjectAs) { // Null images should all be backed by the same object (NULL). ImageSkia image; ImageSkia unrelated; EXPECT_TRUE(image.BackedBySameObjectAs(unrelated)); image.AddRepresentation(gfx::ImageSkiaRep(gfx::Size(10, 10), 1.0f)); ImageSkia copy = image; copy.AddRepresentation(gfx::ImageSkiaRep(gfx::Size(10, 10), 2.0f)); unrelated.AddRepresentation(gfx::ImageSkiaRep(gfx::Size(10, 10), 1.0f)); EXPECT_TRUE(image.BackedBySameObjectAs(copy)); EXPECT_FALSE(image.BackedBySameObjectAs(unrelated)); EXPECT_FALSE(copy.BackedBySameObjectAs(unrelated)); } #if ENABLE_NON_THREAD_SAFE TEST_F(ImageSkiaTest, EmptyOnThreadTest) { ImageSkia empty; test::TestOnThread empty_on_thread(&empty); empty_on_thread.Start(); empty_on_thread.Join(); EXPECT_TRUE(empty_on_thread.can_read()); EXPECT_TRUE(empty_on_thread.can_modify()); } TEST_F(ImageSkiaTest, StaticOnThreadTest) { ImageSkia image(ImageSkiaRep(Size(100, 200), 1.0f)); EXPECT_FALSE(image.IsThreadSafe()); test::TestOnThread image_on_thread(&image); // an image that was never accessed on this thread can be // read by other thread. image_on_thread.StartAndJoin(); EXPECT_TRUE(image_on_thread.can_read()); EXPECT_TRUE(image_on_thread.can_modify()); EXPECT_FALSE(image.CanRead()); EXPECT_FALSE(image.CanModify()); image.DetachStorageFromThread(); // An image is accessed by this thread, // so other thread cannot read/modify it. image.image_reps(); test::TestOnThread image_on_thread2(&image); image_on_thread2.StartAndJoin(); EXPECT_FALSE(image_on_thread2.can_read()); EXPECT_FALSE(image_on_thread2.can_modify()); EXPECT_TRUE(image.CanRead()); EXPECT_TRUE(image.CanModify()); image.DetachStorageFromThread(); scoped_ptr<ImageSkia> deep_copy(image.DeepCopy()); EXPECT_FALSE(deep_copy->IsThreadSafe()); test::TestOnThread deepcopy_on_thread(deep_copy.get()); deepcopy_on_thread.StartAndJoin(); EXPECT_TRUE(deepcopy_on_thread.can_read()); EXPECT_TRUE(deepcopy_on_thread.can_modify()); EXPECT_FALSE(deep_copy->CanRead()); EXPECT_FALSE(deep_copy->CanModify()); scoped_ptr<ImageSkia> deep_copy2(image.DeepCopy()); EXPECT_EQ(1U, deep_copy2->image_reps().size()); // Access it from current thread so that it can't be // accessed from another thread. deep_copy2->image_reps(); EXPECT_FALSE(deep_copy2->IsThreadSafe()); test::TestOnThread deepcopy2_on_thread(deep_copy2.get()); deepcopy2_on_thread.StartAndJoin(); EXPECT_FALSE(deepcopy2_on_thread.can_read()); EXPECT_FALSE(deepcopy2_on_thread.can_modify()); EXPECT_TRUE(deep_copy2->CanRead()); EXPECT_TRUE(deep_copy2->CanModify()); image.DetachStorageFromThread(); image.SetReadOnly(); // A read-only ImageSkia with no source is thread safe. EXPECT_TRUE(image.IsThreadSafe()); test::TestOnThread readonly_on_thread(&image); readonly_on_thread.StartAndJoin(); EXPECT_TRUE(readonly_on_thread.can_read()); EXPECT_FALSE(readonly_on_thread.can_modify()); EXPECT_TRUE(image.CanRead()); EXPECT_FALSE(image.CanModify()); image.DetachStorageFromThread(); image.MakeThreadSafe(); EXPECT_TRUE(image.IsThreadSafe()); test::TestOnThread threadsafe_on_thread(&image); threadsafe_on_thread.StartAndJoin(); EXPECT_TRUE(threadsafe_on_thread.can_read()); EXPECT_FALSE(threadsafe_on_thread.can_modify()); EXPECT_TRUE(image.CanRead()); EXPECT_FALSE(image.CanModify()); } TEST_F(ImageSkiaTest, SourceOnThreadTest) { ImageSkia image(new DynamicSource(Size(100, 200)), Size(100, 200)); EXPECT_FALSE(image.IsThreadSafe()); test::TestOnThread image_on_thread(&image); image_on_thread.StartAndJoin(); // an image that was never accessed on this thread can be // read by other thread. EXPECT_TRUE(image_on_thread.can_read()); EXPECT_TRUE(image_on_thread.can_modify()); EXPECT_FALSE(image.CanRead()); EXPECT_FALSE(image.CanModify()); image.DetachStorageFromThread(); // An image is accessed by this thread, // so other thread cannot read/modify it. image.image_reps(); test::TestOnThread image_on_thread2(&image); image_on_thread2.StartAndJoin(); EXPECT_FALSE(image_on_thread2.can_read()); EXPECT_FALSE(image_on_thread2.can_modify()); EXPECT_TRUE(image.CanRead()); EXPECT_TRUE(image.CanModify()); image.DetachStorageFromThread(); image.SetReadOnly(); EXPECT_FALSE(image.IsThreadSafe()); test::TestOnThread readonly_on_thread(&image); readonly_on_thread.StartAndJoin(); EXPECT_TRUE(readonly_on_thread.can_read()); EXPECT_FALSE(readonly_on_thread.can_modify()); EXPECT_FALSE(image.CanRead()); EXPECT_FALSE(image.CanModify()); image.DetachStorageFromThread(); image.MakeThreadSafe(); EXPECT_TRUE(image.IsThreadSafe()); // Check if image reps are generated for supported scale factors. EXPECT_EQ(ImageSkia::GetSupportedScales().size(), image.image_reps().size()); test::TestOnThread threadsafe_on_thread(&image); threadsafe_on_thread.StartAndJoin(); EXPECT_TRUE(threadsafe_on_thread.can_read()); EXPECT_FALSE(threadsafe_on_thread.can_modify()); EXPECT_TRUE(image.CanRead()); EXPECT_FALSE(image.CanModify()); } #endif // ENABLE_NON_THREAD_SAFE // Just in case we ever get lumped together with other compilation units. #undef ENABLE_NON_THREAD_SAFE TEST_F(ImageSkiaTest, Unscaled) { SkBitmap bitmap; // An ImageSkia created with 1x bitmap is unscaled. ImageSkia image_skia = ImageSkia::CreateFrom1xBitmap(bitmap); EXPECT_TRUE(image_skia.GetRepresentation(1.0f).unscaled()); ImageSkiaRep rep_2x(Size(100, 100), 2.0f); // When reps for other scales are added, the unscaled image // becomes scaled. image_skia.AddRepresentation(rep_2x); EXPECT_FALSE(image_skia.GetRepresentation(1.0f).unscaled()); EXPECT_FALSE(image_skia.GetRepresentation(2.0f).unscaled()); } TEST_F(ImageSkiaTest, ArbitraryScaleFactor) { base::CommandLine::ForCurrentProcess()->AppendSwitch( switches::kAllowArbitraryScaleFactorInImageSkia); // Do not test if the ImageSkia doesn't support arbitrary scale factors. if (!ImageSkia::IsDSFScalingInImageSkiaEnabled()) return; // source is owned by |image| DynamicSource* source = new DynamicSource(Size(100, 200)); ImageSkia image(source, gfx::Size(100, 200)); image.GetRepresentation(1.5f); EXPECT_EQ(2.0f, source->GetLastRequestedScaleAndReset()); std::vector<ImageSkiaRep> image_reps = image.image_reps(); EXPECT_EQ(2u, image_reps.size()); std::vector<float> scale_factors; for (size_t i = 0; i < image_reps.size(); ++i) { scale_factors.push_back(image_reps[i].scale()); } std::sort(scale_factors.begin(), scale_factors.end()); EXPECT_EQ(1.5f, scale_factors[0]); EXPECT_EQ(2.0f, scale_factors[1]); // Requesting 1.75 scale factor also falls back to 2.0f and rescale. // However, the image already has the 2.0f data, so it won't fetch again. image.GetRepresentation(1.75f); EXPECT_EQ(0.0f, source->GetLastRequestedScaleAndReset()); image_reps = image.image_reps(); EXPECT_EQ(3u, image_reps.size()); scale_factors.clear(); for (size_t i = 0; i < image_reps.size(); ++i) { scale_factors.push_back(image_reps[i].scale()); } std::sort(scale_factors.begin(), scale_factors.end()); EXPECT_EQ(1.5f, scale_factors[0]); EXPECT_EQ(1.75f, scale_factors[1]); EXPECT_EQ(2.0f, scale_factors[2]); // 1.25 is falled back to 1.0. image.GetRepresentation(1.25f); EXPECT_EQ(1.0f, source->GetLastRequestedScaleAndReset()); image_reps = image.image_reps(); EXPECT_EQ(5u, image_reps.size()); // Scale factor less than 1.0f will be falled back to 1.0f image.GetRepresentation(0.75f); EXPECT_EQ(0.0f, source->GetLastRequestedScaleAndReset()); image_reps = image.image_reps(); EXPECT_EQ(6u, image_reps.size()); scale_factors.clear(); for (size_t i = 0; i < image_reps.size(); ++i) { scale_factors.push_back(image_reps[i].scale()); } std::sort(scale_factors.begin(), scale_factors.end()); EXPECT_EQ(0.75f, scale_factors[0]); EXPECT_EQ(1.0f, scale_factors[1]); EXPECT_EQ(1.25f, scale_factors[2]); EXPECT_EQ(1.5f, scale_factors[3]); EXPECT_EQ(1.75f, scale_factors[4]); EXPECT_EQ(2.0f, scale_factors[5]); // Scale factor greater than 2.0f is falled back to 2.0f because it's not // supported. image.GetRepresentation(3.0f); EXPECT_EQ(0.0f, source->GetLastRequestedScaleAndReset()); image_reps = image.image_reps(); EXPECT_EQ(7u, image_reps.size()); } TEST_F(ImageSkiaTest, ArbitraryScaleFactorWithMissingResource) { base::CommandLine::ForCurrentProcess()->AppendSwitch( switches::kAllowArbitraryScaleFactorInImageSkia); // Do not test if the ImageSkia doesn't support arbitrary scale factors. if (!ImageSkia::IsDSFScalingInImageSkiaEnabled()) return; ImageSkia image(new FixedSource( ImageSkiaRep(Size(100, 200), 1.0f)), Size(100, 200)); // Requesting 1.5f -- falls back to 2.0f, but couldn't find. It should // look up 1.0f and then rescale it. const ImageSkiaRep& rep = image.GetRepresentation(1.5f); EXPECT_EQ(1.5f, rep.scale()); EXPECT_EQ(2U, image.image_reps().size()); EXPECT_EQ(1.0f, image.image_reps()[0].scale()); EXPECT_EQ(1.5f, image.image_reps()[1].scale()); } TEST_F(ImageSkiaTest, UnscaledImageForArbitraryScaleFactor) { base::CommandLine::ForCurrentProcess()->AppendSwitch( switches::kAllowArbitraryScaleFactorInImageSkia); // Do not test if the ImageSkia doesn't support arbitrary scale factors. if (!ImageSkia::IsDSFScalingInImageSkiaEnabled()) return; // 0.0f means unscaled. ImageSkia image(new FixedSource( ImageSkiaRep(Size(100, 200), 0.0f)), Size(100, 200)); // Requesting 2.0f, which should return 1.0f unscaled image. const ImageSkiaRep& rep = image.GetRepresentation(2.0f); EXPECT_EQ(1.0f, rep.scale()); EXPECT_EQ("100x200", rep.pixel_size().ToString()); EXPECT_TRUE(rep.unscaled()); EXPECT_EQ(1U, image.image_reps().size()); // Same for any other scale factors. const ImageSkiaRep& rep15 = image.GetRepresentation(1.5f); EXPECT_EQ(1.0f, rep15.scale()); EXPECT_EQ("100x200", rep15.pixel_size().ToString()); EXPECT_TRUE(rep15.unscaled()); EXPECT_EQ(1U, image.image_reps().size()); const ImageSkiaRep& rep12 = image.GetRepresentation(1.2f); EXPECT_EQ(1.0f, rep12.scale()); EXPECT_EQ("100x200", rep12.pixel_size().ToString()); EXPECT_TRUE(rep12.unscaled()); EXPECT_EQ(1U, image.image_reps().size()); } } // namespace gfx
[ "nechayukanton@gmail.com" ]
nechayukanton@gmail.com
81cbea9cb3f61f1f991c1ebc3b11a533d08d185a
fa6ce6ddd687a4be901c0241ff72005a4e0a7a00
/orderedLinkedList.h
f2c8ac3233348a552276badb86f0e0b3e7353cd5
[]
no_license
mavincci/Address-Book-Project-1
984ab9838b9804762e7e47d9790c448b24c0eb77
bd1050314ae16d5fa6d6852423b392fecdc48eb9
refs/heads/master
2023-01-23T16:49:45.402714
2020-12-12T17:10:29
2020-12-12T17:10:29
320,882,733
1
0
null
null
null
null
UTF-8
C++
false
false
6,219
h
#ifndef H_orderedListType #define H_orderedListType #include "linkedList.h" using namespace std; template <class Type> class orderedLinkedList: public linkedListType<Type> { public: bool search(const Type& searchItem) const; //Function to determine whether searchItem is in the list. //Postcondition: Returns true if searchItem is in the // list, otherwise it returns false. void insert(const Type& newItem); //Function to insert newItem in the list. //Postcondition: first points to the new list, newItem // is inserted at the proper place in the // list, and count is incremented by 1. void insertFirst(const Type& newItem); //Function to insert newItem in the list. //Because the resulting list must be sorted, newItem is //inserted at the proper in the list. //This function uses the function insert to insert newItem. //Postcondition: first points to the new list, newItem is // inserted at the proper in the list, // and count is incremented by 1. void insertLast(const Type& newItem); //Function to insert newItem in the list. //Because the resulting list must be sorted, newItem is //inserted at the proper in the list. //This function uses the function insert to insert newItem. //Postcondition: first points to the new list, newItem is // inserted at the proper in the list, // and count is incremented by 1. void deleteNode(const Type& deleteItem); //Function to delete deleteItem from the list. //Postcondition: If found, the node containing // deleteItem is deleted from the list; // first points to the first node of the // new list, and count is decremented by 1. // If deleteItem is not in the list, an // appropriate message is printed. }; template <class Type> bool orderedLinkedList<Type>:: search(const Type& searchItem) const { bool found = false; nodeType<Type> *current; //pointer to traverse the list current = this->first; //start the search at the first node while (current != nullptr && !found) if (current->info >= searchItem) found = true; else current = current->link; if (found) found = (current->info == searchItem); //test for equality return found; }//end search template <class Type> void orderedLinkedList<Type>::insert(const Type& newItem) { nodeType<Type> *current; //pointer to traverse the list nodeType<Type> *trailCurrent = nullptr; //pointer just before current nodeType<Type> *newNode; //pointer to create a node bool found; newNode = new nodeType<Type>; //create the node newNode->info = newItem; //store newItem in the node newNode->link = nullptr; //set the link field of the node to nullptr if (this->first == nullptr) //Case 1 { this->first = newNode; this->last = newNode; this->count++; } else { current = this->first; found = false; while (current != nullptr && !found) //search the list if (current->info >= newItem) found = true; else { trailCurrent = current; current = current->link; } if (current == this->first) //Case 2 { newNode->link = this->first; this->first = newNode; this->count++; } else //Case 3 { trailCurrent->link = newNode; newNode->link = current; if (current == nullptr) this->last = newNode; this->count++; } }//end else }//end insert template<class Type> void orderedLinkedList<Type>::insertFirst(const Type& newItem) { insert(newItem); }//end insertFirst template<class Type> void orderedLinkedList<Type>::insertLast(const Type& newItem) { insert(newItem); }//end insertLast template<class Type> void orderedLinkedList<Type>::deleteNode(const Type& deleteItem) { nodeType<Type> *current; //pointer to traverse the list nodeType<Type> *trailCurrent = nullptr; //pointer just //before current bool found; if (this->first == nullptr) //Case 1 cout << "Cannot delete from an empty list." << endl; else { current = this->first; found = false; while (current != nullptr && !found) //search the list if (current->info >= deleteItem) found = true; else { trailCurrent = current; current = current->link; } if (current == nullptr) //Case 4 cout << "The item to be deleted is not in the " << "list." << endl; else if (current->info == deleteItem) //the item to be //deleted is in the list { if (this->first == current) //Case 2 { this->first = this->first->link; if (this->first == nullptr) this->last = nullptr; delete current; } else //Case 3 { trailCurrent->link = current->link; if (current == this->last) this->last = trailCurrent; delete current; } this->count--; } else //Case 4 cout << "The item to be deleted is not in the " << "list." << endl; } }//end deleteNode #endif
[ "notthismichael@gmail.com" ]
notthismichael@gmail.com
6218c010732e753e73c0ec965b8c5703a7509064
34b0957cc903018f7f52c0355c20ae099a205f46
/src2/BoolFiles.cpp
04349ec35895cfb5eeb336357f95b551bccb4677
[]
no_license
andylhxu/genome-compression
9816c22538946d6bee847f881d9a090cb7626d30
e8b357ddec85b497bd5be491e50a816f2a14792e
refs/heads/master
2021-08-30T19:31:42.747615
2017-12-19T06:16:52
2017-12-19T06:16:52
111,061,982
1
0
null
null
null
null
UTF-8
C++
false
false
10,778
cpp
#include "BoolFiles.h" //writes bool vector to binary file filename //format last char is size of overhang for last char from 0 to 7, number of bits of last char used void BoolToFile2(const vector<bool> &vec, const char *filename) { if (vec.size() < 16) { // write too short version as string string str; for (vector<bool>::const_iterator it = vec.begin() ; it != vec.end() ; ++it) str.push_back(*it ? '1' : '0'); cout << "dels str: " << str << endl; cout << "length: " << str.size() << endl; // int zzz; // cin >> zzz; string too_short_filename_string(filename); too_short_filename_string += ".tooshort"; StringToFile(str,too_short_filename_string.c_str()); // string x(vec); // IntsToFile(vec,filename); } else { fstream file; file.open(filename,ios::out | ios::binary); // fstream *filePointer = &file; unsigned char overhang; //number of bits to use in last char unsigned char bitBuffer = 0; //holds 8 bits unsigned char bitCount = 0; //counts bits in buffer int numWrites = 0; //number of writes to file for (vector<bool>::const_iterator it = vec.begin() ; it != vec.end() ; ++it) { //add bit to buffer bitBuffer = (bitBuffer << 1) | *it; ++bitCount; if (bitCount == 8)// || (it+1==vec.end())) //buffer full, write to file { file.write(reinterpret_cast<char*>(&bitBuffer),sizeof(bitBuffer)); bitCount = 0; //reset bit count bitBuffer = 0; ++numWrites; } } //fill remainder of buffer with 0, write to file overhang = bitCount; //overhang is number of bits used in last buffer while (bitCount != 0) { //add 0 to buffer bitBuffer = (bitBuffer << 1) | 0; ++bitCount; if (bitCount == 8) //buffer full, write to file { file.write(reinterpret_cast<char*>(&bitBuffer),sizeof(bitBuffer)); bitCount = 0; //reset bit count ++numWrites; } } std::cout << "overhang1: " << (int)overhang << std::endl; //write overhang value file.write(reinterpret_cast<char*>(&overhang),sizeof(overhang)); ++numWrites; std::cout << "num writes: " << numWrites << std::endl; //close file file.close(); } } //reads bool vector from file filename //format last char is overhang for last char overhang from 0 to 7, number of bits of last char used, writes into bool vector vec void FileToBool2(const char *filename, vector<bool> &vec) { // check of too short version of file exists string too_short_filename_string(filename); too_short_filename_string += ".tooshort"; ifstream test_source(too_short_filename_string.c_str()); if (test_source.is_open()) // string too short { cout << "file too short" << endl; cout << "-------------------------------------" << endl; test_source.close(); string str; FileToString(str,too_short_filename_string.c_str()); vec.clear(); for (string::const_iterator it = str.begin() ; it != str.end(); ++it) vec.push_back((*it == '1') ? true : false); cout << "str size: " << str.size() << endl; cout << "vec size: " << vec.size() << endl; cout << str[0] << "," << vec[0] << endl; } else { cout << "file not too short" << endl; cout << "-------------------------------------" << endl; fstream file; file.open(filename,ios::in | ios::binary); // fstream *filePointer = &file; // vec.clear(); //set to empty vector vec.resize(0); unsigned char overhang = 0; //number of bits to use in last char unsigned char bitBuffer = 0; //holds 8 bits unsigned char bitCount = 0; //counts bits in buffer unsigned char bit; //bit read from buffer unsigned char bitBufferShiftedLeftRight; //bit buffer shifted left, right by 1 to compare to bit buffer bitBuffer to get last bit int numReads = 0; //number of reads from file while (!(file.eof())) // while not done reading file { file.read(reinterpret_cast<char*>(&bitBuffer),sizeof(bitBuffer)); // file >> bitBuffer; ++numReads; if (!(file.eof())) { overhang = bitBuffer; for (int i = 0; i < 8 ; ++i) // read bits in bit buffer { bit = (bitBuffer >> 7); vec.push_back(bit); bitBuffer <<= 1; //push bit buffer to left } } } // overhang = bitBuffer; //pop back 8 bits for overhang value stored for (int i = 0 ; i < 8 ; ++i) vec.pop_back(); //pop back 8 - overhang bits // std::cout << "overhang2: " << (int)overhang << std::endl; if (overhang > 0) { for (int i = 0; i < (8-overhang) ; ++i) vec.pop_back(); } std::cout << "num reads: " << numReads << std::endl; //close file file.close(); } } //writes bool vector to binary file filename, returns int size of overhang for last char from 0 to 7, number of bits of last char used void BoolToFile(const vector<bool> &vec, const char *filename, int &overhang) { if (vec.size() < 16) { // write too short version as string string str; for (vector<bool>::const_iterator it = vec.begin() ; it != vec.end() ; ++it) str.push_back(*it ? '1' : '0'); string too_short_filename_string(filename); too_short_filename_string += ".tooshort"; StringToFile(str,too_short_filename_string.c_str()); // string x(vec); // IntsToFile(vec,filename); } else { fstream file; file.open(filename,ios::out | ios::binary); // fstream *filePointer = &file; unsigned char bitBuffer = 0; //holds 8 bits unsigned char bitCount = 0; //counts bits in buffer int numWrites = 0; //number of writes to file for (vector<bool>::const_iterator it = vec.begin() ; it != vec.end() ; ++it) { //add bit to buffer bitBuffer = (bitBuffer << 1) | *it; ++bitCount; if (bitCount == 8)// || (it+1==vec.end())) //buffer full, write to file { file.write(reinterpret_cast<char*>(&bitBuffer),sizeof(bitBuffer)); bitCount = 0; //reset bit count bitBuffer = 0; ++numWrites; } } //fill remainder of buffer with 0, write to file overhang = bitCount; //overhang is number of bits used in last buffer while (bitCount != 0) { //add 0 to buffer bitBuffer = (bitBuffer << 1) | 0; ++bitCount; if (bitCount == 8) //buffer full, write to file { file.write(reinterpret_cast<char*>(&bitBuffer),sizeof(bitBuffer)); bitCount = 0; //reset bit count ++numWrites; } } std::cout << "num writes: " << numWrites << std::endl; //close file file.close(); } } //reads bool vector from file filename with overhang for last char overhang from 0 to 7, number of bits of last char used, writes into bool vector vec void FileToBool(const char *filename, const int overhang, vector<bool> &vec) { // check of too short version of file exists string too_short_filename_string(filename); too_short_filename_string += ".tooshort"; ifstream test_source(too_short_filename_string.c_str()); if (test_source.is_open()) // string too short { test_source.close(); string str; FileToString(str,too_short_filename_string.c_str()); vec.clear(); for (string::const_iterator it = str.begin() ; it != str.end(); ++it) vec.push_back((*it == '1') ? true : false); } else { fstream file; file.open(filename,ios::in | ios::binary); // fstream *filePointer = &file; // vec.clear(); //set to empty vector vec.resize(0); unsigned char bitBuffer = 0; //holds 8 bits unsigned char bitCount = 0; //counts bits in buffer unsigned char bit; //bit read from buffer unsigned char bitBufferShiftedLeftRight; //bit buffer shifted left, right by 1 to compare to bit buffer bitBuffer to get last bit int numReads = 0; //number of reads from file while (!(file.eof())) // while not done reading file { file.read(reinterpret_cast<char*>(&bitBuffer),sizeof(bitBuffer)); // file >> bitBuffer; ++numReads; if (!(file.eof())){ for (int i = 0; i < 8 ; ++i) // read bits in bit buffer { bit = (bitBuffer >> 7); vec.push_back(bit); bitBuffer <<= 1; //push bit buffer to left }} } //pop back 8 - overhang bits if (overhang > 0) { for (int i = 0; i < (8-overhang) ; ++i) vec.pop_back(); } std::cout << "num reads: " << numReads << std::endl; //close file file.close(); } } //////////////////////////////////////////////////////////////////////////////////////////////////////////// //writes integers list to file void IntsToFile(const vector<int> &values, const char *filename) //writes integers list to file { //open file ofstream dest(filename); for (vector<int>::const_iterator it = values.begin() ; it != values.end() ; ++it) dest << *it << std::endl; //close file dest.close(); } //////////////////////////////////////////////////////////////////////////////////////////////////////////// //reads integers list from file void FileToInts(vector<int> &values, const char *filename) { //open file ifstream source(filename); //empty vector values.clear(); string line; //line read int value; //value stringstream numstr; //holds position number while (getline(source,line)) { numstr.clear(); numstr << line; numstr >> value; values.push_back(value); //push back value to list } //close file source.close(); } //////////////////////////////////////////////////////////////////////////////////////////////////////////// //write string to file void StringToFile(const string &s, const char *filename) { //open file ofstream dest(filename); //write string, new line character dest << s << std::endl; //close file dest.close(); } //////////////////////////////////////////////////////////////////////////////////////////////////////////// //read string from file void FileToString(string &s, const char *filename, const unsigned int numInitialLinesToSkip) { //open file ifstream source(filename); //empty string s.clear(); string line; //line read //skip numInitialLinesToSkip initial lines for (unsigned int i = 0; i < numInitialLinesToSkip ; ++i) getline(source,line); //read string while (getline(source,line)) s += line; //close file source.close(); } // read multiple strings from file void FileToStrings(vector<string> &v, const char *filename) { //open file ifstream source(filename); //empty vector v.clear(); string line; // line read //read string // cout << "HERE" << endl; while (getline(source,line)) { // cout << "line: " << line << endl; v.push_back(line);} //close file source.close(); }
[ "lx2180@columbia.edu" ]
lx2180@columbia.edu
a91633033a66cae0ebcd17d62115dcdb452774cd
dc7ad55b1e817f9655d612c37f35cd9880d8e132
/deque1/deque.h
cdf318f4ba759fcb4a14bd5e9de08b56ffcc8043
[]
no_license
kulpet345/kulpet
6ddd1d18ed065f190f5907e0ed4b5b324a0b91a4
3091cb043c4ffc7ffb5fca61dc1715b8e79e9d49
refs/heads/master
2021-05-06T02:09:01.551113
2017-12-17T10:26:01
2017-12-17T10:26:01
114,501,329
0
0
null
null
null
null
UTF-8
C++
false
false
5,809
h
#include <iostream> #include <vector> #include <algorithm> //https://bitbucket.org/kulpet345/mydeque/commits/22e3ddfd4c1e5c0451b4f87812f6fe25f1578212 template<typename Deque, typename T> class deque_iterator :public std::iterator < std::random_access_iterator_tag, T> { Deque* deque_ptr; size_t index; public: deque_iterator(Deque *p, size_t i) : deque_ptr(p), index(i) { } deque_iterator& operator=(const deque_iterator& it) { deque_ptr = it.deque_ptr; index = it.index; return (*this); } bool operator==(const deque_iterator& it) const { return (deque_ptr == it.deque_ptr && index == it.index); } bool operator!=(const deque_iterator& it) const { return !(deque_ptr == it.deque_ptr && index == it.index); } T& operator*() { return (*deque_ptr)[index]; } T* operator->() { return &((*deque_ptr)[index]); } deque_iterator& operator++() { index++; return (*this); } deque_iterator operator++(int) { deque_iterator it = *this; (*this).operator++(); return it; } deque_iterator& operator--() { index--; return (*this); } deque_iterator operator--(int) { deque_iterator it = *this; (*this).operator--(); return it; } deque_iterator& operator+=(const size_t cnt) { index += cnt; return (*this); } const deque_iterator operator+(const size_t cnt) const { deque_iterator it = (*this); it += cnt; return it; } deque_iterator& operator-=(const size_t cnt) { return (*this).operator+=(-cnt); } const deque_iterator operator-(const size_t cnt) const { return (*this).operator+(-cnt); } size_t operator-(const deque_iterator& it) const { return index - it.index; } deque_iterator& operator+=(const deque_iterator& it) { index += it.index; return (*this); } const deque_iterator operator+(const deque_iterator& it) const { deque_iterator it1 = (*this); it1 += it; return it1; } const T& operator[](const int pos) const { return (*deque_ptr)[pos]; } T& operator[](const int pos) { return (*deque_ptr)[pos]; } bool operator>=(const deque_iterator& it) const { return ((*this).operator-(it) >= 0); } bool operator>(const deque_iterator& it) const { return ((*this).operator>=(it) && (*this).operator!=(it)); } bool operator<=(const deque_iterator& it) const { return !((*this).operator>(it)); } bool operator<(const deque_iterator& it) const { return !((*this).operator>=(it)); } }; template <typename T> class Deque { public: std::vector<T> left; std::vector<T> right; Deque& operator=(const Deque& d1) { left = d1.left; right = d1.right; return (*this); } T& front() { if (!left.empty()) { return left.back(); } else { return right.front(); } } T& back() { if (!right.empty()) { return right.back(); } else { return left.front(); } } T front() const { if (!left.empty()) { return left.back(); } else { return right.front(); } } T back() const { if (!right.empty()) { return right.back(); } else { return left.front(); } } T& operator[](const int pos) { if (pos < int(left.size())) { return left[left.size() - pos - 1]; } else { return right[pos - left.size()]; } } const T& operator[](const int pos) const { //cout << pos << endl; if (pos < int(left.size())) { return left[left.size() - pos - 1]; } else { return right[pos - left.size()]; } } bool empty() const { return (left.empty() && right.empty()); } size_t size() const { return left.size() + right.size(); } void rebuild() { if (2 * std::min(left.size(), right.size()) <= std::max(left.size(), right.size())) { std::vector<T> newd(left.size() + right.size()); std::copy(left.begin(), left.end(), newd.begin()); std::reverse(newd.begin(), newd.begin() + left.size()); std::copy(right.begin(), right.end(), newd.begin() + left.size()); size_t leftsz = (left.size() + right.size()) / 2; size_t rightsz = left.size() + right.size() - leftsz; left.resize(leftsz); right.resize(rightsz); std::copy(newd.begin(), newd.begin() + leftsz, left.begin()); std::reverse(left.begin(), left.end()); std::copy(newd.begin() + leftsz, newd.end(), right.begin()); } } void push_back(const T el) { right.push_back(el); rebuild(); } void pop_back() { rebuild(); right.pop_back(); rebuild(); } void push_front(const T el) { left.push_back(el); } void pop_front() { rebuild(); //cout << left.size() << ' ' << right.size() << endl; if (left.empty()) { right.pop_back(); } else { left.pop_back(); } //cout << left.size() << ' ' << right.size() << endl; rebuild(); } typedef deque_iterator<Deque, T> iterator; typedef deque_iterator<const Deque, const T> const_iterator; typedef std::reverse_iterator<iterator> reverse_iterator; typedef std::reverse_iterator<const_iterator> const_reverse_iterator; iterator begin() { return iterator(this, 0); } iterator end() { return iterator(this, size()); } const_iterator begin() const { return const_iterator(this, 0); } const_iterator cbegin() const { return const_iterator(this, 0); } const_iterator end() const { return const_iterator(this, size()); } const_iterator cend() const { return const_iterator(this, size()); } reverse_iterator rbegin() { return reverse_iterator(end()); } reverse_iterator rend() { return reverse_iterator(begin()); } const const_reverse_iterator rbegin() const { return const_reverse_iterator(end()); } const const_reverse_iterator crbegin() const { return const_reverse_iterator(end()); } const const_reverse_iterator rend() const { return const_reverse_iterator(begin()); } const const_reverse_iterator crend() const { return const_reverse_iterator(begin()); } };
[ "kulagin.pyoter@mail.ru" ]
kulagin.pyoter@mail.ru
d83f539e9dddd81cbed7666b8582ef07de4d8e8f
8de938af9e9596ed20f64af7947fc69808c2c89a
/src/Dialog/DlgAddNewDir.h
fd78679d41c8c6b2758987a0ae911fdb327fe454
[]
no_license
zdwzkl/ALMRun
cf4ff98e8ac20c6a28bd7e8613e1e97ba4fb791e
1b5752166e3756ca406d423dc95ca4e84dc76afa
refs/heads/master
2020-05-29T11:46:17.559260
2013-11-14T07:31:31
2013-11-14T07:31:31
null
0
0
null
null
null
null
WINDOWS-1252
C++
false
false
3,134
h
///////////////////////////////////////////////////////////////////////////// // Name: DlgAddNewDir.h // Purpose: // Author: test // Modified by: // Created: 09/06/2013 21:11:35 // RCS-ID: // Copyright: test // Licence: ///////////////////////////////////////////////////////////////////////////// #ifndef _DLGADDNEWDIR_H_ #define _DLGADDNEWDIR_H_ #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma interface "DlgAddNewDir.h" #endif /*! * Includes */ ////@begin includes #include "wx/spinctrl.h" ////@end includes /*! * Forward declarations */ ////@begin forward declarations ////@end forward declarations /*! * Control identifiers */ ////@begin control identifiers #define ID_DLGADDNEWDIR 10012 #define ID_DLG_DIR_DIR 10013 #define ID_BUTTON 10014 #define ID_DIR_INCLUDE 10015 #define ID_DIR_EXCLUDE 10000 #define ID_DIR_SUB 10016 #define SYMBOL_DLGADDNEWDIR_STYLE wxCAPTION|wxRESIZE_BORDER|wxSYSTEM_MENU|wxCLOSE_BOX|wxTAB_TRAVERSAL #define SYMBOL_DLGADDNEWDIR_TITLE _T("Ìí¼Ó×Ô¶¯É¨ÃèĿ¼") #define SYMBOL_DLGADDNEWDIR_IDNAME ID_DLGADDNEWDIR #define SYMBOL_DLGADDNEWDIR_SIZE wxSize(360, 300) #define SYMBOL_DLGADDNEWDIR_POSITION wxDefaultPosition #define ADDDIR_FLAG_NORMAL 0 #define ADDDIR_FLAG_EDIT 1 #define ADDDIR_FLAG_CMDS 2 ////@end control identifiers /*! * DlgAddNewDir class declaration */ class DlgAddNewDir: public wxDialog { DECLARE_DYNAMIC_CLASS( DlgAddNewDir ) DECLARE_EVENT_TABLE() public: /// Constructors DlgAddNewDir(); DlgAddNewDir( wxWindow* parent, wxWindowID id = SYMBOL_DLGADDNEWDIR_IDNAME, const wxString& caption = SYMBOL_DLGADDNEWDIR_TITLE, const wxPoint& pos = SYMBOL_DLGADDNEWDIR_POSITION, const wxSize& size = SYMBOL_DLGADDNEWDIR_SIZE, long style = SYMBOL_DLGADDNEWDIR_STYLE ); /// Creation bool Create( wxWindow* parent, wxWindowID id = SYMBOL_DLGADDNEWDIR_IDNAME, const wxString& caption = SYMBOL_DLGADDNEWDIR_TITLE, const wxPoint& pos = SYMBOL_DLGADDNEWDIR_POSITION, const wxSize& size = SYMBOL_DLGADDNEWDIR_SIZE, long style = SYMBOL_DLGADDNEWDIR_STYLE ); /// Destructor ~DlgAddNewDir(); /// Initialises member variables void Init(); /// Creates the controls and sizers void CreateControls(); ////@begin DlgAddNewDir event handler declarations void onButtonClick(wxCommandEvent& e); ////@end DlgAddNewDir event handler declarations ////@begin DlgAddNewDir member function declarations /// Retrieves bitmap resources wxBitmap GetBitmapResource( const wxString& name ); /// Retrieves icon resources wxIcon GetIconResource( const wxString& name ); ////@end DlgAddNewDir member function declarations /// Should we show tooltips? static bool ShowToolTips(); int SetMode(const int mode); ////@begin DlgAddNewDir member variables wxTextCtrl* dirName; wxTextCtrl* dirInclude; wxTextCtrl* dirExclude; wxSpinCtrl* dirSub; UINT DirId; ////@end DlgAddNewDir member variables private: int flags; }; #endif // _DLGADDNEWDIR_H_
[ "chenall.cn@gmail.com" ]
chenall.cn@gmail.com
4ed793d148282b117e63e9fc8114bc7caadac85f
599b4d589ef7011494109ac91c63662aca7912b2
/Source/KAPLfo.h
943d98d04aead91e83a3b877407c7f0bf8223f41
[]
no_license
nberr/KadenzeAudioPlugin
989d38bd5eae10ada931d0c3f61f7ddfa19ed61e
b735323db93216ba95081589062cbf84aa6c9019
refs/heads/master
2021-06-25T15:19:43.551235
2021-03-02T19:40:35
2021-03-02T19:40:35
208,204,428
0
1
null
null
null
null
UTF-8
C++
false
false
641
h
/* ============================================================================== KAPLfo.h Created: 19 Aug 2019 10:07:52am Author: Nicholas Berriochoa ============================================================================== */ #pragma once #include "KAPAudioHelpers.h" class KAPLfo { public: KAPLfo(); ~KAPLfo(); void reset(); void setSampleRate(double inSampleRate); void process(float inRate, float inDepth, int inNumSamples); float* getBuffer(); private: double mSampleRate; float mPhase; float mBuffer[maxBufferSize]; };
[ "nberriochoa@gmail.com" ]
nberriochoa@gmail.com
040aabafb1d144b5ca1e5e23a5c5b591ce2f6a6e
b003062fd3f8716b14f8c6a1f1f82e88167a1f7a
/surse/prob10.cpp
eaf66f94b172a267a4cda309a6b167acd1d1c312
[]
no_license
adrgs/oopquiz
cbc297fbb3f286e9baf8d6f0e5a12f0ceb92455d
ca734f9d932a390f00c23703ab09d79c18ead6a9
refs/heads/master
2020-12-23T15:56:14.957425
2020-01-31T17:41:50
2020-01-31T17:41:50
237,197,399
9
1
null
null
null
null
UTF-8
C++
false
false
229
cpp
#include <iostream> using namespace std; template <class T, class U> T f(T x, U y) { return x + y; } int f(int x, int y) { return x - y; } int main() { int *a = new int(3), b(23); cout << *f(a, b); return 0; }
[ "albastroiudragos@gmail.com" ]
albastroiudragos@gmail.com
a65905e64fe8373b7dce1058f72ae86c422f1ebb
97fd729276014f4e0e62b94957ba5fa8ed05de7f
/wordPrint/CSmartTagType.h
fe95b414b68d5c6d5da52709442c0f6aedbf800c
[]
no_license
DLive/wordPrint
dcc193db0b17c3f042dd0a648f6c2b72789f61ac
a12fd6599359d1c608b3e2850049e1ac9332742d
refs/heads/master
2021-01-20T11:31:39.081557
2012-10-30T15:49:17
2012-10-30T15:49:17
null
0
0
null
null
null
null
GB18030
C++
false
false
1,629
h
// 从类型库向导中用“添加类”创建的计算机生成的 IDispatch 包装类 #import "C:\\Program Files\\Microsoft Office\\OFFICE11\\MSWORD.OLB" no_namespace // CSmartTagType 包装类 class CSmartTagType : public COleDispatchDriver { public: CSmartTagType(){} // 调用 COleDispatchDriver 默认构造函数 CSmartTagType(LPDISPATCH pDispatch) : COleDispatchDriver(pDispatch) {} CSmartTagType(const CSmartTagType& dispatchSrc) : COleDispatchDriver(dispatchSrc) {} // 属性 public: // 操作 public: // SmartTagType 方法 public: CString get_Name() { CString result; InvokeHelper(0x0, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL); return result; } LPDISPATCH get_Application() { LPDISPATCH result; InvokeHelper(0x3e8, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&result, NULL); return result; } long get_Creator() { long result; InvokeHelper(0x3e9, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL); return result; } LPDISPATCH get_Parent() { LPDISPATCH result; InvokeHelper(0x3ea, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&result, NULL); return result; } LPDISPATCH get_SmartTagActions() { LPDISPATCH result; InvokeHelper(0x3eb, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&result, NULL); return result; } LPDISPATCH get_SmartTagRecognizers() { LPDISPATCH result; InvokeHelper(0x3ec, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&result, NULL); return result; } CString get_FriendlyName() { CString result; InvokeHelper(0x3ed, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL); return result; } // SmartTagType 属性 public: };
[ "xsxgmail@163.com" ]
xsxgmail@163.com
e4011ddaff164976f2785537cdd14cab346426db
af7977991477325ddc604b6d3e2ac3cb4aa29337
/FlappyBirdGame3D3.0/Temp/il2cppOutput/il2cppOutput/mscorlib_System_Collections_Generic_Dictionary_2_K3551652127.h
5f69c61eaa90530d64a29014452a3e032bef6ea1
[]
no_license
jpf2141/FlappyBird3D
b824cf5fac6ca3c5739afc342b659af1f2836ab9
fe4e9c421ec8dc26a7befd620f9deaf3c6361de5
refs/heads/master
2021-01-21T13:53:25.062470
2016-05-06T02:39:28
2016-05-06T02:39:28
55,712,365
3
1
null
null
null
null
UTF-8
C++
false
false
1,313
h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> // System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.Marker> struct Dictionary_2_t1228376847; #include "mscorlib_System_Object837106420.h" #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,Vuforia.Marker> struct KeyCollection_t3551652127 : public Il2CppObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection::dictionary Dictionary_2_t1228376847 * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(KeyCollection_t3551652127, ___dictionary_0)); } inline Dictionary_2_t1228376847 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t1228376847 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t1228376847 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier(&___dictionary_0, value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif
[ "kdj2109@columbia.edu" ]
kdj2109@columbia.edu
88bb3fefb055da5e40194bde09d28909b66b61f6
a2f7d1dafdb080e7e9ed62b2e9835835625142b0
/vectors/headers.h
d77e0231acd5c8df4b619b5d4249e6d39a8834e1
[]
no_license
aeyc/cpp_workspace
bc073ccc8dd674ed97132bf07b120c46795303ee
66542dae6a0c38d334a546fa38d9b61a6f63088c
refs/heads/main
2023-03-11T14:54:55.799351
2021-02-18T12:28:37
2021-02-18T12:28:37
309,207,862
0
0
null
null
null
null
UTF-8
C++
false
false
866
h
// // headers.h // headers // // Created by Ayca Begum Tascioglu on 2.11.2020. // /* Inside the class Header we need to define: scoped enum OsiLayer = {PHY=1,MAC,NET,TRAN,SESS,PRES,APP}; (const) member variable OsiLayer layer initialized at the constructor of the Header class (change it to Header(OsiLayer l, int size)) MacHeader(int size) will call Header(OsiLayer::MAC,size) -finished 0 error */ #ifndef HEADER_H #define HEADER_H #include <string> class Header{ public: enum class OsiLayer{PHY=1,MAC,NET,TRAN,SESS,PRES,APP}; Header(OsiLayer l,int s); //~Header(); void setSize(int s); int getSize() const; OsiLayer getLayer() const; void setLayer(OsiLayer l); //virtual std::string getInfo() const; virtual std::string getInfo() const = 0; protected: int size; OsiLayer layer; }; #endif /* headers_h */
[ "noreply@github.com" ]
noreply@github.com
7927f4fd5a751986cc6d998ebe8246a84853776c
6550126ec9f3310fb7083edb17edb84faac71e9f
/src/M/3/M384_ShuffleArray.cpp
4a5dda67d2749e8c22567a3e2bc9faa923a97951
[]
no_license
d2macster/leetcode-cpp
d9dd988a18f3721141b4a174e44fb4cbffa47e1d
48caf45921107f5003bf5b766242c11840e5b84c
refs/heads/master
2021-07-16T20:50:55.500503
2018-08-26T22:10:05
2018-08-26T22:10:05
116,715,207
0
1
null
2019-10-24T17:45:49
2018-01-08T18:54:01
C++
UTF-8
C++
false
false
656
cpp
// // Created by Andrii Cherniak on 5/22/18. // #include <vector> #include <cstdlib> using namespace std; class Solution { vector<int> n, nn; int L = 0; public: Solution(vector<int> nums) { n = nums; nn = n; L = nn.size(); } /** Resets the array to its original configuration and return it. */ vector<int> reset() { nn = n; return nn; } /** Returns a random shuffling of the array. */ vector<int> shuffle() { if (nn.size() <= 1) return nn; for (int i = 0; i < L; i++){ swap(nn[i], nn[rand() % L]); } return nn; } };
[ "theandriicherniak@gmail.com" ]
theandriicherniak@gmail.com
7e986b42b87fd477c382539758356c90d4fda689
c90ddd0930894c565197b739cd76140a7151fffd
/HeterogeneousCore/SonicTriton/interface/TritonMemResource.h
f6cf37a029fb5724322b75ae54054dc3e0e62233
[ "Apache-2.0" ]
permissive
p2l1pfp/cmssw
9cc6b111ff1935e49f86ec3da9f9b84fb13bbcdf
9f0a3a22fe451c25114134c30ac1f5c1261f3183
refs/heads/L1PF_12_5_X
2023-08-17T00:38:15.374760
2023-06-13T12:55:57
2023-06-13T12:55:57
127,881,751
6
1
Apache-2.0
2023-09-05T13:54:59
2018-04-03T09:10:17
C++
UTF-8
C++
false
false
3,221
h
#ifndef HeterogeneousCore_SonicTriton_TritonMemResource #define HeterogeneousCore_SonicTriton_TritonMemResource #include <string> #include <memory> #include "grpc_client.h" //forward declaration template <typename IO> class TritonData; //base class for memory operations template <typename IO> class TritonMemResource { public: TritonMemResource(TritonData<IO>* data, const std::string& name, size_t size); virtual ~TritonMemResource() {} uint8_t* addr() { return addr_; } size_t size() const { return size_; } virtual void close() {} //used for input virtual void copyInput(const void* values, size_t offset) {} //used for output virtual const uint8_t* copyOutput() { return nullptr; } virtual void set(); protected: //member variables TritonData<IO>* data_; std::string name_; size_t size_; uint8_t* addr_; bool closed_; }; template <typename IO> class TritonHeapResource : public TritonMemResource<IO> { public: TritonHeapResource(TritonData<IO>* data, const std::string& name, size_t size); ~TritonHeapResource() override {} void copyInput(const void* values, size_t offset) override {} const uint8_t* copyOutput() override { return nullptr; } void set() override {} }; template <typename IO> class TritonCpuShmResource : public TritonMemResource<IO> { public: TritonCpuShmResource(TritonData<IO>* data, const std::string& name, size_t size); ~TritonCpuShmResource() override; void close() override; void copyInput(const void* values, size_t offset) override {} const uint8_t* copyOutput() override { return nullptr; } }; using TritonInputHeapResource = TritonHeapResource<triton::client::InferInput>; using TritonInputCpuShmResource = TritonCpuShmResource<triton::client::InferInput>; using TritonOutputHeapResource = TritonHeapResource<triton::client::InferRequestedOutput>; using TritonOutputCpuShmResource = TritonCpuShmResource<triton::client::InferRequestedOutput>; //avoid "explicit specialization after instantiation" error template <> void TritonInputHeapResource::copyInput(const void* values, size_t offset); template <> void TritonInputCpuShmResource::copyInput(const void* values, size_t offset); template <> const uint8_t* TritonOutputHeapResource::copyOutput(); template <> const uint8_t* TritonOutputCpuShmResource::copyOutput(); #ifdef TRITON_ENABLE_GPU #include "cuda_runtime_api.h" template <typename IO> class TritonGpuShmResource : public TritonMemResource<IO> { public: TritonGpuShmResource(TritonData<IO>* data, const std::string& name, size_t size); ~TritonGpuShmResource() override; void close() override; void copyInput(const void* values, size_t offset) override {} const uint8_t* copyOutput() override { return nullptr; } protected: int deviceId_; std::shared_ptr<cudaIpcMemHandle_t> handle_; }; using TritonInputGpuShmResource = TritonGpuShmResource<triton::client::InferInput>; using TritonOutputGpuShmResource = TritonGpuShmResource<triton::client::InferRequestedOutput>; //avoid "explicit specialization after instantiation" error template <> void TritonInputGpuShmResource::copyInput(const void* values, size_t offset); template <> const uint8_t* TritonOutputGpuShmResource::copyOutput(); #endif #endif
[ "kpedro88@gmail.com" ]
kpedro88@gmail.com
f41e2346b66d05e99f56b7f05184ef844a91abe1
ea671b26f16ba03d945760a05710957f6e799fa9
/src/appstore_frameWorker/appstore_frameWorker.cpp
e63177b8480dcecd143ce456cac02b3dc8bf824e
[]
no_license
barluc/appstore_ios10_win
01812dc28f834ce73de64cd81f962b17eb43ecbe
72aa777f7f01522b49abbc984a334920af335ddc
refs/heads/master
2023-08-15T09:30:31.773317
2019-04-21T15:34:19
2019-04-21T15:34:19
null
0
0
null
null
null
null
UTF-8
C++
false
false
790
cpp
// appstore_tester.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include <vector> #include <fstream> #include <sstream> #include <iostream> #include <functional> #include <map> #include <process.h> #include "appstore_frame/appstore_worker/appstore_worker.h" #include "appstore_frame/appstore_pwd_chacker/appstore_pwd_chacker.h" #include <windows.h> #pragma comment(lib,"Advapi32.lib") #pragma comment(lib,"Shlwapi.lib") int main(_In_ int _Argc, _In_reads_(_Argc) _Pre_z_ char ** _Argv, _In_z_ char ** _Env){ CoreFoundationDir(); AppStoreFrameMain(); #ifdef kCheckPasswordStatusFlag AppStorePwdChackerMain(); #else AppStoreWorkerMain(_Argv[1], _Argv[2], _Argv[3], _Argv[4], _Argv[5], _Argv[6], _Argv[7], _Argv[8], _Argv[9]); #endif return 0; }
[ "developer.dengtao@gmail.com" ]
developer.dengtao@gmail.com
7ad00c521e3e03ae5ec5853c1293675ecad7ef8b
bd8bcdb88c102a1ddf2c0f429dbef392296b67af
/sources/Physics/Engine/Newton/Dynamic/NwStaticBody.cpp
26e1f81d7e87d588ea7eb9013af6a5a721f18710
[ "BSD-2-Clause", "BSD-3-Clause" ]
permissive
LukasBanana/ForkENGINE
be03cee942b0e20e30a01318c2639de87a72c79c
8b575bd1d47741ad5025a499cb87909dbabc3492
refs/heads/master
2020-05-23T09:08:44.864715
2017-01-30T16:35:34
2017-01-30T16:35:34
80,437,868
14
2
null
null
null
null
UTF-8
C++
false
false
946
cpp
/* * Newton physics static body file * * This file is part of the "ForkENGINE" (Copyright (c) 2014 by Lukas Hermanns) * See "LICENSE.txt" for license information. */ #include "NwStaticBody.h" #include "Core/Exception/NullPointerException.h" namespace Fork { namespace Physics { NwStaticBody::NwStaticBody( const NewtonWorld* world, const NwColliderPtr& collider, const Math::Matrix4f& initTransform) : Body{ collider }, NwBody { CreateBody(world, collider->GetCollision(), initTransform) } { } /* * ======= Private: ======= */ NewtonBody* NwStaticBody::CreateBody( const NewtonWorld* world, const NewtonCollision* collision, const Math::Matrix4f& initTransform) { ASSERT_POINTER(world); ASSERT_POINTER(collision); return NewtonCreateDynamicBody(world, collision, initTransform.Ptr()); } } // /namespace Physics } // /namespace Fork // ========================
[ "lukas.hermanns90@gmail.com" ]
lukas.hermanns90@gmail.com
588ff3c134f95bd1558c2e1dd9f4bb8ecc2813b1
c9bc5ee21206d213b0ab1750bf86ecf4f7b77753
/finalproject/Scene.h
7c570cb757445d40e3024c3fb2905453d76e6f1e
[]
no_license
Derongan/ecs175HW5
0dfcb788964ee3ec28bc55d8a8bab226d553dbfb
70f83dd61c95cb3d193917a788135b14027a1f79
refs/heads/master
2021-01-10T18:05:07.356140
2016-03-15T02:55:42
2016-03-15T02:55:42
53,884,459
0
0
null
null
null
null
UTF-8
C++
false
false
547
h
#pragma once #include "Model.h" #include <vector> #include <string> #include <SOIL\SOIL.h> class Scene { private: public: std::vector<Model *> models; UINT SkyboxTextures[6]; UINT ground; const UINT SKYFRONT = 0; const UINT SKYBACK = 1; const UINT SKYLEFT = 2; const UINT SKYRIGHT = 3; const UINT SKYUP = 4; const UINT SKYDOWN = 5; Scene(); ~Scene(); void render(); void renderSkyBox(float x, float y, float z, float width, float height); void loadSkybox(std::string name); void addModel(Model *m); void resetMaterial(); };
[ "dgfried@gmail.com" ]
dgfried@gmail.com
ff429e715a578f118cb9929755691109e1ce761b
0f1c96800de0722babedda70d1853c1c574a7465
/6week/main.cpp
4885790d4e2eb33440815224feab400af39a8cb4
[]
no_license
jyahina/coursera_yandex_red_belt
d296fa7ffb34fe751345351e4330ad354471febb
47fe9180f715da18ff440c17fdc7a622c96dab1b
refs/heads/master
2021-02-12T06:33:34.940751
2020-04-26T13:23:41
2020-04-26T13:23:41
244,569,213
0
0
null
null
null
null
WINDOWS-1251
C++
false
false
14,894
cpp
#include "search_server.h" #include "parse.h" #include "test_runner.h" #include "profile.h" #include <algorithm> #include <iterator> #include <map> #include <vector> #include <string> #include <sstream> #include <fstream> #include <random> #include <thread> using namespace std; void TestFunctionality( const vector<string>& docs, const vector<string>& queries, const vector<string>& expected ) { istringstream docs_input(Join('\n', docs)); istringstream queries_input(Join('\n', queries)); SearchServer srv; //{LOG_DURATION("UpdateDocumentBase") srv.UpdateDocumentBase(docs_input); //} ostringstream queries_output; //{LOG_DURATION("AddQueriesStream") srv.AddQueriesStream(queries_input, queries_output); //} const string result = queries_output.str(); const auto lines = SplitBy(Strip(result), '\n'); ASSERT_EQUAL(lines.size(), expected.size()); for (size_t i = 0; i < lines.size(); ++i) { ASSERT_EQUAL(lines[i], expected[i]); } } void TestSerpFormat() { const vector<string> docs = { "london is the capital of great britain", "i am travelling down the river" }; const vector<string> queries = { "london", "the" }; const vector<string> expected = { "london: {docid: 0, hitcount: 1}", Join(' ', vector{ "the:", "{docid: 0, hitcount: 1}", "{docid: 1, hitcount: 1}" }) }; TestFunctionality(docs, queries, expected); } void TestTop5() { const vector<string> docs = { "milk a", "milk b", "milk c", "milk d", "milk e", "milk f", "milk g", "water a", "water b", "fire and earth" }; const vector<string> queries = { "milk", "water", "rock" }; const vector<string> expected = { Join(' ', vector{ "milk:", "{docid: 0, hitcount: 1}", "{docid: 1, hitcount: 1}", "{docid: 2, hitcount: 1}", "{docid: 3, hitcount: 1}", "{docid: 4, hitcount: 1}" }), Join(' ', vector{ "water:", "{docid: 7, hitcount: 1}", "{docid: 8, hitcount: 1}", }), "rock:", }; TestFunctionality(docs, queries, expected); } void TestHitcount() { const vector<string> docs = { "the river goes through the entire city there is a house near it", "the wall", "walle", "is is is is", }; const vector<string> queries = { "the", "wall", "all", "is", "the is" }; const vector<string> expected = { Join(' ', vector{ "the:", "{docid: 0, hitcount: 2}", "{docid: 1, hitcount: 1}", }), "wall: {docid: 1, hitcount: 1}", "all:", Join(' ', vector{ "is:", "{docid: 3, hitcount: 4}", "{docid: 0, hitcount: 1}", }), Join(' ', vector{ "the is:", "{docid: 3, hitcount: 4}", "{docid: 0, hitcount: 3}", "{docid: 1, hitcount: 1}", }), }; TestFunctionality(docs, queries, expected); } void TestRanking() { const vector<string> docs = { "london is the capital of great britain", "paris is the capital of france", "berlin is the capital of germany", "rome is the capital of italy", "madrid is the capital of spain", "lisboa is the capital of portugal", "bern is the capital of switzerland", "moscow is the capital of russia", "kiev is the capital of ukraine", "minsk is the capital of belarus", "astana is the capital of kazakhstan", "beijing is the capital of china", "tokyo is the capital of japan", "bangkok is the capital of thailand", "welcome to moscow the capital of russia the third rome", "amsterdam is the capital of netherlands", "helsinki is the capital of finland", "oslo is the capital of norway", "stockgolm is the capital of sweden", "riga is the capital of latvia", "tallin is the capital of estonia", "warsaw is the capital of poland", }; const vector<string> queries = { "moscow is the capital of russia" }; const vector<string> expected = { Join(' ', vector{ "moscow is the capital of russia:", "{docid: 7, hitcount: 6}", "{docid: 14, hitcount: 6}", "{docid: 0, hitcount: 4}", "{docid: 1, hitcount: 4}", "{docid: 2, hitcount: 4}", }) }; TestFunctionality(docs, queries, expected); } void TestBasicSearch() { const vector<string> docs = { "we are ready to go", "come on everybody shake you hands", "i love this game", "just like exception safety is not about writing try catch everywhere in your code move semantics are not about typing double ampersand everywhere in your code", "daddy daddy daddy dad dad dad", "tell me the meaning of being lonely", "just keep track of it", "how hard could it be", "it is going to be legen wait for it dary legendary", "we dont need no education" }; const vector<string> queries = { "we need some help", "it", "i love this game", "tell me why", "dislike", "about" }; const vector<string> expected = { Join(' ', vector{ "we need some help:", "{docid: 9, hitcount: 2}", "{docid: 0, hitcount: 1}" }), Join(' ', vector{ "it:", "{docid: 8, hitcount: 2}", "{docid: 6, hitcount: 1}", "{docid: 7, hitcount: 1}", }), "i love this game: {docid: 2, hitcount: 4}", "tell me why: {docid: 5, hitcount: 2}", "dislike:", "about: {docid: 3, hitcount: 2}", }; TestFunctionality(docs, queries, expected); } int main() { TestRunner tr; RUN_TEST(tr, TestSerpFormat); RUN_TEST(tr, TestTop5); RUN_TEST(tr, TestHitcount); RUN_TEST(tr, TestRanking); RUN_TEST(tr, TestBasicSearch); } //#pragma once // //#include <iostream> //#include "search_server.h" //#include "parse.h" //#include "test_runner.h" //#include "profile.h" // //#include <algorithm> //#include <iterator> //#include <map> //#include <vector> //#include <string> //#include <sstream> //#include <fstream> //#include <random> //#include <thread> //#include <chrono> // //using namespace std; // //chrono::milliseconds random_time() { // std::mt19937_64 eng{ std::random_device{}() }; // std::uniform_int_distribution<> dist{ 10, 100 }; // // return chrono::milliseconds{ dist(eng) }; //} // //void TestSearchServer(vector<pair<istream, ostream*>> streams) { // // IteratorRange — шаблон из задачи Paginator // // random_time() — функция, которая возвращает случайный // // промежуток времени // // LOG_DURATION("Total"); // SearchServer srv(streams.front().first); // for (auto& [input, output] : IteratorRange(begin(streams) + 1, end(streams))) { // this_thread::sleep_for(random_time()); // if (!output) { // srv.UpdateDocumentBase(input); // } // else { // srv.AddQueriesStream(input, *output); // } // } //} // //void TestSplitIntoWords() { // vector<string_view> words = SplitIntoWordsView("this is a string"); // vector<string_view> result = { {"this"}, {"is"}, {"a"}, {"string"} }; // ASSERT_EQUAL(words, result); //} // //void TestHeavyLoad() { // LOG_DURATION("TestHeavyLoad"); // ifstream docs("docs.txt"); // ifstream query("query.txt"); // if (docs.is_open() && query.is_open()) { // SearchServer srv; // srv.UpdateDocumentBase(docs); // ostringstream queries_output; // srv.AddQueriesStream(query, queries_output); // const string result = queries_output.str(); // cout << "TestHeavyLoad is works" << endl; // } // else { // cout << "files not found" << endl; // } //} // //void TestMidLoad() { // LOG_DURATION("TestMidLoad"); // ifstream docs("docs-mid.txt"); // ifstream query("query-mid.txt"); // if (docs.is_open() && query.is_open()) { // SearchServer srv; // srv.UpdateDocumentBase(docs); // ostringstream queries_output; // srv.AddQueriesStream(query, queries_output); // const string result = queries_output.str(); // cout << "TestHeavyLoad is works" << endl; // } // else { // cout << "files not found" << endl; // } //} // //void TestFunctionality( // const vector<string>& docs, // const vector<string>& queries, // const vector<string>& expected // ) { // istringstream docs_input(Join('\n', docs)); // istringstream queries_input(Join('\n', queries)); // // SearchServer srv; // srv.UpdateDocumentBase(docs_input); // ostringstream queries_output; // srv.AddQueriesStream(queries_input, queries_output); // // const string result = queries_output.str(); // const auto lines = SplitBy(Strip(result), '\n'); // ASSERT_EQUAL(lines.size(), expected.size()); // for (size_t i = 0; i < lines.size(); ++i) { // ASSERT_EQUAL(lines[i], expected[i]); // } //} // //void TestSerpFormat() { // const vector<string> docs = { // "london is the capital of great britain", // "i am travelling down the river" // }; // const vector<string> queries = { "london", "the" }; // const vector<string> expected = { // "london: {docid: 0, hitcount: 1}", // Join(' ', vector{ // "the:", // "{docid: 0, hitcount: 1}", // "{docid: 1, hitcount: 1}" // }) // }; // // TestFunctionality(docs, queries, expected); //} // //void TestTop5() { // const vector<string> docs = { // "milk milk a", // "milk b", // "milk c", // "milk d", // "milk e", // "milk f", // "milk g", // "water a", // "water b", // "fire and earth" // }; // // const vector<string> queries = { "milk", "water", "rock" }; // const vector<string> expected = { // Join(' ', vector{ // "milk:", // "{docid: 0, hitcount: 2}", // "{docid: 1, hitcount: 1}", // "{docid: 2, hitcount: 1}", // "{docid: 3, hitcount: 1}", // "{docid: 4, hitcount: 1}" // }), // Join(' ', vector{ // "water:", // "{docid: 7, hitcount: 1}", // "{docid: 8, hitcount: 1}", // }), // "rock:", // }; // TestFunctionality(docs, queries, expected); //} // //void TestHitcount() { // const vector<string> docs = { // "the river goes through the entire city there is a house near it", // "the wall", // "walle", // "is is is is", // }; // const vector<string> queries = { "the", "wall", "all", "is", "the is" }; // const vector<string> expected = { // Join(' ', vector{ // "the:", // "{docid: 0, hitcount: 2}", // "{docid: 1, hitcount: 1}", // }), // "wall: {docid: 1, hitcount: 1}", // "all:", // Join(' ', vector{ // "is:", // "{docid: 3, hitcount: 4}", // "{docid: 0, hitcount: 1}", // }), // Join(' ', vector{ // "the is:", // "{docid: 3, hitcount: 4}", // "{docid: 0, hitcount: 3}", // "{docid: 1, hitcount: 1}", // }), // }; // TestFunctionality(docs, queries, expected); //} // //void TestRanking() { // const vector<string> docs = { // "london is the capital of great britain", // "paris is the capital of france", // "berlin is the capital of germany", // "rome is the capital of italy", // "madrid is the capital of spain", // "lisboa is the capital of portugal", // "bern is the capital of switzerland", // "moscow is the capital of russia", // "kiev is the capital of ukraine", // "minsk is the capital of belarus", // "astana is the capital of kazakhstan", // "beijing is the capital of china", // "tokyo is the capital of japan", // "bangkok is the capital of thailand", // "welcome to moscow the capital of russia the third rome", // "amsterdam is the capital of netherlands", // "helsinki is the capital of finland", // "oslo is the capital of norway", // "stockgolm is the capital of sweden", // "riga is the capital of latvia", // "tallin is the capital of estonia", // "warsaw is the capital of poland", // }; // // const vector<string> queries = { "moscow is the capital of russia" }; // const vector<string> expected = { // Join(' ', vector{ // "moscow is the capital of russia:", // "{docid: 7, hitcount: 6}", // "{docid: 14, hitcount: 6}", // "{docid: 0, hitcount: 4}", // "{docid: 1, hitcount: 4}", // "{docid: 2, hitcount: 4}", // }) // }; // TestFunctionality(docs, queries, expected); //} // //void TestBasicSearch() { // const vector<string> docs = { // "we are ready to go", // "come on everybody shake you hands", // "i love this game", // "just like exception safety is not about writing try catch everywhere in your code move semantics are not about typing double ampersand everywhere in your code", // "daddy daddy daddy dad dad dad", // "tell me the meaning of being lonely", // "just keep track of it", // "how hard could it be", // "it is going to be legen wait for it dary legendary", // "we dont need no education" // }; // // const vector<string> queries = { // "we need some help", // "it", // "i love this game", // "tell me why", // "dislike", // "about" // }; // // const vector<string> expected = { // Join(' ', vector{ // "we need some help:", // "{docid: 9, hitcount: 2}", // "{docid: 0, hitcount: 1}" // }), // Join(' ', vector{ // "it:", // "{docid: 8, hitcount: 2}", // "{docid: 6, hitcount: 1}", // "{docid: 7, hitcount: 1}", // }), // "i love this game: {docid: 2, hitcount: 4}", // "tell me why: {docid: 5, hitcount: 2}", // "dislike:", // "about: {docid: 3, hitcount: 2}", // }; // TestFunctionality(docs, queries, expected); //} // //using namespace std; // //int main() { // LOG_DURATION("all program"); // TestRunner tr; // RUN_TEST(tr, TestSplitIntoWords); // RUN_TEST(tr, TestSerpFormat); // RUN_TEST(tr, TestTop5); // RUN_TEST(tr, TestHitcount); // RUN_TEST(tr, TestRanking); // RUN_TEST(tr, TestBasicSearch); // RUN_TEST(tr, TestMidLoad); // RUN_TEST(tr, TestHeavyLoad); //}
[ "grad317@mail.ru" ]
grad317@mail.ru
0dd6cc93a76b0356ff40ed0e4b78dd59d4883aa9
0145d34a74227b85fddeed2de86f26037dd9e1a7
/solutions/climbing-stairs/solution.cpp
f04554a059f71183983b77a118128413df16090b
[ "BSD-2-Clause", "BSD-2-Clause-Views" ]
permissive
locker/leetcode
f2b5d2607b388e39b459ced77dde33d881e087cc
ad3a0b2f6b01d9ae05bb93b10ba1c9f66d6a9abb
refs/heads/master
2022-08-29T12:49:13.422799
2022-08-28T13:26:09
2022-08-28T13:26:09
172,386,042
0
1
null
null
null
null
UTF-8
C++
false
false
727
cpp
#include <iostream> using namespace std; class Solution { public: int climbStairs(int n) { // // At the i-th loop iteration 'curr' stores the number // of ways to climb a staircase of i steps while 'prev' // stores the number of ways to climb a staircase of i-1 // steps. Climbing a staircase of i+1 steps is equivalent // to either taking one step after climbing i steps or // taking two steps after climbing i-1 steps. // int curr = 1; int prev = 0; for (int i = 0; i < n; ++i) { int next = curr + prev; prev = curr; curr = next; } return curr; } }; int main() { Solution solution; for (int n = 1; n <= 10; ++n) cout << n << " => " << solution.climbStairs(n) << endl; return 0; }
[ "vdavydov.dev@gmail.com" ]
vdavydov.dev@gmail.com
5b7e606350b83b1a1f2984f39a46c5ece3c6899b
a7881a10dbeded9534f8c37d1655c1750d82518d
/math/vector/protos.hpp
066a0f18ddc3d5285ea0a78bbf766461664a6e39
[ "MIT" ]
permissive
aconstlink/natus
31130e7439c1bb983c35e5f8ed2e684677c6583a
8f8ad12aa71d246a10802bf5042f407de45d66d7
refs/heads/master
2023-08-17T01:58:03.578900
2023-03-29T12:45:45
2023-03-29T12:45:45
248,593,153
1
0
null
null
null
null
UTF-8
C++
false
false
322
hpp
#pragma once namespace natus { namespace math { template< typename type_t > class vector2 ; template< typename type_t > class vector3 ; template< typename type_t > class vector4 ; class vector2b ; class vector3b ; class vector4b ; } }
[ "aconstlink@gmail.com" ]
aconstlink@gmail.com
66626027e39f96b779cfb0835e271485ddb5da75
62b290cd682ac63d5f42d631d72ac0cbd7ec6f35
/Ham UCLN.cpp
693dbe4d9424e594df570148f478bd05344f5e7b
[]
no_license
phunghung/C
e85806c0deee889c93879b39155cf4bc6e291841
8f76c7c60eb3a223e36a6eb0370121995dc7a8c0
refs/heads/master
2020-04-30T21:30:06.631765
2015-02-27T10:14:21
2015-02-27T10:14:21
31,413,195
0
0
null
null
null
null
UTF-8
C++
false
false
244
cpp
#include<stdio.h> #include<conio.h> int UCLN(int a, int b) { while(b!=0) { int t=b; b=a%b; a=t; } return a; } int main() { int x, y, z; printf("nhap x, y: "); scanf("%d %d", &x,&y); z = UCLN(x,y); printf("UCLN la %d ", z); }
[ "phunghung1105@gmail.com" ]
phunghung1105@gmail.com
38b21d9ffb9a141338c037f014d44f8465fa23c8
9062ba1a708d6b85098be12f3b66025c0837d7be
/TestScrollView/Classes/ConnectServer.h
662f17c99649a0ffcb72ddbbf1a2b13b52778042
[ "MIT" ]
permissive
beijixing/C-SocketProtobuf
b90a5a3bc11b1e361b2edbae33e63e2e03aa81cb
2a56c5f76008970422f67b71a8c29f966d2ef855
refs/heads/master
2021-01-10T13:22:27.862362
2015-06-04T14:58:55
2015-06-04T14:58:55
36,876,966
0
0
null
null
null
null
UTF-8
C++
false
false
716
h
// // ConnectServer.h // TestScrollView // // Created by 郑光龙 on 15/5/25. // // #ifndef __TestScrollView__ConnectServer__ #define __TestScrollView__ConnectServer__ #include <stdio.h> #include "ODSocket.h" #include "pthread.h" class ConnectServer { public: ConnectServer(void); virtual ~ConnectServer(void); static ConnectServer* getInstance(); int start(); ODSocket getSocket(); void stop();//终止当前线程 int m_nState;//0链接成功,1 链接失败 private: ODSocket clientSocket; pthread_t m_nPid; static void* start_thread(void *arg); static ConnectServer *m_pConnectServer; }; #endif /* defined(__TestScrollView__ConnectServer__) */
[ "long_555@126.com" ]
long_555@126.com
3870d50232540099d1c7e82ccb76950714e4825a
843e711033d4132a52241aafac7b6d0edafb70b3
/2019_KAKAO_WINTER_04.cpp
1bac29a8ba82424ba650538f69003e8a739bd608
[]
no_license
evga7/Algorithm_Practice_02
c8e032dfb8377305732291c8e6e237601c7e1fd7
8103b7b74876ea1db759271bc1f08e1bf7d29814
refs/heads/master
2021-06-28T09:23:13.774259
2021-02-14T10:58:18
2021-02-14T10:58:18
202,974,232
0
0
null
null
null
null
UTF-8
C++
false
false
388
cpp
#include <bits/stdc++.h> using namespace std; typedef long long int ll; map<ll, ll>m; ll find(ll x) { if (m[x] == 0) return x; return m[x] = find(m[x]); } vector<long long> solution(long long k, vector<long long> room_number) { vector<long long> answer; int i; for (auto num:room_number) { ll temp= find(num); answer.push_back(temp); m[temp] = temp + 1; } return answer; }
[ "evga7@naver.com" ]
evga7@naver.com
305180a9f37c3d2d5b843fc3a15c7d353bb688ad
8f38c20607e4ee428b87e4a2faddf728b9f72f72
/colorscheme.h
bdabe57b53388de6346f0e073bb60faf12ea1325
[]
no_license
JPalka/fractals
b2a9aed51a19724ff569d98e03fe69dcec31efd4
8b40df1fbe961c24c0d7b2fc602dbbaeca12a3f5
refs/heads/master
2020-04-16T11:58:05.002682
2019-01-13T21:58:45
2019-01-13T21:58:45
165,559,280
0
0
null
null
null
null
UTF-8
C++
false
false
942
h
#ifndef COLORSCHEME_H #define COLORSCHEME_H #include <vector> #include "pixel.h" #include "colorrange.h" #include <iostream> #include <iomanip> // Schemat kolorowania pixeli. moze być histogram, gładszy histogram, whatever. class ColorScheme { public: virtual void colorPixel ( Pixel &pixel ) = 0; virtual ~ColorScheme () { // std::cout << "Colorscheme destructor\n"; } virtual ColorScheme *clone () = 0; virtual void init ( std::vector<Pixel> &pixels ) = 0; virtual void removeColorRange ( double range ) { range+= 1; } virtual void addColorRange ( ColorRange colorRange ) { colorRange.getRange (); } virtual void setMaxIterations ( int maxIterations ) { maxIterations += 1; } virtual void printProgress ( double percentage ) { std::cout << "\r"; std::cout.fill (0); std::cout.width (5); std::cout << std::left << std::setprecision (3) << percentage << "%" << std::flush; } }; #endif // COLORSCHEME_H
[ "ianuss@poczta.fm" ]
ianuss@poczta.fm
fe8e20ba7e5d6cacc73ec9c3abdf562d2f7e7b7a
8ae9bdbb56622e7eb2fe7cf700b8fe4b7bd6e7ae
/llvm-3.8.0-r267675/tools/clang/lib/Analysis/FormatString.cpp
badc71021a12f5ecaa11c61d07c5dd6d0ba3a78d
[ "NCSA" ]
permissive
mapu/toolchains
f61aa8b64d1dce5e618f0ff919d91dd5b664e901
3a6fea03c6a7738091e980b9cdee0447eb08bb1d
refs/heads/master
2021-09-16T00:07:16.731713
2017-12-29T04:09:01
2017-12-29T04:09:01
104,563,481
3
0
null
null
null
null
UTF-8
C++
false
false
28,123
cpp
// FormatString.cpp - Common stuff for handling printf/scanf formats -*- C++ -*- // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // Shared details for processing format strings of printf and scanf // (and friends). // //===----------------------------------------------------------------------===// #include "FormatStringParsing.h" #include "clang/Basic/LangOptions.h" #include "clang/Basic/TargetInfo.h" #include "llvm/Support/ConvertUTF.h" using clang::analyze_format_string::ArgType; using clang::analyze_format_string::FormatStringHandler; using clang::analyze_format_string::FormatSpecifier; using clang::analyze_format_string::LengthModifier; using clang::analyze_format_string::OptionalAmount; using clang::analyze_format_string::PositionContext; using clang::analyze_format_string::ConversionSpecifier; using namespace clang; // Key function to FormatStringHandler. FormatStringHandler::~FormatStringHandler() {} //===----------------------------------------------------------------------===// // Functions for parsing format strings components in both printf and // scanf format strings. //===----------------------------------------------------------------------===// OptionalAmount clang::analyze_format_string::ParseAmount(const char *&Beg, const char *E) { const char *I = Beg; UpdateOnReturn <const char*> UpdateBeg(Beg, I); unsigned accumulator = 0; bool hasDigits = false; for ( ; I != E; ++I) { char c = *I; if (c >= '0' && c <= '9') { hasDigits = true; accumulator = (accumulator * 10) + (c - '0'); continue; } if (hasDigits) return OptionalAmount(OptionalAmount::Constant, accumulator, Beg, I - Beg, false); break; } return OptionalAmount(); } OptionalAmount clang::analyze_format_string::ParseNonPositionAmount(const char *&Beg, const char *E, unsigned &argIndex) { if (*Beg == '*') { ++Beg; return OptionalAmount(OptionalAmount::Arg, argIndex++, Beg, 0, false); } return ParseAmount(Beg, E); } OptionalAmount clang::analyze_format_string::ParsePositionAmount(FormatStringHandler &H, const char *Start, const char *&Beg, const char *E, PositionContext p) { if (*Beg == '*') { const char *I = Beg + 1; const OptionalAmount &Amt = ParseAmount(I, E); if (Amt.getHowSpecified() == OptionalAmount::NotSpecified) { H.HandleInvalidPosition(Beg, I - Beg, p); return OptionalAmount(false); } if (I == E) { // No more characters left? H.HandleIncompleteSpecifier(Start, E - Start); return OptionalAmount(false); } assert(Amt.getHowSpecified() == OptionalAmount::Constant); if (*I == '$') { // Handle positional arguments // Special case: '*0$', since this is an easy mistake. if (Amt.getConstantAmount() == 0) { H.HandleZeroPosition(Beg, I - Beg + 1); return OptionalAmount(false); } const char *Tmp = Beg; Beg = ++I; return OptionalAmount(OptionalAmount::Arg, Amt.getConstantAmount() - 1, Tmp, 0, true); } H.HandleInvalidPosition(Beg, I - Beg, p); return OptionalAmount(false); } return ParseAmount(Beg, E); } bool clang::analyze_format_string::ParseFieldWidth(FormatStringHandler &H, FormatSpecifier &CS, const char *Start, const char *&Beg, const char *E, unsigned *argIndex) { // FIXME: Support negative field widths. if (argIndex) { CS.setFieldWidth(ParseNonPositionAmount(Beg, E, *argIndex)); } else { const OptionalAmount Amt = ParsePositionAmount(H, Start, Beg, E, analyze_format_string::FieldWidthPos); if (Amt.isInvalid()) return true; CS.setFieldWidth(Amt); } return false; } bool clang::analyze_format_string::ParseArgPosition(FormatStringHandler &H, FormatSpecifier &FS, const char *Start, const char *&Beg, const char *E) { const char *I = Beg; const OptionalAmount &Amt = ParseAmount(I, E); if (I == E) { // No more characters left? H.HandleIncompleteSpecifier(Start, E - Start); return true; } if (Amt.getHowSpecified() == OptionalAmount::Constant && *(I++) == '$') { // Warn that positional arguments are non-standard. H.HandlePosition(Start, I - Start); // Special case: '%0$', since this is an easy mistake. if (Amt.getConstantAmount() == 0) { H.HandleZeroPosition(Start, I - Start); return true; } FS.setArgIndex(Amt.getConstantAmount() - 1); FS.setUsesPositionalArg(); // Update the caller's pointer if we decided to consume // these characters. Beg = I; return false; } return false; } bool clang::analyze_format_string::ParseLengthModifier(FormatSpecifier &FS, const char *&I, const char *E, const LangOptions &LO, bool IsScanf) { LengthModifier::Kind lmKind = LengthModifier::None; const char *lmPosition = I; switch (*I) { default: return false; case 'h': ++I; if (I != E && *I == 'h') { ++I; lmKind = LengthModifier::AsChar; } else { lmKind = LengthModifier::AsShort; } break; case 'l': ++I; if (I != E && *I == 'l') { ++I; lmKind = LengthModifier::AsLongLong; } else { lmKind = LengthModifier::AsLong; } break; case 'j': lmKind = LengthModifier::AsIntMax; ++I; break; case 'z': lmKind = LengthModifier::AsSizeT; ++I; break; case 't': lmKind = LengthModifier::AsPtrDiff; ++I; break; case 'L': lmKind = LengthModifier::AsLongDouble; ++I; break; case 'q': lmKind = LengthModifier::AsQuad; ++I; break; case 'a': if (IsScanf && !LO.C99 && !LO.CPlusPlus11) { // For scanf in C90, look at the next character to see if this should // be parsed as the GNU extension 'a' length modifier. If not, this // will be parsed as a conversion specifier. ++I; if (I != E && (*I == 's' || *I == 'S' || *I == '[')) { lmKind = LengthModifier::AsAllocate; break; } --I; } return false; case 'm': if (IsScanf) { lmKind = LengthModifier::AsMAllocate; ++I; break; } return false; // printf: AsInt64, AsInt32, AsInt3264 // scanf: AsInt64 case 'I': if (I + 1 != E && I + 2 != E) { if (I[1] == '6' && I[2] == '4') { I += 3; lmKind = LengthModifier::AsInt64; break; } if (IsScanf) return false; if (I[1] == '3' && I[2] == '2') { I += 3; lmKind = LengthModifier::AsInt32; break; } } ++I; lmKind = LengthModifier::AsInt3264; break; case 'w': lmKind = LengthModifier::AsWide; ++I; break; } LengthModifier lm(lmPosition, lmKind); FS.setLengthModifier(lm); return true; } bool clang::analyze_format_string::ParseUTF8InvalidSpecifier( const char *SpecifierBegin, const char *FmtStrEnd, unsigned &Len) { if (SpecifierBegin + 1 >= FmtStrEnd) return false; const UTF8 *SB = reinterpret_cast<const UTF8 *>(SpecifierBegin + 1); const UTF8 *SE = reinterpret_cast<const UTF8 *>(FmtStrEnd); const char FirstByte = *SB; // If the invalid specifier is a multibyte UTF-8 string, return the // total length accordingly so that the conversion specifier can be // properly updated to reflect a complete UTF-8 specifier. unsigned NumBytes = getNumBytesForUTF8(FirstByte); if (NumBytes == 1) return false; if (SB + NumBytes > SE) return false; Len = NumBytes + 1; return true; } //===----------------------------------------------------------------------===// // Methods on ArgType. //===----------------------------------------------------------------------===// clang::analyze_format_string::ArgType::MatchKind ArgType::matchesType(ASTContext &C, QualType argTy) const { if (Ptr) { // It has to be a pointer. const PointerType *PT = argTy->getAs<PointerType>(); if (!PT) return NoMatch; // We cannot write through a const qualified pointer. if (PT->getPointeeType().isConstQualified()) return NoMatch; argTy = PT->getPointeeType(); } switch (K) { case InvalidTy: llvm_unreachable("ArgType must be valid"); case UnknownTy: return Match; case AnyCharTy: { if (const EnumType *ETy = argTy->getAs<EnumType>()) argTy = ETy->getDecl()->getIntegerType(); if (const BuiltinType *BT = argTy->getAs<BuiltinType>()) switch (BT->getKind()) { default: break; case BuiltinType::Char_S: case BuiltinType::SChar: case BuiltinType::UChar: case BuiltinType::Char_U: return Match; } return NoMatch; } case SpecificTy: { if (const EnumType *ETy = argTy->getAs<EnumType>()) argTy = ETy->getDecl()->getIntegerType(); argTy = C.getCanonicalType(argTy).getUnqualifiedType(); if (T == argTy) return Match; // Check for "compatible types". if (const BuiltinType *BT = argTy->getAs<BuiltinType>()) switch (BT->getKind()) { default: break; case BuiltinType::Char_S: case BuiltinType::SChar: case BuiltinType::Char_U: case BuiltinType::UChar: return T == C.UnsignedCharTy || T == C.SignedCharTy ? Match : NoMatch; case BuiltinType::Short: return T == C.UnsignedShortTy ? Match : NoMatch; case BuiltinType::UShort: return T == C.ShortTy ? Match : NoMatch; case BuiltinType::Int: return T == C.UnsignedIntTy ? Match : NoMatch; case BuiltinType::UInt: return T == C.IntTy ? Match : NoMatch; case BuiltinType::Long: return T == C.UnsignedLongTy ? Match : NoMatch; case BuiltinType::ULong: return T == C.LongTy ? Match : NoMatch; case BuiltinType::LongLong: return T == C.UnsignedLongLongTy ? Match : NoMatch; case BuiltinType::ULongLong: return T == C.LongLongTy ? Match : NoMatch; } return NoMatch; } case CStrTy: { const PointerType *PT = argTy->getAs<PointerType>(); if (!PT) return NoMatch; QualType pointeeTy = PT->getPointeeType(); if (const BuiltinType *BT = pointeeTy->getAs<BuiltinType>()) switch (BT->getKind()) { case BuiltinType::Void: case BuiltinType::Char_U: case BuiltinType::UChar: case BuiltinType::Char_S: case BuiltinType::SChar: return Match; default: break; } return NoMatch; } case WCStrTy: { const PointerType *PT = argTy->getAs<PointerType>(); if (!PT) return NoMatch; QualType pointeeTy = C.getCanonicalType(PT->getPointeeType()).getUnqualifiedType(); return pointeeTy == C.getWideCharType() ? Match : NoMatch; } case WIntTy: { QualType PromoArg = argTy->isPromotableIntegerType() ? C.getPromotedIntegerType(argTy) : argTy; QualType WInt = C.getCanonicalType(C.getWIntType()).getUnqualifiedType(); PromoArg = C.getCanonicalType(PromoArg).getUnqualifiedType(); // If the promoted argument is the corresponding signed type of the // wint_t type, then it should match. if (PromoArg->hasSignedIntegerRepresentation() && C.getCorrespondingUnsignedType(PromoArg) == WInt) return Match; return WInt == PromoArg ? Match : NoMatch; } case CPointerTy: if (argTy->isVoidPointerType()) { return Match; } if (argTy->isPointerType() || argTy->isObjCObjectPointerType() || argTy->isBlockPointerType() || argTy->isNullPtrType()) { return NoMatchPedantic; } else { return NoMatch; } case ObjCPointerTy: { if (argTy->getAs<ObjCObjectPointerType>() || argTy->getAs<BlockPointerType>()) return Match; // Handle implicit toll-free bridging. if (const PointerType *PT = argTy->getAs<PointerType>()) { // Things such as CFTypeRef are really just opaque pointers // to C structs representing CF types that can often be bridged // to Objective-C objects. Since the compiler doesn't know which // structs can be toll-free bridged, we just accept them all. QualType pointee = PT->getPointeeType(); if (pointee->getAsStructureType() || pointee->isVoidType()) return Match; } return NoMatch; } } llvm_unreachable("Invalid ArgType Kind!"); } QualType ArgType::getRepresentativeType(ASTContext &C) const { QualType Res; switch (K) { case InvalidTy: llvm_unreachable("No representative type for Invalid ArgType"); case UnknownTy: llvm_unreachable("No representative type for Unknown ArgType"); case AnyCharTy: Res = C.CharTy; break; case SpecificTy: Res = T; break; case CStrTy: Res = C.getPointerType(C.CharTy); break; case WCStrTy: Res = C.getPointerType(C.getWideCharType()); break; case ObjCPointerTy: Res = C.ObjCBuiltinIdTy; break; case CPointerTy: Res = C.VoidPtrTy; break; case WIntTy: { Res = C.getWIntType(); break; } } if (Ptr) Res = C.getPointerType(Res); return Res; } std::string ArgType::getRepresentativeTypeName(ASTContext &C) const { std::string S = getRepresentativeType(C).getAsString(); std::string Alias; if (Name) { // Use a specific name for this type, e.g. "size_t". Alias = Name; if (Ptr) { // If ArgType is actually a pointer to T, append an asterisk. Alias += (Alias[Alias.size()-1] == '*') ? "*" : " *"; } // If Alias is the same as the underlying type, e.g. wchar_t, then drop it. if (S == Alias) Alias.clear(); } if (!Alias.empty()) return std::string("'") + Alias + "' (aka '" + S + "')"; return std::string("'") + S + "'"; } //===----------------------------------------------------------------------===// // Methods on OptionalAmount. //===----------------------------------------------------------------------===// ArgType analyze_format_string::OptionalAmount::getArgType(ASTContext &Ctx) const { return Ctx.IntTy; } //===----------------------------------------------------------------------===// // Methods on LengthModifier. //===----------------------------------------------------------------------===// const char * analyze_format_string::LengthModifier::toString() const { switch (kind) { case AsChar: return "hh"; case AsShort: return "h"; case AsLong: // or AsWideChar return "l"; case AsLongLong: return "ll"; case AsQuad: return "q"; case AsIntMax: return "j"; case AsSizeT: return "z"; case AsPtrDiff: return "t"; case AsInt32: return "I32"; case AsInt3264: return "I"; case AsInt64: return "I64"; case AsLongDouble: return "L"; case AsAllocate: return "a"; case AsMAllocate: return "m"; case AsWide: return "w"; case None: return ""; } return nullptr; } //===----------------------------------------------------------------------===// // Methods on ConversionSpecifier. //===----------------------------------------------------------------------===// const char *ConversionSpecifier::toString() const { switch (kind) { case dArg: return "d"; case DArg: return "D"; case iArg: return "i"; case oArg: return "o"; case OArg: return "O"; case uArg: return "u"; case UArg: return "U"; case xArg: return "x"; case XArg: return "X"; case fArg: return "f"; case FArg: return "F"; case eArg: return "e"; case EArg: return "E"; case gArg: return "g"; case GArg: return "G"; case aArg: return "a"; case AArg: return "A"; case cArg: return "c"; case sArg: return "s"; case pArg: return "p"; case nArg: return "n"; case PercentArg: return "%"; case ScanListArg: return "["; case InvalidSpecifier: return nullptr; // POSIX unicode extensions. case CArg: return "C"; case SArg: return "S"; // Objective-C specific specifiers. case ObjCObjArg: return "@"; // FreeBSD kernel specific specifiers. case FreeBSDbArg: return "b"; case FreeBSDDArg: return "D"; case FreeBSDrArg: return "r"; case FreeBSDyArg: return "y"; // GlibC specific specifiers. case PrintErrno: return "m"; // MS specific specifiers. case ZArg: return "Z"; } return nullptr; } Optional<ConversionSpecifier> ConversionSpecifier::getStandardSpecifier() const { ConversionSpecifier::Kind NewKind; switch (getKind()) { default: return None; case DArg: NewKind = dArg; break; case UArg: NewKind = uArg; break; case OArg: NewKind = oArg; break; } ConversionSpecifier FixedCS(*this); FixedCS.setKind(NewKind); return FixedCS; } //===----------------------------------------------------------------------===// // Methods on OptionalAmount. //===----------------------------------------------------------------------===// void OptionalAmount::toString(raw_ostream &os) const { switch (hs) { case Invalid: case NotSpecified: return; case Arg: if (UsesDotPrefix) os << "."; if (usesPositionalArg()) os << "*" << getPositionalArgIndex() << "$"; else os << "*"; break; case Constant: if (UsesDotPrefix) os << "."; os << amt; break; } } bool FormatSpecifier::hasValidLengthModifier(const TargetInfo &Target) const { switch (LM.getKind()) { case LengthModifier::None: return true; // Handle most integer flags case LengthModifier::AsShort: if (Target.getTriple().isOSMSVCRT()) { switch (CS.getKind()) { case ConversionSpecifier::cArg: case ConversionSpecifier::CArg: case ConversionSpecifier::sArg: case ConversionSpecifier::SArg: case ConversionSpecifier::ZArg: return true; default: break; } } // Fall through. case LengthModifier::AsChar: case LengthModifier::AsLongLong: case LengthModifier::AsQuad: case LengthModifier::AsIntMax: case LengthModifier::AsSizeT: case LengthModifier::AsPtrDiff: switch (CS.getKind()) { case ConversionSpecifier::dArg: case ConversionSpecifier::DArg: case ConversionSpecifier::iArg: case ConversionSpecifier::oArg: case ConversionSpecifier::OArg: case ConversionSpecifier::uArg: case ConversionSpecifier::UArg: case ConversionSpecifier::xArg: case ConversionSpecifier::XArg: case ConversionSpecifier::nArg: return true; case ConversionSpecifier::FreeBSDrArg: case ConversionSpecifier::FreeBSDyArg: return Target.getTriple().isOSFreeBSD(); default: return false; } // Handle 'l' flag case LengthModifier::AsLong: // or AsWideChar switch (CS.getKind()) { case ConversionSpecifier::dArg: case ConversionSpecifier::DArg: case ConversionSpecifier::iArg: case ConversionSpecifier::oArg: case ConversionSpecifier::OArg: case ConversionSpecifier::uArg: case ConversionSpecifier::UArg: case ConversionSpecifier::xArg: case ConversionSpecifier::XArg: case ConversionSpecifier::aArg: case ConversionSpecifier::AArg: case ConversionSpecifier::fArg: case ConversionSpecifier::FArg: case ConversionSpecifier::eArg: case ConversionSpecifier::EArg: case ConversionSpecifier::gArg: case ConversionSpecifier::GArg: case ConversionSpecifier::nArg: case ConversionSpecifier::cArg: case ConversionSpecifier::sArg: case ConversionSpecifier::ScanListArg: case ConversionSpecifier::ZArg: return true; case ConversionSpecifier::FreeBSDrArg: case ConversionSpecifier::FreeBSDyArg: return Target.getTriple().isOSFreeBSD(); default: return false; } case LengthModifier::AsLongDouble: switch (CS.getKind()) { case ConversionSpecifier::aArg: case ConversionSpecifier::AArg: case ConversionSpecifier::fArg: case ConversionSpecifier::FArg: case ConversionSpecifier::eArg: case ConversionSpecifier::EArg: case ConversionSpecifier::gArg: case ConversionSpecifier::GArg: return true; // GNU libc extension. case ConversionSpecifier::dArg: case ConversionSpecifier::iArg: case ConversionSpecifier::oArg: case ConversionSpecifier::uArg: case ConversionSpecifier::xArg: case ConversionSpecifier::XArg: return !Target.getTriple().isOSDarwin() && !Target.getTriple().isOSWindows(); default: return false; } case LengthModifier::AsAllocate: switch (CS.getKind()) { case ConversionSpecifier::sArg: case ConversionSpecifier::SArg: case ConversionSpecifier::ScanListArg: return true; default: return false; } case LengthModifier::AsMAllocate: switch (CS.getKind()) { case ConversionSpecifier::cArg: case ConversionSpecifier::CArg: case ConversionSpecifier::sArg: case ConversionSpecifier::SArg: case ConversionSpecifier::ScanListArg: return true; default: return false; } case LengthModifier::AsInt32: case LengthModifier::AsInt3264: case LengthModifier::AsInt64: switch (CS.getKind()) { case ConversionSpecifier::dArg: case ConversionSpecifier::iArg: case ConversionSpecifier::oArg: case ConversionSpecifier::uArg: case ConversionSpecifier::xArg: case ConversionSpecifier::XArg: return Target.getTriple().isOSMSVCRT(); default: return false; } case LengthModifier::AsWide: switch (CS.getKind()) { case ConversionSpecifier::cArg: case ConversionSpecifier::CArg: case ConversionSpecifier::sArg: case ConversionSpecifier::SArg: case ConversionSpecifier::ZArg: return Target.getTriple().isOSMSVCRT(); default: return false; } } llvm_unreachable("Invalid LengthModifier Kind!"); } bool FormatSpecifier::hasStandardLengthModifier() const { switch (LM.getKind()) { case LengthModifier::None: case LengthModifier::AsChar: case LengthModifier::AsShort: case LengthModifier::AsLong: case LengthModifier::AsLongLong: case LengthModifier::AsIntMax: case LengthModifier::AsSizeT: case LengthModifier::AsPtrDiff: case LengthModifier::AsLongDouble: return true; case LengthModifier::AsAllocate: case LengthModifier::AsMAllocate: case LengthModifier::AsQuad: case LengthModifier::AsInt32: case LengthModifier::AsInt3264: case LengthModifier::AsInt64: case LengthModifier::AsWide: return false; } llvm_unreachable("Invalid LengthModifier Kind!"); } bool FormatSpecifier::hasStandardConversionSpecifier( const LangOptions &LangOpt) const { switch (CS.getKind()) { case ConversionSpecifier::cArg: case ConversionSpecifier::dArg: case ConversionSpecifier::iArg: case ConversionSpecifier::oArg: case ConversionSpecifier::uArg: case ConversionSpecifier::xArg: case ConversionSpecifier::XArg: case ConversionSpecifier::fArg: case ConversionSpecifier::FArg: case ConversionSpecifier::eArg: case ConversionSpecifier::EArg: case ConversionSpecifier::gArg: case ConversionSpecifier::GArg: case ConversionSpecifier::aArg: case ConversionSpecifier::AArg: case ConversionSpecifier::sArg: case ConversionSpecifier::pArg: case ConversionSpecifier::nArg: case ConversionSpecifier::ObjCObjArg: case ConversionSpecifier::ScanListArg: case ConversionSpecifier::PercentArg: return true; case ConversionSpecifier::CArg: case ConversionSpecifier::SArg: return LangOpt.ObjC1 || LangOpt.ObjC2; case ConversionSpecifier::InvalidSpecifier: case ConversionSpecifier::FreeBSDbArg: case ConversionSpecifier::FreeBSDDArg: case ConversionSpecifier::FreeBSDrArg: case ConversionSpecifier::FreeBSDyArg: case ConversionSpecifier::PrintErrno: case ConversionSpecifier::DArg: case ConversionSpecifier::OArg: case ConversionSpecifier::UArg: case ConversionSpecifier::ZArg: return false; } llvm_unreachable("Invalid ConversionSpecifier Kind!"); } bool FormatSpecifier::hasStandardLengthConversionCombination() const { if (LM.getKind() == LengthModifier::AsLongDouble) { switch(CS.getKind()) { case ConversionSpecifier::dArg: case ConversionSpecifier::iArg: case ConversionSpecifier::oArg: case ConversionSpecifier::uArg: case ConversionSpecifier::xArg: case ConversionSpecifier::XArg: return false; default: return true; } } return true; } Optional<LengthModifier> FormatSpecifier::getCorrectedLengthModifier() const { if (CS.isAnyIntArg() || CS.getKind() == ConversionSpecifier::nArg) { if (LM.getKind() == LengthModifier::AsLongDouble || LM.getKind() == LengthModifier::AsQuad) { LengthModifier FixedLM(LM); FixedLM.setKind(LengthModifier::AsLongLong); return FixedLM; } } return None; } bool FormatSpecifier::namedTypeToLengthModifier(QualType QT, LengthModifier &LM) { assert(isa<TypedefType>(QT) && "Expected a TypedefType"); const TypedefNameDecl *Typedef = cast<TypedefType>(QT)->getDecl(); for (;;) { const IdentifierInfo *Identifier = Typedef->getIdentifier(); if (Identifier->getName() == "size_t") { LM.setKind(LengthModifier::AsSizeT); return true; } else if (Identifier->getName() == "ssize_t") { // Not C99, but common in Unix. LM.setKind(LengthModifier::AsSizeT); return true; } else if (Identifier->getName() == "intmax_t") { LM.setKind(LengthModifier::AsIntMax); return true; } else if (Identifier->getName() == "uintmax_t") { LM.setKind(LengthModifier::AsIntMax); return true; } else if (Identifier->getName() == "ptrdiff_t") { LM.setKind(LengthModifier::AsPtrDiff); return true; } QualType T = Typedef->getUnderlyingType(); if (!isa<TypedefType>(T)) break; Typedef = cast<TypedefType>(T)->getDecl(); } return false; }
[ "wangl@cb94f8c2-beb9-42d2-aaaf-6dc30ea5c36a" ]
wangl@cb94f8c2-beb9-42d2-aaaf-6dc30ea5c36a
966fe7cb709256ca2389a83e0f0d0cbc711a1cad
59255ea212337bb849e640e3108f43764c23f87a
/xrtl/port/macos/gfx/es3/cgl_platform_context.h
f1e3f9820efff8150d6c4f211e99f4df3661725b
[ "Apache-2.0" ]
permissive
NeoTim/xrtl
2aea04e0768590cc68c75c57273c9c221bcc621e
8cf0e7cd67371297149bda8e62d03b8c1e2e2dfe
refs/heads/master
2021-09-18T19:37:25.148899
2018-07-18T17:48:33
2018-07-18T17:48:33
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,326
h
// Copyright 2017 Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #ifndef XRTL_PORT_MACOS_GFX_ES3_CGL_PLATFORM_CONTEXT_H_ #define XRTL_PORT_MACOS_GFX_ES3_CGL_PLATFORM_CONTEXT_H_ #include <chrono> #include <mutex> #include <vector> #include "xrtl/base/macros.h" #include "xrtl/gfx/es3/es3_platform_context.h" // OpenGL.h must be included before glad.h. #include <OpenGL/OpenGL.h> // NOLINT(build/include_order) #include <glad/glad.h> // NOLINT(build/include_order) namespace xrtl { namespace gfx { namespace es3 { // CGL-based GL context. class CGLPlatformContext : public ES3PlatformContext { public: CGLPlatformContext(); ~CGLPlatformContext(); bool Initialize(void* native_display, void* native_window, ref_ptr<ES3PlatformContext> share_group); void* native_handle() const override { return context_; } bool IsCurrent() override; bool MakeCurrent() override; void ClearCurrent() override; void Flush() override; void Finish() override; RecreateSurfaceResult RecreateSurface(Size2D size_hint) override; Size2D QuerySize() override; void SetSwapBehavior(SwapBehavior swap_behavior) override; bool SwapBuffers(std::chrono::milliseconds present_time_utc_millis) override; void* GetExtensionProc(const char* extension_name, const char* proc_name) override; private: friend class ES3PlatformContext; bool InitializeCGL(void* native_display); bool InitializeContext(ref_ptr<ES3PlatformContext> share_group); void InitializeDebugging(); bool is_headless_ = false; CGLPixelFormatObj pixel_format_ = nullptr; CGLContextObj context_ = nullptr; bool has_lost_context_ = false; }; } // namespace es3 } // namespace gfx } // namespace xrtl #endif // XRTL_PORT_MACOS_GFX_ES3_CGL_PLATFORM_CONTEXT_H_
[ "ben.vanik@gmail.com" ]
ben.vanik@gmail.com
6139fa2fcff363626257e845eb6b738ae0626e92
06a07b14003c7a16685dc81f51011090860e630c
/ToolKit/Tool/Toolkit.h
1c60ae935ffa734c714eccdd10d4c6b1f8c85d15
[]
no_license
tangyingzhong/ToolKit_Windows
034a8e3db47b7747b1e28c49dfe1f830985ea028
605adf96e8f8059531335cc0e405953afe88d8ba
refs/heads/master
2022-09-16T09:21:56.193927
2020-05-18T15:18:32
2020-05-18T15:18:53
181,990,882
2
1
null
null
null
null
UTF-8
C++
false
false
2,887
h
///************************************************************************ /// <copyrigth>2018-2019 Corporation.All Rights Reserved</copyrigth> /// <author>tangyingzhong</author> /// <contact>tangyz114987@outlook.com</contact> /// <version>V1.0.0</version> /// <describe> /// Basic tools for using ///</describe> /// <date>2019/3/5</date> ///*********************************************************************** #ifndef TOOLKIT_H #define TOOLKIT_H #include "Tool/BaseType/Bool.h" #include "Tool/BaseType/Double.h" #include "Tool/BaseType/Float.h" #include "Tool/BaseType/Int.h" #include "Tool/BaseType/String.h" #include "Tool/Buffer/Array.h" #include "Tool/Buffer/CircleBuffer.h" #include "Tool/Buffer/SingleList.h" #include "Tool/Buffer/DoubleList.h" #include "Tool/Buffer/SharedMemory.h" #include "Tool/Common/SystemType.h" #include "Tool/DateTime/DateTime.h" #include "Tool/Directory/Directory.h" #include "Tool/DllLoader/DllLoader.h" #include "Tool/Encoding/ANSI.h" #include "Tool/Encoding/Unicode.h" #include "Tool/Encoding/UTF8.h" #include "Tool/EventHandler/EventArgs.h" #include "Tool/EventHandler/EventHandler.h" #include "Tool/Eventor/IEvent.h" #include "Tool/Eventor/EventBase.h" #include "Tool/ModuleLoader/ModuleLoader.h" #include "Tool/File/File.h" #include "Tool/Json/JsonDoc.h" #include "Tool/Player/DirectShow/GeneralPlayer.h" #include "Tool/Player/Wav/IBlockPlayer.h" #include "Tool/Player/Wav/BlockPlayer.h" #include "Tool/Player/Wav/IAudioPlayer.h" #include "Tool/Player/Wav/AudioPlayer.h" #include "Tool/Reflect/Reflect.h" #include "Tool/Register/Register.h" #include "Tool/Register/ExportConfig.h" #include "Tool/Log/Log.h" #include "Tool/Log/LogType.h" #include "Tool/Log/SystemLog.h" #include "Tool/SerialPort/PortType.h" #include "Tool/SerialPort/SerialPort.h" #include "Tool/Socket/Socket.h" #include "Tool/Socket/SocketClient.h" #include "Tool/Socket/SocketServer.h" #include "Tool/Socket/SocketType.h" #include "Tool/Sql/SqlCommand.h" #include "Tool/Sql/SqlConnection.h" #include "Tool/Sql/SqlParamenter.h" #include "Tool/Thread/Event.h" #include "Tool/Thread/MessageDistributor.h" #include "Tool/Thread/Mutex.h" #include "Tool/Thread/MutexLocker.h" #include "Tool/Thread/Process.h" #include "Tool/Thread/Semaphore.h" #include "Tool/ThreadPool/IThreadPool.h" #include "Tool/ThreadPool/ThreadPool.h" #include "Tool/Ini/Ini.h" #include "Tool/Timer/Counter.h" #include "Tool/Timer/Delay.h" #include "Tool/Timer/Timer.h" #include "Tool/USB/USB.h" #include "Tool/USB/USBType.h" using namespace System; using namespace System::BasicType; using namespace System::Buffer; using namespace System::Clock; using namespace System::DataBase; using namespace System::Encoding; using namespace System::EventArgument; using namespace System::IO; using namespace System::Network; using namespace System::MultiMedia; using namespace System::Thread; #endif // TOOLKIT_H
[ "tangyz114987@outlook.com" ]
tangyz114987@outlook.com
7124a5c55acc7ef220f80d96564e3f695bc353cc
fcfe767ecee3f49e5e522efc7f026ee51360d45a
/src/traits3d/gridmapping.cpp
f8534eef31a8933f98f145fe4f9de78d15c9b627
[]
no_license
traits/Traits3D
8b755e68824f277f83a8ebbb923c94e10c1a55ea
09eb850ad4e1054a5574346a6b479dc2d60b1f09
refs/heads/master
2022-10-22T11:25:12.038773
2020-06-13T10:50:07
2020-06-13T10:50:07
271,989,930
0
0
null
null
null
null
UTF-8
C++
false
false
468
cpp
#include "traits3d/helper.h" #include "traits3d/gridmapping.h" namespace traits3d { GridMapping::GridMapping() { double d = std::numeric_limits<Triple::value_type>::max(); hull_p = Box(Triple(-d, -d, -d), Triple(d, d, d)); } bool GridMapping::setMeshSizeImpl(size_t u_size, size_t v_size) { if (u_size == umesh_p && v_size == vmesh_p) return true; umesh_p = u_size; vmesh_p = v_size; dirty_data_p = true; return true; } } // ns
[ "os@traits.de" ]
os@traits.de
74cc534f70ea3da7b0493b78cba05c08f8ad6b95
e4292ab5dfb57c4d50cc514c369456b7d6715af4
/cpp/ConditionalStream/ConditionalStream.h
8c8a5cbf48773ba22a7f65e77ad9bd7e16b5c468
[ "MIT" ]
permissive
tsmanner/sandbox
e80d4f9213b436b2b0a7da12bc29fdc50e5fec6b
53b07c49b8cb5d2fb86cec5c1464a02fd1f4c673
refs/heads/master
2021-07-25T05:23:53.944411
2020-08-05T18:44:27
2020-08-05T18:44:27
205,987,288
0
0
null
null
null
null
UTF-8
C++
false
false
1,304
h
#ifndef ConditionalStream_h #define ConditionalStream_h #include <iostream> #include <type_traits> template <typename StreamType> class ConditionalStream { public: ConditionalStream(StreamType& inStream): mStream(inStream), mEnabled(true) {} bool enabled() const { return mEnabled; } void setEnabled(const bool& inEnabled) { mEnabled = inEnabled; } template <typename Element, typename... Elements> typename std::enable_if<(sizeof...(Elements) == 0), StreamType&>::type _stream(const Element& element, const Elements&... elements) const { return mStream << element; } template <typename Element, typename... Elements> typename std::enable_if<(sizeof...(Elements) != 0), StreamType&>::type _stream(const Element& element, const Elements&... elements) const { mStream << element; _stream<Elements...>(elements...); return mStream; } template <typename... Elements> StreamType& stream(const Elements&... elements) const { if (enabled()) _stream(elements...); return mStream; } struct EndlineProxy { friend StreamType& operator<<(StreamType& inStream, const ConditionalStream::EndlineProxy& inEndl) { return inStream << std::endl; } }; const EndlineProxy& endl{}; private: StreamType& mStream; bool mEnabled; }; #endif
[ "tsmanner@us.ibm.com" ]
tsmanner@us.ibm.com
333bd7c1f652ea736cf8730531a8a6c568ec37e5
1730653f737d904dd639001049f8e50b3ea56a4e
/src/utility.h
27b4679ac4a0a1602561391438dad36fecb54f72
[]
no_license
seggiepants/olc_code_jam_2020_pge
25fa449fc97aad20dfe12d307df08ce36e4cd39f
1bdb0ab12f2fe82813c5f98f8d5300c7c25b71be
refs/heads/master
2023-06-20T13:18:35.893617
2021-07-16T01:16:47
2021-07-16T01:16:47
385,814,925
0
0
null
null
null
null
UTF-8
C++
false
false
212
h
#pragma once #include <string> #ifndef __UTILITY_H__ #define __UTILITY_H__ const int STATE_MENU = 0; const int STATE_PLAY = 1; const int STATE_EXIT = 2; const float FRAME_MIN = (float)(1000.0 / 60.0); #endif
[ "41271733+seggiepants@users.noreply.github.com" ]
41271733+seggiepants@users.noreply.github.com
eee061d9d4502125d7facec6c0a191e8f29e833c
df994271817677d4b1057ddd85837438341f4e5d
/tests/TestNode.cpp
91e1fe86bdf10bf4fb88317f0f7a38038cb20ddf
[]
no_license
aravinho/tensorflow
2a5410efdbc80cde25fe7f7ac6fad5eb36cafd38
a5e8ec95a7f7edee93e9bf1dc862c971a81a6c7d
refs/heads/master
2020-04-06T06:50:07.974132
2016-08-19T18:47:17
2016-08-19T18:47:17
58,961,764
0
0
null
null
null
null
UTF-8
C++
false
false
12,223
cpp
#include <iostream> #include "TestNode.h" #include "TestUtilities.h" #include "../src/Node.h" using namespace std; void test_node_constructor() { // create basic node Node n; assert_equal_int(n.get_num_children(), 0, "test_node_constructor"); assert_equal_int(n.get_mark(), 0, "test_node_constructor"); assert_true(n.get_type() == VariableType::INVALID_VAR_TYPE, "Initial var type should be invalid", "test_node_constructor"); assert_true(n.get_operation() == OperationType::INVALID_OPERATION, "Initial operation type should be invalid", "test_node_constructor"); assert_equal_int(n.get_parents()->size(), 0, "test_node_constructor"); assert_true(n.get_child_one() == NULL, "Child one should be NULL initially", "test_node_constructor"); assert_true(n.get_child_two() == NULL, "Child two should be NULL initially", "test_node_constructor"); assert_equal_string(n.get_child_one_name(), "", "test_node_constructor"); assert_equal_string(n.get_child_two_name(), "", "test_node_constructor"); assert_false(n.is_constant(), "Node should not be constant", "test_node_constructor"); // create constant node Node const_node("-7.3", true); assert_true(const_node.is_constant(), "node should be constant", "test_node_constructor"); assert_equal_string(const_node.get_name(), "-7.3", "test_node_constructor"); assert_true(const_node.get_type() == VariableType::CONSTANT, "node variable type should be constant", "test_node_constructor"); assert_equal_int(const_node.get_num_children(), 0, "test_node_constructor"); assert_equal_int(const_node.get_mark(), 0, "test_node_constructor"); assert_true(n.get_operation() == OperationType::INVALID_OPERATION, "Initial operation type should be invalid", "test_node_constructor"); assert_equal_int(n.get_parents()->size(), 0, "test_node_constructor"); assert_true(n.get_child_one() == NULL, "Child one should be NULL initially", "test_node_constructor"); assert_true(n.get_child_two() == NULL, "Child two should be NULL initially", "test_node_constructor"); assert_equal_string(n.get_child_one_name(), "", "test_node_constructor"); assert_equal_string(n.get_child_two_name(), "", "test_node_constructor"); pass("test_node_constructor"); } void test_node_destructor() { // test that Node destructor only frees constant children Node *n = new Node("n", false); Node *fc = new Node("fc", false); Node *sc = new Node("17", true); n->set_child(fc); n->set_child(sc); fc->add_parent(n); sc->add_parent(n); delete n; delete fc; pass("test_node_destructor"); } void test_node_name() { // test set name sets name Node *n = new Node(); n->set_name("lala"); assert_equal_string(n->get_name(), "lala", "test_node_name"); // test constructor sets name, set_name changes it Node x("x", false); assert_equal_string(x.get_name(), "x", "test_node_name"); x.set_name("y"); assert_equal_string(x.get_name(), "y", "test_node_name"); delete n; pass("test_node_name"); } void test_node_type() { // test type is initially invalid Node a("a", false); assert_true(a.get_type() == VariableType::INVALID_VAR_TYPE, "A's initial var type is invalid", "test_node_type"); // test get_type reflects set_type a.set_type(VariableType::INTVAR); assert_true(a.get_type() == VariableType::INTVAR, "A's var Type should be INTVAR", "test_node_type"); a.set_type(VariableType::LOSS); assert_true(a.get_type() == VariableType::LOSS, "A's var type should be LOSS", "test_node_type"); // test constant nodes can't have their types changed Node b("9", true); assert_true(b.get_type() == VariableType::CONSTANT, "B's initial var type should be CONSTANT", "test_node_type"); b.set_type(VariableType::LOSS); assert_true(b.get_type() == VariableType::CONSTANT, "B's initial var type should be CONSTANT", "test_node_type"); pass("test_node_type"); } void test_node_is_constant() { // test constant constructor sets is_constant Node a("0.9", true); assert_true(a.is_constant(), "Node A should be constant", "test_node_is_constant"); Node *b = new Node("b", false); assert_false(b->is_constant(), "Node B should not be constant", "test_node_is_constant"); delete b; pass("test_node_is_constant"); } void test_node_operation() { // test initial operation is invalid Node a("a", false); assert_true(a.get_operation() == OperationType::INVALID_OPERATION, "A's initial operation type should be Invalid", "test_node_operation"); // test get_operation reflects set_operation a.set_operation(OperationType::ADD); assert_true(a.get_operation() == OperationType::ADD, "A's operation type should be ADD", "test_node_operation"); a.set_operation(OperationType::LOGISTIC); assert_true(a.get_operation() == OperationType::LOGISTIC, "A's operation type should be LOGISTIC", "test_node_operation"); // test constant nodes cannot have their operation changed Node b("9.0", true); b.set_operation(OperationType::MUL); assert_true(b.get_operation() == OperationType::INVALID_OPERATION, "Constant nodes can't have their operation set", "test_node_operation"); pass("test_node_operation"); } void test_node_parent() { // test node has no parents initially Node a("a", false); assert_equal_int(a.get_parents()->size(), 0, "test_node_parent"); // test adding null parent doesn't work assert_false(a.add_parent(NULL), "Shouldn't be able to set a NULL parent", "test_node_parent"); // test adding constant parent doesn't work Node *x = new Node("0", true); assert_false(a.add_parent(x), "shouldn't be able to set a constant parent", "test_node_parent"); // test adding input/weight/exp_output parent doesn't work Node *y = new Node("y", false); y->set_type(VariableType::INPUT); assert_false(a.add_parent(y), "shouldn't be able to set an input/weight/exp_output parent", "test_node_parent"); y->set_type(VariableType::WEIGHT); assert_false(a.add_parent(y), "shouldn't be able to set an input/weight/exp_output parent", "test_node_parent"); y->set_type(VariableType::EXP_OUTPUT); assert_false(a.add_parent(y), "shouldn't be able to set an input/weight/exp_output parent", "test_node_parent"); // test basic add parent works Node *parent1 = new Node("parent1", false), *parent2 = new Node("parent2", false); assert_true(a.add_parent(parent1), "Should be able to set parent1", "test_node_parent"); assert_equal_int(a.get_parents()->size(), 1, "test_node_parent"); assert_equal_int(a.get_parent_names()->size(), 1, "test_node_parent"); assert_true(a.add_parent(parent2), "Should be able to set parent2", "test_node_parent"); assert_equal_int(a.get_parent_names()->size(), 2, "test_node_parent"); set<Node *> *parents = a.get_parents(); set<string> *parent_names = a.get_parent_names(); set<string> expected_parents = {"parent1", "parent2"}; for (set<Node *>::iterator it = parents->begin(); it != parents->end(); ++it) { Node *p = *it; assert_true(expected_parents.count(p->get_name()) == 1, "parent should be found", "test_node_parent"); } for (set<string>::iterator it = parent_names->begin(); it != parent_names->end(); ++it) { assert_true(expected_parents.count(*it) == 1, "parent name should be found", "test_node_parent"); } // test loss nodes cannot have non-loss parents Node loss("loss", false); loss.set_type(VariableType::LOSS); Node *z = new Node("z", false); assert_false(loss.add_parent(z), "Loss nodes cannot have parents", "test_node_parent"); // test loss node can have themselves set as their parents assert_true(loss.add_parent(&loss), "Loss nodes' parents must be themselves", "test_node_parent"); delete x; delete y; delete z; delete parent1; delete parent2; pass("test_node_parent"); } void test_node_children() { Node a("a", false); Node *child_one = new Node("child_one", false); Node *child_two = new Node("23.0", true); // test cannot set a null child assert_false(a.set_child(NULL), "Cannot set a null child", "test_node_children"); // test that an input/weight/exp_output node cannot have a child a.set_type(VariableType::INPUT); assert_false(a.set_child(child_one), "Input/Weight/exp_output nodes cannot have children", "test_node_children"); a.set_type(VariableType::WEIGHT); assert_false(a.set_child(child_one), "Input/Weight/exp_output nodes cannot have children", "test_node_children"); a.set_type(VariableType::EXP_OUTPUT); assert_false(a.set_child(child_one), "Input/Weight/exp_output nodes cannot have children", "test_node_children"); a.set_type(VariableType::INTVAR); // test cannot set a loss node as a child Node *loss = new Node("loss", false); loss->set_type(VariableType::LOSS); assert_false(a.set_child(loss), "Cannot set a loss node as a child", "test_node_children"); // test basic add child assert_true(a.set_child(child_one), "Child one should be set successfully", "test_node_children"); assert_equal_int(a.get_num_children(), 1, "test_node_children"); assert_equal_string(a.get_child_two_name(), "", "test_node_children"); // test child one and child two added successfully (child_two constant) assert_true(a.set_child(child_two), "Child two should be set successfully", "test_node_children"); assert_equal_int(a.get_num_children(), 2, "test_node_children"); assert_equal_string(a.get_child_one_name(), "child_one", "test_node_children"); assert_equal_string(a.get_child_two_name(), "23.0", "test_node_children"); assert_true(a.get_child_one() == child_one, "Child one should be child_one node", "test_node_children"); assert_true(a.get_child_two() == child_two, "Child two should be child_two node", "test_node_children"); assert_true(a.has_child_with_name("child_one"), "A has a child with name child_one", "test_node_children"); assert_true(a.has_child_with_name("23.0"), "A has a child with name child_two", "test_node_children"); // test cannot have more than 2 children Node *child_three = new Node("child_three", false); assert_false(a.set_child(child_three), "Cannot have three children", "test_node_children"); Node *x = new Node("x", false), *y = new Node("-89", true); // test constant nodes cannot have children assert_false(child_two->set_child(x), "Constant nodes cannot have children", "test_node_children"); assert_true(child_one->set_child(y), "Child one should be able to have a child", "test_node_children"); delete child_one; delete loss; delete child_three; delete x; // do not delete constant nodes pass("test_node_children"); } void test_node_mark() { Node a("a", false); // test mark is initially 0. assert_equal_int(a.get_mark(), 0, "test_node_mark"); assert_true(a.is_unmarked(), "A should be unmarked", "test_node_mark"); assert_false(a.is_temporary_marked(), "A should not be temporary marked", "test_node_mark"); assert_false(a.is_permanent_marked(), "A should not be permanent marked", "test_node_mark"); // test temporary mark works a.temporary_mark(); assert_equal_int(a.get_mark(), 1, "test_node_mark"); assert_false(a.is_unmarked(), "A should not be unmarked", "test_node_mark"); assert_true(a.is_temporary_marked(), "A should be temporary marked", "test_node_mark"); assert_false(a.is_permanent_marked(), "A should not be permanent marked", "test_node_mark"); // test permanent mark works a.permanent_mark(); assert_equal_int(a.get_mark(), 2, "test_node_mark"); assert_false(a.is_unmarked(), "A should not be unmarked", "test_node_mark"); assert_false(a.is_temporary_marked(), "A should not be temporary marked", "test_node_mark"); assert_true(a.is_permanent_marked(), "A should be permanent marked", "test_node_mark"); // test clear mark works a.clear_mark(); assert_equal_int(a.get_mark(), 0, "test_node_mark"); assert_true(a.is_unmarked(), "A should be unmarked", "test_node_mark"); assert_false(a.is_temporary_marked(), "A should not be temporary marked", "test_node_mark"); assert_false(a.is_permanent_marked(), "A should not be permanent marked", "test_node_mark"); pass("test_node_mark"); } void run_node_tests() { cout << "\nTesting Node Class... " << endl << endl; test_node_constructor(); test_node_destructor(); test_node_name(); test_node_type(); test_node_is_constant(); test_node_operation(); test_node_parent(); test_node_children(); test_node_mark(); cout << "\nAll Node Tests Passed." << endl << endl; }
[ "aravind.sivakumar@berkeley.edu" ]
aravind.sivakumar@berkeley.edu
88a044e92f5ea0f136259b8be7ed184cb5beab03
e750354074de25de034a4427b48802164e7b30ce
/socket/sockme.cpp
6a2c9d8c11141acb0b12f50314c1cd6b9f0401e4
[]
no_license
madsen-git/NTools
62a65e51547ea89cdba48a2d5553c30c4da76ab5
c7b1244a4e9b93cdff939f4f608a269f307aa37e
refs/heads/master
2021-01-01T03:35:46.030354
2018-09-29T00:48:31
2018-09-29T00:48:31
58,266,851
0
7
null
null
null
null
GB18030
C++
false
false
17,528
cpp
#include "sockme.h" #include <cstdio> #include <assert.h> #include <process.h> namespace gtc { // 当前sockets信息 WSADATA socket::mc_wsData = {0}; // 基础端口号 uint16_t socket::mc_unBaseport = 0; socket::socket(void) : m_scMain(INVALID_SOCKET) , m_beType(BESocketTypeStream) { } socket::~socket(void) { } /***************************************************************************************** << --- static sockme::init 2014-04-08 --- >> 说明:初始化socket调用的环境;进程中只需执行一次。 参数: major = 套接字的主板本号 minor = 套接字的次板本号 返回值:是否成功 *****************************************************************************************/ bool socket::init(uint8_t major, uint8_t minor) { return WSAStartup(MAKEWORD(major, minor), &mc_wsData)==0; } /***************************************************************************************** << --- static sockme::clean 2014-04-08 --- >> 说明:释放socket调用的环境;进程中只需执行一次。 参数: 返回值: *****************************************************************************************/ void socket::clean() { WSACleanup(); } /***************************************************************************************** << --- static socket::threadECHO 2014-04-10 --- >> 说明:用来与客户端进行沟通的线程。 参数: parg = 与客户端连接的套接字 返回值:0=成功 *****************************************************************************************/ unsigned __stdcall socket::threadECHO(void *parg) { const int len = 4096; char buf[len]; SOCKET scSub = *(SOCKET*)parg; int rc = recv(scSub, buf, len, 0); while (rc != SOCKET_ERROR && rc > 0) { buf[rc] = '\0'; if(::send(scSub, buf, rc, 0) == SOCKET_ERROR) { //errorInfo("echo服务发送数据失败!"); #ifdef _DEBUG std::cout << "echo服务发送数据失败!" << std::endl; #endif return -1; } std::cout << int(scSub) << ":" << buf << std::endl; rc = recv(scSub, buf, len, 0); } if(rc == SOCKET_ERROR) return -2; #ifdef _DEBUG std::cout << scSub << ":结束服务!" << std::endl; #endif closesocket(scSub); return 0; } /***************************************************************************************** << --- static socket::threadHeartBeat 2014-05-04 --- >> 说明:用来与服务端进行沟通的线程。 以固定时间SOCKET_HEARTBEAT_INTERVAL往服务端发送心跳包。 参数: parg = 与服务端连接的套接字 返回值:0=成功 *****************************************************************************************/ unsigned __stdcall socket::threadHeartBeat(void *parg) { char buf[] = "heart beat"; SCDataType data(std::begin(buf), std::end(buf)); SOCKET scSub = *(SOCKET*)parg; while(true) { #if defined(_DEBUG) std::cout << "start send heart beat..." << std::endl; #endif if(!send(scSub, data)) { #if defined(_DEBUG) char buf[40] = {0}; std::sprintf(buf, "发送心跳包失败!%d", ::WSAGetLastError()); std::cout << buf << std::endl; #endif closesocket(scSub); break; } Sleep(SOCKET_HEARTBEAT_INTERVAL); } return 0; } /***************************************************************************************** << --- socket::connect 2014-04-08 --- >> 说明:打开链接套接字,一般被客户端调用 参数: phost = 被链接的设备主机名称或IP地址,如:www.163.com 或192.168.1.55 pservice = 链接采用的服务操作或服务端口号,如:daytime 或3328 transport = 传输协议,如:tcp或udp 返回值:是否链接成功 *****************************************************************************************/ bool socket::connect(const char *phost, const char *pservice, const char* ptransport) { m_csHost = phost?phost:""; m_csService = pservice? pservice: ""; m_csTransport = ptransport ? ptransport : ""; return connect(); } bool socket::connect() { sockaddr_in scaddr = {0}; scaddr.sin_family = AF_INET; // 服务端口号 if(servent *pse = getservbyname(m_csService.c_str(), m_csTransport.c_str())) scaddr.sin_port = pse->s_port; else if((scaddr.sin_port = htons((u_short)std::atoi(m_csService.c_str()))) == 0) { errorInfo("无法得到服务“%s”的入口点!", m_csService.c_str()); return false; } // 主机IP地址 if(hostent *phe = gethostbyname(m_csHost.c_str())) memcpy_s(&scaddr.sin_addr, sizeof(scaddr.sin_addr), phe->h_addr, phe->h_length); else if((scaddr.sin_addr.s_addr = inet_addr(m_csHost.c_str())) == INADDR_ANY) { errorInfo("无法识别的主机地址“%s”!", m_csHost.c_str()); return false; } // 传输协议 protoent *ppe = getprotobyname(m_csTransport.c_str()); if(!ppe) { errorInfo("无法得到与协议“%s”相关的信息!", m_csTransport.c_str()); return false; } if(_stricmp(m_csTransport.c_str(), "udp") == 0) m_beType = BESocketTypeDgram; else m_beType = BESocketTypeStream; // create socket m_scMain = ::socket(PF_INET, int(m_beType), ppe->p_proto); if(m_scMain == INVALID_SOCKET) { errorInfo("无法创建套接字!"); return false; } // connect socket if(::connect(m_scMain, (sockaddr *)&scaddr, sizeof(scaddr)) == SOCKET_ERROR) { closesocket(m_scMain); m_scMain = INVALID_SOCKET; errorInfo("无法打开到%s.%s的链接!", m_csHost.c_str(), m_csService.c_str()); return false; } //#ifdef _DEBUG std::cout << "链接到服务:" << m_csHost.c_str() << ":" << m_csService.c_str() << "(" << scaddr.sin_port << ") " << m_csTransport.c_str() << std::endl; //#endif return true; } /***************************************************************************************** << --- socket::daytime 2014-04-10 --- >> 说明:从daytime服务取得时间 参数: now = 保存取得的服务器时间 返回值:是否执行成功 *****************************************************************************************/ bool socket::daytime(std::time_t &now) { memset(&now, 0, sizeof(now)); std::string msg("what time is it?"); ::send(m_scMain, msg.data(), msg.length(), 0); // SCDataType data; if(receive(data) && data.size() >= sizeof(now)) { memcpy_s(&now, sizeof(now), data.data(), sizeof(now)); now = ntohl((u_long)now); now -= SOCKET_WINEPOCH; } else { errorInfo("接收daytime服务数据失败!"); return false; } return true; } /***************************************************************************************** << --- socket::passive 2014-04-09 --- >> 说明:创建被动套接字,一般被服务端调用 参数: pservice = 链接采用的服务操作或服务端口号,如:daytime 或3328 ptransport = 传输协议,如:tcp或udp queueLen = 所希望的连接请求队列的长度,采用UDP时该参数无效 返回值:是否链接成功 *****************************************************************************************/ bool socket::passive(const char *pservice, const char* ptransport, int32_t queueLen) { sockaddr_in scaddr = {0}; scaddr.sin_family = AF_INET; scaddr.sin_addr.s_addr = INADDR_ANY; // 服务名或端口号 if(servent *pse = getservbyname(pservice, ptransport)) scaddr.sin_port = htons(ntohs(pse->s_port)+mc_unBaseport); else if((scaddr.sin_port = htons((u_short)atoi(pservice))) == 0) { errorInfo("无法得到服务“%s”的入口点!", pservice); return false; } // 传输协议 protoent *ppe = getprotobyname(ptransport); if(!ppe) { errorInfo("无法得到与协议“%s”相关的信息!", ptransport); return false; } if(_stricmp(ptransport, "udp") == 0) m_beType = BESocketTypeDgram; else m_beType = BESocketTypeStream; // create socket m_scMain = ::socket(PF_INET, int(m_beType), ppe->p_proto); if(m_scMain == INVALID_SOCKET) { errorInfo("无法创建套接字!"); return false; } // bind socket if(bind(m_scMain, (sockaddr *)&scaddr, sizeof(scaddr)) == SOCKET_ERROR) { errorInfo("无法邦定到“%s”端口上!", pservice); return false; } if(m_beType == BESocketTypeStream && listen(m_scMain, queueLen) == SOCKET_ERROR) { errorInfo("无法启动对“%s”端口的侦听!", pservice); return false; } #ifdef _DEBUG std::cout << "已启动服务:" << pservice << "(" << scaddr.sin_port << ") " << ptransport << std::endl; #endif return true; } /***************************************************************************************** << --- socket::serviceDaytimeUDP 2014-04-10 --- >> 说明:创建基于daytime服务的被动套接字 参数: 返回值:是否执行成功 *****************************************************************************************/ bool socket::serviceDaytimeUDP() { const int len = 2048; char buf[len] = {0}; sockaddr_in clientAddr = {0}; int clientAddrLen = sizeof(clientAddr); std::time_t now = {0}; if(passive("daytime", "udp", 0)) { while(true) { if(recvfrom(m_scMain, buf, len, 0, (sockaddr *)&clientAddr, &clientAddrLen) == SOCKET_ERROR) { errorInfo("执行daytime服务的接收命令失败!"); return false; } #ifdef _DEBUG std::cout << "接收到" << inet_ntoa(clientAddr.sin_addr) << " 的请求 ..." << std::endl; #endif std::time(&now); now = htonl((u_long)(now + SOCKET_WINEPOCH)); sendto(m_scMain, (char *)&now, sizeof(now), 0, (sockaddr *)&clientAddr, clientAddrLen); } } else { errorInfo("构建daytime服务失败!"); return false; } return true; } /***************************************************************************************** << --- socket::serviceECHOTCP 2014-04-10 --- >> 说明:创建基于echo服务的被动套接字;采用并发方式。 参数: 返回值:是否执行成功 *****************************************************************************************/ bool socket::serviceECHOTCP() { const int len = 2048; char buf[len] = {0}; sockaddr_in clientAddr = {0}; int clientAddrLen = sizeof(clientAddr); SOCKET scClient; if(passive("echo", "tcp", 10)) { while(true) { if((scClient = accept(m_scMain, (sockaddr *)&clientAddr, &clientAddrLen)) == INVALID_SOCKET) { errorInfo("执行accept命令失败!"); return false; } #ifdef _DEBUG std::cout << "接收到" << inet_ntoa(clientAddr.sin_addr) << " 的请求 ..." << std::endl; #endif if(_beginthread((void (*)(void*))threadECHO, SOCKET_STKSIZE, (void*)scClient) < 0) { errorInfo("启动echo服务子线程失败!%d", strerror(errno)); } } } else { errorInfo("构建daytime服务失败!"); return false; } return true; } /***************************************************************************************** 说明:创建基于port端口的心跳包检测服务;采用并发方式。 对接收的数据加上一个头标记进行回发。 参数: port = 端口号 返回值:是否执行成功 *****************************************************************************************/ bool socket::serviceHeartBeat(uint16_t port) { std::string hbHead = "HB"; const int len = 2048; char buf[len] = {0}; sockaddr_in clientAddr = {0}; int clientAddrLen = sizeof(clientAddr); SOCKET scaccept; char pport[10] = {0}; std::sprintf(pport, "%u", port); u_long nonblock = 1; FD_SET fdread; timeval tv = {2, 0}; // 2秒 std::list<BSSocketInfo *>::iterator iter; if(passive(pport, "tcp", 10)) { if(ioctlsocket(m_scMain, FIONBIO, &nonblock) == SOCKET_ERROR) { errorInfo("执行ioctlsocket命令失败!"); return false; } while(true) { FD_ZERO(&fdread); FD_SET(m_scMain, &fdread); // 将以建立的链接加入 for (iter = m_lstSocket.begin(); iter != m_lstSocket.end(); ++iter) { FD_SET((*iter)->scObject, &fdread); } int rt = select(0, &fdread, nullptr, nullptr, &tv); if (rt == 0) { continue; // 超时继续监听 } else if(rt == SOCKET_ERROR) { errorInfo("监听失败!"); break; } // 是否是主链接有请求, if (FD_ISSET(m_scMain, &fdread)) { if (m_lstSocket.size() >= FD_SETSIZE) { errorInfo("超出服务的最大链接数%d", FD_SETSIZE); continue; } if((scaccept = accept(m_scMain, (sockaddr *)&clientAddr, &clientAddrLen)) != INVALID_SOCKET) { if(ioctlsocket(scaccept, FIONBIO, &nonblock) == SOCKET_ERROR) { errorInfo("执行ioctlsocket命令失败2!"); return false; } m_lstSocket.push_front(new BSSocketInfo(scaccept)); } } // 处理请求 for(iter = m_lstSocket.begin(); iter != m_lstSocket.end(); ++iter) { if (FD_ISSET((*iter)->scObject, &fdread)) { if (receive(*iter)) { #if defined(_DEBUG) char buf[SOCKET_RECVBUFF_LEN] = {0}; //std::strncpy (buf, (*iter)->dataRecv.data(), SOCKET_RECVBUFF_LEN); //std::copy((*iter)->dataRecv.begin(), (*iter)->dataRecv.end(), buf); std::sprintf(buf, "%d %d %s", (*iter)->scObject, (long)(*iter)->tmLastRecv, (*iter)->dataRecv.data()); std::cout << buf << std::endl; #endif SCDataType data(std::begin(SOCKET_HEARTBEAT_HEADER), std::end(SOCKET_HEARTBEAT_HEADER)); data.insert(data.end(), (*iter)->dataRecv.begin(), (*iter)->dataRecv.end()); this->send((*iter)->scObject, data); } else { // 释放关闭的链接 std::cout << "接收失败!" << WSAGetLastError() << std::endl; //errorInfo("接收失败!"); closesocket((*iter)->scObject); FD_CLR((*iter)->scObject, &fdread); delete (*iter); m_lstSocket.erase(iter); break; } } } } // 清空已建立的链接 } else { errorInfo("构建HeartBeat服务失败!"); return false; } return true; } /***************************************************************************************** << --- socket::receive 2014-04-09 --- >> 说明:接收数据 参数: sc = 套接字 vecData = 存放被接收的数据 返回值:是否执行成功 *****************************************************************************************/ bool socket::receive(SOCKET sc, SCDataType &vecData) { uint8_t buf[SOCKET_RECVBUFF_LEN] = {0}; int rc = 0; vecData.clear(); // 接收数据 //switch (m_beType) //{ //case socket::BESocketTypeStream: // { rc = recv(sc, (char *)buf, SOCKET_RECVBUFF_LEN, 0); if (rc == SOCKET_ERROR ) { return false; } while (rc > 0) { if(rc == SOCKET_ERROR) { vecData.clear(); return false; } vecData.insert(vecData.cend(), std::begin(buf), std::begin(buf)+rc); // if(rc < SOCKET_RECVBUFF_LEN) break; rc = recv(sc, (char *)buf, SOCKET_RECVBUFF_LEN, 0); } // } // break; //case socket::BESocketTypeDgram: // { // rc = recv(sc, (char *)buf, SOCKET_RECVBUFF_LEN, 0); // if(rc == SOCKET_ERROR) // { // vecData.clear(); // return false; // } // vecData.insert(vecData.cend(), std::begin(buf), std::begin(buf)+rc); // } // break; //default: // break; //} return true; } bool socket::receive(BSSocketInfo *pscinfo) { assert(pscinfo && pscinfo->scObject != INVALID_SOCKET); bool bl = false; if(bl = receive(pscinfo->scObject, pscinfo->dataRecv)) { std::time(&pscinfo->tmLastRecv); } return bl; } bool socket::receive(SCDataType &vecData) { return receive(m_scMain, vecData); } /***************************************************************************************** << --- socket::send 2014-04-10 --- >> 说明:发送数据 参数: sc = 套接字 vecData = 被发送的数据 返回值:是否执行成功 *****************************************************************************************/ bool socket::send(SOCKET sc, const SCDataType &vecData) { //char buf[SOCKET_RECVBUFF_LEN] = {0}; //std::copy(vecData.begin(), vecData.end(), buf); //return ::send(sc, buf, vecData.size(), 0) != SOCKET_ERROR; return ::send(sc, vecData.data(), vecData.size(), 0) != SOCKET_ERROR; } bool socket::send(const SCDataType &vecData) { //assert(!vecData.empty()); return this->send(m_scMain, vecData);// ::send(m_scMain, vecData.data(), vecData.size(), 0) != SOCKET_ERROR; } /***************************************************************************************** << --- socket::clientEcho 2014-04-09 --- >> 说明:执行echo服务的客户端 参数: sendData = 被发送的数据 recvData = 接收的数据 返回值:是否执行成功 *****************************************************************************************/ bool socket::clientEcho(const std::string &sendData, std::string &recvData) { // 发送数据 ::send(m_scMain, sendData.c_str(), sendData.length(), 0); return true; } /***************************************************************************************** << --- socket::clientHeartBeat 2014-04-09 --- >> 说明:执行心跳包服务的客户端 内部启动一个新线程threadHeartBeat,以固定间隔发送心跳包到服务端 参数: phostip = 目标主机名或IP port = 通讯端口号 返回值:是否执行成功 *****************************************************************************************/ bool socket::clientHeartBeat(const char *phostip, const uint16_t port) { char sport[10] = {0}; std::sprintf(sport, "%u", port); if (connect(phostip, sport, "tcp")) { _beginthreadex(nullptr, 0, socket::threadHeartBeat, &m_scMain, 0, nullptr); } else { errorInfo("打开到%s:%u的心跳测试失败!", phostip, port); } return true; } }
[ "xu_ping_2003@163.com" ]
xu_ping_2003@163.com
cb52a12771b86c9ecdab0fcbc0d990b9165f0414
835934c3035770bd2fb0cea752bbe5c93b8ddc83
/VTKHeaders/vtkMergeFilter.h
bb9a365b4b086a66e41ea95703d7481a25fed676
[ "MIT" ]
permissive
jmah/OsiriX-Quad-Buffered-Stereo
d257c9fc1e9be01340fe652f5bf9d63f5c84cde1
096491358a5d4d8a0928dc03d7183ec129720c56
refs/heads/master
2016-09-05T11:08:48.274221
2007-05-02T15:06:45
2007-05-02T15:06:45
3,008,660
2
0
null
null
null
null
UTF-8
C++
false
false
2,905
h
/*========================================================================= Program: Visualization Toolkit Module: $RCSfile: vtkMergeFilter.h,v $ Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen All rights reserved. See Copyright.txt or http://www.kitware.com/Copyright.htm for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notice for more information. =========================================================================*/ // .NAME vtkMergeFilter - extract separate components of data from different datasets // .SECTION Description // vtkMergeFilter is a filter that extracts separate components of data from // different datasets and merges them into a single dataset. The output from // this filter is of the same type as the input (i.e., vtkDataSet.) It treats // both cell and point data set attributes. #ifndef __vtkMergeFilter_h #define __vtkMergeFilter_h #include "vtkDataSetAlgorithm.h" class vtkFieldList; class VTK_GRAPHICS_EXPORT vtkMergeFilter : public vtkDataSetAlgorithm { public: static vtkMergeFilter *New(); vtkTypeRevisionMacro(vtkMergeFilter,vtkDataSetAlgorithm); void PrintSelf(ostream& os, vtkIndent indent); // Description: // Specify object from which to extract geometry information. void SetGeometry(vtkDataSet *input) {this->SetInput(input);}; vtkDataSet *GetGeometry(); // Description: // Specify object from which to extract scalar information. void SetScalars(vtkDataSet *); vtkDataSet *GetScalars(); // Description: // Set / get the object from which to extract vector information. void SetVectors(vtkDataSet *); vtkDataSet *GetVectors(); // Description: // Set / get the object from which to extract normal information. void SetNormals(vtkDataSet *); vtkDataSet *GetNormals(); // Description: // Set / get the object from which to extract texture coordinates // information. void SetTCoords(vtkDataSet *); vtkDataSet *GetTCoords(); // Description: // Set / get the object from which to extract tensor data. void SetTensors(vtkDataSet *); vtkDataSet *GetTensors(); // Description: // Set the object from which to extract a field and the name // of the field void AddField(const char* name, vtkDataSet* input); protected: vtkMergeFilter(); ~vtkMergeFilter(); // Usual data generation method int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *); int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *); int FillInputPortInformation(int port, vtkInformation *info); vtkFieldList* FieldList; private: vtkMergeFilter(const vtkMergeFilter&); // Not implemented. void operator=(const vtkMergeFilter&); // Not implemented. }; #endif
[ "me@JonathonMah.com" ]
me@JonathonMah.com
c771c005e58d94aa018deb0f434cf69b81b91f21
34b6e001c6bed62386250609a708790a5ec19d85
/Array/912.sort-an-array.cpp
2a2d10f907da25044adde46ff7d6a8c7fd2f9051
[]
no_license
alkamaazmi/Data-Structures-and-Algorithms
339b3420ee947cd1ed62147210a9d810f4fb23ee
059cbda5f39b59ac7bab07f156e0ea4fe1a6a703
refs/heads/main
2023-04-28T04:32:27.598565
2023-04-20T16:35:05
2023-04-20T16:35:05
329,375,922
1
0
null
null
null
null
UTF-8
C++
false
false
1,030
cpp
/* * Leetcode [912] Sort an Array * Given an array of integers nums, sort the array in ascending order */ class Solution { public: void merge(vector<int> & nums,int left,int mid,int right){ int a[right+1]; int i = left; int j = mid+1; int k = left; while(i<=mid && j<=right){ if(nums[i]<=nums[j]){ a[k++] = nums[i++]; }else{ a[k++] = nums[j++]; } } while(i<=mid){ a[k++]=nums[i++]; } while(j<=right){ a[k++]=nums[j++]; } for(int i=left;i<=right;i++){ nums[i]=a[i]; } } void mergeSort(vector<int>&nums,int left,int right){ if(left<right){ int mid = left+(right-left)/2; mergeSort(nums,left,mid); mergeSort(nums,mid+1,right); merge(nums,left,mid,right); } } vector<int> sortArray(vector<int>& nums) { int left = 0; int right = nums.size()-1; mergeSort(nums,left,right); return nums; } };
[ "alkamaazmi07@gamil.com" ]
alkamaazmi07@gamil.com
31c93c11e4764e7ceddd60efd633a35b98cad3ab
dd80a584130ef1a0333429ba76c1cee0eb40df73
/external/chromium_org/base/rand_util.h
bae8c311782bc7374796c53e35887c6c1cc47ccc
[ "BSD-3-Clause", "MIT" ]
permissive
karunmatharu/Android-4.4-Pay-by-Data
466f4e169ede13c5835424c78e8c30ce58f885c1
fcb778e92d4aad525ef7a995660580f948d40bc9
refs/heads/master
2021-03-24T13:33:01.721868
2017-02-18T17:48:49
2017-02-18T17:48:49
81,847,777
0
2
MIT
2020-03-09T00:02:12
2017-02-13T16:47:00
null
UTF-8
C++
false
false
1,886
h
// 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. #ifndef BASE_RAND_UTIL_H_ #define BASE_RAND_UTIL_H_ #include <string> #include "base/base_export.h" #include "base/basictypes.h" namespace base { // Returns a random number in range [0, kuint64max]. Thread-safe. BASE_EXPORT uint64 RandUint64(); // Returns a random number between min and max (inclusive). Thread-safe. BASE_EXPORT int RandInt(int min, int max); // Returns a random number in range [0, range). Thread-safe. // // Note that this can be used as an adapter for std::random_shuffle(): // Given a pre-populated |std::vector<int> myvector|, shuffle it as // std::random_shuffle(myvector.begin(), myvector.end(), base::RandGenerator); BASE_EXPORT uint64 RandGenerator(uint64 range); // Returns a random double in range [0, 1). Thread-safe. BASE_EXPORT double RandDouble(); // Given input |bits|, convert with maximum precision to a double in // the range [0, 1). Thread-safe. BASE_EXPORT double BitsToOpenEndedUnitInterval(uint64 bits); // Fills |output_length| bytes of |output| with random data. // // WARNING: // Do not use for security-sensitive purposes. // See crypto/ for cryptographically secure random number generation APIs. BASE_EXPORT void RandBytes(void* output, size_t output_length); // Fills a string of length |length| with with random data and returns it. // |length| should be nonzero. // // Note that this is a variation of |RandBytes| with a different return type. // // WARNING: // Do not use for security-sensitive purposes. // See crypto/ for cryptographically secure random number generation APIs. BASE_EXPORT std::string RandBytesAsString(size_t length); #if defined(OS_POSIX) BASE_EXPORT int GetUrandomFD(); #endif } // namespace base #endif // BASE_RAND_UTIL_H_
[ "karun.matharu@gmail.com" ]
karun.matharu@gmail.com
1c1b44c26b82907c3ac8978d2337f4067a212321
9a23d0899c3344e4438b85d900ef48157675227f
/HW1/c2.cpp
30e4112869b0c2dcee5ff309bd40ca819b8ed4b0
[]
no_license
mutsuki333/numerical_anaysis
a6cac58297a56a1dc8ffed6f8c5c4763161b6805
49d2e295bf490e018207c9fd222eebd32d1f391b
refs/heads/master
2021-04-09T14:09:58.866012
2018-06-16T14:59:47
2018-06-16T14:59:47
125,732,498
0
0
null
null
null
null
UTF-8
C++
false
false
1,002
cpp
#include <iostream> #include <cmath> using namespace std; double c2_value(double P){ return P*P*P-3*P*P-6*P+8; } double c2_derivation(double P){ return 3*P*P-6*P-6; } int main(int argc, char const *argv[]) { double P0, TOL=0.00001; int N0 = 100000, rootIdx = 0; double root[10], delta = 1; bool NoRoot = true, firstRoot = true; // cout<<"Input P0."<<endl; // cin>>P0; double P; for (double i = -1000; i < 1000; i+=delta) { P0 = i; for (int j = 0; j < N0; j++) { P=P0-c2_value(P0)/c2_derivation(P0); if(firstRoot && abs(P-P0)<TOL){ root[rootIdx] = P; cout<<"root "<<rootIdx+1<<" : "<<root[rootIdx]<<endl; firstRoot = false; NoRoot = false; } if (abs(P-P0)<TOL && abs(P-root[rootIdx])>TOL) { rootIdx++; root[rootIdx] = P; cout<<"root "<<rootIdx+1<<" : "<<root[rootIdx]<<endl; break; } P0=P; } } if(NoRoot) cout<<"Solution not found."<<endl; return 0; }
[ "evanchen333@gmail.com" ]
evanchen333@gmail.com
bf2608411b90dc79849d8b37d0d36e55ddaee58c
629af2c98b79945a6209395b0efcb92a1ea6118f
/include/cnl/_impl/duplex_integer/rep.h
8ccaeacea77190649fa2255d4b253a85d4c0497d
[ "BSL-1.0" ]
permissive
robiwano/cnl
141397a8afee013af5a6561563de0b7f0f92fc63
5037d10591e5bbce389b9d6f3750980490ba88c1
refs/heads/main
2023-01-24T12:47:54.963124
2020-12-01T07:17:13
2020-12-01T07:17:13
318,260,931
0
0
BSL-1.0
2020-12-04T08:21:39
2020-12-03T16:54:34
null
UTF-8
C++
false
false
890
h
// Copyright John McFarlane 2019. // 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) #if !defined(CNL_IMPL_DUPLEX_INTEGER_REP_H) #define CNL_IMPL_DUPLEX_INTEGER_REP_H #include "../num_traits/to_rep.h" #include "../type_traits/type_identity.h" #include "forward_declaration.h" #include "rep.h" /// compositional numeric library namespace cnl { template<typename Upper, typename Lower> struct rep<_impl::duplex_integer<Upper, Lower>> : _impl::type_identity<Upper> { }; template<typename UpperUpper, typename UpperLower, typename Lower> struct rep<_impl::duplex_integer<_impl::duplex_integer<UpperUpper, UpperLower>, Lower>> : rep<_impl::duplex_integer<UpperUpper, UpperLower>> { }; } #endif // CNL_IMPL_DUPLEX_INTEGER_REP_H
[ "git@john.mcfarlane.name" ]
git@john.mcfarlane.name
de372149cb6681ad9be7cc8f85f2d564ec96662e
e6507d57199bb681ac8c3522b5c2ef0406024a17
/boost/asio/generic/raw_protocol.hpp
930c2119d7084054156cdd17d5be2a8b412a8d2d
[]
no_license
sdauwidhwa/ToolHub
a5b712180c8720c93e5035ea5390773d2e14d573
1905a380f06061c0708318f224a5b8a9197b2032
refs/heads/master
2023-08-06T02:22:48.862312
2021-09-10T05:02:00
2021-09-10T05:02:00
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,108
hpp
// // generic/raw_protocol.hpp // ~~~~~~~~~~~~~~~~~~~~~~~~ // // Copyright (c) 2003-2021 Christopher M. Kohlhoff (chris at kohlhoff dot com) // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // #ifndef ASIO_GENERIC_RAW_PROTOCOL_HPP #define ASIO_GENERIC_RAW_PROTOCOL_HPP #if defined(_MSC_VER) && (_MSC_VER >= 1200) # pragma once #endif // defined(_MSC_VER) && (_MSC_VER >= 1200) #include <boost/asio/detail/config.hpp> #include <typeinfo> #include <boost/asio/basic_raw_socket.hpp> #include <boost/asio/detail/socket_types.hpp> #include <boost/asio/detail/throw_exception.hpp> #include <boost/asio/generic/basic_endpoint.hpp> #include <boost/asio/detail/push_options.hpp> namespace asio { namespace generic { /// Encapsulates the flags needed for a generic raw socket. /** * The asio::generic::raw_protocol class contains flags necessary for * raw sockets of any address family and protocol. * * @par Examples * Constructing using a native address family and socket protocol: * @code raw_protocol p(AF_INET, IPPROTO_ICMP); @endcode * Constructing from a specific protocol type: * @code raw_protocol p(asio::ip::icmp::v4()); @endcode * * @par Thread Safety * @e Distinct @e objects: Safe.@n * @e Shared @e objects: Safe. * * @par Concepts: * Protocol. */ class raw_protocol { public: /// Construct a protocol object for a specific address family and protocol. raw_protocol(int address_family, int socket_protocol) : family_(address_family), protocol_(socket_protocol) { } /// Construct a generic protocol object from a specific protocol. /** * @throws @c bad_cast Thrown if the source protocol is not raw-oriented. */ template <typename Protocol> raw_protocol(const Protocol& source_protocol) : family_(source_protocol.family()), protocol_(source_protocol.protocol()) { if (source_protocol.type() != type()) { std::bad_cast ex; asio::detail::throw_exception(ex); } } /// Obtain an identifier for the type of the protocol. int type() const ASIO_NOEXCEPT { return ASIO_OS_DEF(SOCK_RAW); } /// Obtain an identifier for the protocol. int protocol() const ASIO_NOEXCEPT { return protocol_; } /// Obtain an identifier for the protocol family. int family() const ASIO_NOEXCEPT { return family_; } /// Compare two protocols for equality. friend bool operator==(const raw_protocol& p1, const raw_protocol& p2) { return p1.family_ == p2.family_ && p1.protocol_ == p2.protocol_; } /// Compare two protocols for inequality. friend bool operator!=(const raw_protocol& p1, const raw_protocol& p2) { return !(p1 == p2); } /// The type of an endpoint. typedef basic_endpoint<raw_protocol> endpoint; /// The generic socket type. typedef basic_raw_socket<raw_protocol> socket; private: int family_; int protocol_; }; } // namespace generic } // namespace asio #include <boost/asio/detail/pop_options.hpp> #endif // ASIO_GENERIC_RAW_PROTOCOL_HPP
[ "18963092533@163.com" ]
18963092533@163.com
052a8f75be903f220bc90fe75b039eb4dba59710
f84a0ee6bee670736b64427b93d5141061be22ba
/codeforces/330/A.cpp
81dd45523c80bb1eb6010bea2c67ab10f25480e3
[]
no_license
joseleite19/competitive-programming
eaeb03b6a250619a4490f5da5274da3ba8017b62
f00e7a6cb84d7b06b09d00fffd7c5ac68a7b99e3
refs/heads/master
2020-04-15T14:05:40.261419
2017-12-19T18:34:42
2017-12-19T18:34:42
57,311,825
1
0
null
null
null
null
UTF-8
C++
false
false
322
cpp
#include <bits/stdc++.h> using namespace std; long long v[200005]; int main(){ int n; scanf("%d\n", &n); for(int i = 0; i < n; i++) scanf("%lld", v+i); sort(v, v+n); int x = (n-1)/2 + 1; long long ans = 2e18; for(int i = x; i < n; i++) ans = min(ans, v[i] - v[i-x]); printf("%lld\n", ans); return 0; }
[ "leite.josemarcos@gmail.com" ]
leite.josemarcos@gmail.com
c7c573455f4b73304986fcea4a0a4541ea143de4
f8dd2fbd86b568dad97cda13ed8ee69be3f9e0b9
/Source/Framework/TextureShaderClass.h
c31f2b847ef5122c02bb1d2cf9c3082467d60125
[]
no_license
azon04/LearnDirectX
27ef042a1333e513d5d58287097a8985ce146649
6e2af6c9e03ff3978c6d2f52db7a0e5ed0ea862b
refs/heads/master
2021-07-06T21:08:53.774993
2020-08-12T04:40:44
2020-08-12T04:40:44
161,745,782
2
0
null
null
null
null
UTF-8
C++
false
false
1,274
h
#ifndef _TEXTURESHADERCLASS_H_ #define _TEXTURESHADERCLASS_H_ #include <d3d11.h> #include <d3dx10math.h> #include <d3dx11async.h> #include <fstream> using namespace std; class TextureShaderClass { private: struct MatrixBufferType { D3DXMATRIX world; D3DXMATRIX view; D3DXMATRIX projection; }; public: TextureShaderClass(); ~TextureShaderClass(); bool Initialize(ID3D11Device* device, HWND hwnd); void Shutdown(); bool Render(ID3D11DeviceContext* deviceContex, int indexCount, D3DXMATRIX worldMatrix, D3DXMATRIX viewMatrix, D3DXMATRIX projectionMatrix, ID3D11ShaderResourceView* textureResource); private: bool InitializeShader(ID3D11Device* device, HWND hwnd, WCHAR* vsFileName, WCHAR* psFileName); void ShutdownShader(); void OutputShaderErrorMessage(ID3D10Blob* blob, HWND hwnd, WCHAR* shaderFilename); bool SetShaderParameters(ID3D11DeviceContext* deviceContext, D3DXMATRIX worldMatrix, D3DXMATRIX viewMatrix, D3DXMATRIX projectionMatrix, ID3D11ShaderResourceView* textureResource); void RenderShader(ID3D11DeviceContext* deviceContex, int indexCount); private: ID3D11VertexShader* m_vertexShader; ID3D11PixelShader* m_pixelShader; ID3D11InputLayout* m_layout; ID3D11Buffer* m_matrixBuffer; ID3D11SamplerState* m_sampleState; }; #endif
[ "azon04@gmail.com" ]
azon04@gmail.com
6f4689dca0bcc4a6dce263f82b02d220b113ab47
3d61fb5fd6b7ff21450e14d5fe49be3aedbbe1e4
/Philotes/Common/math/matrix3.cpp
4d4464a24ed6f3f01246d36db309e3af489bd5b5
[]
no_license
yannicpeng/erbiqingnian
b3731805b11484ce99b39ba9937f848810001a44
ead102ba873ee3fa163d61c474cfd32147db6c1d
refs/heads/master
2021-03-12T22:28:00.617820
2012-05-26T05:24:53
2012-05-26T05:24:53
33,162,785
0
0
null
null
null
null
UTF-8
C++
false
false
52,571
cpp
#include "matrix3.h" // Adapted from Matrix math by Wild Magic http://www.geometrictools.com/ namespace Philo { const scalar Matrix3::EPSILON = (scalar)1e-06; const Matrix3 Matrix3::ZERO(0,0,0,0,0,0,0,0,0); const Matrix3 Matrix3::IDENTITY(1,0,0,0,1,0,0,0,1); const scalar Matrix3::ms_fSvdEpsilon = (scalar)1e-04; const unsigned int Matrix3::ms_iSvdMaxIterations = 32; //----------------------------------------------------------------------- Vector3 Matrix3::GetColumn (size_t iCol) const { ph_assert( 0 <= iCol && iCol < 3 ); return Vector3(m[0][iCol],m[1][iCol], m[2][iCol]); } //----------------------------------------------------------------------- void Matrix3::SetColumn(size_t iCol, const Vector3& vec) { ph_assert( 0 <= iCol && iCol < 3 ); m[0][iCol] = vec.x; m[1][iCol] = vec.y; m[2][iCol] = vec.z; } //----------------------------------------------------------------------- void Matrix3::FromAxes(const Vector3& xAxis, const Vector3& yAxis, const Vector3& zAxis) { SetColumn(0,xAxis); SetColumn(1,yAxis); SetColumn(2,zAxis); } //----------------------------------------------------------------------- bool Matrix3::operator== (const Matrix3& rkMatrix) const { for (size_t iRow = 0; iRow < 3; iRow++) { for (size_t iCol = 0; iCol < 3; iCol++) { if ( m[iRow][iCol] != rkMatrix.m[iRow][iCol] ) return false; } } return true; } //----------------------------------------------------------------------- Matrix3 Matrix3::operator+ (const Matrix3& rkMatrix) const { Matrix3 kSum; for (size_t iRow = 0; iRow < 3; iRow++) { for (size_t iCol = 0; iCol < 3; iCol++) { kSum.m[iRow][iCol] = m[iRow][iCol] + rkMatrix.m[iRow][iCol]; } } return kSum; } //----------------------------------------------------------------------- Matrix3 Matrix3::operator- (const Matrix3& rkMatrix) const { Matrix3 kDiff; for (size_t iRow = 0; iRow < 3; iRow++) { for (size_t iCol = 0; iCol < 3; iCol++) { kDiff.m[iRow][iCol] = m[iRow][iCol] - rkMatrix.m[iRow][iCol]; } } return kDiff; } //----------------------------------------------------------------------- Matrix3 Matrix3::operator* (const Matrix3& rkMatrix) const { Matrix3 kProd; for (size_t iRow = 0; iRow < 3; iRow++) { for (size_t iCol = 0; iCol < 3; iCol++) { kProd.m[iRow][iCol] = m[iRow][0]*rkMatrix.m[0][iCol] + m[iRow][1]*rkMatrix.m[1][iCol] + m[iRow][2]*rkMatrix.m[2][iCol]; } } return kProd; } //----------------------------------------------------------------------- Vector3 Matrix3::operator* (const Vector3& rkPoint) const { Vector3 kProd; for (size_t iRow = 0; iRow < 3; iRow++) { kProd[iRow] = m[iRow][0]*rkPoint[0] + m[iRow][1]*rkPoint[1] + m[iRow][2]*rkPoint[2]; } return kProd; } //----------------------------------------------------------------------- Vector3 operator* (const Vector3& rkPoint, const Matrix3& rkMatrix) { Vector3 kProd; for (size_t iRow = 0; iRow < 3; iRow++) { kProd[iRow] = rkPoint[0]*rkMatrix.m[0][iRow] + rkPoint[1]*rkMatrix.m[1][iRow] + rkPoint[2]*rkMatrix.m[2][iRow]; } return kProd; } //----------------------------------------------------------------------- Matrix3 Matrix3::operator- () const { Matrix3 kNeg; for (size_t iRow = 0; iRow < 3; iRow++) { for (size_t iCol = 0; iCol < 3; iCol++) kNeg[iRow][iCol] = -m[iRow][iCol]; } return kNeg; } //----------------------------------------------------------------------- Matrix3 Matrix3::operator* (scalar fScalar) const { Matrix3 kProd; for (size_t iRow = 0; iRow < 3; iRow++) { for (size_t iCol = 0; iCol < 3; iCol++) kProd[iRow][iCol] = fScalar*m[iRow][iCol]; } return kProd; } //----------------------------------------------------------------------- Matrix3 operator* (scalar fScalar, const Matrix3& rkMatrix) { Matrix3 kProd; for (size_t iRow = 0; iRow < 3; iRow++) { for (size_t iCol = 0; iCol < 3; iCol++) kProd[iRow][iCol] = fScalar*rkMatrix.m[iRow][iCol]; } return kProd; } //----------------------------------------------------------------------- Matrix3 Matrix3::Transpose () const { Matrix3 kTranspose; for (size_t iRow = 0; iRow < 3; iRow++) { for (size_t iCol = 0; iCol < 3; iCol++) kTranspose[iRow][iCol] = m[iCol][iRow]; } return kTranspose; } //----------------------------------------------------------------------- bool Matrix3::Inverse (Matrix3& rkInverse, scalar fTolerance) const { // Invert a 3x3 using cofactors. This is about 8 times faster than // the Numerical Recipes code which uses Gaussian elimination. rkInverse[0][0] = m[1][1]*m[2][2] - m[1][2]*m[2][1]; rkInverse[0][1] = m[0][2]*m[2][1] - m[0][1]*m[2][2]; rkInverse[0][2] = m[0][1]*m[1][2] - m[0][2]*m[1][1]; rkInverse[1][0] = m[1][2]*m[2][0] - m[1][0]*m[2][2]; rkInverse[1][1] = m[0][0]*m[2][2] - m[0][2]*m[2][0]; rkInverse[1][2] = m[0][2]*m[1][0] - m[0][0]*m[1][2]; rkInverse[2][0] = m[1][0]*m[2][1] - m[1][1]*m[2][0]; rkInverse[2][1] = m[0][1]*m[2][0] - m[0][0]*m[2][1]; rkInverse[2][2] = m[0][0]*m[1][1] - m[0][1]*m[1][0]; scalar fDet = m[0][0]*rkInverse[0][0] + m[0][1]*rkInverse[1][0]+ m[0][2]*rkInverse[2][0]; if ( fabs(fDet) <= fTolerance ) return false; scalar fInvDet = 1.0f/fDet; for (size_t iRow = 0; iRow < 3; iRow++) { for (size_t iCol = 0; iCol < 3; iCol++) rkInverse[iRow][iCol] *= fInvDet; } return true; } //----------------------------------------------------------------------- Matrix3 Matrix3::Inverse (scalar fTolerance) const { Matrix3 kInverse = Matrix3::ZERO; Inverse(kInverse,fTolerance); return kInverse; } //----------------------------------------------------------------------- scalar Matrix3::Determinant () const { scalar fCofactor00 = m[1][1]*m[2][2] - m[1][2]*m[2][1]; scalar fCofactor10 = m[1][2]*m[2][0] - m[1][0]*m[2][2]; scalar fCofactor20 = m[1][0]*m[2][1] - m[1][1]*m[2][0]; scalar fDet = m[0][0]*fCofactor00 + m[0][1]*fCofactor10 + m[0][2]*fCofactor20; return fDet; } //----------------------------------------------------------------------- void Matrix3::Bidiagonalize (Matrix3& kA, Matrix3& kL, Matrix3& kR) { scalar afV[3], afW[3]; scalar fLength, fSign, fT1, fInvT1, fT2; bool bIdentity; // map first column to (*,0,0) fLength = Math::Sqrt(kA[0][0]*kA[0][0] + kA[1][0]*kA[1][0] + kA[2][0]*kA[2][0]); if ( fLength > 0.0 ) { fSign = (kA[0][0] > 0.0f ? 1.0f : -1.0f); fT1 = kA[0][0] + fSign*fLength; fInvT1 = 1.0f/fT1; afV[1] = kA[1][0]*fInvT1; afV[2] = kA[2][0]*fInvT1; fT2 = -2.0f/(1.0f+afV[1]*afV[1]+afV[2]*afV[2]); afW[0] = fT2*(kA[0][0]+kA[1][0]*afV[1]+kA[2][0]*afV[2]); afW[1] = fT2*(kA[0][1]+kA[1][1]*afV[1]+kA[2][1]*afV[2]); afW[2] = fT2*(kA[0][2]+kA[1][2]*afV[1]+kA[2][2]*afV[2]); kA[0][0] += afW[0]; kA[0][1] += afW[1]; kA[0][2] += afW[2]; kA[1][1] += afV[1]*afW[1]; kA[1][2] += afV[1]*afW[2]; kA[2][1] += afV[2]*afW[1]; kA[2][2] += afV[2]*afW[2]; kL[0][0] = 1.0f+fT2; kL[0][1] = kL[1][0] = fT2*afV[1]; kL[0][2] = kL[2][0] = fT2*afV[2]; kL[1][1] = 1.0f+fT2*afV[1]*afV[1]; kL[1][2] = kL[2][1] = fT2*afV[1]*afV[2]; kL[2][2] = 1.0f+fT2*afV[2]*afV[2]; bIdentity = false; } else { kL = Matrix3::IDENTITY; bIdentity = true; } // map first row to (*,*,0) fLength = Math::Sqrt(kA[0][1]*kA[0][1]+kA[0][2]*kA[0][2]); if ( fLength > 0.0 ) { fSign = (kA[0][1] > 0.0f ? 1.0f : -1.0f); fT1 = kA[0][1] + fSign*fLength; afV[2] = kA[0][2]/fT1; fT2 = -2.0f/(1.0f+afV[2]*afV[2]); afW[0] = fT2*(kA[0][1]+kA[0][2]*afV[2]); afW[1] = fT2*(kA[1][1]+kA[1][2]*afV[2]); afW[2] = fT2*(kA[2][1]+kA[2][2]*afV[2]); kA[0][1] += afW[0]; kA[1][1] += afW[1]; kA[1][2] += afW[1]*afV[2]; kA[2][1] += afW[2]; kA[2][2] += afW[2]*afV[2]; kR[0][0] = 1.0; kR[0][1] = kR[1][0] = 0.0; kR[0][2] = kR[2][0] = 0.0; kR[1][1] = 1.0f+fT2; kR[1][2] = kR[2][1] = fT2*afV[2]; kR[2][2] = 1.0f+fT2*afV[2]*afV[2]; } else { kR = Matrix3::IDENTITY; } // map second column to (*,*,0) fLength = Math::Sqrt(kA[1][1]*kA[1][1]+kA[2][1]*kA[2][1]); if ( fLength > 0.0 ) { fSign = (kA[1][1] > 0.0f ? 1.0f : -1.0f); fT1 = kA[1][1] + fSign*fLength; afV[2] = kA[2][1]/fT1; fT2 = -2.0f/(1.0f+afV[2]*afV[2]); afW[1] = fT2*(kA[1][1]+kA[2][1]*afV[2]); afW[2] = fT2*(kA[1][2]+kA[2][2]*afV[2]); kA[1][1] += afW[1]; kA[1][2] += afW[2]; kA[2][2] += afV[2]*afW[2]; scalar fA = 1.0f+fT2; scalar fB = fT2*afV[2]; scalar fC = 1.0f+fB*afV[2]; if ( bIdentity ) { kL[0][0] = 1.0; kL[0][1] = kL[1][0] = 0.0; kL[0][2] = kL[2][0] = 0.0; kL[1][1] = fA; kL[1][2] = kL[2][1] = fB; kL[2][2] = fC; } else { for (int iRow = 0; iRow < 3; iRow++) { scalar fTmp0 = kL[iRow][1]; scalar fTmp1 = kL[iRow][2]; kL[iRow][1] = fA*fTmp0+fB*fTmp1; kL[iRow][2] = fB*fTmp0+fC*fTmp1; } } } } //----------------------------------------------------------------------- void Matrix3::GolubKahanStep (Matrix3& kA, Matrix3& kL, Matrix3& kR) { scalar fT11 = kA[0][1]*kA[0][1]+kA[1][1]*kA[1][1]; scalar fT22 = kA[1][2]*kA[1][2]+kA[2][2]*kA[2][2]; scalar fT12 = kA[1][1]*kA[1][2]; scalar fTrace = fT11+fT22; scalar fDiff = fT11-fT22; scalar fDiscr = Math::Sqrt(fDiff*fDiff+4.0f*fT12*fT12); scalar fRoot1 = 0.5f*(fTrace+fDiscr); scalar fRoot2 = 0.5f*(fTrace-fDiscr); // adjust right scalar fY = kA[0][0] - (fabs(fRoot1-fT22) <= fabs(fRoot2-fT22) ? fRoot1 : fRoot2); scalar fZ = kA[0][1]; scalar fInvLength = Math::InvSqrt(fY*fY+fZ*fZ); scalar fSin = fZ*fInvLength; scalar fCos = -fY*fInvLength; scalar fTmp0 = kA[0][0]; scalar fTmp1 = kA[0][1]; kA[0][0] = fCos*fTmp0-fSin*fTmp1; kA[0][1] = fSin*fTmp0+fCos*fTmp1; kA[1][0] = -fSin*kA[1][1]; kA[1][1] *= fCos; size_t iRow; for (iRow = 0; iRow < 3; iRow++) { fTmp0 = kR[0][iRow]; fTmp1 = kR[1][iRow]; kR[0][iRow] = fCos*fTmp0-fSin*fTmp1; kR[1][iRow] = fSin*fTmp0+fCos*fTmp1; } // adjust left fY = kA[0][0]; fZ = kA[1][0]; fInvLength = Math::InvSqrt(fY*fY+fZ*fZ); fSin = fZ*fInvLength; fCos = -fY*fInvLength; kA[0][0] = fCos*kA[0][0]-fSin*kA[1][0]; fTmp0 = kA[0][1]; fTmp1 = kA[1][1]; kA[0][1] = fCos*fTmp0-fSin*fTmp1; kA[1][1] = fSin*fTmp0+fCos*fTmp1; kA[0][2] = -fSin*kA[1][2]; kA[1][2] *= fCos; size_t iCol; for (iCol = 0; iCol < 3; iCol++) { fTmp0 = kL[iCol][0]; fTmp1 = kL[iCol][1]; kL[iCol][0] = fCos*fTmp0-fSin*fTmp1; kL[iCol][1] = fSin*fTmp0+fCos*fTmp1; } // adjust right fY = kA[0][1]; fZ = kA[0][2]; fInvLength = Math::InvSqrt(fY*fY+fZ*fZ); fSin = fZ*fInvLength; fCos = -fY*fInvLength; kA[0][1] = fCos*kA[0][1]-fSin*kA[0][2]; fTmp0 = kA[1][1]; fTmp1 = kA[1][2]; kA[1][1] = fCos*fTmp0-fSin*fTmp1; kA[1][2] = fSin*fTmp0+fCos*fTmp1; kA[2][1] = -fSin*kA[2][2]; kA[2][2] *= fCos; for (iRow = 0; iRow < 3; iRow++) { fTmp0 = kR[1][iRow]; fTmp1 = kR[2][iRow]; kR[1][iRow] = fCos*fTmp0-fSin*fTmp1; kR[2][iRow] = fSin*fTmp0+fCos*fTmp1; } // adjust left fY = kA[1][1]; fZ = kA[2][1]; fInvLength = Math::InvSqrt(fY*fY+fZ*fZ); fSin = fZ*fInvLength; fCos = -fY*fInvLength; kA[1][1] = fCos*kA[1][1]-fSin*kA[2][1]; fTmp0 = kA[1][2]; fTmp1 = kA[2][2]; kA[1][2] = fCos*fTmp0-fSin*fTmp1; kA[2][2] = fSin*fTmp0+fCos*fTmp1; for (iCol = 0; iCol < 3; iCol++) { fTmp0 = kL[iCol][1]; fTmp1 = kL[iCol][2]; kL[iCol][1] = fCos*fTmp0-fSin*fTmp1; kL[iCol][2] = fSin*fTmp0+fCos*fTmp1; } } //----------------------------------------------------------------------- void Matrix3::SingularValueDecomposition (Matrix3& kL, Vector3& kS, Matrix3& kR) const { // temas: currently unused //const int iMax = 16; size_t iRow, iCol; Matrix3 kA = *this; Bidiagonalize(kA,kL,kR); for (unsigned int i = 0; i < ms_iSvdMaxIterations; i++) { scalar fTmp, fTmp0, fTmp1; scalar fSin0, fCos0, fTan0; scalar fSin1, fCos1, fTan1; bool bTest1 = (fabs(kA[0][1]) <= ms_fSvdEpsilon*(fabs(kA[0][0])+fabs(kA[1][1]))); bool bTest2 = (fabs(kA[1][2]) <= ms_fSvdEpsilon*(fabs(kA[1][1])+fabs(kA[2][2]))); if ( bTest1 ) { if ( bTest2 ) { kS[0] = kA[0][0]; kS[1] = kA[1][1]; kS[2] = kA[2][2]; break; } else { // 2x2 closed form factorization fTmp = (kA[1][1]*kA[1][1] - kA[2][2]*kA[2][2] + kA[1][2]*kA[1][2])/(kA[1][2]*kA[2][2]); fTan0 = 0.5f*(fTmp+Math::Sqrt(fTmp*fTmp + 4.0f)); fCos0 = Math::InvSqrt(1.0f+fTan0*fTan0); fSin0 = fTan0*fCos0; for (iCol = 0; iCol < 3; iCol++) { fTmp0 = kL[iCol][1]; fTmp1 = kL[iCol][2]; kL[iCol][1] = fCos0*fTmp0-fSin0*fTmp1; kL[iCol][2] = fSin0*fTmp0+fCos0*fTmp1; } fTan1 = (kA[1][2]-kA[2][2]*fTan0)/kA[1][1]; fCos1 = Math::InvSqrt(1.0f+fTan1*fTan1); fSin1 = -fTan1*fCos1; for (iRow = 0; iRow < 3; iRow++) { fTmp0 = kR[1][iRow]; fTmp1 = kR[2][iRow]; kR[1][iRow] = fCos1*fTmp0-fSin1*fTmp1; kR[2][iRow] = fSin1*fTmp0+fCos1*fTmp1; } kS[0] = kA[0][0]; kS[1] = fCos0*fCos1*kA[1][1] - fSin1*(fCos0*kA[1][2]-fSin0*kA[2][2]); kS[2] = fSin0*fSin1*kA[1][1] + fCos1*(fSin0*kA[1][2]+fCos0*kA[2][2]); break; } } else { if ( bTest2 ) { // 2x2 closed form factorization fTmp = (kA[0][0]*kA[0][0] + kA[1][1]*kA[1][1] - kA[0][1]*kA[0][1])/(kA[0][1]*kA[1][1]); fTan0 = 0.5f*(-fTmp+Math::Sqrt(fTmp*fTmp + 4.0f)); fCos0 = Math::InvSqrt(1.0f+fTan0*fTan0); fSin0 = fTan0*fCos0; for (iCol = 0; iCol < 3; iCol++) { fTmp0 = kL[iCol][0]; fTmp1 = kL[iCol][1]; kL[iCol][0] = fCos0*fTmp0-fSin0*fTmp1; kL[iCol][1] = fSin0*fTmp0+fCos0*fTmp1; } fTan1 = (kA[0][1]-kA[1][1]*fTan0)/kA[0][0]; fCos1 = Math::InvSqrt(1.0f+fTan1*fTan1); fSin1 = -fTan1*fCos1; for (iRow = 0; iRow < 3; iRow++) { fTmp0 = kR[0][iRow]; fTmp1 = kR[1][iRow]; kR[0][iRow] = fCos1*fTmp0-fSin1*fTmp1; kR[1][iRow] = fSin1*fTmp0+fCos1*fTmp1; } kS[0] = fCos0*fCos1*kA[0][0] - fSin1*(fCos0*kA[0][1]-fSin0*kA[1][1]); kS[1] = fSin0*fSin1*kA[0][0] + fCos1*(fSin0*kA[0][1]+fCos0*kA[1][1]); kS[2] = kA[2][2]; break; } else { GolubKahanStep(kA,kL,kR); } } } // positize diagonal for (iRow = 0; iRow < 3; iRow++) { if ( kS[iRow] < 0.0 ) { kS[iRow] = -kS[iRow]; for (iCol = 0; iCol < 3; iCol++) kR[iRow][iCol] = -kR[iRow][iCol]; } } } //----------------------------------------------------------------------- void Matrix3::SingularValueComposition (const Matrix3& kL, const Vector3& kS, const Matrix3& kR) { size_t iRow, iCol; Matrix3 kTmp; // product S*R for (iRow = 0; iRow < 3; iRow++) { for (iCol = 0; iCol < 3; iCol++) kTmp[iRow][iCol] = kS[iRow]*kR[iRow][iCol]; } // product L*S*R for (iRow = 0; iRow < 3; iRow++) { for (iCol = 0; iCol < 3; iCol++) { m[iRow][iCol] = 0.0; for (int iMid = 0; iMid < 3; iMid++) m[iRow][iCol] += kL[iRow][iMid]*kTmp[iMid][iCol]; } } } //----------------------------------------------------------------------- void Matrix3::Orthonormalize () { // Algorithm uses Gram-Schmidt orthogonalization. If 'this' matrix is // M = [m0|m1|m2], then orthonormal output matrix is Q = [q0|q1|q2], // // q0 = m0/|m0| // q1 = (m1-(q0*m1)q0)/|m1-(q0*m1)q0| // q2 = (m2-(q0*m2)q0-(q1*m2)q1)/|m2-(q0*m2)q0-(q1*m2)q1| // // where |V| indicates length of vector V and A*B indicates dot // product of vectors A and B. // compute q0 scalar fInvLength = Math::InvSqrt(m[0][0]*m[0][0] + m[1][0]*m[1][0] + m[2][0]*m[2][0]); m[0][0] *= fInvLength; m[1][0] *= fInvLength; m[2][0] *= fInvLength; // compute q1 scalar fDot0 = m[0][0]*m[0][1] + m[1][0]*m[1][1] + m[2][0]*m[2][1]; m[0][1] -= fDot0*m[0][0]; m[1][1] -= fDot0*m[1][0]; m[2][1] -= fDot0*m[2][0]; fInvLength = Math::InvSqrt(m[0][1]*m[0][1] + m[1][1]*m[1][1] + m[2][1]*m[2][1]); m[0][1] *= fInvLength; m[1][1] *= fInvLength; m[2][1] *= fInvLength; // compute q2 scalar fDot1 = m[0][1]*m[0][2] + m[1][1]*m[1][2] + m[2][1]*m[2][2]; fDot0 = m[0][0]*m[0][2] + m[1][0]*m[1][2] + m[2][0]*m[2][2]; m[0][2] -= fDot0*m[0][0] + fDot1*m[0][1]; m[1][2] -= fDot0*m[1][0] + fDot1*m[1][1]; m[2][2] -= fDot0*m[2][0] + fDot1*m[2][1]; fInvLength = Math::InvSqrt(m[0][2]*m[0][2] + m[1][2]*m[1][2] + m[2][2]*m[2][2]); m[0][2] *= fInvLength; m[1][2] *= fInvLength; m[2][2] *= fInvLength; } //----------------------------------------------------------------------- void Matrix3::QDUDecomposition (Matrix3& kQ, Vector3& kD, Vector3& kU) const { // Factor M = QR = QDU where Q is orthogonal, D is diagonal, // and U is upper triangular with ones on its diagonal. Algorithm uses // Gram-Schmidt orthogonalization (the QR algorithm). // // If M = [ m0 | m1 | m2 ] and Q = [ q0 | q1 | q2 ], then // // q0 = m0/|m0| // q1 = (m1-(q0*m1)q0)/|m1-(q0*m1)q0| // q2 = (m2-(q0*m2)q0-(q1*m2)q1)/|m2-(q0*m2)q0-(q1*m2)q1| // // where |V| indicates length of vector V and A*B indicates dot // product of vectors A and B. The matrix R has entries // // r00 = q0*m0 r01 = q0*m1 r02 = q0*m2 // r10 = 0 r11 = q1*m1 r12 = q1*m2 // r20 = 0 r21 = 0 r22 = q2*m2 // // so D = diag(r00,r11,r22) and U has entries u01 = r01/r00, // u02 = r02/r00, and u12 = r12/r11. // Q = rotation // D = scaling // U = shear // D stores the three diagonal entries r00, r11, r22 // U stores the entries U[0] = u01, U[1] = u02, U[2] = u12 // build orthogonal matrix Q scalar fInvLength = Math::InvSqrt(m[0][0]*m[0][0] + m[1][0]*m[1][0] + m[2][0]*m[2][0]); kQ[0][0] = m[0][0]*fInvLength; kQ[1][0] = m[1][0]*fInvLength; kQ[2][0] = m[2][0]*fInvLength; scalar fDot = kQ[0][0]*m[0][1] + kQ[1][0]*m[1][1] + kQ[2][0]*m[2][1]; kQ[0][1] = m[0][1]-fDot*kQ[0][0]; kQ[1][1] = m[1][1]-fDot*kQ[1][0]; kQ[2][1] = m[2][1]-fDot*kQ[2][0]; fInvLength = Math::InvSqrt(kQ[0][1]*kQ[0][1] + kQ[1][1]*kQ[1][1] + kQ[2][1]*kQ[2][1]); kQ[0][1] *= fInvLength; kQ[1][1] *= fInvLength; kQ[2][1] *= fInvLength; fDot = kQ[0][0]*m[0][2] + kQ[1][0]*m[1][2] + kQ[2][0]*m[2][2]; kQ[0][2] = m[0][2]-fDot*kQ[0][0]; kQ[1][2] = m[1][2]-fDot*kQ[1][0]; kQ[2][2] = m[2][2]-fDot*kQ[2][0]; fDot = kQ[0][1]*m[0][2] + kQ[1][1]*m[1][2] + kQ[2][1]*m[2][2]; kQ[0][2] -= fDot*kQ[0][1]; kQ[1][2] -= fDot*kQ[1][1]; kQ[2][2] -= fDot*kQ[2][1]; fInvLength = Math::InvSqrt(kQ[0][2]*kQ[0][2] + kQ[1][2]*kQ[1][2] + kQ[2][2]*kQ[2][2]); kQ[0][2] *= fInvLength; kQ[1][2] *= fInvLength; kQ[2][2] *= fInvLength; // guarantee that orthogonal matrix has determinant 1 (no reflections) scalar fDet = kQ[0][0]*kQ[1][1]*kQ[2][2] + kQ[0][1]*kQ[1][2]*kQ[2][0] + kQ[0][2]*kQ[1][0]*kQ[2][1] - kQ[0][2]*kQ[1][1]*kQ[2][0] - kQ[0][1]*kQ[1][0]*kQ[2][2] - kQ[0][0]*kQ[1][2]*kQ[2][1]; if ( fDet < 0.0 ) { for (size_t iRow = 0; iRow < 3; iRow++) for (size_t iCol = 0; iCol < 3; iCol++) kQ[iRow][iCol] = -kQ[iRow][iCol]; } // build "right" matrix R Matrix3 kR; kR[0][0] = kQ[0][0]*m[0][0] + kQ[1][0]*m[1][0] + kQ[2][0]*m[2][0]; kR[0][1] = kQ[0][0]*m[0][1] + kQ[1][0]*m[1][1] + kQ[2][0]*m[2][1]; kR[1][1] = kQ[0][1]*m[0][1] + kQ[1][1]*m[1][1] + kQ[2][1]*m[2][1]; kR[0][2] = kQ[0][0]*m[0][2] + kQ[1][0]*m[1][2] + kQ[2][0]*m[2][2]; kR[1][2] = kQ[0][1]*m[0][2] + kQ[1][1]*m[1][2] + kQ[2][1]*m[2][2]; kR[2][2] = kQ[0][2]*m[0][2] + kQ[1][2]*m[1][2] + kQ[2][2]*m[2][2]; // the scaling component kD[0] = kR[0][0]; kD[1] = kR[1][1]; kD[2] = kR[2][2]; // the shear component scalar fInvD0 = 1.0f/kD[0]; kU[0] = kR[0][1]*fInvD0; kU[1] = kR[0][2]*fInvD0; kU[2] = kR[1][2]/kD[1]; } //----------------------------------------------------------------------- scalar Matrix3::MaxCubicRoot (scalar afCoeff[3]) { // Spectral norm is for A^T*A, so characteristic polynomial // P(x) = c[0]+c[1]*x+c[2]*x^2+x^3 has three positive real roots. // This yields the assertions c[0] < 0 and c[2]*c[2] >= 3*c[1]. // quick out for uniform scale (triple root) const scalar fOneThird = 1.0f/3.0f; const scalar fEpsilon = (scalar)1e-06; scalar fDiscr = afCoeff[2]*afCoeff[2] - 3.0f*afCoeff[1]; if ( fDiscr <= fEpsilon ) return -fOneThird*afCoeff[2]; // Compute an upper bound on roots of P(x). This assumes that A^T*A // has been scaled by its largest entry. scalar fX = 1.0; scalar fPoly = afCoeff[0]+fX*(afCoeff[1]+fX*(afCoeff[2]+fX)); if ( fPoly < 0.0 ) { // uses a matrix norm to find an upper bound on maximum root fX = fabs(afCoeff[0]); scalar fTmp = 1.0f+fabs(afCoeff[1]); if ( fTmp > fX ) fX = fTmp; fTmp = 1.0f+fabs(afCoeff[2]); if ( fTmp > fX ) fX = fTmp; } // Newton's method to find root scalar fTwoC2 = 2.0f*afCoeff[2]; for (int i = 0; i < 16; i++) { fPoly = afCoeff[0]+fX*(afCoeff[1]+fX*(afCoeff[2]+fX)); if ( fabs(fPoly) <= fEpsilon ) return fX; scalar fDeriv = afCoeff[1]+fX*(fTwoC2+3.0f*fX); fX -= fPoly/fDeriv; } return fX; } //----------------------------------------------------------------------- scalar Matrix3::SpectralNorm () const { Matrix3 kP; size_t iRow, iCol; scalar fPmax = 0.0; for (iRow = 0; iRow < 3; iRow++) { for (iCol = 0; iCol < 3; iCol++) { kP[iRow][iCol] = 0.0; for (int iMid = 0; iMid < 3; iMid++) { kP[iRow][iCol] += m[iMid][iRow]*m[iMid][iCol]; } if ( kP[iRow][iCol] > fPmax ) fPmax = kP[iRow][iCol]; } } scalar fInvPmax = 1.0f/fPmax; for (iRow = 0; iRow < 3; iRow++) { for (iCol = 0; iCol < 3; iCol++) kP[iRow][iCol] *= fInvPmax; } scalar afCoeff[3]; afCoeff[0] = -(kP[0][0]*(kP[1][1]*kP[2][2]-kP[1][2]*kP[2][1]) + kP[0][1]*(kP[2][0]*kP[1][2]-kP[1][0]*kP[2][2]) + kP[0][2]*(kP[1][0]*kP[2][1]-kP[2][0]*kP[1][1])); afCoeff[1] = kP[0][0]*kP[1][1]-kP[0][1]*kP[1][0] + kP[0][0]*kP[2][2]-kP[0][2]*kP[2][0] + kP[1][1]*kP[2][2]-kP[1][2]*kP[2][1]; afCoeff[2] = -(kP[0][0]+kP[1][1]+kP[2][2]); scalar fRoot = MaxCubicRoot(afCoeff); scalar fNorm = Math::Sqrt(fPmax*fRoot); return fNorm; } //----------------------------------------------------------------------- void Matrix3::ToAxisAngle (Vector3& rkAxis, Radian& rfRadians) const { // Let (x,y,z) be the unit-length axis and let A be an angle of rotation. // The rotation matrix is R = I + sin(A)*P + (1-cos(A))*P^2 where // I is the identity and // // +- -+ // P = | 0 -z +y | // | +z 0 -x | // | -y +x 0 | // +- -+ // // If A > 0, R represents a counterclockwise rotation about the axis in // the sense of looking from the tip of the axis vector towards the // origin. Some algebra will show that // // cos(A) = (trace(R)-1)/2 and R - R^t = 2*sin(A)*P // // In the event that A = pi, R-R^t = 0 which prevents us from extracting // the axis through P. Instead note that R = I+2*P^2 when A = pi, so // P^2 = (R-I)/2. The diagonal entries of P^2 are x^2-1, y^2-1, and // z^2-1. We can solve these for axis (x,y,z). Because the angle is pi, // it does not matter which sign you choose on the square roots. scalar fTrace = m[0][0] + m[1][1] + m[2][2]; scalar fCos = 0.5f*(fTrace-1.0f); rfRadians = Math::ACos(fCos); // in [0,PI] if ( rfRadians > Radian(0.0) ) { if ( rfRadians < Radian(Math::PI) ) { rkAxis.x = m[2][1]-m[1][2]; rkAxis.y = m[0][2]-m[2][0]; rkAxis.z = m[1][0]-m[0][1]; rkAxis.normalise(); } else { // angle is PI float fHalfInverse; if ( m[0][0] >= m[1][1] ) { // r00 >= r11 if ( m[0][0] >= m[2][2] ) { // r00 is maximum diagonal term rkAxis.x = 0.5f*Math::Sqrt(m[0][0] - m[1][1] - m[2][2] + 1.0f); fHalfInverse = 0.5f/rkAxis.x; rkAxis.y = fHalfInverse*m[0][1]; rkAxis.z = fHalfInverse*m[0][2]; } else { // r22 is maximum diagonal term rkAxis.z = 0.5f*Math::Sqrt(m[2][2] - m[0][0] - m[1][1] + 1.0f); fHalfInverse = 0.5f/rkAxis.z; rkAxis.x = fHalfInverse*m[0][2]; rkAxis.y = fHalfInverse*m[1][2]; } } else { // r11 > r00 if ( m[1][1] >= m[2][2] ) { // r11 is maximum diagonal term rkAxis.y = 0.5f*Math::Sqrt(m[1][1] - m[0][0] - m[2][2] + 1.0f); fHalfInverse = 0.5f/rkAxis.y; rkAxis.x = fHalfInverse*m[0][1]; rkAxis.z = fHalfInverse*m[1][2]; } else { // r22 is maximum diagonal term rkAxis.z = 0.5f*Math::Sqrt(m[2][2] - m[0][0] - m[1][1] + 1.0f); fHalfInverse = 0.5f/rkAxis.z; rkAxis.x = fHalfInverse*m[0][2]; rkAxis.y = fHalfInverse*m[1][2]; } } } } else { // The angle is 0 and the matrix is the identity. Any axis will // work, so just use the x-axis. rkAxis.x = 1.0; rkAxis.y = 0.0; rkAxis.z = 0.0; } } //----------------------------------------------------------------------- void Matrix3::FromAngleAxis (const Vector3& rkAxis, const Radian& fRadians) { scalar fCos =Math::Cos(fRadians); scalar fSin = Math::Sin(fRadians); scalar fOneMinusCos = 1.0f-fCos; scalar fX2 = rkAxis.x*rkAxis.x; scalar fY2 = rkAxis.y*rkAxis.y; scalar fZ2 = rkAxis.z*rkAxis.z; scalar fXYM = rkAxis.x*rkAxis.y*fOneMinusCos; scalar fXZM = rkAxis.x*rkAxis.z*fOneMinusCos; scalar fYZM = rkAxis.y*rkAxis.z*fOneMinusCos; scalar fXSin = rkAxis.x*fSin; scalar fYSin = rkAxis.y*fSin; scalar fZSin = rkAxis.z*fSin; m[0][0] = fX2*fOneMinusCos+fCos; m[0][1] = fXYM-fZSin; m[0][2] = fXZM+fYSin; m[1][0] = fXYM+fZSin; m[1][1] = fY2*fOneMinusCos+fCos; m[1][2] = fYZM-fXSin; m[2][0] = fXZM-fYSin; m[2][1] = fYZM+fXSin; m[2][2] = fZ2*fOneMinusCos+fCos; } //----------------------------------------------------------------------- bool Matrix3::ToEulerAnglesXYZ (Radian& rfYAngle, Radian& rfPAngle, Radian& rfRAngle) const { // rot = cy*cz -cy*sz sy // cz*sx*sy+cx*sz cx*cz-sx*sy*sz -cy*sx // -cx*cz*sy+sx*sz cz*sx+cx*sy*sz cx*cy rfPAngle = Radian(Math::ASin(m[0][2])); if ( rfPAngle < Radian(Math::HALF_PI) ) { if ( rfPAngle > Radian(-Math::HALF_PI) ) { rfYAngle = Math::ATan2(-m[1][2],m[2][2]); rfRAngle = Math::ATan2(-m[0][1],m[0][0]); return true; } else { // WARNING. Not a unique solution. Radian fRmY = Math::ATan2(m[1][0],m[1][1]); rfRAngle = Radian(0.0); // any angle works rfYAngle = rfRAngle - fRmY; return false; } } else { // WARNING. Not a unique solution. Radian fRpY = Math::ATan2(m[1][0],m[1][1]); rfRAngle = Radian(0.0); // any angle works rfYAngle = fRpY - rfRAngle; return false; } } //----------------------------------------------------------------------- bool Matrix3::ToEulerAnglesXZY (Radian& rfYAngle, Radian& rfPAngle, Radian& rfRAngle) const { // rot = cy*cz -sz cz*sy // sx*sy+cx*cy*sz cx*cz -cy*sx+cx*sy*sz // -cx*sy+cy*sx*sz cz*sx cx*cy+sx*sy*sz rfPAngle = Math::ASin(-m[0][1]); if ( rfPAngle < Radian(Math::HALF_PI) ) { if ( rfPAngle > Radian(-Math::HALF_PI) ) { rfYAngle = Math::ATan2(m[2][1],m[1][1]); rfRAngle = Math::ATan2(m[0][2],m[0][0]); return true; } else { // WARNING. Not a unique solution. Radian fRmY = Math::ATan2(-m[2][0],m[2][2]); rfRAngle = Radian(0.0); // any angle works rfYAngle = rfRAngle - fRmY; return false; } } else { // WARNING. Not a unique solution. Radian fRpY = Math::ATan2(-m[2][0],m[2][2]); rfRAngle = Radian(0.0); // any angle works rfYAngle = fRpY - rfRAngle; return false; } } //----------------------------------------------------------------------- bool Matrix3::ToEulerAnglesYXZ (Radian& rfYAngle, Radian& rfPAngle, Radian& rfRAngle) const { // rot = cy*cz+sx*sy*sz cz*sx*sy-cy*sz cx*sy // cx*sz cx*cz -sx // -cz*sy+cy*sx*sz cy*cz*sx+sy*sz cx*cy rfPAngle = Math::ASin(-m[1][2]); if ( rfPAngle < Radian(Math::HALF_PI) ) { if ( rfPAngle > Radian(-Math::HALF_PI) ) { rfYAngle = Math::ATan2(m[0][2],m[2][2]); rfRAngle = Math::ATan2(m[1][0],m[1][1]); return true; } else { // WARNING. Not a unique solution. Radian fRmY = Math::ATan2(-m[0][1],m[0][0]); rfRAngle = Radian(0.0); // any angle works rfYAngle = rfRAngle - fRmY; return false; } } else { // WARNING. Not a unique solution. Radian fRpY = Math::ATan2(-m[0][1],m[0][0]); rfRAngle = Radian(0.0); // any angle works rfYAngle = fRpY - rfRAngle; return false; } } //----------------------------------------------------------------------- bool Matrix3::ToEulerAnglesYZX (Radian& rfYAngle, Radian& rfPAngle, Radian& rfRAngle) const { // rot = cy*cz sx*sy-cx*cy*sz cx*sy+cy*sx*sz // sz cx*cz -cz*sx // -cz*sy cy*sx+cx*sy*sz cx*cy-sx*sy*sz rfPAngle = Math::ASin(m[1][0]); if ( rfPAngle < Radian(Math::HALF_PI) ) { if ( rfPAngle > Radian(-Math::HALF_PI) ) { rfYAngle = Math::ATan2(-m[2][0],m[0][0]); rfRAngle = Math::ATan2(-m[1][2],m[1][1]); return true; } else { // WARNING. Not a unique solution. Radian fRmY = Math::ATan2(m[2][1],m[2][2]); rfRAngle = Radian(0.0); // any angle works rfYAngle = rfRAngle - fRmY; return false; } } else { // WARNING. Not a unique solution. Radian fRpY = Math::ATan2(m[2][1],m[2][2]); rfRAngle = Radian(0.0); // any angle works rfYAngle = fRpY - rfRAngle; return false; } } //----------------------------------------------------------------------- bool Matrix3::ToEulerAnglesZXY (Radian& rfYAngle, Radian& rfPAngle, Radian& rfRAngle) const { // rot = cy*cz-sx*sy*sz -cx*sz cz*sy+cy*sx*sz // cz*sx*sy+cy*sz cx*cz -cy*cz*sx+sy*sz // -cx*sy sx cx*cy rfPAngle = Math::ASin(m[2][1]); if ( rfPAngle < Radian(Math::HALF_PI) ) { if ( rfPAngle > Radian(-Math::HALF_PI) ) { rfYAngle = Math::ATan2(-m[0][1],m[1][1]); rfRAngle = Math::ATan2(-m[2][0],m[2][2]); return true; } else { // WARNING. Not a unique solution. Radian fRmY = Math::ATan2(m[0][2],m[0][0]); rfRAngle = Radian(0.0); // any angle works rfYAngle = rfRAngle - fRmY; return false; } } else { // WARNING. Not a unique solution. Radian fRpY = Math::ATan2(m[0][2],m[0][0]); rfRAngle = Radian(0.0); // any angle works rfYAngle = fRpY - rfRAngle; return false; } } //----------------------------------------------------------------------- bool Matrix3::ToEulerAnglesZYX (Radian& rfYAngle, Radian& rfPAngle, Radian& rfRAngle) const { // rot = cy*cz cz*sx*sy-cx*sz cx*cz*sy+sx*sz // cy*sz cx*cz+sx*sy*sz -cz*sx+cx*sy*sz // -sy cy*sx cx*cy rfPAngle = Math::ASin(-m[2][0]); if ( rfPAngle < Radian(Math::HALF_PI) ) { if ( rfPAngle > Radian(-Math::HALF_PI) ) { rfYAngle = Math::ATan2(m[1][0],m[0][0]); rfRAngle = Math::ATan2(m[2][1],m[2][2]); return true; } else { // WARNING. Not a unique solution. Radian fRmY = Math::ATan2(-m[0][1],m[0][2]); rfRAngle = Radian(0.0); // any angle works rfYAngle = rfRAngle - fRmY; return false; } } else { // WARNING. Not a unique solution. Radian fRpY = Math::ATan2(-m[0][1],m[0][2]); rfRAngle = Radian(0.0); // any angle works rfYAngle = fRpY - rfRAngle; return false; } } //----------------------------------------------------------------------- void Matrix3::FromEulerAnglesXYZ (const Radian& fYAngle, const Radian& fPAngle, const Radian& fRAngle) { scalar fCos, fSin; fCos = Math::Cos(fYAngle); fSin = Math::Sin(fYAngle); Matrix3 kXMat(1.0,0.0,0.0,0.0,fCos,-fSin,0.0,fSin,fCos); fCos = Math::Cos(fPAngle); fSin = Math::Sin(fPAngle); Matrix3 kYMat(fCos,0.0,fSin,0.0,1.0,0.0,-fSin,0.0,fCos); fCos = Math::Cos(fRAngle); fSin = Math::Sin(fRAngle); Matrix3 kZMat(fCos,-fSin,0.0,fSin,fCos,0.0,0.0,0.0,1.0); *this = kXMat*(kYMat*kZMat); } //----------------------------------------------------------------------- void Matrix3::FromEulerAnglesXZY (const Radian& fYAngle, const Radian& fPAngle, const Radian& fRAngle) { scalar fCos, fSin; fCos = Math::Cos(fYAngle); fSin = Math::Sin(fYAngle); Matrix3 kXMat(1.0,0.0,0.0,0.0,fCos,-fSin,0.0,fSin,fCos); fCos = Math::Cos(fPAngle); fSin = Math::Sin(fPAngle); Matrix3 kZMat(fCos,-fSin,0.0,fSin,fCos,0.0,0.0,0.0,1.0); fCos = Math::Cos(fRAngle); fSin = Math::Sin(fRAngle); Matrix3 kYMat(fCos,0.0,fSin,0.0,1.0,0.0,-fSin,0.0,fCos); *this = kXMat*(kZMat*kYMat); } //----------------------------------------------------------------------- void Matrix3::FromEulerAnglesYXZ (const Radian& fYAngle, const Radian& fPAngle, const Radian& fRAngle) { scalar fCos, fSin; fCos = Math::Cos(fYAngle); fSin = Math::Sin(fYAngle); Matrix3 kYMat(fCos,0.0,fSin,0.0,1.0,0.0,-fSin,0.0,fCos); fCos = Math::Cos(fPAngle); fSin = Math::Sin(fPAngle); Matrix3 kXMat(1.0,0.0,0.0,0.0,fCos,-fSin,0.0,fSin,fCos); fCos = Math::Cos(fRAngle); fSin = Math::Sin(fRAngle); Matrix3 kZMat(fCos,-fSin,0.0,fSin,fCos,0.0,0.0,0.0,1.0); *this = kYMat*(kXMat*kZMat); } //----------------------------------------------------------------------- void Matrix3::FromEulerAnglesYZX (const Radian& fYAngle, const Radian& fPAngle, const Radian& fRAngle) { scalar fCos, fSin; fCos = Math::Cos(fYAngle); fSin = Math::Sin(fYAngle); Matrix3 kYMat(fCos,0.0,fSin,0.0,1.0,0.0,-fSin,0.0,fCos); fCos = Math::Cos(fPAngle); fSin = Math::Sin(fPAngle); Matrix3 kZMat(fCos,-fSin,0.0,fSin,fCos,0.0,0.0,0.0,1.0); fCos = Math::Cos(fRAngle); fSin = Math::Sin(fRAngle); Matrix3 kXMat(1.0,0.0,0.0,0.0,fCos,-fSin,0.0,fSin,fCos); *this = kYMat*(kZMat*kXMat); } //----------------------------------------------------------------------- void Matrix3::FromEulerAnglesZXY (const Radian& fYAngle, const Radian& fPAngle, const Radian& fRAngle) { scalar fCos, fSin; fCos = Math::Cos(fYAngle); fSin = Math::Sin(fYAngle); Matrix3 kZMat(fCos,-fSin,0.0,fSin,fCos,0.0,0.0,0.0,1.0); fCos = Math::Cos(fPAngle); fSin = Math::Sin(fPAngle); Matrix3 kXMat(1.0,0.0,0.0,0.0,fCos,-fSin,0.0,fSin,fCos); fCos = Math::Cos(fRAngle); fSin = Math::Sin(fRAngle); Matrix3 kYMat(fCos,0.0,fSin,0.0,1.0,0.0,-fSin,0.0,fCos); *this = kZMat*(kXMat*kYMat); } //----------------------------------------------------------------------- void Matrix3::FromEulerAnglesZYX (const Radian& fYAngle, const Radian& fPAngle, const Radian& fRAngle) { scalar fCos, fSin; fCos = Math::Cos(fYAngle); fSin = Math::Sin(fYAngle); Matrix3 kZMat(fCos,-fSin,0.0,fSin,fCos,0.0,0.0,0.0,1.0); fCos = Math::Cos(fPAngle); fSin = Math::Sin(fPAngle); Matrix3 kYMat(fCos,0.0,fSin,0.0,1.0,0.0,-fSin,0.0,fCos); fCos = Math::Cos(fRAngle); fSin = Math::Sin(fRAngle); Matrix3 kXMat(1.0,0.0,0.0,0.0,fCos,-fSin,0.0,fSin,fCos); *this = kZMat*(kYMat*kXMat); } //----------------------------------------------------------------------- void Matrix3::Tridiagonal (scalar afDiag[3], scalar afSubDiag[3]) { // Householder reduction T = Q^t M Q // Input: // mat, symmetric 3x3 matrix M // Output: // mat, orthogonal matrix Q // diag, diagonal entries of T // subd, subdiagonal entries of T (T is symmetric) scalar fA = m[0][0]; scalar fB = m[0][1]; scalar fC = m[0][2]; scalar fD = m[1][1]; scalar fE = m[1][2]; scalar fF = m[2][2]; afDiag[0] = fA; afSubDiag[2] = 0.0; if ( fabs(fC) >= EPSILON ) { scalar fLength = Math::Sqrt(fB*fB+fC*fC); scalar fInvLength = 1.0f/fLength; fB *= fInvLength; fC *= fInvLength; scalar fQ = 2.0f*fB*fE+fC*(fF-fD); afDiag[1] = fD+fC*fQ; afDiag[2] = fF-fC*fQ; afSubDiag[0] = fLength; afSubDiag[1] = fE-fB*fQ; m[0][0] = 1.0; m[0][1] = 0.0; m[0][2] = 0.0; m[1][0] = 0.0; m[1][1] = fB; m[1][2] = fC; m[2][0] = 0.0; m[2][1] = fC; m[2][2] = -fB; } else { afDiag[1] = fD; afDiag[2] = fF; afSubDiag[0] = fB; afSubDiag[1] = fE; m[0][0] = 1.0; m[0][1] = 0.0; m[0][2] = 0.0; m[1][0] = 0.0; m[1][1] = 1.0; m[1][2] = 0.0; m[2][0] = 0.0; m[2][1] = 0.0; m[2][2] = 1.0; } } //----------------------------------------------------------------------- bool Matrix3::QLAlgorithm (scalar afDiag[3], scalar afSubDiag[3]) { // QL iteration with implicit shifting to reduce matrix from tridiagonal // to diagonal for (int i0 = 0; i0 < 3; i0++) { const unsigned int iMaxIter = 32; unsigned int iIter; for (iIter = 0; iIter < iMaxIter; iIter++) { int i1; for (i1 = i0; i1 <= 1; i1++) { scalar fSum = fabs(afDiag[i1]) + fabs(afDiag[i1+1]); if ( fabs(afSubDiag[i1]) + fSum == fSum ) break; } if ( i1 == i0 ) break; scalar fTmp0 = (afDiag[i0+1]-afDiag[i0])/(2.0f*afSubDiag[i0]); scalar fTmp1 = Math::Sqrt(fTmp0*fTmp0+1.0f); if ( fTmp0 < 0.0 ) fTmp0 = afDiag[i1]-afDiag[i0]+afSubDiag[i0]/(fTmp0-fTmp1); else fTmp0 = afDiag[i1]-afDiag[i0]+afSubDiag[i0]/(fTmp0+fTmp1); scalar fSin = 1.0; scalar fCos = 1.0; scalar fTmp2 = 0.0; for (int i2 = i1-1; i2 >= i0; i2--) { scalar fTmp3 = fSin*afSubDiag[i2]; scalar fTmp4 = fCos*afSubDiag[i2]; if ( fabs(fTmp3) >= fabs(fTmp0) ) { fCos = fTmp0/fTmp3; fTmp1 = Math::Sqrt(fCos*fCos+1.0f); afSubDiag[i2+1] = fTmp3*fTmp1; fSin = 1.0f/fTmp1; fCos *= fSin; } else { fSin = fTmp3/fTmp0; fTmp1 = Math::Sqrt(fSin*fSin+1.0f); afSubDiag[i2+1] = fTmp0*fTmp1; fCos = 1.0f/fTmp1; fSin *= fCos; } fTmp0 = afDiag[i2+1]-fTmp2; fTmp1 = (afDiag[i2]-fTmp0)*fSin+2.0f*fTmp4*fCos; fTmp2 = fSin*fTmp1; afDiag[i2+1] = fTmp0+fTmp2; fTmp0 = fCos*fTmp1-fTmp4; for (int iRow = 0; iRow < 3; iRow++) { fTmp3 = m[iRow][i2+1]; m[iRow][i2+1] = fSin*m[iRow][i2] + fCos*fTmp3; m[iRow][i2] = fCos*m[iRow][i2] - fSin*fTmp3; } } afDiag[i0] -= fTmp2; afSubDiag[i0] = fTmp0; afSubDiag[i1] = 0.0; } if ( iIter == iMaxIter ) { // should not get here under normal circumstances return false; } } return true; } //----------------------------------------------------------------------- void Matrix3::EigenSolveSymmetric (scalar afEigenvalue[3], Vector3 akEigenvector[3]) const { Matrix3 kMatrix = *this; scalar afSubDiag[3]; kMatrix.Tridiagonal(afEigenvalue,afSubDiag); kMatrix.QLAlgorithm(afEigenvalue,afSubDiag); for (size_t i = 0; i < 3; i++) { akEigenvector[i][0] = kMatrix[0][i]; akEigenvector[i][1] = kMatrix[1][i]; akEigenvector[i][2] = kMatrix[2][i]; } // make eigenvectors form a right--handed system Vector3 kCross = akEigenvector[1].crossProduct(akEigenvector[2]); scalar fDet = akEigenvector[0].dotProduct(kCross); if ( fDet < 0.0 ) { akEigenvector[2][0] = - akEigenvector[2][0]; akEigenvector[2][1] = - akEigenvector[2][1]; akEigenvector[2][2] = - akEigenvector[2][2]; } } //----------------------------------------------------------------------- void Matrix3::TensorProduct (const Vector3& rkU, const Vector3& rkV, Matrix3& rkProduct) { for (size_t iRow = 0; iRow < 3; iRow++) { for (size_t iCol = 0; iCol < 3; iCol++) rkProduct[iRow][iCol] = rkU[iRow]*rkV[iCol]; } } //----------------------------------------------------------------------- }
[ "cjlm007@6cb12ae1-4c77-52bf-f227-7ea6b66274e1" ]
cjlm007@6cb12ae1-4c77-52bf-f227-7ea6b66274e1
f4202fcca66c26aa34f97c4af06319ee84065e48
76d56dee894584f7726ca9c5773145e596207b80
/file5.cpp
26e5635de5a048b3cc0e3cf166e2c3455a044c0a
[]
no_license
fivestars2125/c-and-oops
e4a81942614924dcf4ccbfea11b2e8868af2a57c
536f4f9cfafc27080d324b403aefe887b65ecf66
refs/heads/master
2021-07-12T08:59:18.650596
2019-10-13T16:26:36
2019-10-13T16:26:36
208,293,061
0
6
null
2020-10-03T07:04:09
2019-09-13T15:28:06
C++
UTF-8
C++
false
false
984
cpp
#include<iostream> using namespace std; class Caccount{ int acc_no; float balance; public: Caccount() { int x;float y; cout<<"enter account number: "; cin>>x; cout<<"enter initial balance: "; cin>>y; acc_no=x; balance=y; } void inputTransaction(){ char type; float amount; cout<<"enter transaction type (d/w) "; cin>>type; cout<<"enter amount: "; cin>>amount; if(type=='w'||type=='W') {if(amount>balance) cout<<"no money "; else balance=balance-amount; } else balance=balance +amount; } void printbalance(){ cout<<"Net Balance: "<<balance<<endl; cout<<"account number of the holder: "<<acc_no; } }; int main() { Caccount obj; obj.inputTransaction(); obj.printbalance(); }
[ "noreply@github.com" ]
noreply@github.com
61d2c5865995a25f2c260e0feec0a4c07b454f77
d07e11a0db471abd0c8452dc01c59fcbec5be2a8
/Lab6/UI.h
de61d082efb2c83fb1a5604245a5f4cd50bc0da6
[]
no_license
LauraDiosan-CS/lab5-6-template-stl-Gabi240400
fa8f61bd4280c9df712461d69443fa0ad429d5af
9f9d6ceca8dd66c9bc40de047d2df86723d9999c
refs/heads/master
2021-05-21T20:46:09.799805
2020-04-13T16:04:48
2020-04-13T16:04:48
252,792,308
0
0
null
null
null
null
UTF-8
C++
false
false
403
h
#pragma once #include "Service.h" class Console { private: Service service; public: Console(); Console(Service service); ~Console(); void print_menu(); void run_console(); void handle_add_product(); void handle_delete_product_by_id(); void handle_update_product_by_id(); void handle_read_product_by_id(); void handle_print_all_products(); };
[ "noreply@github.com" ]
noreply@github.com
dc3e02c38275cffc9b59ee5eb9d6a1b37e2b70a3
4e6371705078cd6202b730a731983902f30efb5d
/src/orahandle.cpp
7a214e75089ffd19122beab001eca318f6bf14f2
[]
no_license
jikaihu/DBSQLAPI
cd9610d55d3b2423f3f7873780c38e1127cb955b
7b0c63a8eaab8f9de05a781a367715b41002578d
refs/heads/master
2021-01-01T16:26:19.198064
2013-04-01T10:20:13
2013-04-01T10:20:13
null
0
0
null
null
null
null
UTF-8
C++
false
false
8,782
cpp
#include <stdio.h> #include <stdlib.h> #include "orahandle.h" const char* ORA_LIB = "libclntsh.so"; oraHandle::oraHandle() { pLibraryName = ORA_LIB; // 8.0.x calls OCIInitialize = NULL; OCIHandleAlloc = NULL; OCIHandleFree = NULL; OCIDescriptorAlloc = NULL; OCIDescriptorFree = NULL; OCIEnvInit = NULL; OCIServerAttach = NULL; OCIServerDetach = NULL; OCISessionBegin = NULL; OCISessionEnd = NULL; OCILogon = NULL; OCILogoff = NULL; OCIPasswordChange = NULL; OCIStmtPrepare = NULL; OCIBindByPos = NULL; OCIBindByName = NULL; OCIBindObject = NULL; OCIBindDynamic = NULL; OCIBindArrayOfStruct = NULL; OCIStmtGetPieceInfo = NULL; OCIStmtSetPieceInfo = NULL; OCIStmtExecute = NULL; OCIDefineByPos = NULL; OCIDefineObject = NULL; OCIDefineDynamic = NULL; OCIDefineArrayOfStruct = NULL; OCIStmtFetch = NULL; OCIStmtGetBindInfo = NULL; OCIDescribeAny = NULL; OCIParamGet = NULL; OCIParamSet = NULL; OCITransStart = NULL; OCITransDetach = NULL; OCITransCommit = NULL; OCITransRollback = NULL; OCITransPrepare = NULL; OCITransForget = NULL; OCIErrorGet = NULL; OCILobAppend = NULL; OCILobAssign = NULL; OCILobCharSetForm = NULL; OCILobCharSetId = NULL; OCILobCopy = NULL; OCILobDisableBuffering = NULL; OCILobEnableBuffering = NULL; OCILobErase = NULL; OCILobFileClose = NULL; OCILobFileCloseAll = NULL; OCILobFileExists = NULL; OCILobFileGetName = NULL; OCILobFileIsOpen = NULL; OCILobFileOpen = NULL; OCILobFileSetName = NULL; OCILobFlushBuffer = NULL; OCILobGetLength = NULL; OCILobIsEqual = NULL; OCILobLoadFromFile = NULL; OCILobLocatorIsInit = NULL; OCILobRead = NULL; OCILobTrim = NULL; OCILobWrite = NULL; OCIBreak = NULL; OCIReset = NULL; OCIServerVersion = NULL; OCIAttrGet = NULL; OCIAttrSet = NULL; OCISvcCtxToLda = NULL; OCILdaToSvcCtx = NULL; OCIResultSetToStmt = NULL; // 8.1.x (8i) calls OCIEnvCreate = NULL; OCIEnvNlsCreate = NULL; OCIDurationBegin = NULL; OCIDurationEnd = NULL; OCILobCreateTemporary = NULL; OCILobFreeTemporary = NULL; OCILobIsTemporary = NULL; OCIAQEnq = NULL; OCIAQDeq = NULL; OCIAQListen = NULL; OCISubscriptionRegister = NULL; OCISubscriptionPost = NULL; OCISubscriptionUnRegister = NULL; OCISubscriptionDisable = NULL; OCISubscriptionEnable = NULL; OCIDateTimeConstruct = NULL; OCIDateTimeGetDate = NULL; OCIDateTimeGetTime = NULL; } oraHandle::~oraHandle() { } void oraHandle::loadDBFunc(void* dlHandle) { /* Resolve the symbol (method) from the object */ // 8.0.x calls loadFunc(dlHandle, (void*&)OCIInitialize, "OCIInitialize"); loadFunc(dlHandle, (void*&)OCIHandleAlloc, "OCIHandleAlloc"); loadFunc(dlHandle, (void*&)OCIHandleFree, "OCIHandleFree"); loadFunc(dlHandle, (void*&)OCIDescriptorAlloc, "OCIDescriptorAlloc"); loadFunc(dlHandle, (void*&)OCIDescriptorFree, "OCIDescriptorFree"); loadFunc(dlHandle, (void*&)OCIEnvInit, "OCIEnvInit"); loadFunc(dlHandle, (void*&)OCIServerAttach, "OCIServerAttach"); loadFunc(dlHandle, (void*&)OCIServerDetach, "OCIServerDetach"); loadFunc(dlHandle, (void*&)OCISessionBegin, "OCISessionBegin"); loadFunc(dlHandle, (void*&)OCISessionEnd, "OCISessionEnd"); loadFunc(dlHandle, (void*&)OCILogon, "OCILogon"); loadFunc(dlHandle, (void*&)OCILogoff, "OCILogoff"); loadFunc(dlHandle, (void*&)OCIPasswordChange, "OCIPasswordChange"); loadFunc(dlHandle, (void*&)OCIStmtPrepare, "OCIStmtPrepare"); loadFunc(dlHandle, (void*&)OCIBindByPos, "OCIBindByPos"); loadFunc(dlHandle, (void*&)OCIBindByName, "OCIBindByName"); loadFunc(dlHandle, (void*&)OCIBindObject, "OCIBindObject"); loadFunc(dlHandle, (void*&)OCIBindDynamic, "OCIBindDynamic"); loadFunc(dlHandle, (void*&)OCIBindArrayOfStruct, "OCIBindArrayOfStruct"); loadFunc(dlHandle, (void*&)OCIStmtGetPieceInfo, "OCIStmtGetPieceInfo"); loadFunc(dlHandle, (void*&)OCIStmtSetPieceInfo, "OCIStmtSetPieceInfo"); loadFunc(dlHandle, (void*&)OCIStmtExecute, "OCIStmtExecute"); loadFunc(dlHandle, (void*&)OCIDefineByPos, "OCIDefineByPos"); loadFunc(dlHandle, (void*&)OCIDefineObject, "OCIDefineObject"); loadFunc(dlHandle, (void*&)OCIDefineDynamic, "OCIDefineDynamic"); loadFunc(dlHandle, (void*&)OCIDefineArrayOfStruct, "OCIDefineArrayOfStruct"); loadFunc(dlHandle, (void*&)OCIStmtFetch, "OCIStmtFetch"); loadFunc(dlHandle, (void*&)OCIStmtGetBindInfo, "OCIStmtGetBindInfo"); loadFunc(dlHandle, (void*&)OCIDescribeAny, "OCIDescribeAny"); loadFunc(dlHandle, (void*&)OCIParamGet, "OCIParamGet"); loadFunc(dlHandle, (void*&)OCIParamSet, "OCIParamSet"); loadFunc(dlHandle, (void*&)OCITransStart, "OCITransStart"); loadFunc(dlHandle, (void*&)OCITransDetach, "OCITransDetach"); loadFunc(dlHandle, (void*&)OCITransCommit, "OCITransCommit"); loadFunc(dlHandle, (void*&)OCITransRollback, "OCITransRollback"); loadFunc(dlHandle, (void*&)OCITransPrepare, "OCITransPrepare"); loadFunc(dlHandle, (void*&)OCITransForget, "OCITransForget"); loadFunc(dlHandle, (void*&)OCIErrorGet, "OCIErrorGet"); loadFunc(dlHandle, (void*&)OCILobAppend, "OCILobAppend"); loadFunc(dlHandle, (void*&)OCILobAssign, "OCILobAssign"); loadFunc(dlHandle, (void*&)OCILobCharSetForm, "OCILobCharSetForm"); loadFunc(dlHandle, (void*&)OCILobCharSetId, "OCILobCharSetId"); loadFunc(dlHandle, (void*&)OCILobCopy, "OCILobCopy"); loadFunc(dlHandle, (void*&)OCILobDisableBuffering, "OCILobDisableBuffering"); loadFunc(dlHandle, (void*&)OCILobEnableBuffering, "OCILobEnableBuffering"); loadFunc(dlHandle, (void*&)OCILobErase, "OCILobErase"); loadFunc(dlHandle, (void*&)OCILobFileClose, "OCILobFileClose"); loadFunc(dlHandle, (void*&)OCILobFileCloseAll, "OCILobFileCloseAll"); loadFunc(dlHandle, (void*&)OCILobFileExists, "OCILobFileExists"); loadFunc(dlHandle, (void*&)OCILobFileGetName, "OCILobFileGetName"); loadFunc(dlHandle, (void*&)OCILobFileIsOpen, "OCILobFileIsOpen"); loadFunc(dlHandle, (void*&)OCILobFileOpen, "OCILobFileOpen"); loadFunc(dlHandle, (void*&)OCILobFileSetName, "OCILobFileSetName"); loadFunc(dlHandle, (void*&)OCILobFlushBuffer, "OCILobFlushBuffer"); loadFunc(dlHandle, (void*&)OCILobGetLength, "OCILobGetLength"); loadFunc(dlHandle, (void*&)OCILobIsEqual, "OCILobIsEqual"); loadFunc(dlHandle, (void*&)OCILobLoadFromFile, "OCILobLoadFromFile"); loadFunc(dlHandle, (void*&)OCILobLocatorIsInit, "OCILobLocatorIsInit"); loadFunc(dlHandle, (void*&)OCILobRead, "OCILobRead"); loadFunc(dlHandle, (void*&)OCILobTrim, "OCILobTrim"); loadFunc(dlHandle, (void*&)OCILobWrite, "OCILobWrite"); loadFunc(dlHandle, (void*&)OCIBreak, "OCIBreak"); loadFunc(dlHandle, (void*&)OCIReset, "OCIReset"); loadFunc(dlHandle, (void*&)OCIServerVersion, "OCIServerVersion"); loadFunc(dlHandle, (void*&)OCIAttrGet, "OCIAttrGet"); loadFunc(dlHandle, (void*&)OCIAttrSet, "OCIAttrSet"); loadFunc(dlHandle, (void*&)OCISvcCtxToLda, "OCISvcCtxToLda"); loadFunc(dlHandle, (void*&)OCILdaToSvcCtx, "OCILdaToSvcCtx"); loadFunc(dlHandle, (void*&)OCIResultSetToStmt, "OCIResultSetToStmt"); // 8.1.x (8i) calls loadFunc(dlHandle, (void*&)OCIEnvCreate, "OCIEnvCreate"); loadFunc(dlHandle, (void*&)OCIEnvNlsCreate, "OCIEnvNlsCreate"); loadFunc(dlHandle, (void*&)OCIDurationBegin, "OCIDurationBegin"); loadFunc(dlHandle, (void*&)OCIDurationEnd, "OCIDurationEnd"); loadFunc(dlHandle, (void*&)OCILobCreateTemporary, "OCILobCreateTemporary"); loadFunc(dlHandle, (void*&)OCILobFreeTemporary, "OCILobFreeTemporary"); loadFunc(dlHandle, (void*&)OCILobIsTemporary, "OCILobIsTemporary"); loadFunc(dlHandle, (void*&)OCIAQEnq, "OCIAQEnq"); loadFunc(dlHandle, (void*&)OCIAQDeq, "OCIAQDeq"); loadFunc(dlHandle, (void*&)OCIAQListen, "OCIAQListen"); loadFunc(dlHandle, (void*&)OCISubscriptionRegister, "OCISubscriptionRegister"); loadFunc(dlHandle, (void*&)OCISubscriptionPost, "OCISubscriptionPost"); loadFunc(dlHandle, (void*&)OCISubscriptionUnRegister, "OCISubscriptionUnRegister"); loadFunc(dlHandle, (void*&)OCISubscriptionDisable, "OCISubscriptionDisable"); loadFunc(dlHandle, (void*&)OCISubscriptionEnable, "OCISubscriptionEnable"); loadFunc(dlHandle, (void*&)OCIDateTimeConstruct, "OCIDateTimeConstruct"); loadFunc(dlHandle, (void*&)OCIDateTimeGetDate, "OCIDateTimeGetDate"); loadFunc(dlHandle, (void*&)OCIDateTimeGetTime, "OCIDateTimeGetTime"); loadFunc(dlHandle, (void*&)OCINumberToInt, "OCINumberToInt"); }
[ "jikaihu@gmail.com" ]
jikaihu@gmail.com
663a61c08c41a49deddb6e64ff2a432361e9f925
2e07e0a8dbc57e0cd42599bb5b0ffc6ef7666166
/Dmapp/src/PoiData.h
a181a475951c8e0b369ad730a304f3938717d012
[]
no_license
nuelbruno/Blackberry
5aa14ab4835610dded0154737e65372eaf4f5ae1
0b8b1b4ef828954f8c3f1a1a73ca641405bbc003
refs/heads/master
2021-08-11T03:19:26.484311
2017-11-13T05:10:40
2017-11-13T05:10:40
110,502,352
0
0
null
null
null
null
UTF-8
C++
false
false
1,325
h
/* * PoiData.h * * Created on: 06-Jan-2014 * Author: ubuntu */ #ifndef POIDATA_H_ #define POIDATA_H_ #include <QtCore/QObject> class PoiData: public QObject { Q_OBJECT Q_PROPERTY(QString getpoiname READ getpoiname NOTIFY getpoinameChanged) Q_PROPERTY(QString getpoilatitude READ getpoilatitude NOTIFY getpoilatitudeChanged) Q_PROPERTY(QString poilongitude READ poilongitude NOTIFY getpoilongitudeChanged) Q_PROPERTY(QString poidistance READ poidistance NOTIFY getpoidistanceChanged) Q_PROPERTY(bool getChecked READ getChecked WRITE setChecked NOTIFY getCheckedChanged) // Q_PROPERTY(QString getChecked READ getChecked NOTIFY getCheckedChanged) public: PoiData(const QString &name, const QString &latitude, const QString &longitude, const QString &distance, QObject* parent = 0); virtual ~PoiData(); void load(); Q_SIGNALS: void getpoinameChanged(); void getpoilatitudeChanged(); void getpoilongitudeChanged(); void getpoidistanceChanged(); void getCheckedChanged(); private: QString getpoiname() const; QString getpoilatitude() const; QString poilongitude() const; QString poidistance() const; bool getChecked(); void setChecked(bool checkedValue) ; QString poiName; QString poiLatitude; QString poiLongitude; QString poiDistance; bool isChecked; }; #endif /* POIDATA_H_ */
[ "bruno.nuel@gmail.com" ]
bruno.nuel@gmail.com
5de1b1d2ce99033767760cc2a4955a315e9008fe
94a8f617641d303ea729a446f2ef1c646f8a62ff
/src/net.cpp
7abe125692e9b32037bf7200d77f0c5995afc49e
[ "MIT" ]
permissive
zebbra2014/CyberCoin
7f0f4a1256ae3a36369048ca313d6bf336a07c13
fe8a81576a038273ee0598ffed2665c880264498
refs/heads/master
2021-01-10T00:57:17.467073
2015-04-07T22:12:58
2015-04-07T22:12:58
49,313,168
0
1
null
null
null
null
UTF-8
C++
false
false
56,651
cpp
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "chainparams.h" #include "db.h" #include "net.h" #include "main.h" #include "addrman.h" #include "ui_interface.h" #ifdef WIN32 #include <string.h> #endif #ifdef USE_UPNP #include <miniwget.h> #include <miniupnpc.h> #include <upnpcommands.h> #include <upnperrors.h> #endif // Dump addresses to peers.dat every 15 minutes (900s) #define DUMP_ADDRESSES_INTERVAL 900 using namespace std; using namespace boost; static const int MAX_OUTBOUND_CONNECTIONS = 16; bool OpenNetworkConnection(const CAddress& addrConnect, CSemaphoreGrant *grantOutbound = NULL, const char *strDest = NULL, bool fOneShot = false); struct LocalServiceInfo { int nScore; int nPort; }; // // Global state variables // bool fDiscover = true; uint64_t nLocalServices = NODE_NETWORK; static CCriticalSection cs_mapLocalHost; static map<CNetAddr, LocalServiceInfo> mapLocalHost; static bool vfReachable[NET_MAX] = {}; static bool vfLimited[NET_MAX] = {}; static CNode* pnodeLocalHost = NULL; static CNode* pnodeSync = NULL; uint64_t nLocalHostNonce = 0; static std::vector<SOCKET> vhListenSocket; CAddrMan addrman; vector<CNode*> vNodes; CCriticalSection cs_vNodes; map<CInv, CDataStream> mapRelay; deque<pair<int64_t, CInv> > vRelayExpiration; CCriticalSection cs_mapRelay; map<CInv, int64_t> mapAlreadyAskedFor; static deque<string> vOneShots; CCriticalSection cs_vOneShots; set<CNetAddr> setservAddNodeAddresses; CCriticalSection cs_setservAddNodeAddresses; vector<std::string> vAddedNodes; CCriticalSection cs_vAddedNodes; static CSemaphore *semOutbound = NULL; // Signals for message handling static CNodeSignals g_signals; CNodeSignals& GetNodeSignals() { return g_signals; } void AddOneShot(string strDest) { LOCK(cs_vOneShots); vOneShots.push_back(strDest); } unsigned short GetListenPort() { return (unsigned short)(GetArg("-port", Params().GetDefaultPort())); } // find 'best' local address for a particular peer bool GetLocal(CService& addr, const CNetAddr *paddrPeer) { if (fNoListen) return false; int nBestScore = -1; int nBestReachability = -1; { LOCK(cs_mapLocalHost); for (map<CNetAddr, LocalServiceInfo>::iterator it = mapLocalHost.begin(); it != mapLocalHost.end(); it++) { int nScore = (*it).second.nScore; int nReachability = (*it).first.GetReachabilityFrom(paddrPeer); if (nReachability > nBestReachability || (nReachability == nBestReachability && nScore > nBestScore)) { addr = CService((*it).first, (*it).second.nPort); nBestReachability = nReachability; nBestScore = nScore; } } } return nBestScore >= 0; } // get best local address for a particular peer as a CAddress // Otherwise, return the unroutable 0.0.0.0 but filled in with // the normal parameters, since the IP may be changed to a useful // one by discovery. CAddress GetLocalAddress(const CNetAddr *paddrPeer) { CAddress ret(CService("0.0.0.0",GetListenPort()),0); CService addr; if (GetLocal(addr, paddrPeer)) { ret = CAddress(addr); } ret.nServices = nLocalServices; ret.nTime = GetAdjustedTime(); return ret; } bool RecvLine(SOCKET hSocket, string& strLine) { strLine = ""; while (true) { char c; int nBytes = recv(hSocket, &c, 1, 0); if (nBytes > 0) { if (c == '\n') continue; if (c == '\r') return true; strLine += c; if (strLine.size() >= 9000) return true; } else if (nBytes <= 0) { boost::this_thread::interruption_point(); if (nBytes < 0) { int nErr = WSAGetLastError(); if (nErr == WSAEMSGSIZE) continue; if (nErr == WSAEWOULDBLOCK || nErr == WSAEINTR || nErr == WSAEINPROGRESS) { MilliSleep(10); continue; } } if (!strLine.empty()) return true; if (nBytes == 0) { // socket closed LogPrint("net", "socket closed\n"); return false; } else { // socket error int nErr = WSAGetLastError(); LogPrint("net", "recv failed: %d\n", nErr); return false; } } } } int GetnScore(const CService& addr) { LOCK(cs_mapLocalHost); if (mapLocalHost.count(addr) == LOCAL_NONE) return 0; return mapLocalHost[addr].nScore; } // Is our peer's addrLocal potentially useful as an external IP source? bool IsPeerAddrLocalGood(CNode *pnode) { return fDiscover && pnode->addr.IsRoutable() && pnode->addrLocal.IsRoutable() && !IsLimited(pnode->addrLocal.GetNetwork()); } // pushes our own address to a peer void AdvertizeLocal(CNode *pnode) { if (!fNoListen && pnode->fSuccessfullyConnected) { CAddress addrLocal = GetLocalAddress(&pnode->addr); // If discovery is enabled, sometimes give our peer the address it // tells us that it sees us as in case it has a better idea of our // address than we do. if (IsPeerAddrLocalGood(pnode) && (!addrLocal.IsRoutable() || GetRand((GetnScore(addrLocal) > LOCAL_MANUAL) ? 8:2) == 0)) { addrLocal.SetIP(pnode->addrLocal); } if (addrLocal.IsRoutable()) { pnode->PushAddress(addrLocal); } } } void SetReachable(enum Network net, bool fFlag) { LOCK(cs_mapLocalHost); vfReachable[net] = fFlag; if (net == NET_IPV6 && fFlag) vfReachable[NET_IPV4] = true; } // learn a new local address bool AddLocal(const CService& addr, int nScore) { if (!addr.IsRoutable()) return false; if (!fDiscover && nScore < LOCAL_MANUAL) return false; if (IsLimited(addr)) return false; LogPrintf("AddLocal(%s,%i)\n", addr.ToString(), nScore); { LOCK(cs_mapLocalHost); bool fAlready = mapLocalHost.count(addr) > 0; LocalServiceInfo &info = mapLocalHost[addr]; if (!fAlready || nScore >= info.nScore) { info.nScore = nScore + (fAlready ? 1 : 0); info.nPort = addr.GetPort(); } SetReachable(addr.GetNetwork()); } return true; } bool AddLocal(const CNetAddr &addr, int nScore) { return AddLocal(CService(addr, GetListenPort()), nScore); } /** Make a particular network entirely off-limits (no automatic connects to it) */ void SetLimited(enum Network net, bool fLimited) { if (net == NET_UNROUTABLE) return; LOCK(cs_mapLocalHost); vfLimited[net] = fLimited; } bool IsLimited(enum Network net) { LOCK(cs_mapLocalHost); return vfLimited[net]; } bool IsLimited(const CNetAddr &addr) { return IsLimited(addr.GetNetwork()); } /** vote for a local address */ bool SeenLocal(const CService& addr) { { LOCK(cs_mapLocalHost); if (mapLocalHost.count(addr) == 0) return false; mapLocalHost[addr].nScore++; } return true; } /** check whether a given address is potentially local */ bool IsLocal(const CService& addr) { LOCK(cs_mapLocalHost); return mapLocalHost.count(addr) > 0; } /** check whether a given address is in a network we can probably connect to */ bool IsReachable(const CNetAddr& addr) { LOCK(cs_mapLocalHost); enum Network net = addr.GetNetwork(); return vfReachable[net] && !vfLimited[net]; } void AddressCurrentlyConnected(const CService& addr) { addrman.Connected(addr); } uint64_t CNode::nTotalBytesRecv = 0; uint64_t CNode::nTotalBytesSent = 0; CCriticalSection CNode::cs_totalBytesRecv; CCriticalSection CNode::cs_totalBytesSent; CNode* FindNode(const CNetAddr& ip) { { LOCK(cs_vNodes); BOOST_FOREACH(CNode* pnode, vNodes) if ((CNetAddr)pnode->addr == ip) return (pnode); } return NULL; } CNode* FindNode(const std::string& addrName) { LOCK(cs_vNodes); BOOST_FOREACH(CNode* pnode, vNodes) if (pnode->addrName == addrName) return (pnode); return NULL; } CNode* FindNode(const CService& addr) { { LOCK(cs_vNodes); BOOST_FOREACH(CNode* pnode, vNodes) if ((CService)pnode->addr == addr) return (pnode); } return NULL; } CNode* ConnectNode(CAddress addrConnect, const char *pszDest) { if (pszDest == NULL) { if (IsLocal(addrConnect)) return NULL; // Look for an existing connection CNode* pnode = FindNode((CService)addrConnect); if (pnode) { pnode->AddRef(); return pnode; } } /// debug print LogPrint("net", "trying connection %s lastseen=%.1fhrs\n", pszDest ? pszDest : addrConnect.ToString(), pszDest ? 0 : (double)(GetAdjustedTime() - addrConnect.nTime)/3600.0); // Connect SOCKET hSocket; bool proxyConnectionFailed = false; if (pszDest ? ConnectSocketByName(addrConnect, hSocket, pszDest, Params().GetDefaultPort(), nConnectTimeout, &proxyConnectionFailed) : ConnectSocket(addrConnect, hSocket, nConnectTimeout, &proxyConnectionFailed)) { addrman.Attempt(addrConnect); LogPrint("net", "connected %s\n", pszDest ? pszDest : addrConnect.ToString()); // Set to non-blocking #ifdef WIN32 u_long nOne = 1; if (ioctlsocket(hSocket, FIONBIO, &nOne) == SOCKET_ERROR) LogPrintf("ConnectSocket() : ioctlsocket non-blocking setting failed, error %d\n", WSAGetLastError()); #else if (fcntl(hSocket, F_SETFL, O_NONBLOCK) == SOCKET_ERROR) LogPrintf("ConnectSocket() : fcntl non-blocking setting failed, error %d\n", errno); #endif // Add node CNode* pnode = new CNode(hSocket, addrConnect, pszDest ? pszDest : "", false); pnode->AddRef(); { LOCK(cs_vNodes); vNodes.push_back(pnode); } pnode->nTimeConnected = GetTime(); return pnode; } else if (!proxyConnectionFailed) { // If connecting to the node failed, and failure is not caused by a problem connecting to // the proxy, mark this as an attempt. addrman.Attempt(addrConnect); } return NULL; } void CNode::CloseSocketDisconnect() { fDisconnect = true; if (hSocket != INVALID_SOCKET) { LogPrint("net", "disconnecting node %s\n", addrName); closesocket(hSocket); hSocket = INVALID_SOCKET; } // in case this fails, we'll empty the recv buffer when the CNode is deleted TRY_LOCK(cs_vRecvMsg, lockRecv); if (lockRecv) vRecvMsg.clear(); // if this was the sync node, we'll need a new one if (this == pnodeSync) pnodeSync = NULL; } void CNode::PushVersion() { /// when NTP implemented, change to just nTime = GetAdjustedTime() int64_t nTime = (fInbound ? GetAdjustedTime() : GetTime()); CAddress addrYou = (addr.IsRoutable() && !IsProxy(addr) ? addr : CAddress(CService("0.0.0.0",0))); CAddress addrMe = GetLocalAddress(&addr); RAND_bytes((unsigned char*)&nLocalHostNonce, sizeof(nLocalHostNonce)); LogPrint("net", "send version message: version %d, blocks=%d, us=%s, them=%s, peer=%s\n", PROTOCOL_VERSION, nBestHeight, addrMe.ToString(), addrYou.ToString(), addr.ToString()); PushMessage("version", PROTOCOL_VERSION, nLocalServices, nTime, addrYou, addrMe, nLocalHostNonce, FormatSubVersion(CLIENT_NAME, CLIENT_VERSION, std::vector<string>()), nBestHeight); } std::map<CNetAddr, int64_t> CNode::setBanned; CCriticalSection CNode::cs_setBanned; void CNode::ClearBanned() { setBanned.clear(); } bool CNode::IsBanned(CNetAddr ip) { bool fResult = false; { LOCK(cs_setBanned); std::map<CNetAddr, int64_t>::iterator i = setBanned.find(ip); if (i != setBanned.end()) { int64_t t = (*i).second; if (GetTime() < t) fResult = true; } } return fResult; } bool CNode::Misbehaving(int howmuch) { if (addr.IsLocal()) { LogPrintf("Warning: Local node %s misbehaving (delta: %d)!\n", addrName, howmuch); return false; } nMisbehavior += howmuch; if (nMisbehavior >= GetArg("-banscore", 100)) { int64_t banTime = GetTime()+GetArg("-bantime", 60*60*24); // Default 24-hour ban LogPrintf("Misbehaving: %s (%d -> %d) DISCONNECTING\n", addr.ToString(), nMisbehavior-howmuch, nMisbehavior); { LOCK(cs_setBanned); if (setBanned[addr] < banTime) setBanned[addr] = banTime; } CloseSocketDisconnect(); return true; } else LogPrintf("Misbehaving: %s (%d -> %d)\n", addr.ToString(), nMisbehavior-howmuch, nMisbehavior); return false; } #undef X #define X(name) stats.name = name void CNode::copyStats(CNodeStats &stats) { X(nServices); X(nLastSend); X(nLastRecv); X(nTimeConnected); X(addrName); X(nVersion); X(strSubVer); X(fInbound); X(nStartingHeight); X(nMisbehavior); X(nSendBytes); X(nRecvBytes); stats.fSyncNode = (this == pnodeSync); // It is common for nodes with good ping times to suddenly become lagged, // due to a new block arriving or other large transfer. // Merely reporting pingtime might fool the caller into thinking the node was still responsive, // since pingtime does not update until the ping is complete, which might take a while. // So, if a ping is taking an unusually long time in flight, // the caller can immediately detect that this is happening. int64_t nPingUsecWait = 0; if ((0 != nPingNonceSent) && (0 != nPingUsecStart)) { nPingUsecWait = GetTimeMicros() - nPingUsecStart; } // Raw ping time is in microseconds, but show it to user as whole seconds (Bitcoin users should be well used to small numbers with many decimal places by now :) stats.dPingTime = (((double)nPingUsecTime) / 1e6); stats.dPingWait = (((double)nPingUsecWait) / 1e6); // Leave string empty if addrLocal invalid (not filled in yet) stats.addrLocal = addrLocal.IsValid() ? addrLocal.ToString() : ""; } #undef X // requires LOCK(cs_vRecvMsg) bool CNode::ReceiveMsgBytes(const char *pch, unsigned int nBytes) { while (nBytes > 0) { // get current incomplete message, or create a new one if (vRecvMsg.empty() || vRecvMsg.back().complete()) vRecvMsg.push_back(CNetMessage(SER_NETWORK, nRecvVersion)); CNetMessage& msg = vRecvMsg.back(); // absorb network data int handled; if (!msg.in_data) handled = msg.readHeader(pch, nBytes); else handled = msg.readData(pch, nBytes); if (handled < 0) return false; pch += handled; nBytes -= handled; if (msg.complete()) msg.nTime = GetTimeMicros(); } return true; } int CNetMessage::readHeader(const char *pch, unsigned int nBytes) { // copy data to temporary parsing buffer unsigned int nRemaining = 24 - nHdrPos; unsigned int nCopy = std::min(nRemaining, nBytes); memcpy(&hdrbuf[nHdrPos], pch, nCopy); nHdrPos += nCopy; // if header incomplete, exit if (nHdrPos < 24) return nCopy; // deserialize to CMessageHeader try { hdrbuf >> hdr; } catch (std::exception &e) { return -1; } // reject messages larger than MAX_SIZE if (hdr.nMessageSize > MAX_SIZE) return -1; // switch state to reading message data in_data = true; return nCopy; } int CNetMessage::readData(const char *pch, unsigned int nBytes) { unsigned int nRemaining = hdr.nMessageSize - nDataPos; unsigned int nCopy = std::min(nRemaining, nBytes); if (vRecv.size() < nDataPos + nCopy) { // Allocate up to 256 KiB ahead, but never more than the total message size. vRecv.resize(std::min(hdr.nMessageSize, nDataPos + nCopy + 256 * 1024)); } memcpy(&vRecv[nDataPos], pch, nCopy); nDataPos += nCopy; return nCopy; } // requires LOCK(cs_vSend) void SocketSendData(CNode *pnode) { std::deque<CSerializeData>::iterator it = pnode->vSendMsg.begin(); while (it != pnode->vSendMsg.end()) { const CSerializeData &data = *it; assert(data.size() > pnode->nSendOffset); int nBytes = send(pnode->hSocket, &data[pnode->nSendOffset], data.size() - pnode->nSendOffset, MSG_NOSIGNAL | MSG_DONTWAIT); if (nBytes > 0) { pnode->nLastSend = GetTime(); pnode->nSendBytes += nBytes; pnode->nSendOffset += nBytes; pnode->RecordBytesSent(nBytes); if (pnode->nSendOffset == data.size()) { pnode->nSendOffset = 0; pnode->nSendSize -= data.size(); it++; } else { // could not send full message; stop sending more break; } } else { if (nBytes < 0) { // error int nErr = WSAGetLastError(); if (nErr != WSAEWOULDBLOCK && nErr != WSAEMSGSIZE && nErr != WSAEINTR && nErr != WSAEINPROGRESS) { LogPrintf("socket send error %d\n", nErr); pnode->CloseSocketDisconnect(); } } // couldn't send anything at all break; } } if (it == pnode->vSendMsg.end()) { assert(pnode->nSendOffset == 0); assert(pnode->nSendSize == 0); } pnode->vSendMsg.erase(pnode->vSendMsg.begin(), it); } static list<CNode*> vNodesDisconnected; void ThreadSocketHandler() { unsigned int nPrevNodeCount = 0; while (true) { // // Disconnect nodes // { LOCK(cs_vNodes); // Disconnect unused nodes vector<CNode*> vNodesCopy = vNodes; BOOST_FOREACH(CNode* pnode, vNodesCopy) { if (pnode->fDisconnect || (pnode->GetRefCount() <= 0 && pnode->vRecvMsg.empty() && pnode->nSendSize == 0 && pnode->ssSend.empty())) { // remove from vNodes vNodes.erase(remove(vNodes.begin(), vNodes.end(), pnode), vNodes.end()); // release outbound grant (if any) pnode->grantOutbound.Release(); // close socket and cleanup pnode->CloseSocketDisconnect(); // hold in disconnected pool until all refs are released if (pnode->fNetworkNode || pnode->fInbound) pnode->Release(); vNodesDisconnected.push_back(pnode); } } } { // Delete disconnected nodes list<CNode*> vNodesDisconnectedCopy = vNodesDisconnected; BOOST_FOREACH(CNode* pnode, vNodesDisconnectedCopy) { // wait until threads are done using it if (pnode->GetRefCount() <= 0) { bool fDelete = false; { TRY_LOCK(pnode->cs_vSend, lockSend); if (lockSend) { TRY_LOCK(pnode->cs_vRecvMsg, lockRecv); if (lockRecv) { TRY_LOCK(pnode->cs_inventory, lockInv); if (lockInv) fDelete = true; } } } if (fDelete) { vNodesDisconnected.remove(pnode); delete pnode; } } } } if(vNodes.size() != nPrevNodeCount) { nPrevNodeCount = vNodes.size(); uiInterface.NotifyNumConnectionsChanged(nPrevNodeCount); } // // Find which sockets have data to receive // struct timeval timeout; timeout.tv_sec = 0; timeout.tv_usec = 50000; // frequency to poll pnode->vSend fd_set fdsetRecv; fd_set fdsetSend; fd_set fdsetError; FD_ZERO(&fdsetRecv); FD_ZERO(&fdsetSend); FD_ZERO(&fdsetError); SOCKET hSocketMax = 0; bool have_fds = false; BOOST_FOREACH(SOCKET hListenSocket, vhListenSocket) { FD_SET(hListenSocket, &fdsetRecv); hSocketMax = max(hSocketMax, hListenSocket); have_fds = true; } { LOCK(cs_vNodes); BOOST_FOREACH(CNode* pnode, vNodes) { if (pnode->hSocket == INVALID_SOCKET) continue; { TRY_LOCK(pnode->cs_vSend, lockSend); if (lockSend) { // do not read, if draining write queue if (!pnode->vSendMsg.empty()) FD_SET(pnode->hSocket, &fdsetSend); else FD_SET(pnode->hSocket, &fdsetRecv); FD_SET(pnode->hSocket, &fdsetError); hSocketMax = max(hSocketMax, pnode->hSocket); have_fds = true; } } } } int nSelect = select(have_fds ? hSocketMax + 1 : 0, &fdsetRecv, &fdsetSend, &fdsetError, &timeout); boost::this_thread::interruption_point(); if (nSelect == SOCKET_ERROR) { if (have_fds) { int nErr = WSAGetLastError(); LogPrintf("socket select error %d\n", nErr); for (unsigned int i = 0; i <= hSocketMax; i++) FD_SET(i, &fdsetRecv); } FD_ZERO(&fdsetSend); FD_ZERO(&fdsetError); MilliSleep(timeout.tv_usec/1000); } // // Accept new connections // BOOST_FOREACH(SOCKET hListenSocket, vhListenSocket) if (hListenSocket != INVALID_SOCKET && FD_ISSET(hListenSocket, &fdsetRecv)) { struct sockaddr_storage sockaddr; socklen_t len = sizeof(sockaddr); SOCKET hSocket = accept(hListenSocket, (struct sockaddr*)&sockaddr, &len); CAddress addr; int nInbound = 0; if (hSocket != INVALID_SOCKET) if (!addr.SetSockAddr((const struct sockaddr*)&sockaddr)) LogPrintf("Warning: Unknown socket family\n"); { LOCK(cs_vNodes); BOOST_FOREACH(CNode* pnode, vNodes) if (pnode->fInbound) nInbound++; } if (hSocket == INVALID_SOCKET) { int nErr = WSAGetLastError(); if (nErr != WSAEWOULDBLOCK) LogPrintf("socket error accept failed: %d\n", nErr); } else if (nInbound >= GetArg("-maxconnections", 125) - MAX_OUTBOUND_CONNECTIONS) { closesocket(hSocket); } else if (CNode::IsBanned(addr)) { LogPrintf("connection from %s dropped (banned)\n", addr.ToString()); closesocket(hSocket); } else { LogPrint("net", "accepted connection %s\n", addr.ToString()); CNode* pnode = new CNode(hSocket, addr, "", true); pnode->AddRef(); { LOCK(cs_vNodes); vNodes.push_back(pnode); } } } // // Service each socket // vector<CNode*> vNodesCopy; { LOCK(cs_vNodes); vNodesCopy = vNodes; BOOST_FOREACH(CNode* pnode, vNodesCopy) pnode->AddRef(); } BOOST_FOREACH(CNode* pnode, vNodesCopy) { boost::this_thread::interruption_point(); // // Receive // if (pnode->hSocket == INVALID_SOCKET) continue; if (FD_ISSET(pnode->hSocket, &fdsetRecv) || FD_ISSET(pnode->hSocket, &fdsetError)) { TRY_LOCK(pnode->cs_vRecvMsg, lockRecv); if (lockRecv) { if (pnode->GetTotalRecvSize() > ReceiveFloodSize()) { if (!pnode->fDisconnect) LogPrintf("socket recv flood control disconnect (%u bytes)\n", pnode->GetTotalRecvSize()); pnode->CloseSocketDisconnect(); } else { // typical socket buffer is 8K-64K char pchBuf[0x10000]; int nBytes = recv(pnode->hSocket, pchBuf, sizeof(pchBuf), MSG_DONTWAIT); if (nBytes > 0) { if (!pnode->ReceiveMsgBytes(pchBuf, nBytes)) pnode->CloseSocketDisconnect(); pnode->nLastRecv = GetTime(); pnode->nRecvBytes += nBytes; pnode->RecordBytesRecv(nBytes); } else if (nBytes == 0) { // socket closed gracefully if (!pnode->fDisconnect) LogPrint("net", "socket closed\n"); pnode->CloseSocketDisconnect(); } else if (nBytes < 0) { // error int nErr = WSAGetLastError(); if (nErr != WSAEWOULDBLOCK && nErr != WSAEMSGSIZE && nErr != WSAEINTR && nErr != WSAEINPROGRESS) { if (!pnode->fDisconnect) LogPrintf("socket recv error %d\n", nErr); pnode->CloseSocketDisconnect(); } } } } } // // Send // if (pnode->hSocket == INVALID_SOCKET) continue; if (FD_ISSET(pnode->hSocket, &fdsetSend)) { TRY_LOCK(pnode->cs_vSend, lockSend); if (lockSend) SocketSendData(pnode); } // // Inactivity checking // int64_t nTime = GetTime(); if (nTime - pnode->nTimeConnected > 60) { if (pnode->nLastRecv == 0 || pnode->nLastSend == 0) { LogPrint("net", "socket no message in first 60 seconds, %d %d\n", pnode->nLastRecv != 0, pnode->nLastSend != 0); pnode->fDisconnect = true; } else if (nTime - pnode->nLastSend > TIMEOUT_INTERVAL) { LogPrintf("socket sending timeout: %ds\n", nTime - pnode->nLastSend); pnode->fDisconnect = true; } else if (nTime - pnode->nLastRecv > (pnode->nVersion > BIP0031_VERSION ? TIMEOUT_INTERVAL : 90*60)) { LogPrintf("socket receive timeout: %ds\n", nTime - pnode->nLastRecv); pnode->fDisconnect = true; } else if (pnode->nPingNonceSent && pnode->nPingUsecStart + TIMEOUT_INTERVAL * 1000000 < GetTimeMicros()) { LogPrintf("ping timeout: %fs\n", 0.000001 * (GetTimeMicros() - pnode->nPingUsecStart)); pnode->fDisconnect = true; } } } { LOCK(cs_vNodes); BOOST_FOREACH(CNode* pnode, vNodesCopy) pnode->Release(); } } } #ifdef USE_UPNP void ThreadMapPort() { std::string port = strprintf("%u", GetListenPort()); const char * multicastif = 0; const char * minissdpdpath = 0; struct UPNPDev * devlist = 0; char lanaddr[64]; #ifndef UPNPDISCOVER_SUCCESS /* miniupnpc 1.5 */ devlist = upnpDiscover(2000, multicastif, minissdpdpath, 0); #else /* miniupnpc 1.6 */ int error = 0; devlist = upnpDiscover(2000, multicastif, minissdpdpath, 0, 0, &error); #endif struct UPNPUrls urls; struct IGDdatas data; int r; r = UPNP_GetValidIGD(devlist, &urls, &data, lanaddr, sizeof(lanaddr)); if (r == 1) { if (fDiscover) { char externalIPAddress[40]; r = UPNP_GetExternalIPAddress(urls.controlURL, data.first.servicetype, externalIPAddress); if(r != UPNPCOMMAND_SUCCESS) LogPrintf("UPnP: GetExternalIPAddress() returned %d\n", r); else { if(externalIPAddress[0]) { LogPrintf("UPnP: ExternalIPAddress = %s\n", externalIPAddress); AddLocal(CNetAddr(externalIPAddress), LOCAL_UPNP); } else LogPrintf("UPnP: GetExternalIPAddress failed.\n"); } } string strDesc = "CyberCoin " + FormatFullVersion(); try { while (true) { #ifndef UPNPDISCOVER_SUCCESS /* miniupnpc 1.5 */ r = UPNP_AddPortMapping(urls.controlURL, data.first.servicetype, port.c_str(), port.c_str(), lanaddr, strDesc.c_str(), "TCP", 0); #else /* miniupnpc 1.6 */ r = UPNP_AddPortMapping(urls.controlURL, data.first.servicetype, port.c_str(), port.c_str(), lanaddr, strDesc.c_str(), "TCP", 0, "0"); #endif if(r!=UPNPCOMMAND_SUCCESS) LogPrintf("AddPortMapping(%s, %s, %s) failed with code %d (%s)\n", port, port, lanaddr, r, strupnperror(r)); else LogPrintf("UPnP Port Mapping successful.\n");; MilliSleep(20*60*1000); // Refresh every 20 minutes } } catch (boost::thread_interrupted) { r = UPNP_DeletePortMapping(urls.controlURL, data.first.servicetype, port.c_str(), "TCP", 0); LogPrintf("UPNP_DeletePortMapping() returned : %d\n", r); freeUPNPDevlist(devlist); devlist = 0; FreeUPNPUrls(&urls); throw; } } else { LogPrintf("No valid UPnP IGDs found\n"); freeUPNPDevlist(devlist); devlist = 0; if (r != 0) FreeUPNPUrls(&urls); } } void MapPort(bool fUseUPnP) { static boost::thread* upnp_thread = NULL; if (fUseUPnP) { if (upnp_thread) { upnp_thread->interrupt(); upnp_thread->join(); delete upnp_thread; } upnp_thread = new boost::thread(boost::bind(&TraceThread<void (*)()>, "upnp", &ThreadMapPort)); } else if (upnp_thread) { upnp_thread->interrupt(); upnp_thread->join(); delete upnp_thread; upnp_thread = NULL; } } #else void MapPort(bool) { // Intentionally left blank. } #endif void ThreadDNSAddressSeed() { // goal: only query DNS seeds if address need is acute if ((addrman.size() > 0) && (!GetBoolArg("-forcednsseed", false))) { MilliSleep(11 * 1000); LOCK(cs_vNodes); if (vNodes.size() >= 2) { LogPrintf("P2P peers available. Skipped DNS seeding.\n"); return; } } const vector<CDNSSeedData> &vSeeds = Params().DNSSeeds(); int found = 0; LogPrintf("Loading addresses from DNS seeds (could take a while)\n"); BOOST_FOREACH(const CDNSSeedData &seed, vSeeds) { if (HaveNameProxy()) { AddOneShot(seed.host); } else { vector<CNetAddr> vIPs; vector<CAddress> vAdd; if (LookupHost(seed.host.c_str(), vIPs)) { BOOST_FOREACH(CNetAddr& ip, vIPs) { int nOneDay = 24*3600; CAddress addr = CAddress(CService(ip, Params().GetDefaultPort())); addr.nTime = GetTime() - 3*nOneDay - GetRand(4*nOneDay); // use a random age between 3 and 7 days old vAdd.push_back(addr); found++; } } addrman.Add(vAdd, CNetAddr(seed.name, true)); } } LogPrintf("%d addresses found from DNS seeds\n", found); } void DumpAddresses() { int64_t nStart = GetTimeMillis(); CAddrDB adb; adb.Write(addrman); LogPrint("net", "Flushed %d addresses to peers.dat %dms\n", addrman.size(), GetTimeMillis() - nStart); } void static ProcessOneShot() { string strDest; { LOCK(cs_vOneShots); if (vOneShots.empty()) return; strDest = vOneShots.front(); vOneShots.pop_front(); } CAddress addr; CSemaphoreGrant grant(*semOutbound, true); if (grant) { if (!OpenNetworkConnection(addr, &grant, strDest.c_str(), true)) AddOneShot(strDest); } } void ThreadOpenConnections() { // Connect to specific addresses if (mapArgs.count("-connect") && mapMultiArgs["-connect"].size() > 0) { for (int64_t nLoop = 0;; nLoop++) { ProcessOneShot(); BOOST_FOREACH(string strAddr, mapMultiArgs["-connect"]) { CAddress addr; OpenNetworkConnection(addr, NULL, strAddr.c_str()); for (int i = 0; i < 10 && i < nLoop; i++) { MilliSleep(500); } } MilliSleep(500); } } // Initiate network connections int64_t nStart = GetTime(); while (true) { ProcessOneShot(); MilliSleep(500); CSemaphoreGrant grant(*semOutbound); boost::this_thread::interruption_point(); // Add seed nodes if DNS seeds are all down (an infrastructure attack?). if (addrman.size() == 0 && (GetTime() - nStart > 60)) { static bool done = false; if (!done) { LogPrintf("Adding fixed seed nodes as DNS doesn't seem to be available.\n"); addrman.Add(Params().FixedSeeds(), CNetAddr("127.0.0.1")); done = true; } } // // Choose an address to connect to based on most recently seen // CAddress addrConnect; // Only connect out to one peer per network group (/16 for IPv4). // Do this here so we don't have to critsect vNodes inside mapAddresses critsect. int nOutbound = 0; set<vector<unsigned char> > setConnected; { LOCK(cs_vNodes); BOOST_FOREACH(CNode* pnode, vNodes) { if (!pnode->fInbound) { setConnected.insert(pnode->addr.GetGroup()); nOutbound++; } } } int64_t nANow = GetAdjustedTime(); int nTries = 0; while (true) { // use an nUnkBias between 10 (no outgoing connections) and 90 (8 outgoing connections) CAddress addr = addrman.Select(10 + min(nOutbound,8)*10); // if we selected an invalid address, restart if (!addr.IsValid() || setConnected.count(addr.GetGroup()) || IsLocal(addr)) break; // If we didn't find an appropriate destination after trying 100 addresses fetched from addrman, // stop this loop, and let the outer loop run again (which sleeps, adds seed nodes, recalculates // already-connected network ranges, ...) before trying new addrman addresses. nTries++; if (nTries > 100) break; if (IsLimited(addr)) continue; // only consider very recently tried nodes after 30 failed attempts if (nANow - addr.nLastTry < 600 && nTries < 30) continue; // do not allow non-default ports, unless after 50 invalid addresses selected already if (addr.GetPort() != Params().GetDefaultPort() && nTries < 50) continue; addrConnect = addr; break; } if (addrConnect.IsValid()) OpenNetworkConnection(addrConnect, &grant); } } void ThreadOpenAddedConnections() { { LOCK(cs_vAddedNodes); vAddedNodes = mapMultiArgs["-addnode"]; } if (HaveNameProxy()) { while(true) { list<string> lAddresses(0); { LOCK(cs_vAddedNodes); BOOST_FOREACH(string& strAddNode, vAddedNodes) lAddresses.push_back(strAddNode); } BOOST_FOREACH(string& strAddNode, lAddresses) { CAddress addr; CSemaphoreGrant grant(*semOutbound); OpenNetworkConnection(addr, &grant, strAddNode.c_str()); MilliSleep(500); } MilliSleep(120000); // Retry every 2 minutes } } for (unsigned int i = 0; true; i++) { list<string> lAddresses(0); { LOCK(cs_vAddedNodes); BOOST_FOREACH(string& strAddNode, vAddedNodes) lAddresses.push_back(strAddNode); } list<vector<CService> > lservAddressesToAdd(0); BOOST_FOREACH(string& strAddNode, lAddresses) { vector<CService> vservNode(0); if(Lookup(strAddNode.c_str(), vservNode, Params().GetDefaultPort(), fNameLookup, 0)) { lservAddressesToAdd.push_back(vservNode); { LOCK(cs_setservAddNodeAddresses); BOOST_FOREACH(CService& serv, vservNode) setservAddNodeAddresses.insert(serv); } } } // Attempt to connect to each IP for each addnode entry until at least one is successful per addnode entry // (keeping in mind that addnode entries can have many IPs if fNameLookup) { LOCK(cs_vNodes); BOOST_FOREACH(CNode* pnode, vNodes) for (list<vector<CService> >::iterator it = lservAddressesToAdd.begin(); it != lservAddressesToAdd.end(); it++) BOOST_FOREACH(CService& addrNode, *(it)) if (pnode->addr == addrNode) { it = lservAddressesToAdd.erase(it); it--; break; } } BOOST_FOREACH(vector<CService>& vserv, lservAddressesToAdd) { CSemaphoreGrant grant(*semOutbound); OpenNetworkConnection(CAddress(vserv[i % vserv.size()]), &grant); MilliSleep(500); } MilliSleep(120000); // Retry every 2 minutes } } // if successful, this moves the passed grant to the constructed node bool OpenNetworkConnection(const CAddress& addrConnect, CSemaphoreGrant *grantOutbound, const char *strDest, bool fOneShot) { // // Initiate outbound network connection // boost::this_thread::interruption_point(); if (!strDest) if (IsLocal(addrConnect) || FindNode((CNetAddr)addrConnect) || CNode::IsBanned(addrConnect) || FindNode(addrConnect.ToStringIPPort().c_str())) return false; if (strDest && FindNode(strDest)) return false; CNode* pnode = ConnectNode(addrConnect, strDest); boost::this_thread::interruption_point(); if (!pnode) return false; if (grantOutbound) grantOutbound->MoveTo(pnode->grantOutbound); pnode->fNetworkNode = true; if (fOneShot) pnode->fOneShot = true; return true; } // for now, use a very simple selection metric: the node from which we received // most recently static int64_t NodeSyncScore(const CNode *pnode) { return pnode->nLastRecv; } void static StartSync(const vector<CNode*> &vNodes) { CNode *pnodeNewSync = NULL; int64_t nBestScore = 0; // fImporting and fReindex are accessed out of cs_main here, but only // as an optimization - they are checked again in SendMessages. if (fImporting || fReindex) return; // Iterate over all nodes BOOST_FOREACH(CNode* pnode, vNodes) { // check preconditions for allowing a sync if (!pnode->fClient && !pnode->fOneShot && !pnode->fDisconnect && pnode->fSuccessfullyConnected && (pnode->nStartingHeight > (nBestHeight - 144)) && (pnode->nVersion < NOBLKS_VERSION_START || pnode->nVersion >= NOBLKS_VERSION_END)) { // if ok, compare node's score with the best so far int64_t nScore = NodeSyncScore(pnode); if (pnodeNewSync == NULL || nScore > nBestScore) { pnodeNewSync = pnode; nBestScore = nScore; } } } // if a new sync candidate was found, start sync! if (pnodeNewSync) { pnodeNewSync->fStartSync = true; pnodeSync = pnodeNewSync; } } void ThreadMessageHandler() { SetThreadPriority(THREAD_PRIORITY_BELOW_NORMAL); while (true) { bool fHaveSyncNode = false; vector<CNode*> vNodesCopy; { LOCK(cs_vNodes); vNodesCopy = vNodes; BOOST_FOREACH(CNode* pnode, vNodesCopy) { pnode->AddRef(); if (pnode == pnodeSync) fHaveSyncNode = true; } } if (!fHaveSyncNode) StartSync(vNodesCopy); // Poll the connected nodes for messages CNode* pnodeTrickle = NULL; if (!vNodesCopy.empty()) pnodeTrickle = vNodesCopy[GetRand(vNodesCopy.size())]; bool fSleep = true; BOOST_FOREACH(CNode* pnode, vNodesCopy) { if (pnode->fDisconnect) continue; // Receive messages { TRY_LOCK(pnode->cs_vRecvMsg, lockRecv); if (lockRecv) { if (!g_signals.ProcessMessages(pnode)) pnode->CloseSocketDisconnect(); if (pnode->nSendSize < SendBufferSize()) { if (!pnode->vRecvGetData.empty() || (!pnode->vRecvMsg.empty() && pnode->vRecvMsg[0].complete())) { fSleep = false; } } } } boost::this_thread::interruption_point(); // Send messages { TRY_LOCK(pnode->cs_vSend, lockSend); if (lockSend) g_signals.SendMessages(pnode, pnode == pnodeTrickle); } boost::this_thread::interruption_point(); } { LOCK(cs_vNodes); BOOST_FOREACH(CNode* pnode, vNodesCopy) pnode->Release(); } if (fSleep) MilliSleep(100); } } bool BindListenPort(const CService &addrBind, string& strError) { strError = ""; int nOne = 1; #ifdef WIN32 // Initialize Windows Sockets WSADATA wsadata; int ret = WSAStartup(MAKEWORD(2,2), &wsadata); if (ret != NO_ERROR) { strError = strprintf("Error: TCP/IP socket library failed to start (WSAStartup returned error %d)", ret); LogPrintf("%s\n", strError); return false; } #endif // Create socket for listening for incoming connections struct sockaddr_storage sockaddr; socklen_t len = sizeof(sockaddr); if (!addrBind.GetSockAddr((struct sockaddr*)&sockaddr, &len)) { strError = strprintf("Error: bind address family for %s not supported", addrBind.ToString()); LogPrintf("%s\n", strError); return false; } SOCKET hListenSocket = socket(((struct sockaddr*)&sockaddr)->sa_family, SOCK_STREAM, IPPROTO_TCP); if (hListenSocket == INVALID_SOCKET) { strError = strprintf("Error: Couldn't open socket for incoming connections (socket returned error %d)", WSAGetLastError()); LogPrintf("%s\n", strError); return false; } #ifdef SO_NOSIGPIPE // Different way of disabling SIGPIPE on BSD setsockopt(hListenSocket, SOL_SOCKET, SO_NOSIGPIPE, (void*)&nOne, sizeof(int)); #endif #ifndef WIN32 // Allow binding if the port is still in TIME_WAIT state after // the program was closed and restarted. Not an issue on windows. setsockopt(hListenSocket, SOL_SOCKET, SO_REUSEADDR, (void*)&nOne, sizeof(int)); #endif #ifdef WIN32 // Set to non-blocking, incoming connections will also inherit this if (ioctlsocket(hListenSocket, FIONBIO, (u_long*)&nOne) == SOCKET_ERROR) #else if (fcntl(hListenSocket, F_SETFL, O_NONBLOCK) == SOCKET_ERROR) #endif { strError = strprintf("Error: Couldn't set properties on socket for incoming connections (error %d)", WSAGetLastError()); LogPrintf("%s\n", strError); return false; } // some systems don't have IPV6_V6ONLY but are always v6only; others do have the option // and enable it by default or not. Try to enable it, if possible. if (addrBind.IsIPv6()) { #ifdef IPV6_V6ONLY #ifdef WIN32 setsockopt(hListenSocket, IPPROTO_IPV6, IPV6_V6ONLY, (const char*)&nOne, sizeof(int)); #else setsockopt(hListenSocket, IPPROTO_IPV6, IPV6_V6ONLY, (void*)&nOne, sizeof(int)); #endif #endif #ifdef WIN32 int nProtLevel = 10 /* PROTECTION_LEVEL_UNRESTRICTED */; int nParameterId = 23 /* IPV6_PROTECTION_LEVEl */; // this call is allowed to fail setsockopt(hListenSocket, IPPROTO_IPV6, nParameterId, (const char*)&nProtLevel, sizeof(int)); #endif } if (::bind(hListenSocket, (struct sockaddr*)&sockaddr, len) == SOCKET_ERROR) { int nErr = WSAGetLastError(); if (nErr == WSAEADDRINUSE) strError = strprintf(_("Unable to bind to %s on this computer. CyberCoin is probably already running."), addrBind.ToString()); else strError = strprintf(_("Unable to bind to %s on this computer (bind returned error %d, %s)"), addrBind.ToString(), nErr, strerror(nErr)); LogPrintf("%s\n", strError); return false; } LogPrintf("Bound to %s\n", addrBind.ToString()); // Listen for incoming connections if (listen(hListenSocket, SOMAXCONN) == SOCKET_ERROR) { strError = strprintf("Error: Listening for incoming connections failed (listen returned error %d)", WSAGetLastError()); LogPrintf("%s\n", strError); return false; } vhListenSocket.push_back(hListenSocket); if (addrBind.IsRoutable() && fDiscover) AddLocal(addrBind, LOCAL_BIND); return true; } void static Discover(boost::thread_group& threadGroup) { if (!fDiscover) return; #ifdef WIN32 // Get local host IP char pszHostName[1000] = ""; if (gethostname(pszHostName, sizeof(pszHostName)) != SOCKET_ERROR) { vector<CNetAddr> vaddr; if (LookupHost(pszHostName, vaddr)) { BOOST_FOREACH (const CNetAddr &addr, vaddr) { AddLocal(addr, LOCAL_IF); } } } #else // Get local host ip struct ifaddrs* myaddrs; if (getifaddrs(&myaddrs) == 0) { for (struct ifaddrs* ifa = myaddrs; ifa != NULL; ifa = ifa->ifa_next) { if (ifa->ifa_addr == NULL) continue; if ((ifa->ifa_flags & IFF_UP) == 0) continue; if (strcmp(ifa->ifa_name, "lo") == 0) continue; if (strcmp(ifa->ifa_name, "lo0") == 0) continue; if (ifa->ifa_addr->sa_family == AF_INET) { struct sockaddr_in* s4 = (struct sockaddr_in*)(ifa->ifa_addr); CNetAddr addr(s4->sin_addr); if (AddLocal(addr, LOCAL_IF)) LogPrintf("IPv4 %s: %s\n", ifa->ifa_name, addr.ToString()); } else if (ifa->ifa_addr->sa_family == AF_INET6) { struct sockaddr_in6* s6 = (struct sockaddr_in6*)(ifa->ifa_addr); CNetAddr addr(s6->sin6_addr); if (AddLocal(addr, LOCAL_IF)) LogPrintf("IPv6 %s: %s\n", ifa->ifa_name, addr.ToString()); } } freeifaddrs(myaddrs); } #endif } void StartNode(boost::thread_group& threadGroup) { if (semOutbound == NULL) { // initialize semaphore int nMaxOutbound = min(MAX_OUTBOUND_CONNECTIONS, (int)GetArg("-maxconnections", 125)); semOutbound = new CSemaphore(nMaxOutbound); } if (pnodeLocalHost == NULL) pnodeLocalHost = new CNode(INVALID_SOCKET, CAddress(CService("127.0.0.1", 0), nLocalServices)); Discover(threadGroup); // // Start threads // if (!GetBoolArg("-dnsseed", true)) LogPrintf("DNS seeding disabled\n"); else threadGroup.create_thread(boost::bind(&TraceThread<void (*)()>, "dnsseed", &ThreadDNSAddressSeed)); #ifdef USE_UPNP // Map ports with UPnP MapPort(GetBoolArg("-upnp", USE_UPNP)); #endif // Send and receive from sockets, accept connections threadGroup.create_thread(boost::bind(&TraceThread<void (*)()>, "net", &ThreadSocketHandler)); // Initiate outbound connections from -addnode threadGroup.create_thread(boost::bind(&TraceThread<void (*)()>, "addcon", &ThreadOpenAddedConnections)); // Initiate outbound connections threadGroup.create_thread(boost::bind(&TraceThread<void (*)()>, "opencon", &ThreadOpenConnections)); // Process messages threadGroup.create_thread(boost::bind(&TraceThread<void (*)()>, "msghand", &ThreadMessageHandler)); // Dump network addresses threadGroup.create_thread(boost::bind(&LoopForever<void (*)()>, "dumpaddr", &DumpAddresses, DUMP_ADDRESSES_INTERVAL * 1000)); } bool StopNode() { LogPrintf("StopNode()\n"); MapPort(false); mempool.AddTransactionsUpdated(1); if (semOutbound) for (int i=0; i<MAX_OUTBOUND_CONNECTIONS; i++) semOutbound->post(); DumpAddresses(); return true; } class CNetCleanup { public: CNetCleanup() { } ~CNetCleanup() { // Close sockets BOOST_FOREACH(CNode* pnode, vNodes) if (pnode->hSocket != INVALID_SOCKET) closesocket(pnode->hSocket); BOOST_FOREACH(SOCKET hListenSocket, vhListenSocket) if (hListenSocket != INVALID_SOCKET) if (closesocket(hListenSocket) == SOCKET_ERROR) LogPrintf("closesocket(hListenSocket) failed with error %d\n", WSAGetLastError()); #ifdef WIN32 // Shutdown Windows Sockets WSACleanup(); #endif } } instance_of_cnetcleanup; void RelayTransaction(const CTransaction& tx, const uint256& hash) { CDataStream ss(SER_NETWORK, PROTOCOL_VERSION); ss.reserve(10000); ss << tx; RelayTransaction(tx, hash, ss); } void RelayTransaction(const CTransaction& tx, const uint256& hash, const CDataStream& ss) { CInv inv(MSG_TX, hash); { LOCK(cs_mapRelay); // Expire old relay messages while (!vRelayExpiration.empty() && vRelayExpiration.front().first < GetTime()) { mapRelay.erase(vRelayExpiration.front().second); vRelayExpiration.pop_front(); } // Save original serialized message so newer versions are preserved mapRelay.insert(std::make_pair(inv, ss)); vRelayExpiration.push_back(std::make_pair(GetTime() + 15 * 60, inv)); } RelayInventory(inv); } void CNode::RecordBytesRecv(uint64_t bytes) { LOCK(cs_totalBytesRecv); nTotalBytesRecv += bytes; } void CNode::RecordBytesSent(uint64_t bytes) { LOCK(cs_totalBytesSent); nTotalBytesSent += bytes; } uint64_t CNode::GetTotalBytesRecv() { LOCK(cs_totalBytesRecv); return nTotalBytesRecv; } uint64_t CNode::GetTotalBytesSent() { LOCK(cs_totalBytesSent); return nTotalBytesSent; } // // CAddrDB // CAddrDB::CAddrDB() { pathAddr = GetDataDir() / "peers.dat"; } bool CAddrDB::Write(const CAddrMan& addr) { // Generate random temporary filename unsigned short randv = 0; RAND_bytes((unsigned char *)&randv, sizeof(randv)); std::string tmpfn = strprintf("peers.dat.%04x", randv); // serialize addresses, checksum data up to that point, then append csum CDataStream ssPeers(SER_DISK, CLIENT_VERSION); ssPeers << FLATDATA(Params().MessageStart()); ssPeers << addr; uint256 hash = Hash(ssPeers.begin(), ssPeers.end()); ssPeers << hash; // open temp output file, and associate with CAutoFile boost::filesystem::path pathTmp = GetDataDir() / tmpfn; FILE *file = fopen(pathTmp.string().c_str(), "wb"); CAutoFile fileout = CAutoFile(file, SER_DISK, CLIENT_VERSION); if (!fileout) return error("CAddrman::Write() : open failed"); // Write and commit header, data try { fileout << ssPeers; } catch (std::exception &e) { return error("CAddrman::Write() : I/O error"); } FileCommit(fileout); fileout.fclose(); // replace existing peers.dat, if any, with new peers.dat.XXXX if (!RenameOver(pathTmp, pathAddr)) return error("CAddrman::Write() : Rename-into-place failed"); return true; } bool CAddrDB::Read(CAddrMan& addr) { // open input file, and associate with CAutoFile FILE *file = fopen(pathAddr.string().c_str(), "rb"); CAutoFile filein = CAutoFile(file, SER_DISK, CLIENT_VERSION); if (!filein) return error("CAddrman::Read() : open failed"); // use file size to size memory buffer int fileSize = boost::filesystem::file_size(pathAddr); int dataSize = fileSize - sizeof(uint256); // Don't try to resize to a negative number if file is small if ( dataSize < 0 ) dataSize = 0; vector<unsigned char> vchData; vchData.resize(dataSize); uint256 hashIn; // read data and checksum from file try { filein.read((char *)&vchData[0], dataSize); filein >> hashIn; } catch (std::exception &e) { return error("CAddrman::Read() 2 : I/O error or stream data corrupted"); } filein.fclose(); CDataStream ssPeers(vchData, SER_DISK, CLIENT_VERSION); // verify stored checksum matches input data uint256 hashTmp = Hash(ssPeers.begin(), ssPeers.end()); if (hashIn != hashTmp) return error("CAddrman::Read() : checksum mismatch; data corrupted"); unsigned char pchMsgTmp[4]; try { // de-serialize file header (network specific magic number) and .. ssPeers >> FLATDATA(pchMsgTmp); // ... verify the network matches ours if (memcmp(pchMsgTmp, Params().MessageStart(), sizeof(pchMsgTmp))) return error("CAddrman::Read() : invalid network magic number"); // de-serialize address data into one CAddrMan object ssPeers >> addr; } catch (std::exception &e) { return error("CAddrman::Read() : I/O error or stream data corrupted"); } return true; }
[ "vPoS" ]
vPoS
9cec60f2e0aa3e27b3bda4766eb6dfee2a2a26af
dd949f215d968f2ee69bf85571fd63e4f085a869
/systems/css-2011-teams/green/subarchitectures/vision.sa/src/c++/vision/components/StereoDetector/vs3/FormJunctions.cc
5419efe2c5c079369f3d8046b83a23b4bdea7be6
[]
no_license
marc-hanheide/cogx
a3fd395805f1b0ad7d713a05b9256312757b37a9
cb9a9c9cdfeba02afac6a83d03b7c6bb778edb95
refs/heads/master
2022-03-16T23:36:21.951317
2013-12-10T23:49:07
2013-12-10T23:49:07
219,460,352
1
2
null
null
null
null
UTF-8
C++
false
false
20,171
cc
/** * @file FormJunctions.cc * @author Zillich, Richtsfeld * @date 2007, 2010 * @version 0.1 * @brief Class file of Gestalt principle FormJunctions. * * TODO: remember and ignore search lines which reached the image border => do it not * TODO: avoid collinearity C(ac) ----- ------ ------ * a b c * note: this requires (possibly expensive) path search * TODO: stop if (at some very late time) no single search line can be * extended any further. * TODO: check whether junction between lines i and j at respective ends as * early as possible, right after detection of search line intersection */ #include "FormJunctions.hh" namespace Z { // Minimal line length. A line of 2 pixels is per definition always a line and // therefore totally insignificant. Any meaningful line must be at least 3 // pixels long. static const double MIN_LINE_LENGTH = 3.; ///< Minimum line length enum GrowMethod {GROW_EQUAL, GROW_WEIGHTED, GROW_SMART}; ///< Grow method for search lines in the vote image. static GrowMethod grow_method = GROW_SMART; ///< Default grow method /** * @brief Compare function for all different types of junctions. */ static int CmpLJunctions(const void *a, const void *b) { if( (*(LJunction**)a)->acc < (*(LJunction**)b)->acc ) return -1; // a is first else return 1 ; // b is first } static int CmpCollinearities(const void *a, const void *b) { if( (*(Collinearity**)a)->acc < (*(Collinearity**)b)->acc ) return -1; // a is first else return 1 ; // b is first } static int CmpTJunctions(const void *a, const void *b) { if( (*(TJunction**)a)->acc < (*(TJunction**)b)->acc ) return -1; // a is first else return 1 ; // b is first } static int CmpLines(const void *a, const void *b) { if( (*(Line**)a)->sig > (*(Line**)b)->sig ) return -1; // a is first else return 1 ; // b is first } static bool InsideLine(Line *l, const Vector2 &p) { double d = Dot(l->dir, p - l->point[START]); return d >= 0. && d <= l->Length(); } /** * @brief Check whether there is an L-jct between lines i and j. * @param l_i * @param end_i * @param side_i * @param l_j * @return LJunction */ static LJunction* LBetween(Line *l_i, int end_i, int side_i, Line *l_j) { for(unsigned k = 0; k < l_i->l_jct[end_i][side_i].Size(); k++) if(l_i->l_jct[end_i][side_i][k]->line[OtherSide(side_i)] == l_j) return l_i->l_jct[end_i][side_i][k]; return 0; } /** * @brief Check whether there is no L-jct between lines i and j. */ static bool NoLJunctionYet(Line *l_i, int end_i, Line *l_j) { // TODO: it would be nice to know which side to look for(int side = LEFT; side <= RIGHT; side++) for(unsigned k = 0; k < l_i->l_jct[end_i][side].Size(); k++) if(l_i->l_jct[end_i][side][k]->line[OtherSide(side)] == l_j) return false; return true; } /** * @brief NoTJunctionYet * @param l_i * @param end_i * @return */ static bool NoTJunctionYet(Line *l_i, int end_i) { return l_i->t_jct[end_i] == 0; } /** * @brief Check whether there is no collinearity yet between lines i and j. */ static bool NoCollinearityYet(Line *l_i, int end_i, Line *l_j) { for(unsigned k = 0; k < l_i->coll[end_i].Size(); k++) if(l_i->coll[end_i][k]->OtherLine(l_i) == l_j) return false; return true; } // ----------------------------------------------------------------------------// // ------------------------------ FormJunctions -------------------------------// // ----------------------------------------------------------------------------// /** * @brief Constructor of FormJunctions * @param vc Vision core */ FormJunctions::FormJunctions(VisionCore *vc) : GestaltPrinciple(vc) {} /** * @brief Destructor of FormJunctions */ FormJunctions::~FormJunctions() {} /** * @brief Rank junctions. */ void FormJunctions::Rank() { RankGestalts(Gestalt::L_JUNCTION, CmpLJunctions); RankGestalts(Gestalt::COLLINEARITY, CmpCollinearities); RankGestalts(Gestalt::T_JUNCTION, CmpTJunctions); RankGestalts(Gestalt::LINE, CmpLines); } /** * @brief Create new line junctions from delivered intersections. * @param sline Search line id * sline is the search line which triggered the new intersections, it is * therefore a tangent or normal vote line. * @param iscts Intersection element */ void FormJunctions::CreateJunctions(unsigned sline, Array<VoteImage::Elem> iscts) { // printf("FormJunctions::CreateJunctions: Try to create junctions from intersections\n"); unsigned baseIndex = core->VI()->GetBaseIndex(); for(unsigned k = 0; k < iscts.Size(); k++) { unsigned i = sline/baseIndex; unsigned vtype_i = sline%baseIndex; unsigned j = iscts[k].id/baseIndex; unsigned vtype_j = iscts[k].id%baseIndex; // check if the intersection between vote line tyes is admissible // TODO: this admissibility check could go into VoteImage if(core->VI()->IsctTypeAdmissible(vtype_i, vtype_j) == 1) { // printf("FormJunctions::CreateJunctions 1: line-sline: %u-%u - vtypes: %u\n", i, sline, vtype_i); // printf("FormJunctions::CreateJunctions 2: line-sline: %u-%u - vtypes: %u\n", j, iscts[k].id, vtype_j); Line *line_i = Lines(core, i); Line *line_j = Lines(core, j); // printf("FormJunctions::CreateJunctions: lines: %u-%u - votes: %u-%u\n", i, j, vtype_i, vtype_j); // TODO: After a T-jct there can be no further T-jcts or type1 // collinearities. -> really? if(vtype_j == VOTE_E) CreateT(line_i, vtype_i, line_j, vtype_j); else { // HACK: This is a stupid arbitrary threshold! As the distinction // between collinearity and L-junction will fall, so will this // threshold. if(AngleBetweenLines(line_i->phi, line_j->phi) < M_PI/6) CreateC(line_i, vtype_i, line_j, vtype_j); else CreateL(line_i, vtype_i, line_j, vtype_j); } // printf("FormJunctions::CreateJunctions: end\n"); /*else if(VOTE_IS_TANGENT(vtype_i) && VOTE_IS_TANGENT(vtype_j)) CreateL(i, vtype_i, j, vtype_j); else if((VOTE_IS_NORMAL(vtype_i) && VOTE_IS_TANGENT(vtype_j)) || (VOTE_IS_TANGENT(vtype_i) && VOTE_IS_NORMAL(vtype_j))) CreateC(i, vtype_i, j, vtype_j);*/ } } } /** * @brief Creates a T-junction between lines i and j. * The extension of line i at given end meets line j. I.e. line i is the pole of * the T, Line j is the bar. * Line j is split into left and right bar and L-junctions with the pole are * created accordingly. * b * --+---- j * g * | * | i * * TODO: a line which is already pole of a T-jct can not become arm of a T-jct * @param line_i First line i * @param vtype_i Type of search line (vote line type) * @param line_j Second line j * @param vtype_j Type of search line (vote line type) */ void FormJunctions::CreateT(Line *line_i, int vtype_i, Line *line_j, int vtype_j) { try { int end_i = VOTE_END(vtype_i); // if a line is part of a split and we have junction at end, defer // creation of junctions to last line in that split // TODO: use convenience function for this if(end_i == END) while(line_i->next != 0) line_i = line_i->next; // if line j is part of a split find that part where the intersection // point actually lies if(line_j->IsSplit()) while(line_j != 0 && !InsideLine(line_j, line_i->point[end_i])) line_j = line_j->next; if(line_j != 0 && InsideLine(line_j, line_i->point[end_i])) { double g; // gap between end of line i and line j double b; // smaller bar length Vector2 inter = LineIntersection( line_i->point[end_i], line_i->tang[end_i], line_j->point[START], line_j->dir, &g, &b); // if smaller bar length is long enough for a line if(min(b, line_j->Length() - b) >= MIN_LINE_LENGTH) { // note: for now we allow only one T-jct per end // TODO: maybe relax this at some later stage if(NoTJunctionYet(line_i, end_i)) { Line *j_left = 0, *j_right = 0; int end_left, end_right; Collinearity *new_c = 0; SplitLine(line_j, inter, line_i->tang[end_i], &j_left, &j_right, &end_left, &end_right, &new_c); LJunction *new_ljct_left = NewL(line_i, j_left, end_i, end_left); LJunction *new_ljct_right = NewL(j_right, line_i, end_right, end_i); NewT(line_i, j_left, j_right, end_i, end_left, end_right, new_c, new_ljct_left, new_ljct_right); } } else // create just an L-junction { // find out what end of j the L-junction should be int end_j = (b < line_j->Length()/2. ? START : END); // HACK: This is a stupid arbitrary threshold! As the distinction // between collinearity and L-junction will fall, so will this // threshold. if(AngleBetweenLines(line_i->phi, line_j->phi) < M_PI/6) NewCollinearity(line_i, line_j, end_i, end_j, true); else NewL(line_i, line_j, end_i, end_j); } } } catch (exception &e) { // if tangents are parallel -> no intersections } } /** * @brief Create a new L-junction * @param line_i First line i * @param vtype_i Type of search line (vote line type) * @param line_j Second line j * @param vtype_j Type of search line (vote line type) */ void FormJunctions::CreateL(Line *line_i, int vtype_i, Line *line_j, int vtype_j) { int end_i = VOTE_END(vtype_i); int end_j = VOTE_END(vtype_j); // if a line is part of a split and we have junction at end, defer // creation of junctions to last line in that split if(end_i == END) while(line_i->next != 0) line_i = line_i->next; if(end_j == END) while(line_j->next != 0) line_j = line_j->next; // printf("FormJunctions::CreateL: lines: %u-%u - votes: %u-%u\n", line_i->ID(), line_j->ID(), vtype_i, vtype_j); LJunction *new_l = NewL(line_i, line_j, end_i, end_j); // create T-jcts from new L-jct and old collinearities // TODO: tidy this up if(new_l != 0) { Line *left = new_l->line[LEFT]; Line *right = new_l->line[RIGHT]; int end_l = new_l->near_point[LEFT]; int end_r = new_l->near_point[RIGHT]; for(unsigned c = 0; c < right->coll[end_r].Size(); c++) { // third would be the right arm of a new T-jct Line *third = right->coll[end_r][c]->OtherLine(right); int end_3 = right->coll[end_r][c]->WhichEndIs(third); // Note that sometimes there is a collinearity AND L-jct between two // lines. Do not create a T-jct for those cases. if(third != left) // TODO: can be removed { LJunction *right_l = LBetween(third, end_3, LEFT, left); // only if there is also an L-jct between the other two lines if(right_l != 0) if(NoTJunctionYet(left, end_l)) { NewT(left, right, third, end_l, end_r, end_3, right->coll[end_r][c], new_l, right_l); } } } for(unsigned c = 0; c < left->coll[end_l].Size(); c++) { // third would be the left arm of a new T-jct Line *third = left->coll[end_l][c]->OtherLine(left); int end_3 = left->coll[end_l][c]->WhichEndIs(third); // Note that sometimes there is a collinearity AND L-jct between two // lines. Do not create a T-jct for those cases. if(third != right) // TODO: can be removed { LJunction *left_l = LBetween(third, end_3, RIGHT, right); // only if there is also an L-jct between the other two lines if(left_l != 0) if(NoTJunctionYet(right, end_r)) { NewT(right, third, left, end_r, end_3, end_l, left->coll[end_l][c], left_l, new_l); } } } } } /** * @brief Create a new collinearity junction. * @param line_i First line i * @param vtype_i Type of search line (vote line type) * @param line_j Second line j * @param vtype_j Type of search line (vote line type) */ void FormJunctions::CreateC(Line *line_i, int vtype_i, Line *line_j, int vtype_j) { int end_i = VOTE_END(vtype_i); int end_j = VOTE_END(vtype_j); // if a line is part of a split and we have junction at end, defer // creation of junctions to last line in that split if(end_i == END) while(line_i->next != 0) line_i = line_i->next; if(end_j == END) while(line_j->next != 0) line_j = line_j->next; Collinearity *new_c = NewCollinearity(line_i, line_j, end_i, end_j, true); // create T-jcts from new collinearity and old L-jcts if(new_c != 0) { for(int side = LEFT; side <= RIGHT; side++) for(unsigned l = 0; l < line_i->l_jct[end_i][side].Size(); l++) { LJunction *ljct = line_i->l_jct[end_i][side][l]; Line *third = ljct->line[Other(side)]; int end_3 = ljct->near_point[Other(side)]; // Note that sometimes there is a collinearity AND L-jct between two // lines. Do not create a T-jct for those cases. if(third != line_j) // TODO: can be rmoved { if(NoTJunctionYet(third, end_3)) { TJunction *new_t = 0; if(side == RIGHT) // i is RIGHT side of L-jct { // then i is left arm of T-jct, ljct is the left L-jct LJunction *ljct_right = LBetween(third, end_3, RIGHT, line_j); // only if there is also an L-jct between the other two lines if(ljct_right != 0) new_t = NewT(third, line_i, line_j, end_3, end_i, end_j, new_c, ljct, ljct_right); } else // i is LEFT side of L-jct { // then i is the right arm of T-jct, ljct is the right L-jct LJunction *ljct_left = LBetween(third, end_3, LEFT, line_j); if(ljct_left != 0) new_t = NewT(third, line_j, line_i, end_3, end_j, end_i, new_c, ljct_left, ljct); } } } } } } /** * @brief Do some checks and if ok create collinearity. * @param line_i First line i * @param vtype_i Type of search line (vote line type) * @param line_j Second line j * @param vtype_j Type of search line (vote line type) * @param inform Inform the system of new L-jct. Normally this will be true.\n * But not if coll. is created tue to a line split. * @return Collinearity */ Collinearity* FormJunctions::NewCollinearity(Line *line_i, Line *line_j, int end_i, int end_j, bool inform) { Line *line[2]; int near_point[2]; // line 0 is shorter if(line_i->Length() <= line_j->Length()) { line[0] = line_i; line[1] = line_j; near_point[0] = end_i; near_point[1] = end_j; } else { line[0] = line_j; line[1] = line_i; near_point[0] = end_j; near_point[1] = end_i; } // tangents must point at each other if(Dot(line_i->tang[end_i], line_j->tang[end_j]) < 0.) if(NoCollinearityYet(line_i, end_i, line_j) && NoLJunctionYet(line_i, end_i, line_j)) { Vector2 v = line[0]->point[near_point[0]] - line[1]->point[near_point[1]]; Collinearity *new_c = new Collinearity(core, line_i, line_j, end_i, end_j); core->NewGestalt(GestaltPrinciple::FORM_JUNCTIONS, new_c, inform); return new_c; } return 0; } /** * @brief Create new Gestalt L-junction. * @param line_i First line i * @param vtype_i Type of search line (vote line type) * @param line_j Second line j * @param vtype_j Type of search line (vote line type) * @return L-junction */ LJunction* FormJunctions::NewL(Line *line_i, Line *line_j, int end_i, int end_j) { try { double si, sj; // lengths to intersection point Vector2 inter = LineIntersection( line_i->point[end_i], line_i->tang[end_i], line_j->point[end_j], line_j->tang[end_j], &si, &sj); if(NoLJunctionYet(line_i, end_i, line_j) && NoCollinearityYet(line_i, end_i, line_j)) { LJunction *new_l = new LJunction(core, line_i, line_j, end_i, end_j, inter); // if(new_l->r > 40) printf(" => wide L-junction: %u - lines: %u-%u with %4.0f\n", new_l->ID(), line_i->ID(), line_j->ID(), new_l->r); core->NewGestalt(GestaltPrinciple::FORM_JUNCTIONS, new_l); return new_l; } } catch (exception &e) { // if tangents are parallel -> no L-jct printf("FormJunctions::NewL: Unknown exception!\n"); } return 0; } /** // TODO Description! * @brief Create new T-junction * @param pole * @param left * @param right * @param end_p * @param end_l * @param end_r * @param coll * @param ljct_l * @param ljct_r * @return */ TJunction* FormJunctions::NewT(Line *pole, Line *left, Line *right, int end_p, int end_l, int end_r, Collinearity *coll, LJunction *ljct_l, LJunction *ljct_r) { try { if(coll != 0 && ljct_l != 0 && ljct_r != 0) if(NoTJunctionYet(pole, end_p) && NoTJunctionYet(left, end_l) && NoTJunctionYet(right, end_r)) { double b, g; Vector2 inter = LineIntersection( pole->point[end_p], pole->tang[end_p], left->point[end_l], left->tang[end_l], &g, &b); TJunction *new_t = new TJunction(core, pole, left, right, end_p, end_l, end_r, coll, ljct_l, ljct_r, g, inter); core->NewGestalt(GestaltPrinciple::FORM_JUNCTIONS, new_t); return new_t; } } catch (exception &e) { // if tangents are parallel -> no L-jct } return 0; } /** /// TODO Description * @brief Split a line, when T-junction appears: Create 2 L-junctions and a collinearity from T. * @param l * @param inter * @param dir * @param l_left * @param l_right * @param end_left * @param end_right * @param c_new */ void FormJunctions::SplitLine(Line *l, const Vector2 &inter, const Vector2 &dir, Line **l_left, Line **l_right, int *end_left, int *end_right, Collinearity **c_new) { Line *l_new = SplitLine(l, inter, c_new); if(LeftOf(dir, l->point[START] - inter)) { *l_left = l; *l_right = l_new; *end_left = END; *end_right = START; } else { *l_left = l_new; *l_right = l; *end_left = START; *end_right = END; } } /** /// TODO Description * @brief Split * @param l * @param p * @param c_new * @return */ Line* FormJunctions::SplitLine(Line *l, const Vector2 &p, Collinearity **c_new) { // create new line Line *l_new = l->Split(p); // create new collinearity. // Note that if one of the split lines is very short and was near a // high-curvature part of the segment (i.e. near an L-jct), this line might // change orientation so much that a collinearity is rejected. In that case // form an L-jct. *c_new = NewCollinearity(l, l_new, END, START, false); // TODO: c_new actually can not be UNDEF if(*c_new == 0) NewL(l, l_new, END, START); UpdateClosures(l, l_new, *c_new); return l_new; } /** * @brief Line l1 has been split in to l1 and l2 with a colliinearity between them. * Update all closures which l1 is part of accordingly. * @param l1 Line, which is now splitted * @param l2 New line * @param coll New collinearty between line. */ void FormJunctions::UpdateClosures(Line *l1, Line *l2, Collinearity *coll) { for(unsigned i = 0; i < l1->closures.Size(); i++) { Closure *cl = l1->closures[i]; unsigned j = cl->lines.Find(l1); // note: depending on sense of l1, l2 is inserted before or after l2, but // the new collinearity is always inserted after the starting junction of l1 if(cl->senses[j] == SAME) { cl->lines.InsertAfter(j, l2); cl->senses.InsertAfter(j, cl->senses[j]); cl->jcts.InsertAfter(j, 0); cl->colls.InsertAfter(j, coll); } else { cl->lines.InsertBefore(j, l2); cl->senses.InsertBefore(j, cl->senses[j]); cl->jcts.InsertAfter(j, 0); cl->colls.InsertAfter(j, coll); } l2->closures.PushBack(cl); } } }
[ "marc@hanheide.net" ]
marc@hanheide.net
a7e8816d485292770f2db944569460c04f38b400
742344de1454de62c49f32dccdeb4235973d47b1
/hazelcast/include/hazelcast/client/proxy/ClientReplicatedMapProxy.h
50369ee8267794a91634509db9458e810be01457
[ "Apache-2.0" ]
permissive
enozcan/hazelcast-cpp-client
31f558cac860095f9a53c5d2cba3c3f4fdc6d967
672ea72811d6281329bd84070e798af711d5cbfb
refs/heads/master
2022-08-29T14:59:11.322441
2020-03-30T11:20:49
2020-03-30T11:20:49
256,820,114
0
0
Apache-2.0
2020-04-18T18:04:38
2020-04-18T18:04:37
null
UTF-8
C++
false
false
40,726
h
/* * Copyright (c) 2008-2020, Hazelcast, Inc. 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 HAZELCAST_CLIENT_PROXY_CLIENTREPLICATEDMAPPROXY_H_ #define HAZELCAST_CLIENT_PROXY_CLIENTREPLICATEDMAPPROXY_H_ #include <stdlib.h> #include "hazelcast/client/ReplicatedMap.h" #include "hazelcast/client/proxy/ProxyImpl.h" #include "hazelcast/client/internal/nearcache/NearCache.h" #include "hazelcast/client/internal/nearcache/NearCacheManager.h" #include "hazelcast/client/spi/ClientPartitionService.h" #include "hazelcast/client/spi/ClientClusterService.h" #include "hazelcast/client/spi/ClientListenerService.h" #include "hazelcast/client/serialization/pimpl/SerializationService.h" #include "hazelcast/client/map/impl/DataAwareEntryEvent.h" #include "hazelcast/client/ClientConfig.h" #include "hazelcast/client/impl/DataArrayImpl.h" #include "hazelcast/client/impl/LazyEntryArrayImpl.h" #include "hazelcast/client/protocol/codec/ProtocolCodecs.h" #include "hazelcast/client/protocol/codec/ProtocolCodecs.h" #include "hazelcast/client/protocol/codec/ProtocolCodecs.h" #include "hazelcast/client/protocol/codec/ProtocolCodecs.h" #include "hazelcast/client/protocol/codec/ProtocolCodecs.h" #include "hazelcast/client/protocol/codec/ProtocolCodecs.h" #include "hazelcast/client/protocol/codec/ProtocolCodecs.h" #include "hazelcast/client/protocol/codec/ProtocolCodecs.h" #include "hazelcast/client/protocol/codec/ProtocolCodecs.h" #include "hazelcast/client/protocol/codec/ProtocolCodecs.h" #include "hazelcast/client/protocol/codec/ProtocolCodecs.h" #include "hazelcast/client/protocol/codec/ProtocolCodecs.h" #include "hazelcast/client/protocol/codec/ProtocolCodecs.h" #include "hazelcast/client/protocol/codec/ProtocolCodecs.h" #include "hazelcast/client/protocol/codec/ProtocolCodecs.h" #include "hazelcast/client/protocol/codec/ProtocolCodecs.h" #include "hazelcast/client/protocol/codec/ProtocolCodecs.h" #include "hazelcast/client/protocol/codec/ProtocolCodecs.h" #include "hazelcast/client/protocol/codec/ProtocolCodecs.h" #if defined(WIN32) || defined(_WIN32) || defined(WIN64) || defined(_WIN64) #pragma warning(push) #pragma warning(disable: 4250) //for warning class1' : inherits 'class2::member' via dominance #endif namespace hazelcast { namespace client { namespace proxy { /** * The replicated map client side proxy implementation proxying all requests to a member node * * @param <K> key type * @param <V> value type */ template<typename K, typename V> class ClientReplicatedMapProxy : public ReplicatedMap<K, V>, public proxy::ProxyImpl { public: static const std::string SERVICE_NAME; ClientReplicatedMapProxy(const std::string &objectName, spi::ClientContext *context) : proxy::ProxyImpl( SERVICE_NAME, objectName, context) { } std::shared_ptr<V> put(const K &key, const V &value, int64_t ttl) { std::shared_ptr<serialization::pimpl::Data> keyData; try { serialization::pimpl::Data valueData = toData<V>(value); std::shared_ptr<serialization::pimpl::Data> keyData = toSharedData<K>(key); std::unique_ptr<protocol::ClientMessage> request = protocol::codec::ReplicatedMapPutCodec::encodeRequest( name, *keyData, valueData, ttl); std::unique_ptr<serialization::pimpl::Data> response = invokeAndGetResult<std::unique_ptr<serialization::pimpl::Data>, protocol::codec::ReplicatedMapPutCodec::ResponseParameters>( request, *keyData); invalidate(keyData); return toSharedObject<V>(response); } catch (...) { invalidate(keyData); throw; } } virtual int32_t size() { std::unique_ptr<protocol::ClientMessage> request = protocol::codec::ReplicatedMapSizeCodec::encodeRequest( name); return invokeAndGetResult<int32_t, protocol::codec::ReplicatedMapSizeCodec::ResponseParameters>( request, targetPartitionId); } virtual bool isEmpty() { std::unique_ptr<protocol::ClientMessage> request = protocol::codec::ReplicatedMapIsEmptyCodec::encodeRequest( name); return invokeAndGetResult<bool, protocol::codec::ReplicatedMapIsEmptyCodec::ResponseParameters>( request, targetPartitionId); } virtual bool containsKey(const K &key) { serialization::pimpl::Data keyData = toData<K>(key); std::unique_ptr<protocol::ClientMessage> request = protocol::codec::ReplicatedMapContainsKeyCodec::encodeRequest( name, keyData); return invokeAndGetResult<bool, protocol::codec::ReplicatedMapContainsKeyCodec::ResponseParameters>( request, keyData); } virtual bool containsValue(const V &value) { serialization::pimpl::Data valueData = toData<V>(value); std::unique_ptr<protocol::ClientMessage> request = protocol::codec::ReplicatedMapContainsValueCodec::encodeRequest( name, valueData); return invokeAndGetResult<bool, protocol::codec::ReplicatedMapContainsKeyCodec::ResponseParameters>( request, valueData); } virtual std::shared_ptr<V> get(const K &key) { std::shared_ptr<V> cachedValue = getCachedValue(key); if (cachedValue.get() != NULL) { return cachedValue; } std::shared_ptr<serialization::pimpl::Data> keyData; try { keyData = toShared(toData(key)); // TODO: Change to reservation model as in Java when near cache impl is updated std::unique_ptr<protocol::ClientMessage> request = protocol::codec::ReplicatedMapGetCodec::encodeRequest( name, *keyData); std::unique_ptr<serialization::pimpl::Data> result = invokeAndGetResult<std::unique_ptr<serialization::pimpl::Data>, protocol::codec::ReplicatedMapGetCodec::ResponseParameters>( request, *keyData); if (!result.get()) { return std::shared_ptr<V>(); } std::shared_ptr<V> value = toSharedObject<V>(result); if (!value.get()) { return std::shared_ptr<V>(); } std::shared_ptr<internal::nearcache::NearCache<Data, V> > cache = nearCache.get(); if (cache.get()) { cache->put(keyData, value); } return value; } catch (exception::IException &) { invalidate(keyData); throw; } } virtual std::shared_ptr<V> put(const K &key, const V &value) { return put(key, value, (int64_t) 0); } virtual std::shared_ptr<V> remove(const K &key) { std::shared_ptr<serialization::pimpl::Data> keyData; try { keyData = toShared(toData(key)); std::unique_ptr<protocol::ClientMessage> request = protocol::codec::ReplicatedMapRemoveCodec::encodeRequest( name, *keyData); std::unique_ptr<serialization::pimpl::Data> result = invokeAndGetResult<std::unique_ptr<serialization::pimpl::Data>, protocol::codec::ReplicatedMapRemoveCodec::ResponseParameters>( request, *keyData); invalidate(keyData); return toSharedObject<V>(result); } catch (...) { invalidate(keyData); throw; } } virtual void putAll(const std::map<K, V> &entries) { EntryVector dataEntries; try { dataEntries = toDataEntries<K, V>(entries); std::unique_ptr<protocol::ClientMessage> request = protocol::codec::ReplicatedMapPutAllCodec::encodeRequest( name, dataEntries); invoke(request); std::shared_ptr<internal::nearcache::NearCache<serialization::pimpl::Data, V> > cache = nearCache.get(); if (cache.get() != NULL) { for (EntryVector::const_iterator it = dataEntries.begin(); it != dataEntries.end(); ++it) { invalidate(toShared(it->first)); } } } catch (...) { std::shared_ptr<internal::nearcache::NearCache<serialization::pimpl::Data, V> > cache = nearCache.get(); if (cache.get() != NULL) { for (EntryVector::const_iterator it = dataEntries.begin(); it != dataEntries.end(); ++it) { invalidate(toShared(it->first)); } } throw; } } virtual void clear() { try { std::unique_ptr<protocol::ClientMessage> request = protocol::codec::ReplicatedMapClearCodec::encodeRequest( name); invoke(request); std::shared_ptr<internal::nearcache::NearCache<serialization::pimpl::Data, V> > cache = nearCache.get(); if (cache.get() != NULL) { cache->clear(); } } catch (...) { std::shared_ptr<internal::nearcache::NearCache<serialization::pimpl::Data, V> > cache = nearCache.get(); if (cache.get() != NULL) { cache->clear(); } throw; } } virtual bool removeEntryListener(const std::string &registrationId) { return deregisterListener(registrationId); } virtual std::string addEntryListener(const std::shared_ptr<EntryListener<K, V> > &listener) { util::Preconditions::isNotNull(listener, "listener"); std::shared_ptr<spi::EventHandler<protocol::ClientMessage> > handler = createHandler(listener); return registerListener(createEntryListenerCodec(name), handler); } virtual std::string addEntryListener(const std::shared_ptr<EntryListener<K, V> > &listener, const K &key) { util::Preconditions::isNotNull(listener, "listener"); std::shared_ptr<serialization::pimpl::Data> keyData = toShared(toData<K>(key)); std::shared_ptr<spi::EventHandler<protocol::ClientMessage> > handler = createHandler(listener); return registerListener(createEntryListenerToKeyCodec(keyData), handler); } virtual const std::string addEntryListener(const std::shared_ptr<EntryListener<K, V> > &listener, const query::Predicate &predicate) { util::Preconditions::isNotNull(listener, "listener"); std::shared_ptr<serialization::pimpl::Data> predicateData = toShared( toData<serialization::IdentifiedDataSerializable>(predicate)); std::shared_ptr<spi::EventHandler<protocol::ClientMessage> > handler = createHandler(listener); return registerListener(createEntryListenerWithPredicateCodec(predicateData), handler); } virtual std::string addEntryListener(const std::shared_ptr<EntryListener<K, V> > &listener, const query::Predicate &predicate, const K &key) { util::Preconditions::isNotNull(listener, "listener"); util::Preconditions::isNotNull(listener, "predicate"); std::shared_ptr<serialization::pimpl::Data> predicateData = toShared( toData<serialization::IdentifiedDataSerializable>(predicate)); std::shared_ptr<serialization::pimpl::Data> keyData = toShared(toData<K>(key)); std::shared_ptr<spi::EventHandler<protocol::ClientMessage> > handler = createHandler(listener); return registerListener(createEntryListenerToKeyWithPredicateCodec(keyData, predicateData), handler); } virtual std::shared_ptr<DataArray<K> > keySet() { std::unique_ptr<protocol::ClientMessage> request = protocol::codec::ReplicatedMapKeySetCodec::encodeRequest( name); std::shared_ptr<protocol::ClientMessage> response = invokeOnPartition(request, targetPartitionId); protocol::codec::ReplicatedMapKeySetCodec::ResponseParameters result = protocol::codec::ReplicatedMapKeySetCodec::ResponseParameters::decode( *response); return std::shared_ptr<DataArray<K> >( new impl::DataArrayImpl<K>(result.response, getContext().getSerializationService())); } virtual std::shared_ptr<DataArray<V> > values() { std::unique_ptr<protocol::ClientMessage> request = protocol::codec::ReplicatedMapValuesCodec::encodeRequest( name); std::shared_ptr<protocol::ClientMessage> response = invokeOnPartition(request, targetPartitionId); protocol::codec::ReplicatedMapValuesCodec::ResponseParameters result = protocol::codec::ReplicatedMapValuesCodec::ResponseParameters::decode( *response); return std::shared_ptr<DataArray<V> >( new impl::DataArrayImpl<V>(result.response, getContext().getSerializationService())); } virtual std::shared_ptr<LazyEntryArray<K, V> > entrySet() { std::unique_ptr<protocol::ClientMessage> request = protocol::codec::ReplicatedMapEntrySetCodec::encodeRequest( name); std::shared_ptr<protocol::ClientMessage> response = invokeOnPartition(request, targetPartitionId); protocol::codec::ReplicatedMapEntrySetCodec::ResponseParameters result = protocol::codec::ReplicatedMapEntrySetCodec::ResponseParameters::decode( *response); return std::shared_ptr<LazyEntryArray<K, V> >( new impl::LazyEntryArrayImpl<K, V>(result.response, getContext().getSerializationService())); } /** * Get the {@link com.hazelcast.monitor.NearCacheStats} instance to monitor near cache statistics. * * This method is implemented for testing purposes. * * @return the {@link com.hazelcast.monitor.NearCacheStats} instance to monitor this store */ monitor::NearCacheStats *getNearCacheStats() { std::shared_ptr<internal::nearcache::NearCache<serialization::pimpl::Data, V> > cache = nearCache.get(); if (!cache.get()) { return NULL; } return &cache->getNearCacheStats(); } protected: virtual void onInitialize() { ProxyImpl::onInitialize(); int partitionCount = getContext().getPartitionService().getPartitionCount(); targetPartitionId = rand() % partitionCount; initNearCache(); } virtual void postDestroy() { try { if (nearCache.get() != NULL) { removeNearCacheInvalidationListener(); getContext().getNearCacheManager().destroyNearCache(name); } ClientProxy::postDestroy(); } catch (...) { ClientProxy::postDestroy(); throw; } } private: class NearCacheInvalidationListenerMessageCodec : public spi::impl::ListenerMessageCodec { public: NearCacheInvalidationListenerMessageCodec(const std::string &name) : name(name) {} virtual std::unique_ptr<protocol::ClientMessage> encodeAddRequest(bool localOnly) const { return protocol::codec::ReplicatedMapAddNearCacheEntryListenerCodec::encodeRequest(name, false, localOnly); } virtual std::string decodeAddResponse(protocol::ClientMessage &responseMessage) const { return protocol::codec::ReplicatedMapAddNearCacheEntryListenerCodec::ResponseParameters::decode( responseMessage).response; } virtual std::unique_ptr<protocol::ClientMessage> encodeRemoveRequest(const std::string &realRegistrationId) const { return protocol::codec::ReplicatedMapRemoveEntryListenerCodec::encodeRequest(name, realRegistrationId); } virtual bool decodeRemoveResponse(protocol::ClientMessage &clientMessage) const { return protocol::codec::ReplicatedMapRemoveEntryListenerCodec::ResponseParameters::decode( clientMessage).response; } private: std::string name; }; class ReplicatedMapAddEntryListenerToKeyWithPredicateMessageCodec : public spi::impl::ListenerMessageCodec { public: ReplicatedMapAddEntryListenerToKeyWithPredicateMessageCodec(const std::string &name, const std::shared_ptr<Data> &keyData, const std::shared_ptr<Data> &predicateData) : name(name), keyData(keyData), predicateData(predicateData) {} virtual std::unique_ptr<protocol::ClientMessage> encodeAddRequest(bool localOnly) const { return protocol::codec::ReplicatedMapAddEntryListenerToKeyWithPredicateCodec::encodeRequest( name, *keyData, *predicateData, localOnly); } virtual std::string decodeAddResponse(protocol::ClientMessage &responseMessage) const { return protocol::codec::ReplicatedMapAddEntryListenerToKeyWithPredicateCodec::ResponseParameters::decode( responseMessage).response; } virtual std::unique_ptr<protocol::ClientMessage> encodeRemoveRequest(const std::string &realRegistrationId) const { return protocol::codec::ReplicatedMapRemoveEntryListenerCodec::encodeRequest(name, realRegistrationId); } virtual bool decodeRemoveResponse(protocol::ClientMessage &clientMessage) const { return protocol::codec::ReplicatedMapRemoveEntryListenerCodec::ResponseParameters::decode( clientMessage).response; } private: std::string name; const std::shared_ptr<serialization::pimpl::Data> keyData; const std::shared_ptr<serialization::pimpl::Data> predicateData; }; class ReplicatedMapAddEntryListenerWithPredicateMessageCodec : public spi::impl::ListenerMessageCodec { public: ReplicatedMapAddEntryListenerWithPredicateMessageCodec(const std::string &name, const std::shared_ptr<Data> &keyData) : name(name), predicateData(keyData) {} virtual std::unique_ptr<protocol::ClientMessage> encodeAddRequest(bool localOnly) const { return protocol::codec::ReplicatedMapAddEntryListenerWithPredicateCodec::encodeRequest(name, *predicateData, localOnly); } virtual std::string decodeAddResponse(protocol::ClientMessage &responseMessage) const { return protocol::codec::ReplicatedMapAddEntryListenerWithPredicateCodec::ResponseParameters::decode( responseMessage).response; } virtual std::unique_ptr<protocol::ClientMessage> encodeRemoveRequest(const std::string &realRegistrationId) const { return protocol::codec::ReplicatedMapRemoveEntryListenerCodec::encodeRequest(name, realRegistrationId); } virtual bool decodeRemoveResponse(protocol::ClientMessage &clientMessage) const { return protocol::codec::ReplicatedMapRemoveEntryListenerCodec::ResponseParameters::decode( clientMessage).response; } private: std::string name; const std::shared_ptr<serialization::pimpl::Data> predicateData; }; class ReplicatedMapAddEntryListenerToKeyMessageCodec : public spi::impl::ListenerMessageCodec { public: ReplicatedMapAddEntryListenerToKeyMessageCodec(const std::string &name, const std::shared_ptr<Data> &keyData) : name(name), keyData(keyData) {} virtual std::unique_ptr<protocol::ClientMessage> encodeAddRequest(bool localOnly) const { return protocol::codec::ReplicatedMapAddEntryListenerToKeyCodec::encodeRequest(name, *keyData, localOnly); } virtual std::string decodeAddResponse(protocol::ClientMessage &responseMessage) const { return protocol::codec::ReplicatedMapAddEntryListenerToKeyCodec::ResponseParameters::decode( responseMessage).response; } virtual std::unique_ptr<protocol::ClientMessage> encodeRemoveRequest(const std::string &realRegistrationId) const { return protocol::codec::ReplicatedMapRemoveEntryListenerCodec::encodeRequest(name, realRegistrationId); } virtual bool decodeRemoveResponse(protocol::ClientMessage &clientMessage) const { return protocol::codec::ReplicatedMapRemoveEntryListenerCodec::ResponseParameters::decode( clientMessage).response; } private: std::string name; const std::shared_ptr<serialization::pimpl::Data> keyData; }; class ReplicatedMapListenerMessageCodec : public spi::impl::ListenerMessageCodec { public: ReplicatedMapListenerMessageCodec(const std::string &name) : name(name) {} virtual std::unique_ptr<protocol::ClientMessage> encodeAddRequest(bool localOnly) const { return protocol::codec::ReplicatedMapAddEntryListenerCodec::encodeRequest(name, localOnly); } virtual std::string decodeAddResponse(protocol::ClientMessage &responseMessage) const { return protocol::codec::ReplicatedMapAddEntryListenerCodec::ResponseParameters::decode( responseMessage).response; } virtual std::unique_ptr<protocol::ClientMessage> encodeRemoveRequest(const std::string &realRegistrationId) const { return protocol::codec::ReplicatedMapRemoveEntryListenerCodec::encodeRequest(name, realRegistrationId); } virtual bool decodeRemoveResponse(protocol::ClientMessage &clientMessage) const { return protocol::codec::ReplicatedMapRemoveEntryListenerCodec::ResponseParameters::decode( clientMessage).response; } private: std::string name; }; class ReplicatedMapEventHandler : public protocol::codec::ReplicatedMapAddEntryListenerCodec::AbstractEventHandler { public: ReplicatedMapEventHandler(const std::string &name, const std::shared_ptr<EntryListener<K, V> > &listener, spi::ClientContext &clientContext) : name(name), listener(listener), clientContext(clientContext) {} virtual void handleEntryEventV10(std::unique_ptr<serialization::pimpl::Data> &key, std::unique_ptr<serialization::pimpl::Data> &value, std::unique_ptr<serialization::pimpl::Data> &oldValue, std::unique_ptr<serialization::pimpl::Data> &mergingValue, const int32_t &eventType, const std::string &uuid, const int32_t &numberOfAffectedEntries) { std::shared_ptr<Member> member = clientContext.getClientClusterService().getMember(uuid); const EntryEventType &type = EntryEventType((EntryEventType::Type) eventType); map::impl::DataAwareEntryEvent<K, V> entryEvent(name, *member, type, std::shared_ptr<serialization::pimpl::Data>( std::move(key)), std::shared_ptr<serialization::pimpl::Data>( std::move(value)), std::shared_ptr<serialization::pimpl::Data>( std::move(oldValue)), std::shared_ptr<serialization::pimpl::Data>( std::move(mergingValue)), clientContext.getSerializationService()); switch (eventType) { case EntryEventType::ADDED: listener->entryAdded(entryEvent); break; case EntryEventType::REMOVED: listener->entryRemoved(entryEvent); break; case EntryEventType::UPDATED: listener->entryUpdated(entryEvent); break; case EntryEventType::EVICTED: listener->entryEvicted(entryEvent); break; case EntryEventType::CLEAR_ALL: listener->mapCleared(MapEvent(*member, type, name, numberOfAffectedEntries)); break; default: throw (exception::ExceptionBuilder<exception::IllegalArgumentException>( "ReplicatedMapEventHandler::handleEntryEventV10") << "Not a known event type: " << eventType).build(); } } private: std::string name; const std::shared_ptr<EntryListener<K, V> > listener; spi::ClientContext &clientContext; }; class ReplicatedMapAddNearCacheEventHandler : public protocol::codec::ReplicatedMapAddNearCacheEntryListenerCodec::AbstractEventHandler { public: ReplicatedMapAddNearCacheEventHandler( util::Sync<std::shared_ptr<internal::nearcache::NearCache<serialization::pimpl::Data, V> > > &nearCache, SerializationService &serializationService) : nearCache(nearCache), serializationService(serializationService) {} void beforeListenerRegister() { std::shared_ptr<internal::nearcache::NearCache<serialization::pimpl::Data, V> > cache = nearCache.get(); if (cache.get() != NULL) { cache->clear(); } } void onListenerRegister() { std::shared_ptr<internal::nearcache::NearCache<serialization::pimpl::Data, V> > cache = nearCache.get(); if (cache.get() != NULL) { cache->clear(); } } void handleEntryEventV10(std::unique_ptr<serialization::pimpl::Data> &dataKey, std::unique_ptr<serialization::pimpl::Data> &value, std::unique_ptr<serialization::pimpl::Data> &oldValue, std::unique_ptr<serialization::pimpl::Data> &mergingValue, const int32_t &eventType, const std::string &uuid, const int32_t &numberOfAffectedEntries) { switch (eventType) { case EntryEventType::ADDED: case EntryEventType::REMOVED: case EntryEventType::UPDATED: case EntryEventType::EVICTED: { nearCache.get()->invalidate(std::shared_ptr<serialization::pimpl::Data>(std::move(dataKey))); break; } case EntryEventType::CLEAR_ALL: nearCache.get()->clear(); break; default: throw (exception::ExceptionBuilder<exception::IllegalArgumentException>( "ReplicatedMapAddNearCacheEventHandler::handleEntryEventV10") << "Not a known event type " << eventType).build(); } } private: util::Sync<std::shared_ptr<internal::nearcache::NearCache<serialization::pimpl::Data, V> > > &nearCache; serialization::pimpl::SerializationService &serializationService; }; std::shared_ptr<spi::EventHandler<protocol::ClientMessage> > createHandler(const std::shared_ptr<EntryListener<K, V> > &listener) { return std::shared_ptr<spi::EventHandler<protocol::ClientMessage> >( new ReplicatedMapEventHandler(getName(), listener, getContext())); } std::shared_ptr<spi::impl::ListenerMessageCodec> createEntryListenerCodec(const std::string name) { return std::shared_ptr<spi::impl::ListenerMessageCodec>( new ReplicatedMapListenerMessageCodec(name)); } std::shared_ptr<spi::impl::ListenerMessageCodec> createEntryListenerToKeyCodec(const std::shared_ptr<serialization::pimpl::Data> &keyData) { return std::shared_ptr<spi::impl::ListenerMessageCodec>( new ReplicatedMapAddEntryListenerToKeyMessageCodec(name, keyData)); } std::shared_ptr<spi::impl::ListenerMessageCodec> createEntryListenerWithPredicateCodec( const std::shared_ptr<serialization::pimpl::Data> &predicateData) { return std::shared_ptr<spi::impl::ListenerMessageCodec>( new ReplicatedMapAddEntryListenerWithPredicateMessageCodec(name, predicateData)); } std::shared_ptr<spi::impl::ListenerMessageCodec> createEntryListenerToKeyWithPredicateCodec(const std::shared_ptr<serialization::pimpl::Data> &keyData, const std::shared_ptr<serialization::pimpl::Data> &predicateData) { return std::shared_ptr<spi::impl::ListenerMessageCodec>( new ReplicatedMapAddEntryListenerToKeyWithPredicateMessageCodec(name, keyData, predicateData)); } std::shared_ptr<spi::impl::ListenerMessageCodec> createNearCacheInvalidationListenerCodec() { return std::shared_ptr<spi::impl::ListenerMessageCodec>( new NearCacheInvalidationListenerMessageCodec(name)); } void registerInvalidationListener() { try { invalidationListenerId = addNearCacheInvalidationListener( std::shared_ptr<spi::EventHandler<protocol::ClientMessage> >( new ReplicatedMapAddNearCacheEventHandler(nearCache, getContext().getSerializationService()))); } catch (exception::IException &e) { getContext().getLogger().severe("-----------------\nNear Cache is not initialized!\n-----------------" , e); } } std::string addNearCacheInvalidationListener( const std::shared_ptr<spi::EventHandler<protocol::ClientMessage> > handler) { return registerListener(createNearCacheInvalidationListenerCodec(), handler); } void initNearCache() { std::shared_ptr<config::NearCacheConfig<K, V> > nearCacheConfig = getContext().getClientConfig().template getNearCacheConfig<K, V>( name); if (nearCacheConfig.get() != NULL) { nearCache = getContext().getNearCacheManager().template getOrCreateNearCache<K, V, serialization::pimpl::Data>( name, *nearCacheConfig); if (nearCacheConfig->isInvalidateOnChange()) { registerInvalidationListener(); } } } void removeNearCacheInvalidationListener() { std::string listenerId = invalidationListenerId.get(); if (nearCache.get() != NULL && !listenerId.empty()) { getContext().getClientListenerService().deregisterListener(listenerId); } } void invalidate(const std::shared_ptr<serialization::pimpl::Data> &key) { std::shared_ptr<internal::nearcache::NearCache<serialization::pimpl::Data, V> > cache = nearCache.get(); if (cache.get() == NULL) { return; } cache->invalidate(key); } std::shared_ptr<V> getCachedValue(const K &key) { std::shared_ptr<internal::nearcache::NearCache<serialization::pimpl::Data, V> > cache = nearCache.get(); if (cache.get() == NULL) { // TODO Check to see if Java NOT_CACHED object impl. is possible return std::shared_ptr<V>(); } return cache->get(toSharedData<K>(key)); } int targetPartitionId; util::Sync<std::shared_ptr<internal::nearcache::NearCache<serialization::pimpl::Data, V> > > nearCache; util::Sync<std::string> invalidationListenerId; }; template<typename K, typename V> const std::string ClientReplicatedMapProxy<K, V>::SERVICE_NAME = "hz:impl:replicatedMapService"; } } } #if defined(WIN32) || defined(_WIN32) || defined(WIN64) || defined(_WIN64) #pragma warning(pop) #endif #endif //HAZELCAST_CLIENT_PROXY_CLIENTREPLICATEDMAPPROXY_H_
[ "noreply@github.com" ]
noreply@github.com
2705fc35a301a717028f7ecd7962207a9679bf45
0d64c7f4e700bbe80bb7415ff4d4743e7ff11546
/test/Kdtree_test.cpp
fb033beba57dfcfe9b1697a74af905e4ee41a327
[]
no_license
gcorvala/Cloud9
080f3eb8cf2612448eedf6167825d349a2f9a835
f98f79a7b3900cd48c7a35da72731b5102dfc2a6
refs/heads/master
2021-01-02T23:12:25.104891
2012-06-10T19:03:12
2012-06-10T19:03:12
2,826,951
1
0
null
null
null
null
UTF-8
C++
false
false
318
cpp
#include <gtest/gtest.h> #include <libcloud/Kdtree/Kdtree.h> class KdtreeTest : public ::testing::Test { protected: virtual void SetUp() { } Kdtree tree1; }; TEST_F (KdtreeTest, ConstructorWorks) { } int main (int argc, char **argv) { ::testing::InitGoogleTest (&argc, argv); return RUN_ALL_TESTS (); }
[ "just.the.boss@gmail.com" ]
just.the.boss@gmail.com
4aee68f787782ede5167035c127e765cf793458f
ce75a452d2898a41674619b5c4aad404345e1147
/Lesson11/Video6/main.h
c0235869b1beb26b30f4a1f1ff8b9a12a3c02b8f
[]
no_license
CP1984/UDACITY--Cpp_For_Programmers
1ea134f6392fc0087d065ff547a89eed949e4de8
5db6dee9dc14d3782d3fdc4ad2125602e500b645
refs/heads/master
2020-04-18T23:15:45.495446
2019-06-10T15:28:30
2019-06-10T15:28:30
167,816,665
0
0
null
null
null
null
UTF-8
C++
false
false
905
h
//header file for main.cpp /*TODO: *- create a class called Pet *- it inherits from both the class Patient *- and the class Dog *- Pet has one private member: name *- Pet has public getName and setName functions. */ #include<iostream> #include<string> using namespace std; class Patient { private: int idNumber; public: void setIdNumber(int idIn); int getIdNumber(); }; void Patient::setIdNumber(int idIn) { idNumber = idIn; } int Patient::getIdNumber() { return idNumber; } class Dog { private: string breed; public: void setBreed(string breedIn); string getBreed(); }; void Dog::setBreed(string breedIn) { breed = breedIn; } string Dog::getBreed() { return breed; } class Pet : public Patient, public Dog { private: string name; public: void setName(string nameIn); string getName(); }; void Pet::setName(string nameIn) { name = nameIn; } string Pet::getName() { return name; }
[ "chingping1984@gmail.com" ]
chingping1984@gmail.com
7cfd11eedca8dca1881e3d267bece3eb0fc638ba
5091bda1d18ff4fcb3176c27f6dc6c5d62981954
/PanGuEngine/PanGuEngine/Main.cpp
2584636a53b27995739dc66c7400f8a9e6df7159
[ "MIT" ]
permissive
junyang0412/PanGuEngine
14bb58d71129224ca174b35bcf9e462636bf48d6
777286f811c925b489b9d13c0d174e050e284450
refs/heads/master
2023-08-11T07:40:14.185278
2021-07-01T11:47:55
2021-07-01T11:47:55
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,483
cpp
#include "pch.h" #include "Engine.h" #include "Renderer/GameObject.h" #include "Utility/GeometryFactory.h" #include "Renderer/Mesh.h" #include "Resource/GLTFLoader.h" using namespace DirectX; _Use_decl_annotations_ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE, LPSTR, int nCmdShow) { try { Engine engine(hInstance); EngineCreateInfo engineCI; engineCI.Width = 1920; engineCI.Height = 1080; auto setup = []() { GameObject* rootNode = SceneManager::GetSingleton().GetRootNode(); GameObject* damagedHelmet = Resource::GLTFLoader::LoadGLTF("Resources/DamagedHelmet.gltf", rootNode); damagedHelmet->Rotate(90.0f, 180.0f, 0.0f); //damagedHelmet->Rotate(0, 180, 0, Space::Self); //Resource::GLTFLoader::LoadGLTF("Resources/SciFiHelmet/SciFiHelmet.gltf", rootNode); //Resource::GLTFLoader::LoadGLTF("Resources/Sponza/Sponza.gltf", rootNode); /*GameObject* fish = Resource::GLTFLoader::LoadGLTF("Resources/BarramundiFish.glb", rootNode); fish->Translate(0.0f, 0.8f, 0.0f, Space::Self); fish->Rotate(90.0f, 0.0f, 0.0f); fish->SetLocalScale(Math::Vector3(10.0f, 10.0f, 10.0f));*/ GameObject* cameraGo = rootNode->CreateChild(); Camera* camera = cameraGo->AddComponent<Camera>(); camera->SetProjection(1920.0f / 1080.0f, 0.1f, 100.0f, MathHelper::Pi / 3.0f); cameraGo->Translate(0.0f, 0.0f, -5.0f, Space::Self); GameObject* lightGo = rootNode->CreateChild(); Light* light = lightGo->AddComponent<Light>(); light->SetLightColor(DirectX::XMFLOAT3(1.0f, 1.0f, 1.0f)); light->SetLightIntensity(1.0f); lightGo->Rotate(45.0f, 0.0f, 0.0f, Space::Self); // Plane std::shared_ptr<Mesh> boxMesh = GeometryFactory::CreateBox(1.0f, 1.0f, 1.0f, 0); GameObject* boxGo = rootNode->CreateChild(); boxGo->Translate(0.0f, -3.0f, 0.0f); boxGo->SetLocalScale(Math::Vector3(30.0f, 1.0f, 30.0f)); MeshRenderer* meshRenderer = boxGo->AddComponent<MeshRenderer>(); meshRenderer->SetMesh(boxMesh); DirectX::XMFLOAT4 oneVector = DirectX::XMFLOAT4(1.0f, 1.0f, 1.0f, 1.0f); std::shared_ptr<Material> material = std::make_shared<Material>(0.5f, 0.5f, oneVector, oneVector, ResourceManager::GetSingleton().GetDefaultWhiteTex(), nullptr, nullptr, nullptr, ResourceManager::GetSingleton().GetDefaultBlackTex()); meshRenderer->SetMaterial(material); }; return engine.RunN(engineCI, setup); } catch (DxException& e) { MessageBox(nullptr, e.ToString().c_str(), L"HR Failed", MB_OK); return 0; } }
[ "18883287815@163.com" ]
18883287815@163.com
6ad9fdc98cf3c9768ffbe350a06e3ded7b9a649a
cecf6991e6007ee4bc32a82e438c9120b3826dad
/Excel/Source/Excel.cpp
3a3e64b545782836c97560f84a29cedb8bafa76a
[]
no_license
thinking2535/Rso
172a3499400331439a530cab78934fa4c4433771
35d556463118825a1d5d36f49d46f18a05806169
refs/heads/main
2022-11-30T12:43:50.917063
2022-11-23T10:47:59
2022-11-23T10:47:59
31,525,549
11
0
null
null
null
null
UTF-8
C++
false
false
1,378
cpp
#include "Excel.h" namespace rso { namespace excel { CExcel::CExcel(const wstring& FileName_, const wstring& Sheets_, wchar_t Delimiter_) { _Workbook.reset(new CWorkbook(FileName_)); set<wstring> SheetsToExtract; wstring Sheets = Sheets_; for (auto Sheet = SplitWithBlank(Delimiter_, Sheets); Sheet.size() > 0; Sheet = SplitWithBlank(Delimiter_, Sheets)) SheetsToExtract.emplace(Sheet); for (int SheetNum = 0; SheetNum < _Workbook->GetSheets()->Count; ++SheetNum) { Excel::_WorksheetPtr Sheet = _Workbook->GetSheets()->Item[SheetNum + 1]; wstring SheetName(Sheet->Name); if (SheetsToExtract.find(SheetName) == SheetsToExtract.end()) continue; auto ib = _Sheets.emplace(SheetName, TRows()); if (!ib.second) THROWEXA(L"Already inserted sheet Name[%s]", ib.first->first); Excel::RangePtr Range = Sheet->GetRange(_bstr_t(L"A1"))->CurrentRegion; ib.first->second.reserve(Range->Rows->Count); // Get Columns' DataType for (int RowNum = 0; RowNum < Range->Rows->Count; ++RowNum) { ib.first->second.emplace_back(vector<wstring>()); ib.first->second.back().reserve(Range->Columns->Count); for (int ColNum = 0; ColNum < Range->Columns->Count; ++ColNum) ib.first->second.back().emplace_back(_GetStr(Range->Item[RowNum + 1][ColNum + 1])); } } _Workbook.reset(); } } }
[ "thinking2535@gmail.com" ]
thinking2535@gmail.com
d6a3b154beebf659567bebd4f3cfa413444b14d5
d3c1ae82c4fe2a6f15ab720a4f2ea1b88dbd19ef
/Evidyon/apps/server/globalmagicmanager.h
a31b7382761cdbb41d5a7ca2bcbc7a692a7793a4
[ "MIT" ]
permissive
karlgluck/evidyon-2.10
0f2b1950ee2412871b40e71fd6162efe2be4027d
632c863ecc95398dca2bbc84ba4eac9b8a83f01c
refs/heads/master
2020-05-18T09:24:40.855048
2014-12-02T17:55:14
2014-12-02T17:55:14
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,343
h
#ifndef __GLOBALMAGICMANAGER_H__ #define __GLOBALMAGICMANAGER_H__ #include "magictargeter.h" #include "magictargetertimer.h" #include "magictargeterprojectile.h" #include <dcx/memorypool> #include "randf.h" namespace Evidyon { class GlobalWorldManager; class GlobalMagicManager { static const int MAX_INSTANCES = 1024; static const int MAX_PROJECTILE_TARGETERS = MAX_INSTANCES * 8; static const int MAX_DELAYED_TARGETERS = MAX_INSTANCES * 4; typedef dcx::dcxMemoryPool<InstantiatedMagic,MAX_INSTANCES> Instances; typedef Instances::Iterator InstancesIter; typedef dcx::dcxMemoryPool<MagicTargeterProjectile,MAX_PROJECTILE_TARGETERS> Projectiles; typedef Projectiles::Iterator ProjectilesIter; typedef dcx::dcxMemoryPool<MagicTargeterTimer,MAX_DELAYED_TARGETERS> Timers; typedef Timers::Iterator TimersIter; public: // Obtains a pointer to the global magic manager singleton. The manager // must be explicitly instantiated somewhere in the program before this // method will return anything valid. static GlobalMagicManager* singleton(); public: // Sets up the memory pools and initializes the singleton. This method // fails if the singleton already exists. bool create(); // Frees the memory pools void destroy(); // Advances everything, then releases instances without references void update(GlobalWorldManager* world_manager, GlobalActorManager* actor_manager, double time, double time_since_last_update); // Generates a new instance for magic (starts with 1 reference-- // be sure to remove it when the pointer is cleared) InstantiatedMagic* createInstance(); // Creates 'count' projectile targeters and sends the effect visualization // messages to create those projectiles on clients. void spawnProjectileTargeters(Actor* visualization_broadcaster, float src_x, float src_y, int count, float direction, float half_spread, double expiration_time, InstantiatedMagic* source, int stage); // Creates a stage-zero projectile targeter emitted from the actor in the // direction that it is currently facing. void spawnProjectileTargeter(Actor* actor_source, float half_spread, double expiration_time, InstantiatedMagic* source_primary_stage); // Creates timer targeters for the targets. Will create multiple targeters // as necessary to hold all of the targets. //void spawnMultipleTimerTargeter( // Actor* visualization_source, // Actor** targets, // int number_of_targets, InstantiatedMagic* source, // double time_to_apply, int stage); // Creates a timer targeter for all of the targets. This will create // effect visualizations as necessary. void spawnTimerTargeter( Actor* visualization_source, Actor* targets[MagicTargeterTimer::MAX_TARGETS], int number_of_targets, InstantiatedMagic* source, double time_to_apply, int stage); void spawnTimerTargeter( Actor* visualization_source, Actor* target, InstantiatedMagic* source, double time_to_apply, int stage); private: Instances instances_; Projectiles projectiles_; Timers timers_; // Iterates through a pregenerated set of random float values. Used to // speed up the generation of projectile directions. RandSymmetricFloatTable<32> random_floats_; private: static GlobalMagicManager* global; }; } #endif
[ "karlgluck@gmail.com" ]
karlgluck@gmail.com
6cb1c6e83b54ed7fe4be18bf57605a9dc8552aac
e6769524d7a8776f19df0c78e62c7357609695e8
/branches/ammorais_branch/retroshare-gui/src/rshare.cpp
c3ece69336949a69f71e9eaa99be9df1109eedd0
[]
no_license
autoscatto/retroshare
025020d92084f9bc1ca24da97379242886277779
e0d85c7aac0a590d5839512af8a1e3abce97ca6f
refs/heads/master
2020-04-09T11:14:01.836308
2013-06-30T13:58:17
2013-06-30T13:58:17
null
0
0
null
null
null
null
UTF-8
C++
false
false
13,471
cpp
/**************************************************************** * This file is distributed under the following license: * * Copyright (c) 2006-2007, crypton * Copyright (c) 2006, Matt Edman, Justin Hipple * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. ****************************************************************/ #include <QDir> #include <QTimer> #include <QTextStream> #include <QShortcut> #include <QStyleFactory> #include <gui/common/vmessagebox.h> #include <gui/common/html.h> #include <util/stringutil.h> #include <stdlib.h> #include <lang/languagesupport.h> #include "gui/Preferences/rsharesettings.h" #include "rshare.h" /* Available command-line arguments. */ #define ARG_LANGUAGE "lang" /**< Argument specifying language. */ #define ARG_GUISTYLE "style" /**< Argument specfying GUI style. */ #define ARG_GUISTYLESHEET "stylesheet" /**< Argument specfying GUI style. */ #define ARG_RESET "reset" /**< Reset Rshare's saved settings. */ #define ARG_DATADIR "datadir" /**< Directory to use for data files. */ #define ARG_LOGFILE "logfile" /**< Location of our logfile. */ #define ARG_LOGLEVEL "loglevel" /**< Log verbosity. */ /* Static member variables */ QMap<QString, QString> Rshare::_args; /**< List of command-line arguments. */ QString Rshare::_style; /**< The current GUI style. */ QString Rshare::_language; /**< The current language. */ QString Rshare::_stylesheet; /**< The current GUI stylesheet. */ Log Rshare::_log; bool Rshare::useConfigDir; QString Rshare::configDir; /** Catches debugging messages from Qt and sends them to RetroShare's logs. If Qt * emits a QtFatalMsg, we will write the message to the log and then abort(). */ void Rshare::qt_msg_handler(QtMsgType type, const char *s) { QString msg(s); switch (type) { case QtDebugMsg: rDebug("QtDebugMsg: %1").arg(msg); break; case QtWarningMsg: rNotice("QtWarningMsg: %1").arg(msg); break; case QtCriticalMsg: rWarn("QtCriticalMsg: %1").arg(msg); break; case QtFatalMsg: rError("QtFatalMsg: %1").arg(msg); break; } if (type == QtFatalMsg) { rError("Fatal Qt error. Aborting."); abort(); } } /** Constructor. Parses the command-line arguments, resets Rshare's * configuration (if requested), and sets up the GUI style and language * translation. */ Rshare::Rshare(QStringList args, int &argc, char **argv, QString dir) : QApplication(argc, argv) { qInstallMsgHandler(qt_msg_handler); /* Read in all our command-line arguments. */ parseArguments(args); /* Check if we're supposed to reset our config before proceeding. */ if (_args.contains(ARG_RESET)) { RshareSettings settings; settings.reset(); } /* Handle the -loglevel and -logfile options. */ if (_args.contains(ARG_LOGFILE)) _log.open(_args.value(ARG_LOGFILE)); if (_args.contains(ARG_LOGLEVEL)) { _log.setLogLevel(Log::stringToLogLevel( _args.value(ARG_LOGLEVEL))); if (!_args.contains(ARG_LOGFILE)) _log.open(stdout); } if (!_args.contains(ARG_LOGLEVEL) && !_args.contains(ARG_LOGFILE)) _log.setLogLevel(Log::Off); /* config directory */ useConfigDir = false; if (dir != "") { setConfigDirectory(dir); } /** Initialize support for language translations. */ LanguageSupport::initialize(); /** Translate the GUI to the appropriate language. */ setLanguage(_args.value(ARG_LANGUAGE)); /** Set the GUI style appropriately. */ setStyle(_args.value(ARG_GUISTYLE)); /** Set the GUI stylesheet appropriately. */ setSheet(_args.value(ARG_GUISTYLESHEET)); /* Switch off auto shutdown */ setQuitOnLastWindowClosed ( false ); } /** Destructor */ Rshare::~Rshare() { } /** Enters the main event loop and waits until exit() is called. The signal * running() will be emitted when the event loop has started. */ int Rshare::run() { QTimer::singleShot(0, rApp, SLOT(onEventLoopStarted())); return rApp->exec(); } /** Called when the application's main event loop has started. This method * will emit the running() signal to indicate that the application's event * loop is running. */ void Rshare::onEventLoopStarted() { emit running(); } #if defined(Q_OS_WIN) /** On Windows, we need to catch the WM_QUERYENDSESSION message * so we know that it is time to shutdown. */ bool Rshare::winEventFilter(MSG *msg, long *result) { if (msg->message == WM_QUERYENDSESSION) { emit shutdown(); } return QApplication::winEventFilter(msg, result); } #endif /** Display usage information regarding command-line arguments. */ /*void Rshare::printUsage(QString errmsg) { QTextStream out(stdout);*/ /* If there was an error message, print it out. */ /*if (!errmsg.isEmpty()) { out << "** " << errmsg << " **" << endl << endl; }*/ /* Now print the application usage */ //out << "Usage: " << endl; //out << "\t" << qApp->arguments().at(0) << " [options]" << endl; /* And available options */ //out << endl << "Available Options:" << endl; //out << "\t-"ARG_RESET"\t\tResets ALL stored Rshare settings." << endl; //out << "\t-"ARG_DATADIR"\tSets the directory Rshare uses for data files"<< endl; //out << "\t-"ARG_GUISTYLE"\t\tSets Rshare's interface style." << endl; //out << "\t-"ARG_GUISTYLESHEET"\t\tSets Rshare's stylesheet." << endl; //out << "\t\t\t[" << QStyleFactory::keys().join("|") << "]" << endl; //out << "\t-"ARG_LANGUAGE"\t\tSets Rshare's language." << endl; //out << "\t\t\t[" << LanguageSupport::languageCodes().join("|") << "]" << endl; //} /** Displays usage information for command-line args. */ void Rshare::showUsageMessageBox() { QString usage; QTextStream out(&usage); out << "Available Options:" << endl; out << "<table>"; //out << trow(tcol("-"ARG_HELP) + // tcol(tr("Displays this usage message and exits."))); out << trow(tcol("-"ARG_RESET) + tcol(tr("Resets ALL stored RetroShare settings."))); out << trow(tcol("-"ARG_DATADIR" &lt;dir&gt;") + tcol(tr("Sets the directory RetroShare uses for data files."))); out << trow(tcol("-"ARG_LOGFILE" &lt;file&gt;") + tcol(tr("Sets the name and location of RetroShare's logfile."))); out << trow(tcol("-"ARG_LOGLEVEL" &lt;level&gt;") + tcol(tr("Sets the verbosity of Vidalia's logging.") + "<br>[" + Log::logLevels().join("|") +"]")); out << trow(tcol("-"ARG_GUISTYLE" &lt;style&gt;") + tcol(tr("Sets RetroShare's interface style.") + "<br>[" + QStyleFactory::keys().join("|") + "]")); out << trow(tcol("-"ARG_GUISTYLESHEET" &lt;stylesheet&gt;") + tcol(tr("Sets RetroShare's interface stylesheets."))); out << trow(tcol("-"ARG_LANGUAGE" &lt;language&gt;") + tcol(tr("Sets RetroShare's language.") + "<br>[" + LanguageSupport::languageCodes().join("|") + "]")); out << "</table>"; VMessageBox::information(0, tr("RetroShare Usage Information"), usage, VMessageBox::Ok); } /** Returns true if the specified argument expects a value. */ bool Rshare::argNeedsValue(QString argName) { return (argName == ARG_GUISTYLE || argName == ARG_GUISTYLESHEET || argName == ARG_LANGUAGE || argName == ARG_DATADIR || argName == ARG_LOGFILE || argName == ARG_LOGLEVEL); } /** Parses the list of command-line arguments for their argument names and * values. */ void Rshare::parseArguments(QStringList args) { QString arg, value; /* Loop through all command-line args/values and put them in a map */ for (int i = 0; i < args.size(); i++) { /* Get the argument name and set a blank value */ arg = args.at(i).toLower(); value = ""; /* Check if it starts with a - or -- */ if (arg.startsWith("-")) { arg = arg.mid((arg.startsWith("--") ? 2 : 1)); } /* Check if it takes a value and there is one on the command-line */ if (i < args.size()-1 && argNeedsValue(arg)) { value = args.at(++i); } /* Place this arg/value in the map */ _args.insert(arg, value); } } /** Verifies that all specified arguments were valid. */ bool Rshare::validateArguments(QString &errmsg) { /* Check for a language that Retroshare recognizes. */ if (_args.contains(ARG_LANGUAGE) && !LanguageSupport::isValidLanguageCode(_args.value(ARG_LANGUAGE))) { errmsg = tr("Invalid language code specified: ") + _args.value(ARG_LANGUAGE); return false; } /* Check for a valid GUI style */ if (_args.contains(ARG_GUISTYLE) && !QStyleFactory::keys().contains(_args.value(ARG_GUISTYLE), Qt::CaseInsensitive)) { errmsg = tr("Invalid GUI style specified: ") + _args.value(ARG_GUISTYLE); return false; } /* Check for a valid log level */ if (_args.contains(ARG_LOGLEVEL) && !Log::logLevels().contains(_args.value(ARG_LOGLEVEL))) { errmsg = tr("Invalid log level specified: ") + _args.value(ARG_LOGLEVEL); return false; } /* Check for a writable log file */ if (_args.contains(ARG_LOGFILE) && !_log.isOpen()) { errmsg = tr("Unable to open log file '%1': %2") .arg(_args.value(ARG_LOGFILE)) .arg(_log.errorString()); return false; } return true; } /** Sets the translation RetroShare will use. If one was specified on the * command-line, we will use that. Otherwise, we'll check to see if one was * saved previously. If not, we'll default to one appropriate for the system * locale. */ bool Rshare::setLanguage(QString languageCode) { /* If the language code is empty, use the previously-saved setting */ if (languageCode.isEmpty()) { RshareSettings settings; languageCode = settings.getLanguageCode(); } /* Translate into the desired langauge */ if (LanguageSupport::translate(languageCode)) { _language = languageCode; return true; } return false; } /** Sets the GUI style RetroShare will use. If one was specified on the * command-line, we will use that. Otherwise, we'll check to see if one was * saved previously. If not, we'll default to one appropriate for the * operating system. */ bool Rshare::setStyle(QString styleKey) { /* If no style was specified, use the previously-saved setting */ if (styleKey.isEmpty()) { RshareSettings settings; styleKey = settings.getInterfaceStyle(); } /* Apply the specified GUI style */ if (QApplication::setStyle(styleKey)) { _style = styleKey; return true; } return false; } bool Rshare::setSheet(QString sheet) { /* If no stylesheet was specified, use the previously-saved setting */ if (sheet.isEmpty()) { RshareSettings settings; sheet = settings.getSheetName(); } /* Apply the specified GUI stylesheet */ _stylesheet = sheet; return true; } /** Returns the directory RetroShare uses for its data files. */ QString Rshare::dataDirectory() { if (useConfigDir) { return configDir; } else if (_args.contains(ARG_DATADIR)) { return _args.value(ARG_DATADIR); } return defaultDataDirectory(); } /** Returns the default location of RetroShare's data directory. */ QString Rshare::defaultDataDirectory() { #if defined(Q_OS_WIN32) return (win32_app_data_folder() + "\\RetroShare"); #else return (QDir::homePath() + "/.RetroShare"); #endif } /** Creates Rshare's data directory, if it doesn't already exist. */ bool Rshare::createDataDirectory(QString *errmsg) { QDir datadir(dataDirectory()); if (!datadir.exists()) { QString path = datadir.absolutePath(); if (!datadir.mkpath(path)) { return err(errmsg, QString("Could not create data directory: %1").arg(path)); } } return true; } /** Set Rshare's data directory - externally */ bool Rshare::setConfigDirectory(QString dir) { useConfigDir = true; configDir = dir; return true; } /** Writes <b>msg</b> with severity <b>level</b> to Vidalia's log. */ Log::LogMessage Rshare::log(Log::LogLevel level, QString msg) { return _log.log(level, msg); } /** Creates and binds a shortcut such that when <b>key</b> is pressed in * <b>sender</b>'s context, <b>receiver</b>'s <b>slot</b> will be called. */ void Rshare::createShortcut(const QKeySequence &key, QWidget *sender, QWidget *receiver, const char *slot) { QShortcut *s = new QShortcut(key, sender); connect(s, SIGNAL(activated()), receiver, slot); }
[ "ammorais@b45a01b8-16f6-495d-af2f-9b41ad6348cc" ]
ammorais@b45a01b8-16f6-495d-af2f-9b41ad6348cc
683db72dcfd8f7f25c6d27a2d843fd774c3f3584
f85ed46f36b2b2c62ffb6b77849c7cea84ec195c
/centralbutton.h
f254b88a1d329b086a1148162aaaab4f52257472
[]
no_license
sebegolov/CircleMenu
0298a149790294f67a06317289fd34c12e4509bb
5be641880ba68574b2d1880178a671c4ccfece5e
refs/heads/master
2022-12-18T16:38:15.637482
2020-09-28T20:29:08
2020-09-28T20:29:08
294,441,234
0
0
null
null
null
null
UTF-8
C++
false
false
585
h
#ifndef CENTRALBUTTON_H #define CENTRALBUTTON_H #include <QWidget> class CentralButton : public QWidget { public: CentralButton(QWidget *parent = nullptr); // QWidget interface public: QSize sizeHint() const; protected: void mousePressEvent(QMouseEvent *event); void mouseReleaseEvent(QMouseEvent *event); void focusInEvent(QFocusEvent *event); void focusOutEvent(QFocusEvent *event); void enterEvent(QEvent *event); void leaveEvent(QEvent *event); void paintEvent(QPaintEvent *event); }; #endif // CENTRALBUTTON_H
[ "noreply@github.com" ]
noreply@github.com
659a4b77d812c6cb636b77236c0e9cf2dc1ae3a3
5a8d8e1d1e57204db0a2f55fcd724d93bea81eaf
/dmti-spatial/W19/in-order-traversal.cpp
ad7995b032ad454d4c7d422cffdd699fe4e26d13
[]
no_license
timweri/algo
b9a5b0de845d535048f46869b7bdfd3fbacbc381
5a96f254285b6059770e66ad20721dc142dd75e8
refs/heads/master
2020-03-22T08:56:00.255875
2019-02-06T23:46:01
2019-02-06T23:46:01
139,801,826
0
0
null
null
null
null
UTF-8
C++
false
false
2,011
cpp
// Given a binary tree // Print out the binary tree in-order #include <cstdlib> #include <ctime> #include <iostream> #include <vector> using namespace std; struct Node { int data; Node *left, *right; Node(int data, Node *left, Node *right) : data{data}, left{left}, right{right} {} Node *insert(int e) { if (e <= data) { if (this->left) return this->left->insert(e); else { this->left = new Node(e, nullptr, nullptr); return this->left; } } else { if (this->right) return this->right->insert(e); else { this->right = new Node(e, nullptr, nullptr); return this->right; } } } ~Node() { delete left; delete right; } }; Node *make_tree_sorted(int n) { if (n == 0) return nullptr; Node *tree = new Node(0, nullptr, nullptr); for (int i = 1; i < n; ++i) { tree->insert(i); } return tree; } Node *make_tree_rnd(int n) { if (n == 0) return nullptr; Node *tree = new Node(rand() % 50, nullptr, nullptr); for (int i = 1; i < n; ++i) { tree->insert(rand() % 50); } return tree; } void inorder_traverse_loop(Node *tree) { vector<Node *> stack; stack.push_back(tree); Node *cur = tree; while (cur && cur->left) { stack.push_back(cur->left); cur = cur->left; } while (!stack.empty()) { cur = stack.back(); stack.pop_back(); cout << cur->data << " "; if (cur && cur->right) { stack.push_back(cur->right); cur = cur->right; while (cur && cur->left) { stack.push_back(cur->left); cur = cur->left; } } } } void inorder_traverse_recur(Node *tree) { if (tree->left) inorder_traverse_recur(tree->left); cout << tree->data << " "; if (tree->right) inorder_traverse_recur(tree->right); } int main() { srand(0); Node *tree = make_tree_rnd(20); inorder_traverse_recur(tree); cout << endl; inorder_traverse_loop(tree); cout << endl; delete tree; return 0; }
[ "ng.duc.tahn@gmail.com" ]
ng.duc.tahn@gmail.com
9575cac339042a6f8acdb1063643fec21218b3bf
829a4044563affddc5cfe1e9749147af107bd7aa
/sprig/policy/warning/policy_unique_warning.hpp
0072504b76cae488a405e14766ed827922b3aab4
[ "BSL-1.0" ]
permissive
hibiarata/Sprig
0b9806326069e73d08cedf7fd0b2e2b3f3b03689
51ce4db4f4d093dee659a136f47249e4fe91fc7a
refs/heads/master
2023-03-19T22:49:06.182941
2016-03-01T02:28:17
2016-03-01T02:28:17
null
0
0
null
null
null
null
UTF-8
C++
false
false
931
hpp
/*============================================================================= Copyright (c) 2010-2016 Bolero MURAKAMI https://github.com/bolero-MURAKAMI/Sprig Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) =============================================================================*/ #ifndef SPRIG_POLICY_POLICY_UNIQUE_WARNING_HPP #define SPRIG_POLICY_POLICY_UNIQUE_WARNING_HPP #include <sprig/config/config.hpp> #ifdef SPRIG_USING_PRAGMA_ONCE # pragma once #endif // #ifdef SPRIG_USING_PRAGMA_ONCE #include <sprig/policy/warning/warning.hpp> #include <sprig/policy/detail/policy_unique_check_impl.hpp> // // SPRIG_POLICY_UNIQUE_WARNING // #define SPRIG_POLICY_UNIQUE_WARNING(TAG, TYPES) \ SPRIG_POLICY_UNIQUE_CHECK_IMPL(TAG, TYPES, SPRIG_POLICY_WARNING) #endif // #ifndef SPRIG_POLICY_POLICY_UNIQUE_WARNING_HPP
[ "bolero.murakami@gmail.com" ]
bolero.murakami@gmail.com